/* 
   FORMAT 01 — BASE STYLES
    */

/* margine */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Osnovne boje i font cijele stranice */
body {
 background:
  radial-gradient(
    circle at 18% 12%,
    rgba(17, 29, 42, 0.18),
    transparent 30%
  ),
  radial-gradient(
    circle at 82% 62%,
    rgba(18, 28, 40, 0.10),
    transparent 34%
  ),
  #07090c;
  color: #f1f0ec;
font-family: "Inter", sans-serif;
  min-height: auto;
  overflow-x: hidden;
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;

  display: flex;
align-items: center;

  max-width: 1600px;
  margin: 0 auto;

  padding: 130px 64px 70px;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1500px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 90px;
}

.hero-content {
  order: 1;
  flex: 0 1 760px;
}

.hero-blueprint {
  order: 2;
  flex: 0 0 370px;
}

.hero > .hero-visual.hero-binary-lines {
  display: none;
}

.hero-blueprint {
  position: relative;

  top: auto;
  left: auto;
  right: auto;

  transform: none;

  width: clamp(300px, 20vw, 360px);
  aspect-ratio: 1 / 1;

  z-index: 2;
}

.hero-blueprint-square {
  position: relative;

  width: 100%;
  height: 100%;

 border: 1px solid rgba(241, 240, 236, 0.16);

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(55, 69, 84, 0.10),
      transparent 68%
    ),
    rgba(8, 10, 12, 0.35);

  overflow: hidden;

  box-shadow:
  inset 0 0 0 1px rgba(255, 255, 255, 0.015),
  0 0 45px rgba(55, 69, 84, 0.07);
}

.hero-blueprint-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(241, 240, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 240, 236, 0.035) 1px, transparent 1px);

  background-size: 36px 36px;

  opacity: 0.22;
}

.hero-blueprint-logo {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Sora", sans-serif;
  font-size: clamp(76px, 7vw, 118px);
  font-weight: 300;

  letter-spacing: 0.08em;

  color: rgba(241, 240, 236, 0.08);

  -webkit-text-stroke: 1px rgba(241, 240, 236, 0.34);

  z-index: 2;
}

.hero-blueprint-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.22;
}

.hero-blueprint-data {
  position: absolute;
  inset: 26px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  z-index: 2;

  pointer-events: none;
}

.hero-blueprint-data span {
  font-family: "Sora", sans-serif;
  font-size: 9px;

  letter-spacing: 0.22em;

  color: rgba(184, 162, 124, 0.34);
}

.hero-content {
  max-width: 780px;
  transform: translateY(-10px);
}

.hero-label {
  margin-bottom: 28px;

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #b8a27c;
}

.hero-title {
  font-family: "Sora", sans-serif;

  font-size: clamp(60px, 4.9vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.04em;

  color: #8d969f;
}

.hero-description {
  max-width: 560px;

  margin-top: 34px;

  font-size: 17px;
  line-height: 1.7;

  color: #92979d;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;

  margin-top: 36px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 15px 22px;

  border: 1px solid rgba(241, 240, 236, 0.28);

  color: #f1f0ec;
  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  transition: 0.3s ease;
}

.hero-button:hover {
  background: #f1f0ec;
  color: #07090c;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #a7adb3;
  text-decoration: none;

  font-size: 13px;

  transition: color 0.3s ease;
}

.hero-link:hover {
  color: #f1f0ec;
}

.hero-visual {
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
#dot-wave {
  width: 150%;
  height: 700px;
  display: block;

  transform: translateX(-15%);
  opacity: 0.94;

  filter:
    drop-shadow(0 0 24px rgba(185, 194, 204, 0.06))
    drop-shadow(0 0 60px rgba(185, 194, 204, 0.03));
}
.dot-wave-placeholder {
  width: 100%;
  height: 440px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  background:
    radial-gradient(
      circle at center,
      rgba(45, 61, 78, 0.25),
      transparent 65%
    );
}
/* =========================
   HEADER / NAVIGATION
   ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 64px;

  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  z-index: 1000;
}

.logo {
  position: relative;

  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 500;

  letter-spacing: 0.24em;

  color: #f1f0ec;
  text-decoration: none;

  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;

  font-size: 14px;
  font-weight: 400;

  color: #92979d;
  text-decoration: none;

  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #f1f0ec;

  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #f1f0ec;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch {
  background: transparent;
  border: 0;

  color: #92979d;

  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;

  cursor: pointer;

  transition: color 0.3s ease;
}

.language-switch:hover {
  color: #f1f0ec;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;

  border: 1px solid rgba(241, 240, 236, 0.2);
  border-radius: 999px;

  color: #f1f0ec;
  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.header-cta span {
  transition: transform 0.3s ease;
}

.header-cta:hover {
  background: rgba(241, 240, 236, 0.06);
  border-color: rgba(241, 240, 236, 0.4);
}

.header-cta:hover span {
  transform: translateX(4px);
}
/* =========================
   HEADER — FIX
   ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 84px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 52px;

  background: rgba(7, 9, 12, 0.78);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  z-index: 1000;
}

.logo {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 500;

  letter-spacing: 0.14em;

  color: #f1f0ec;
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 32px;
}

.main-nav a {
  font-size: 13px;

  color: #92979d;
  text-decoration: none;

  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #f1f0ec;
}

.header-actions {
  display: flex;
  align-items: center;

  gap: 18px;
}

.language-switch {
  border: 0;
  background: transparent;

  color: #92979d;

  font-family: "Inter", sans-serif;
  font-size: 12px;

  cursor: pointer;
}

.header-cta {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 11px 17px;

  border: 1px solid rgba(241, 240, 236, 0.22);
  border-radius: 999px;

  color: #f1f0ec;
  text-decoration: none;

  font-size: 12px;
}
/* =========================
   STATEMENT
   ========================= */

.statement {
  min-height: auto;

  position: relative;
overflow: hidden;

  display: flex;
  align-items: flex-start;

  padding: 110px 64px 140px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.statement-binary {
  position: absolute;

  left: 0;
  top: 50%;

  width: 100%;
  height: 78%;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;
  pointer-events: none;

  opacity: 0.13;
  z-index: 0;

  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
}
.statement-inner {
  position: relative;
  z-index: 2;
}

.statement-binary span {
  display: block;

  width: max-content;
  white-space: nowrap;

  font-family: monospace;
  font-size: 12px;
  font-weight: 400;

  letter-spacing: 0.22em;

  color: rgba(146, 151, 157, 0.58);
}



.statement-inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.statement-label {
  margin-bottom: 36px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #b8a27c;
}

.statement-title {
  max-width: 1200px;

  font-family: "Sora", sans-serif;

  font-size: clamp(48px, 5.5vw, 96px);
  font-weight: 300;

  line-height: 1.08;
  letter-spacing: -0.045em;

  color: #8d969f;
}

.statement-trigger {
  margin-top: 34px;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 11px 16px;

  border: 1px solid rgba(241, 240, 236, 0.12);
  background: transparent;

  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(241, 240, 236, 0.72);

  cursor: pointer;

  transition:
    border-color 0.35s ease,
    color 0.35s ease,
    background 0.35s ease;
}

.statement-trigger span:last-child {
  transition: transform 0.35s ease;
}

.statement-trigger:hover {
  color: #f1f0ec;
  border-color: rgba(184, 162, 124, 0.45);
  background: rgba(184, 162, 124, 0.035);
}

.statement-trigger:hover span:last-child {
  transform: translateX(4px);
}

/* ========================================
   STATEMENT — LIVE BINARY LINE
======================================== */

.statement-live-line {
  position: relative;

  width: min(100%, 1200px);
  height: 36px;

  margin-top: 34px;

  overflow: hidden;

  border-bottom: 1px solid rgba(241, 240, 236, 0.05);
}

.statement-live-bits {
  position: absolute;

  left: 0;
  top: 50%;

  width: 100%;

  transform: translateY(-50%);

  white-space: nowrap;
  overflow: hidden;

  font-family: monospace;
  font-size: 14px;
  font-weight: 400;

  letter-spacing: 0.18em;

  color: rgba(146, 151, 157, 0.46);
}

.statement-live-dot {
  position: absolute;

  left: 0;
  top: 50%;

  width: 7px;
  height: 7px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: #b8a27c;

  box-shadow:
    0 0 8px rgba(184, 162, 124, 0.5),
    0 0 18px rgba(184, 162, 124, 0.18);

  z-index: 2;
}

.statement-binary {
  display: none;
}

.statement-title span {
  display: block;
}.statement-title span {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.statement-title.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.statement-title.is-visible span:nth-child(1) {
  transition-delay: 0.05s;
}

.statement-title.is-visible span:nth-child(2) {
  transition-delay: 0.18s;
}

.statement-title.is-visible span:nth-child(3) {
  transition-delay: 0.31s;
}
/* =========================
   PROJECTS
   ========================= */

.projects {
  padding: 150px 64px 180px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.projects-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 36px;

  margin-bottom: 80px;
}

.section-label {
  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #b8a27c;
}

.projects-heading {
  max-width: 850px;
  margin: 0;

  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 4.5vw, 78px);
  font-weight: 300;

  line-height: 1.02;
  letter-spacing: -0.04em;

  text-align: left;
  color: #8d969f;
}

.project-item {
  padding: 44px 0 120px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 28px;

  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #92979d;
}

.project-title {
  margin-bottom: 44px;

  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 300;

  line-height: 1;
  letter-spacing: -0.045em;

  color: #f1f0ec;
}

/* PROJECT — CASE META */

.project-case-meta {
  margin-top: 14px;
  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.project-case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 24px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.10em;
  text-transform: uppercase;

  color: #b8a27c;
  text-decoration: none;

  transition: color 0.3s ease;
}

.project-case-link span:last-child {
  transition: transform 0.3s ease;
}

.project-case-link:hover {
  color: #f1f0ec;
}

.project-case-link:hover span:last-child {
  transform: translateX(4px);
}

.project-case-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.project-case-services span,
.project-case-year {
  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #92979d;
}

.project-case-services span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;

  color: rgba(184, 162, 124, 0.55);
}

.project-case-year {
  color: #b8a27c;
  white-space: nowrap;
}

.project-visual {
  position: relative;

  width: 100%;
  height: clamp(420px, 55vw, 760px);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.07);

  background: #0b0e12;
}

.project-visual span {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 300;

  letter-spacing: 0.12em;

  color: rgba(241, 240, 236, 0.78);

  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-visual:hover span {
  transform: scale(1.05);
}

.project-format {
  background:
    radial-gradient(
      circle at 68% 42%,
      rgba(78, 96, 116, 0.22),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #080a0d 0%,
      #0b1118 52%,
      #080a0d 100%
    );
}



.project-format::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(
      circle,
      rgba(185, 194, 204, 0.28) 1px,
      transparent 1px
    );

  background-size: 22px 22px;

  opacity: 0.36;

  -webkit-mask-image:
    linear-gradient(
      110deg,
      transparent 8%,
      black 45%,
      transparent 88%
    );

  mask-image:
    linear-gradient(
      110deg,
      transparent 8%,
      black 45%,
      transparent 88%
    );

  transform: scale(1.04);

  transition:
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.9s ease;
}

.project-format > img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;

  z-index: 1;

  transform: scale(1.075);

  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);

}

.project-in-progress {
  position: relative;
}

.project-progress-label {
  position: absolute;
  left: 50%;
  bottom: 28px;

  transform: translateX(-50%);

  z-index: 4;

  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(241, 240, 236, 0.72);

  pointer-events: none;
}

/* 02 i 03 ne trebaju F01 oznaku iz project-format pseudo-elementa */
.project-in-progress::after {
  content: none;
}

.project-format .project-watermark {
  position: absolute;
  display: block;
  z-index: 4;

  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;

  color: rgba(241, 240, 236, 0.38);

  pointer-events: none;
  transform: none;
}

.project-format .project-watermark-top {
  top: 26px;
  left: 28px;
  right: auto;
  bottom: auto;
}

.project-format .project-watermark-bottom {
  right: 28px;
  bottom: 24px;
  left: auto;
  top: auto;
}

.project-format:hover .project-watermark {
  transform: none;
}

.project-format .project-visual-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3;

  pointer-events: none;
}

.project-format:hover > img {
  transform: scale(1.025);
}

.project-format::before {
  opacity: 0;
  pointer-events: none;
}

.project-format::after {
  content: "F01";

  position: absolute;
  right: 42px;
  bottom: 34px;

  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 500;

  letter-spacing: 0.18em;

  color: rgba(241, 240, 236, 0.38);
}

.project-format span {
  position: relative;
  z-index: 2;
}

/* 02 / USKORO i 03 / USKORO */
.project-format .project-progress-label {
  position: absolute;

  left: 50%;
  right: auto;

  top: auto;
  bottom: 22px;

  transform: translateX(-50%);

  z-index: 5;

  width: auto;

  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 500;

  line-height: 1;
  letter-spacing: 0.18em;

  white-space: nowrap;

  color: rgba(241, 240, 236, 0.58);

  pointer-events: none;
}

/* Na hoveru tekst mora ostati na istom mjestu */
.project-format:hover .project-progress-label {
  transform: translateX(-50%);
}

.project-format:hover::before {
  transform: scale(1.09);
  opacity: 0.42;
}

.project-coming-soon {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.01)
    ),
    #0b0e12;
}
/* =========================
   COMING SOON VISUALS
   ========================= */

.project-item:nth-of-type(2) .project-coming-soon {
  background:
    radial-gradient(
      circle at 72% 38%,
      rgba(70, 84, 100, 0.18),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #090b0e,
      #101419 55%,
      #090b0e
    );
}

.project-item:nth-of-type(3) .project-coming-soon {
  background:
    radial-gradient(
      circle at 28% 62%,
      rgba(70, 84, 100, 0.15),
      transparent 32%
    ),
    linear-gradient(
      35deg,
      #080a0d,
      #0e1217 55%,
      #080a0d
    );
}

/* ========================================
   FORMAT 01 — CASE STUDY
======================================== */

.case-study {
  position: relative;
  overflow: hidden;

  padding: 150px 64px 160px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

 background: transparent;

  scroll-margin-top: 90px;
}

.case-study-inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.case-study-header {
  padding-bottom: 78px;
}

.case-study-heading {
  margin-top: 34px;

  display: grid;
  grid-template-columns: 1.05fr 0.72fr;

  gap: 120px;
  align-items: end;
}

.case-study-heading h2 {
  margin: 0;

  font-family: "Sora", sans-serif;

  font-size: clamp(56px, 5vw, 86px);
  font-weight: 300;

  line-height: 1.03;
  letter-spacing: -0.045em;

  color: #8d969f;
}

.case-study-heading > p {
  max-width: 520px;

  margin: 0 0 8px;

  font-size: 15px;
  line-height: 1.8;

  color: #92979d;
}

.case-study-meta {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.6fr;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-study-meta > div {
  padding: 24px 28px 24px 0;
}

.case-study-meta > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-meta > div:not(:first-child) {
  padding-left: 28px;
}

.case-study-meta span,
.case-study-points > article > span {
  display: block;

  margin-bottom: 10px;

  font-family: monospace;
  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #b8a27c;
}

.case-study-meta p {
  margin: 0;

  font-size: 13px;
  line-height: 1.6;

  color: #b2b7bc;
}

.case-study-points {
  margin-top: 76px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.case-study-points article {
  min-height: 250px;

  padding: 30px 34px 34px 0;
}

.case-study-points article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-points article:not(:first-child) {
  padding-left: 34px;
}

.case-study-points h3 {
  margin: 36px 0 16px;

  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 400;

  letter-spacing: -0.025em;

  color: #f1f0ec;
}

.case-study-points p {
  max-width: 340px;

  margin: 0;

  font-size: 13px;
  line-height: 1.75;

  color: #92979d;
}

/* CASE STUDY — SHOWCASE */

.case-study-showcase {
  margin-top: 84px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.case-study-showcase-panel {
  position: relative;

  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.06);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.006)
    );
}

.case-study-showcase-label {
  position: absolute;

  top: 18px;
  left: 20px;

  font-family: monospace;
  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #b8a27c;
}

.case-study-showcase-panel img {
  display: block;

  width: 54%;
  max-width: 320px;
  height: auto;

  object-fit: contain;

  opacity: 0.92;
}

.case-study-showcase-panel:first-child img {
  width: 34%;
  max-width: 180px;
}

/* ========================================
   CASE STUDY — UPCOMING PROJECTS
======================================== */

.case-study-upcoming {
  margin-top: 76px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.case-study-upcoming-header {
  padding: 20px 0 18px;
}

.case-study-upcoming-header span {
  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #b8a27c;
}

.case-study-upcoming-row {
  display: grid;

  grid-template-columns:
    56px
    minmax(220px, 1.2fr)
    minmax(200px, 1fr)
    auto;

  align-items: center;

  gap: 28px;

  min-height: 92px;

  border-top: 1px solid rgba(255, 255, 255, 0.055);

  transition: background 0.35s ease;
}

.case-study-upcoming-row:hover {
  background: rgba(255, 255, 255, 0.012);
}

.case-study-upcoming-number {
  font-size: 9px;

  letter-spacing: 0.14em;

  color: rgba(184, 162, 124, 0.75);
}

.case-study-upcoming-row h3 {
  margin: 0;

  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 400;

  letter-spacing: -0.025em;

  color: #f1f0ec;
}

.case-study-upcoming-service {
  font-size: 12px;
  line-height: 1.5;

  color: #7f878f;
}

.case-study-upcoming-status {
  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #b8a27c;
}

/* =========================
   SERVICES
   ========================= */

.services {
  padding: 160px 64px 180px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 36px;

  margin-bottom: 80px;
}

.services-heading {
  margin: 0;

  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 4.5vw, 76px);
  font-weight: 300;

  line-height: 1.05;
  letter-spacing: -0.04em;

  text-align: left;
  color: #8d969f;
}

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-row {
  display: grid;

  grid-template-columns:
    70px
    minmax(320px, 1.2fr)
    minmax(240px, 0.8fr)
    40px;

  align-items: center;
  gap: 36px;

  min-height: 180px;
  padding: 32px 10px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    background 0.45s ease,
    padding 0.45s ease;
}

.service-number {
  font-family: "Sora", sans-serif;
  font-size: 12px;

  letter-spacing: 0.14em;

  color: #b8a27c;
}

.service-content h3 {
  margin-bottom: 14px;

  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 300;

  letter-spacing: -0.025em;

  color: #f1f0ec;
}

.service-content p {
  max-width: 560px;

  font-size: 14px;
  line-height: 1.7;

  color: #92979d;
}

.service-tags {
  font-size: 12px;
  line-height: 1.7;

  color: rgba(146, 151, 157, 0.72);
}

.service-arrow {
  justify-self: end;

  font-size: 22px;

  color: #92979d;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.service-row:hover {
  padding-left: 22px;
  padding-right: 22px;

  background: rgba(255, 255, 255, 0.018);
}

.service-row:hover .service-arrow {
  transform: translateX(6px);

  color: #f1f0ec;
}
.service-content h3 {
  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.service-number {
  transition: color 0.4s ease;
}

.service-row:hover .service-content h3 {
  transform: translateX(6px);
  color: #ffffff;
}

.service-row:hover .service-number {
  color: #d0b98d;
}

.service-accordion {
  column-gap: 50px;
  row-gap: 0;
  cursor: pointer;
}

/* Usluge - oznaka DETALJI / ZATVORI */

.service-action-open {
  display: inline;
}

.service-action-close {
  display: none;
}

.service-accordion.is-open .service-action-open {
  display: none;
}

.service-accordion.is-open .service-action-close {
  display: none;
}

/* SERVICE ACCORDION */

.service-accordion .service-toggle {
  appearance: none;
  -webkit-appearance: none;

  background: transparent;
  border: 0;
  padding: 0;

  font: inherit;
  color: #92979d;

  cursor: pointer;

  outline: none;
box-shadow: none;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.service-details {
  display: none;
  grid-column: 2 / -1;
  width: 100%;
  cursor: default;
}

.service-details-inner {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(360px, 1fr);
  column-gap: 72px;
  row-gap: 18px;

  align-items: start;
  padding: 26px 0 30px 28px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-details-text {
  grid-column: 2;
  margin: 0;

  max-width: 560px;
  padding-top: 2px;

  font-size: 14px;
  line-height: 1.85;
  color: #92979d;
}

.service-details-list {
  grid-column: 1;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 6px;
}

.service-details-list span {
  padding: 8px 12px;

  border: 1px solid rgba(241, 240, 236, 0.12);

  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;

  color: rgba(241, 240, 236, 0.68);
}

.service-details-cta {
  grid-column: 1;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: fit-content;
  margin-top: 8px;
  color: #f1f0ec;

  text-decoration: none;
}

.service-details-cta:visited {
  color: #f1f0ec;
}

.service-details-cta:hover {
  color: #d0b98d;
}

.service-details-list span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.service-accordion.is-open .service-details {
  display: block;
}

.service-details-cta span:last-child {
  transition: transform 0.3s ease;
}

.service-details-cta:hover span:last-child {
  transform: translateX(5px);
}


/* otvoreno stanje */

.service-accordion.is-open .service-details {
  display: block;
}

.service-accordion.is-open .service-toggle {
  transform: rotate(45deg);
  color: #f1f0ec;
}


/* hover */

.service-accordion.is-open:hover .service-toggle {
  transform: rotate(45deg);
}
/* cjenik */

.pricing {
    padding: 160px 64px 180px;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    background: #07090c;
}

.pricing-inner {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 36px;

  margin-bottom: 80px;
}

.pricing-heading {
    max-width: 850px;

    margin: 0;

    font-family: "Sora", sans-serif;
    font-size: clamp(42px, 4.5vw, 76px);
    font-weight: 300;

    line-height: 1.05;
    letter-spacing: -0.04em;

    text-align: left;
    color: #8d969f;
}

.pricing-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-trigger {
    width: 100%;

    display: grid;
    grid-template-columns:
        70px
        minmax(300px, 1fr)
        180px
        30px;

    align-items: center;
    gap: 30px;

    min-height: 92px;

    padding: 24px 10px;

    border: 0;

    background: transparent;

    color: #f1f0ec;

    text-align: left;

    cursor: pointer;

    transition:
        background 0.35s ease,
        padding 0.35s ease;
}

.pricing-trigger:hover {
    padding-left: 22px;
    padding-right: 22px;

    background: rgba(255, 255, 255, 0.018);
}

.pricing-number {
    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.16em;

    color: #b8a27c;
}

.pricing-name {
    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pricing-price {
    justify-self: end;

    font-size: 13px;
    font-weight: 400;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: #92979d;
}

.pricing-icon {
    justify-self: end;

    font-size: 20px;
    font-weight: 300;

    color: #92979d;

    transition: color 0.35s ease;
}

.pricing-content {
    max-height: 0;

    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.55s ease,
        opacity 0.35s ease;
}

.pricing-content p {
    max-width: 980px;

    margin: 0;

    padding:
        0
        200px
        0
        110px;

    font-size: 14px;
    line-height: 1.8;

    color: #92979d;

    transform: translateY(-6px);

    transition:
        padding 0.45s ease,
        transform 0.45s ease;
}

.pricing-item.is-open .pricing-content {
    max-height: 220px;

    opacity: 1;
}

.pricing-item.is-open .pricing-content p {
    padding-bottom: 32px;

    transform: translateY(0);
}

.pricing-item.is-open .pricing-icon {
    color: #f1f0ec;
}

.pricing-note {
    max-width: 680px;

    margin: 36px 0 0;

    font-size: 12px;
    line-height: 1.8;

    color: rgba(146, 151, 157, 0.72);
}

/* PRICING CTA */

.pricing-cta {
  margin-top: 34px;
  padding-top: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-cta p {
  margin: 0;

  font-size: 13px;
  line-height: 1.5;

  color: #92979d;
}

.pricing-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #b8a27c;
  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.pricing-cta-link span:last-child {
  transition: transform 0.3s ease;
}

.pricing-cta-link:hover {
  color: #f1f0ec;
}

.pricing-cta-link:hover span:last-child {
  transform: translateX(4px);
}

/* cjenik mobile */

.pricing {
    padding: 120px 28px 140px;
}

.pricing-inner {
    width: 100%;
    max-width: none;

    margin: 0;
}

.pricing-header {
    display: block;

    margin-bottom: 72px;
}

.pricing-header .section-label {
    display: block;

    margin-bottom: 24px;
}

.pricing-heading {
    width: 100%;
    max-width: none;

    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.04;
}

.pricing-trigger {
    grid-template-columns: 36px 1fr 20px;

    grid-template-areas:
        "number name icon"
        ". price icon";

    gap: 8px 12px;

    min-height: 0;

    padding: 24px 0;
}

.pricing-trigger:hover {
    padding-left: 0;
    padding-right: 0;

    background: transparent;
}

.pricing-number {
    grid-area: number;

    font-size: 11px;
}

.pricing-name {
    grid-area: name;

    font-size: 14px;
    line-height: 1.4;
}

.pricing-price {
    grid-area: price;

    justify-self: start;

    font-size: 11px;
}

.pricing-icon {
    grid-area: icon;

    align-self: center;
    justify-self: end;
}

.pricing-content p {
    max-width: none;

    padding:
        0
        0
        0
        48px;

    font-size: 13px;
    line-height: 1.75;
}

.pricing-item.is-open .pricing-content p {
    padding-bottom: 24px;
}

.pricing-note {
    margin-top: 30px;

    font-size: 11px;
}

/* =========================
   DETAILS / WHY FORMAT 01
   ========================= */

.details {
    position: relative;
  overflow: hidden;
  isolation: isolate;

  --spot-x: 50%;
  --spot-y: 50%;
  
  min-height: 90vh;

  display: flex;
  align-items: center;

  padding: 160px 64px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  background: #07090c;
}

.why-spotlight::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;
  z-index: 1;

  opacity: 0;

  background:
    radial-gradient(
      circle 300px at var(--spot-x) var(--spot-y),
      rgba(255, 255, 255, 0.22) 0%,
      rgba(110, 155, 200, 0.14) 28%,
      rgba(70, 110, 150, 0.07) 48%,
      transparent 72%
    );

  transition: opacity 0.2s ease;
}

.why-spotlight:hover::before {
  opacity: 1;
}

.why-spotlight::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;
  z-index: 1;

  opacity: 0;

 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='96' viewBox='0 0 560 96'%3E%3Ctext x='0' y='24' fill='%2397a8b6' fill-opacity='.17' font-family='monospace' font-size='12' letter-spacing='8'%3E0101100101001101010011010100110101100101%3C/text%3E%3Ctext x='25' y='72' fill='%2397a8b6' fill-opacity='.13' font-family='monospace' font-size='12' letter-spacing='8'%3E1010011010110010101100101011001010010110%3C/text%3E%3C/svg%3E");

background-repeat: repeat;
background-size: 560px 96px;

  -webkit-mask-image:
    radial-gradient(
      circle 330px at var(--spot-x) var(--spot-y),
      black 0%,
      rgba(0, 0, 0, 0.9) 40%,
      rgba(0, 0, 0, 0.35) 62%,
      transparent 78%
    );

  mask-image:
    radial-gradient(
      circle 330px at var(--spot-x) var(--spot-y),
      black 0%,
      rgba(0, 0, 0, 0.9) 40%,
      rgba(0, 0, 0, 0.35) 62%,
      transparent 78%
    );

  transition: opacity 0.2s ease;
}

.why-spotlight:hover::after {
  opacity: 1;
}

.why-spotlight .details-inner {
  position: relative;
  z-index: 2;
}

.details-inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.details-layout {
  display: grid;

  grid-template-columns: 1.35fr 0.65fr;

  gap: 100px;
  align-items: end;

  margin-top: 0px;
}

.details-title {
  max-width: 950px;
margin-left: -14px;
margin-top: 36px;
  font-family: "Sora", sans-serif;

  font-size: clamp(64px, 7vw, 118px);
  font-weight: 300;

  line-height: 0.98;
  letter-spacing: -0.05em;

  text-transform: uppercase;

  color: #8d969f;
}

.details-text {
  max-width: 470px;

  padding-bottom: 10px;

  font-size: 16px;
  line-height: 1.8;

  color: #92979d;
}

/* DETAILS — PRINCIPLES */

.details-principles {
  width: 100%;
  max-width: 600px;

  margin-top: 38px;

  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.details-principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;

  min-height: 62px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.details-principle span {
  font-family: monospace;
  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.16em;

  color: #b8a27c;
}

.details-principle p {
  margin: 0;

  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 400;

  letter-spacing: -0.015em;

  color: #a6adb4;
}
/* =========================
   PROCESS
   ========================= */

.process {
  padding: 160px 64px 180px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 36px;

  margin-bottom: 80px;
}

.process-heading {
  margin: 0;

  font-family: "Sora", sans-serif;

  font-size: clamp(42px, 4.5vw, 76px);
  font-weight: 300;

  line-height: 1.05;
  letter-spacing: -0.04em;

  text-align: left;
  color: #8d969f;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-signal {
  position: absolute;

  top: 28px;
  left: 0;
  right: 0;

  height: 1px;

  pointer-events: none;
  z-index: 1;
}

.process-signal-line {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(184, 162, 124, 0.10) 0%,
      rgba(184, 162, 124, 0.28) 18%,
      rgba(184, 162, 124, 0.18) 50%,
      rgba(184, 162, 124, 0.28) 82%,
      rgba(184, 162, 124, 0.10) 100%
    );
}

.process-signal-pulse {
  display: block;

  position: absolute;
  top: 50%;
  left: 18px;

  width: 8px;
  height: 8px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: #d7bd82;

  box-shadow:
    0 0 0 5px rgba(215, 189, 130, 0.08),
    0 0 18px rgba(215, 189, 130, 0.45),
    0 0 36px rgba(215, 189, 130, 0.18);

  z-index: 3;

  animation: none;
}

.process.is-active .process-signal-pulse {
  animation: processSignalMove 7s ease-in-out infinite;
}

@keyframes processSignalMove {
  0% {
    left: 18px;
    opacity: 0;
  }

  3%,
  14% {
    left: 18px;
    opacity: 1;
  }

  29%,
  39% {
    left: calc(25% + 18px);
    opacity: 1;
  }

  54%,
  64% {
    left: calc(50% + 18px);
    opacity: 1;
  }

  79%,
  90% {
    left: calc(75% + 18px);
    opacity: 1;
  }

  94% {
    left: calc(75% + 18px);
    opacity: 0;
  }

  95% {
    left: 18px;
    opacity: 0;
  }

  100% {
    left: 18px;
    opacity: 0;
  }
}

.process-signal-nodes {
  position: absolute;
  inset: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  pointer-events: none;
}

.process-signal-nodes span {
  width: 7px;
  height: 7px;

  margin-left: 18px;

  align-self: center;
  justify-self: start;

  border-radius: 50%;

  background: #b8a27c;

  box-shadow:
    0 0 0 4px rgba(184, 162, 124, 0.06),
    0 0 18px rgba(184, 162, 124, 0.15);

  opacity: 0.42;
}

.process-step {
  min-height: 300px;

  padding: 38px 32px 40px 0;

  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:not(:first-child) {
  padding-left: 32px;
}

.process-step:last-child {
  border-right: 0;
}

.process-number {
  display: block;

  margin-bottom: 70px;

  font-family: "Sora", sans-serif;
  font-size: 13px;

  letter-spacing: 0.16em;

  color: #b8a27c;
}

.process-step h3 {
  margin-bottom: 18px;

  font-family: "Sora", sans-serif;

  font-size: clamp(24px, 2vw, 34px);
  font-weight: 300;

  color: #f1f0ec;
}

.process-step p {
  max-width: 280px;

  font-size: 14px;
  line-height: 1.75;

  color: #92979d;
}
.process-step {
  position: relative;

  opacity: 0;
  transform: translateY(24px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.process-list.is-visible .process-step {
  opacity: 1;
  transform: translateY(0);
}

.process-list.is-visible .process-step:nth-child(1) {
  transition-delay: 0.05s;
}

.process-list.is-visible .process-step:nth-child(2) {
  transition-delay: 0.16s;
}

.process-list.is-visible .process-step:nth-child(3) {
  transition-delay: 0.27s;
}

.process-list.is-visible .process-step:nth-child(4) {
  transition-delay: 0.38s;
}

.process-step::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0;

  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(184, 162, 124, 0.14),
      transparent 58%
    );

  transition: opacity 0.35s ease;
}

.process-step.is-active {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018) 0%,
      rgba(184, 162, 124, 0.035) 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 0 32px rgba(184, 162, 124, 0.045);
}

.process-list.is-visible .process-step.is-active {
  transform: translateY(-4px);
}

.process-step.is-active::before {
  opacity: 1;
}

.process-step.is-active .process-number {
  color: #d7bd82;
}

.process-step.is-active h3 {
  color: #f1f0ec;
}

.process-step.is-active p {
  color: rgba(241, 240, 236, 0.76);
}

/* =========================
   ABOUT / O FORMATU 01
   ========================= */

.about {
  padding: 170px 64px 190px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  background:
    radial-gradient(
      circle at 20% 55%,
      rgba(55, 69, 84, 0.10),
      transparent 30%
    );
}

.about-inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.about-layout {
  display: grid;

  grid-template-columns: 0.75fr 1.25fr;

  gap: 110px;

  margin-top: 36px;
}

.about-title {
  font-family: "Sora", sans-serif;

  font-size: clamp(42px, 4.5vw, 76px);
  font-weight: 300;

  line-height: 1.05;
  letter-spacing: -0.045em;

  white-space: nowrap;

  color: #8d969f;
}

.about-copy {
  max-width: 780px;
}

.about-main {
  font-family: "Sora", sans-serif;

  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 300;

  line-height: 1.45;
  letter-spacing: -0.025em;

  color: #f1f0ec;
}

.about-secondary {
  max-width: 520px;

  margin-top: 52px;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  font-size: 15px;
  line-height: 1.8;

  color: #92979d;
}
/* =========================
   CONTACT CTA
   ========================= */

.contact-cta {
  position: relative;
  overflow: hidden;

  padding: 180px 64px 200px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  background:
    radial-gradient(
      circle at 82% 48%,
      rgba(55, 69, 84, 0.14),
      transparent 34%
    ),
    #07090c;
}

.contact-cta::before {
  content: "";

  position: absolute;
  right: -8%;
  top: 50%;

  width: 48%;
  height: 62%;

  transform: translateY(-50%);

  background-image:
    radial-gradient(
      circle,
      rgba(185, 194, 204, 0.22) 1px,
      transparent 1px
    );

  background-size: 20px 20px;

  opacity: 0.18;

  -webkit-mask-image:
    linear-gradient(
      110deg,
      transparent 5%,
      black 48%,
      transparent 92%
    );

  mask-image:
    linear-gradient(
      110deg,
      transparent 5%,
      black 48%,
      transparent 92%
    );

  pointer-events: none;
}

.contact-cta-inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.contact-cta-layout {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 110px;

  align-items: end;

  margin-top: 36px;
}

.contact-kicker {
  margin-bottom: 20px;

  font-family: "Sora", sans-serif;

  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 300;

  color: #92979d;
}

.contact-cta-heading h2 {
  max-width: 820px;
  margin-left: -10px;

  font-family: "Sora", sans-serif;

  font-size: clamp(60px, 6.5vw, 110px);
  font-weight: 300;

  line-height: 0.98;
  letter-spacing: -0.05em;

  text-transform: uppercase;

  color: #8d969f;
}

.contact-cta-content {
  max-width: 520px;
}

.contact-cta-content p {
  font-size: 16px;
  line-height: 1.8;

  color: #92979d;
}

.contact-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 34px;
  padding: 15px 22px;

  border: 1px solid rgba(241, 240, 236, 0.26);

  color: #f1f0ec;
  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.contact-cta-button span {
  transition: transform 0.35s ease;
}

.contact-cta-button:hover {
  background: #f1f0ec;
  color: #07090c;

  border-color: #f1f0ec;
}

.contact-cta-button:hover span {
  transform: translateX(5px);
}

/* =========================
   WHATSAPP FLOAT
   ========================= */

.whatsapp-float {
  position: fixed;

  right: 28px;
  bottom: 28px;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(241, 240, 236, 0.22);
  border-radius: 50%;

  background: rgba(7, 9, 12, 0.86);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  color: #f1f0ec;
  text-decoration: none;

  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;

  z-index: 1200;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.whatsapp-float {
  position: fixed;

  right: 28px;
  bottom: 28px;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(241, 240, 236, 0.22);
  border-radius: 50%;

  background: rgba(7, 9, 12, 0.86);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  color: #f1f0ec;
  text-decoration: none;

  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;

  z-index: 1200;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.whatsapp-float img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-4px);

  border-color: rgba(241, 240, 236, 0.5);

  background: rgba(241, 240, 236, 0.08);
}

.whatsapp-float:hover {
  transform: translateY(-4px);

  border-color: rgba(241, 240, 236, 0.5);

  background: rgba(241, 240, 236, 0.08);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  position: relative;

  padding: 46px 64px 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  background: #06080a;
}

.footer-inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 72px;

  padding-bottom: 34px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    width: 210px;
    height: auto;
    display: block;
    transform: translateX(-12px);
}

.footer-brand p {
  margin-top: 16px;

  font-size: 14px;

  color: #92979d;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 70px;
}

.footer-column {
  display: flex;
  flex-direction: column;

  gap: 12px;
}
.footer-column span {
  margin-bottom: 8px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #b8a27c;
}

.footer-column a {
  width: fit-content;

  font-size: 15px;

  color: #92979d;
  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-column a:hover {
  color: #f1f0ec;

  transform: translateX(4px);
}

.footer-bottom {
  display: grid;

  grid-template-columns:
    1fr
    auto
    auto
    auto;

  align-items: center;

  gap: 34px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  font-size: 11px;

  color: rgba(146, 151, 157, 0.72);
}

.footer-mark {
  position: relative;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(241, 240, 236, 0.22);
  border-radius: 50%;

  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.12em;

  color: #f1f0ec;
}

.footer-top-link {
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.footer-top-link:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 240, 236, 0.55);
  color: #f1f0ec;
}

.footer-mark::before {
  content: "";

  position: absolute;
  inset: 5px;

  border: 1px solid rgba(241, 240, 236, 0.08);
  border-radius: 50%;
}

/* =========================
   HERO REVEAL
   ========================= */

.hero-label,
.hero-title,
.hero-description,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.hero-visual {
  opacity: 0;
  transform: translateY(-48%) scale(0.98);

  transition:
    opacity 1.1s ease,
    transform 1.1s ease;
}

body.hero-ready .hero-label {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.05s;
}

body.hero-ready .hero-title {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.16s;
}

body.hero-ready .hero-description {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.28s;
}

body.hero-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.40s;
}

body.hero-ready .hero-visual {
  opacity: 1;
  transform: translateY(-48%) scale(1);

  transition-delay: 0.18s;
}

/* =========================
   INTRO
   ========================= */

.intro {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #07090c;

  z-index: 5000;

  overflow: hidden;
}

.intro-binary {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-around;

    padding: 5vh 0;

    overflow: hidden;

    font-family: "Sora", sans-serif;
    font-size: clamp(15px, 1.25vw, 24px);
    font-weight: 300;

    letter-spacing: 0.32em;

    color: rgba(185, 194, 204, 0.065);

    text-align: center;

    pointer-events: none;
}

.intro-binary span {
    display: block;

    width: max-content;
    min-width: 120vw;

    margin-left: -10vw;

    white-space: nowrap;
}

.intro-brand {
  position: relative;
  z-index: 2;

  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 500;

  letter-spacing: 0.24em;

  color: #f1f0ec;
}
.intro-brand img {
    width: 220px;
    height: auto;
    display: block;
}

.intro-binary {
  opacity: 0;

  animation: binaryReveal 1.8s ease forwards;
}

.intro-brand {
  opacity: 0;
  transform: translateY(10px);

  animation: brandReveal 1s ease 0.75s forwards;
}

.intro.is-finished {
  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

@keyframes binaryReveal {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 0.65;
  }

  100% {
    opacity: 0.18;
    transform: scale(1);
  }
}

@keyframes brandReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
    letter-spacing: 0.34em;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.24em;
  }
}

/* =========================
   HERO REVEAL
   ========================= */

.hero-label,
.hero-title,
.hero-description,
.hero-actions,
.hero-visual {
  opacity: 0;
  transform: translateY(-40%);

  transition: opacity 1.1s ease;
}

body.hero-ready .hero-label {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.05s;
}

body.hero-ready .hero-title {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.16s;
}

body.hero-ready .hero-description {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.28s;
}

body.hero-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.40s;
}

body.hero-ready .hero-visual {
  opacity: 1;
  transform: translateY(-40%);

  transition-delay: 0.18s;
}
/* FINAL HERO WAVE FIX */

.hero-visual {
  top: 54% !important;

  opacity: 1 !important;

  transform: translateY(-50%) !important;

  transition: none !important;
}

.hero-visual {
  top: auto !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
}

/* =========================
   MOBILE
   ========================= */
.mobile-menu-toggle {
    display: none;
}

/* forma za upit */

.project-form {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;

    margin-top: 0;
    padding-top: 0;

    border-top: 1px solid transparent;

    transition:
        max-height 0.8s ease,
        opacity 0.5s ease,
        margin-top 0.6s ease,
        padding-top 0.6s ease,
        border-color 0.6s ease;
}

.project-form.is-open {
    max-height: 1200px;
    opacity: 1;
    pointer-events: auto;

    margin-top: 80px;
    padding-top: 64px;

    border-top-color: rgba(255, 255, 255, 0.08);
}

.project-form-header {
    margin-bottom: 48px;
}

.project-form-header span {
    display: block;
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #b8a27c;
}

.project-form-header h3 {
    margin: 0;

    font-family: "Sora", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.04em;

    color: #d8d9df;
}

.project-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
}

.project-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-field-wide {
    grid-column: 1 / -1;
}

.project-field label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #b8a27c;
}

.project-field input,
.project-field select,
.project-field textarea {
    width: 100%;

    padding: 16px 0;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;

    background: transparent;

    font: inherit;
    font-size: 15px;

    color: #f1f0ec;

    outline: none;

    transition: border-color 0.3s ease;
}

.project-field textarea {
    min-height: 130px;
    resize: vertical;
}

.project-field input:focus,
.project-field select:focus,
.project-field textarea:focus {
    border-bottom-color: #b8a27c;
}

.project-field select {
    color-scheme: dark;
    appearance: none;
    -webkit-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #92979d 50%),
        linear-gradient(135deg, #92979d 50%, transparent 50%);

    background-position:
        calc(100% - 14px) 50%,
        calc(100% - 9px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    padding-right: 32px;
}

.project-field select option {
    background: #07090c;
    color: #f1f0ec;
}

/* forma za upit */

.project-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 42px;
    padding: 16px 22px;

    border: 1px solid rgba(241, 240, 236, 0.26);

    background: transparent;

    color: #f1f0ec;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.project-form-submit:not(:disabled):hover {
    background: #f1f0ec;
    color: #07090c;
    border-color: #f1f0ec;
}

.project-form-status {
    min-height: 20px;
    margin-top: 18px;

    font-size: 13px;
    line-height: 1.6;

    color: #92979d;
}

.project-form-submit:disabled {
    cursor: default;
    opacity: 0.7;
}

/* ========================================
   PROJECTS → CASE STUDY CONNECTION
======================================== */

.projects {
  min-height: auto;
  padding-bottom: 48px;
}

.case-study {
  padding-top: 56px;
  border-top: 0;
}

/* FORMAT 01 — CASE STUDY TITLE */

.case-study-project-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 16px;
}

.case-study-project-name span {
  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #b8a27c;
}

.case-study-project-name h2 {
  margin: 0;

  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 300;

  line-height: 1;
  letter-spacing: -0.045em;

  color: #8d969f;
}


/* približi PROJECTS naslov i prvi projekt */

.projects-header {
  margin-bottom: 0;
}

.projects {
  padding-bottom: 38px;
}

.case-study {
  padding-top: 38px;
  padding-bottom: 90px;
}

@media (max-width: 768px) {

    .site-header {
        padding: 18px 20px;
    }

    .logo img {
        height: 52px;
        width: auto;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }
    /* MOBILE HERO */

    .hero {
        position: relative;
        display: block;
        min-height: 60svh;

        padding: 64px 28px 120px;

        overflow: hidden;
    }
    

    .hero-content {
        position: relative;
        z-index: 2;

        max-width: 100%;
        transform: none;
    }

    .hero-title {
        font-size: clamp(42px, 12vw, 56px);
        line-height: 0.98;
    }

    .hero-description {
        max-width: 300px;
        margin-top: 24px;
    }

    .hero-visual {
    position: absolute;

    width: 390px;
    height: 260px;
    min-height: 0;

    top: 20% !important;
    right: -100px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0.55 !important;
    transform: none !important;

    pointer-events: none;
}

   body.hero-ready .hero-visual {
    opacity: 0.55 !important;
    transform: none !important;
    transition: none;
}

    #dot-wave {
        width: 390px;
        height: 260px;

        transform: none;
        opacity: 0.75;
    }
   /* usluge mobile */

    .statement {
        min-height: auto;
        padding: 48px 28px 90px;
    }

    .statement-inner {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .statement-title {
  width: 100%;
  max-width: none;

  font-size: clamp(36px, 10vw, 42px);
  line-height: 1.05;

  letter-spacing: -0.035em;
}

    .statement-title span {
  display: block;
  white-space: normal !important;
}

  /* MOBILE — PROJECTS HEADER */

.case-study {
  padding: 45px 28px 90px !important;
}

.projects-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.projects-header {
    display: block;
    margin-bottom: 0 !important;
}

.projects-header .section-label {
    display: block;
    margin-bottom: 24px;
}

.projects-heading {
    width: 100%;
    max-width: none;

    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.04;
}
/* projekti  */

.project-item {
    padding: 32px 0 88px;
}

.project-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 8px;
    margin-bottom: 24px;
}

.project-title {
    margin-bottom: 28px;

    font-size: clamp(38px, 11vw, 52px);
    line-height: 1;
}

.project-visual {
    width: 100%;
    height: 360px;
}  
/* MOBILE — SERVICES HEADER */

.services {
    padding: 120px 28px 140px;
}

.services-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 16px;

  margin-bottom: 36px;
}

.services-header .section-label {
    display: block;
    margin-bottom: 0;
}

.services-heading {
    width: 100%;
    max-width: none;

    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.04;
}
/* mobile */

.service-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "number arrow"
        "content content"
        "tags tags";

    gap: 18px 16px;

    min-height: auto;
    padding: 28px 0 34px;
}

.service-number {
    grid-area: number;
}

.service-content {
    grid-area: content;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.05;
}

.service-content p {
    max-width: none;
    width: 100%;
}

.service-tags {
    grid-area: tags;
    justify-self: start;
}

.service-arrow {
    grid-area: arrow;
    justify-self: end;
    align-self: start;
}

/* Na touch uređaju ne želimo desktop hover pomicanje */
.service-row:hover {
    padding-left: 0;
    padding-right: 0;
}

/* MOBILE — SERVICES ROWS */

.service-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "number arrow"
        "content content"
        "tags tags";

    gap: 18px 16px;

    min-height: auto;
    padding: 28px 0 34px;
}

.service-number {
    grid-area: number;
}

.service-content {
    grid-area: content;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.05;
}

.service-content p {
    max-width: none;
    width: 100%;
}

.service-tags {
    grid-area: tags;
    justify-self: start;
}

.service-arrow {
    grid-area: arrow;
    justify-self: end;
    align-self: start;
}

/* Na mobu */
/* Mobile — ugasi desktop hover */
.service-row:hover {
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
}

.service-row:hover .service-arrow,
.service-row:hover .service-toggle,
.service-row:hover .service-content h3 {
  transform: none !important;
}

.service-row:hover .service-content h3 {
  color: inherit !important;
}

.service-row:hover .service-number {
  color: #d0b98d !important;
}
/* o nama */

.about {
    padding: 120px 28px;
}

.about-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.about-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 56px;
}

.about-title {
    max-width: none;
    white-space: normal;

    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.02;
}

.about-copy {
    width: 100%;
    max-width: none;
}

.about-main {
  font-size: 20px;
  line-height: 1.45;
}

.about-secondary {
    max-width: none;
    margin-top: 36px;
    padding-top: 20px;
}

/* proces mobile */

.process {
    padding: 75px 28px 100px;
}

.process-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.process-header {
    display: block;
    margin-bottom: 48x;
}

.process-header .section-label {
  display: block;
  margin-bottom: 14px !important;
}

.process-heading {
    width: 100%;
    max-width: none;
    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.04;
}

.process-list {
    grid-template-columns: 1fr;
}

.process-signal {
  display: none !important;
}

.process-step {
  min-height: 0;
  padding: 28px 0 32px;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:last-child {
  border-bottom: 0;
}

.process-number {
    margin-bottom: 22px;
}

.process-step h3 {
    font-size: clamp(22px, 6vw, 28px);
}

.process-step p {
    max-width: none;
}
/* kontakt mobile */

.contact-cta {
    padding: 120px 28px 105px;
}

.contact-cta-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.contact-cta-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
    margin-top: 56px;
}

.contact-kicker {
    margin-bottom: 18px;
}

.contact-cta-heading h2 {
    max-width: none;

    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.02;
}

.contact-cta-content {
    width: 100%;
    max-width: none;
}

.contact-cta-content p {
    width: 100%;
    max-width: none;
}

.contact-cta-button {
    margin-top: 28px;
}
/* footer mobile */

.site-footer {
    padding: 72px 28px 28px;
}

.footer-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.footer-top {
    display: block;
    padding-bottom: 56px;
}

.footer-brand {
    margin-bottom: 48px;
}

.footer-logo img {
    width: 180px;
    transform: translateX(-10px);
}

.footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 18px 24px;
    align-items: center;
    padding-top: 24px;
    padding-right: 72px;
}

.footer-bottom > * {
    min-width: 0;
}

/* zasto format 01 */

.details {
    min-height: auto;
    display: block;
    padding: 120px 28px 75px;
}

.details-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.details-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 56px;
}

.details-title {
    max-width: none;
    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.02;
}

.details-text {
    width: 100%;
    max-width: none;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 1.75;
}

/* mobilni meni */

.mobile-menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;

    position: relative;
    z-index: 1202;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 1px solid rgba(241, 240, 236, 0.18);
    border-radius: 50%;

    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;

    background: #f1f0ec;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.main-nav {
    display: flex;

    position: fixed;
    inset: 0;
    
    width: 100vw;
    height: 100svh;

    z-index: 1200;

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;

    padding: 120px 28px 170px;

    background: #06080a;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

.main-nav a {
    font-family: "Sora", sans-serif;
    font-size: clamp(34px, 10vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.04em;

    color: #8d969f;
    text-decoration: none;
}

.header-actions {
    display: flex;

    position: fixed;
    left: 28px;
    right: 28px;
    bottom: 32px;
    z-index: 1201;

    align-items: center;
    justify-content: space-between;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

body.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.menu-open .header-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.menu-open .logo {
    z-index: 1202;
}

body.menu-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* o formatu */

.about-title {
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.05;
    white-space: normal;
}

.about-main {
    font-size: clamp(20px, 5.5vw, 22px);
    line-height: 1.5;
}

.about-secondary {
    font-size: 14px;
    line-height: 1.7;
}

.footer-mark {
    display: none;
}

/* forma za upit */

.project-form.is-open {
    margin-top: 56px;
    padding-top: 44px;
}

.project-form-header {
    margin-bottom: 36px;
}

.project-form-header h3 {
    font-size: 30px;
}

.project-form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
}

.project-field-wide {
    grid-column: auto;
}

.project-form-submit {
    width: 100%;
    justify-content: space-between;

    margin-top: 34px;
}

}

 
@media (min-width: 769px) {

    .pricing {
        padding: 160px 64px 180px;
    }

    .pricing-inner {
        width: 100%;
        max-width: 1500px;
        margin: 0 auto;
    }

    .pricing-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 36px;

  margin-bottom: 80px;
}

    .pricing-heading {
        max-width: 760px;
    }

    .pricing-list {
        width: 100%;
        margin-left: 0;
    }

    .pricing-trigger {
        grid-template-columns:
            70px
            minmax(0, 1fr)
            180px
            30px;

        grid-template-areas: none;

        gap: 30px;

        min-height: 104px;
        padding: 28px 0;
    }

    .pricing-number,
    .pricing-name,
    .pricing-price,
    .pricing-icon {
        grid-area: auto;
    }

    .pricing-name {
        font-size: clamp(16px, 1.05vw, 19px);
        font-weight: 400;

        letter-spacing: -0.01em;
        text-transform: none;
    }

    .pricing-price {
        justify-self: end;

        font-size: 12px;
        text-transform: none;

        color: #b8a27c;
    }

    .pricing-icon {
        justify-self: end;
    }

    .pricing-trigger:hover {
        padding-left: 14px;
        padding-right: 14px;
    }

    .pricing-content p {
        max-width: 900px;

        padding:
            0
            220px
            0
            100px;

        font-size: 14px;
        line-height: 1.8;
    }

    .pricing-item.is-open .pricing-content p {
        padding-bottom: 34px;
    }

    .pricing-note {
        width: 100%;
        max-width: 720px;

        margin: 34px 0 0;
    }
}

@media (min-width: 769px) {

    .hero-visual {
        position: absolute;

        width: 58vw;
        height: 620px;

        right: -6vw;
        top: 50%;

        transform: translateY(-50%);

        opacity: 0.82;

        pointer-events: none;
    }

    #dot-wave {
        width: 100%;
        height: 100%;

        transform: none;
        opacity: 1;

        filter:
            drop-shadow(0 0 35px rgba(185, 194, 204, 0.07))
            drop-shadow(0 0 90px rgba(185, 194, 204, 0.035));
    }
}

@media (min-width: 769px) {

    .hero {
    min-height: 88vh;
    padding-top: 100px;
    padding-bottom: 90px;

    overflow: hidden;
}

.hero-visual {
    width: 86vw;
    height: 980px;

    right: -17vw;
    top: 31%;

    transform: translateY(-50%) scaleY(1.55);

    opacity: 0.52;

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            black 14%,
            black 82%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            black 14%,
            black 82%,
            transparent 100%
        );
}

    #dot-wave {
        width: 100%;
        height: 100%;

        transform: none;

        filter:
            blur(0.15px)
            drop-shadow(0 0 45px rgba(185, 194, 204, 0.07))
            drop-shadow(0 0 120px rgba(185, 194, 204, 0.035));
    }
}

/* =========================
   HERO BINARY VISUAL
========================= */

.hero-visual.hero-binary-lines {
  position: absolute;

  width: 64vw;
  height: auto;

  right: -5vw;
  top: 44%;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 26px;

  z-index: 1;
  overflow: hidden;

  opacity: 0.7;

  pointer-events: none;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 78%,
    transparent 100%
  );

  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 78%,
    transparent 100%
  );
}

.hero-visual.hero-binary-lines span {
  display: block;

  width: max-content;
  min-width: 100%;

  white-space: nowrap;

  font-family: "Sora", sans-serif;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 300;

  line-height: 1;

  letter-spacing: 0.42em;

  color: rgba(185, 194, 204, 0.17);
}

.hero-visual.hero-binary-lines span:nth-child(1) {
  transform: translateX(4%);
  opacity: 0.45;
}

.hero-visual.hero-binary-lines span:nth-child(2) {
  transform: translateX(-3%);
  opacity: 0.7;
}

.hero-visual.hero-binary-lines span:nth-child(3) {
  transform: translateX(7%);
  opacity: 1;
}

.hero-visual.hero-binary-lines span:nth-child(4) {
  transform: translateX(-5%);
  opacity: 0.72;
}

.hero-visual.hero-binary-lines span:nth-child(5) {
  transform: translateX(3%);
  opacity: 0.5;
}


/* MOBILE */

@media (max-width: 768px) {

  .hero-visual.hero-binary-lines {
    width: 120%;
    right: -38%;
    top: 43%;

    gap: 18px;

    opacity: 0.48;
  }

  .hero-visual.hero-binary-lines span {
    font-size: 14px;
    letter-spacing: 0.32em;
  }
}
@keyframes binaryDriftRight {
  0% {
    transform: translateX(-2%);
  }

  50% {
    transform: translateX(2%);
  }

  100% {
    transform: translateX(-2%);
  }
}

@keyframes binaryDriftLeft {
  0% {
    transform: translateX(2%);
  }

  50% {
    transform: translateX(-2%);
  }

  100% {
    transform: translateX(2%);
  }
}

.hero-visual.hero-binary-lines span:nth-child(1),
.hero-visual.hero-binary-lines span:nth-child(3),
.hero-visual.hero-binary-lines span:nth-child(5) {
  animation: binaryDriftRight 14s ease-in-out infinite;
}

.hero-visual.hero-binary-lines span:nth-child(2),
.hero-visual.hero-binary-lines span:nth-child(4) {
  animation: binaryDriftLeft 16s ease-in-out infinite;
}
/* HERO BINARY — DESKTOP FINAL LAYOUT */

@media (min-width: 769px) {

  .hero-visual.hero-binary-lines {
    width: 62vw;

    right: -3vw;
    top: 43%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 24px;

    opacity: 0.62;

    overflow: hidden;

    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 8%,
      black 22%,
      black 84%,
      transparent 100%
    );

    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 8%,
      black 22%,
      black 84%,
      transparent 100%
    );
  }

  .hero-visual.hero-binary-lines span {
    width: max-content;
    min-width: 115%;

    font-size: clamp(17px, 1vw, 22px);
    letter-spacing: 0.38em;

    color: rgba(185, 194, 204, 0.18);
  }
}

.hero-visual.hero-binary-lines span:nth-child(6) {
  animation: binaryDriftLeft 18s ease-in-out infinite;
}

.hero-visual.hero-binary-lines span:nth-child(7) {
  animation: binaryDriftRight 20s ease-in-out infinite;
}

.hero-visual.hero-binary-lines span:nth-child(8) {
  animation: binaryDriftLeft 22s ease-in-out infinite;
}

/* HERO BINARY — slower movement */

.hero-visual.hero-binary-lines span:nth-child(1) {
  animation-duration: 38s;
}

.hero-visual.hero-binary-lines span:nth-child(2) {
  animation-duration: 44s;
}

.hero-visual.hero-binary-lines span:nth-child(3) {
  animation-duration: 50s;
}

.hero-visual.hero-binary-lines span:nth-child(4) {
  animation-duration: 42s;
}

.hero-visual.hero-binary-lines span:nth-child(5) {
  animation-duration: 56s;
}

.hero-visual.hero-binary-lines span:nth-child(6) {
  animation-duration: 46s;
}

.hero-visual.hero-binary-lines span:nth-child(7) {
  animation-duration: 60s;
}

.hero-visual.hero-binary-lines span:nth-child(8) {
  animation-duration: 52s;
}
@media (min-width: 769px) {

  .hero-visual.hero-binary-lines {
    top: 31%;
    height: 185px;

    transform: none;

    justify-content: space-between;
    gap: 0;
  }
}

/* PREMIUM DRUNK BINARY */

.hero-visual.hero-binary-lines span {
  will-change: transform, opacity, filter;
  animation-name: binaryFloat !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
}

.hero-visual.hero-binary-lines span:nth-child(1) {
  --x: 18px;
  animation-duration: 18s !important;
  animation-delay: -2s;
}

.hero-visual.hero-binary-lines span:nth-child(2) {
  --x: -14px;
  animation-duration: 22s !important;
  animation-delay: -7s;
}

.hero-visual.hero-binary-lines span:nth-child(3) {
  --x: 22px;
  animation-duration: 20s !important;
  animation-delay: -11s;
}

.hero-visual.hero-binary-lines span:nth-child(4) {
  --x: -18px;
  animation-duration: 24s !important;
  animation-delay: -4s;
}

.hero-visual.hero-binary-lines span:nth-child(5) {
  --x: 15px;
  animation-duration: 21s !important;
  animation-delay: -14s;
}

.hero-visual.hero-binary-lines span:nth-child(6) {
  --x: -20px;
  animation-duration: 25s !important;
  animation-delay: -9s;
}

.hero-visual.hero-binary-lines span:nth-child(7) {
  --x: 17px;
  animation-duration: 23s !important;
  animation-delay: -16s;
}

.hero-visual.hero-binary-lines span:nth-child(8) {
  --x: -13px;
  animation-duration: 19s !important;
  animation-delay: -6s;
}

@keyframes binaryFloat {
  0% {
    transform: translate3d(0, 0, 0);
    filter: blur(0.1px);
  }

  20% {
    transform: translate3d(calc(var(--x) * 0.55), -2px, 0);
    filter: blur(0.35px);
  }

  42% {
    transform: translate3d(calc(var(--x) * -0.35), 3px, 0);
    filter: blur(0.55px);
  }

  63% {
    transform: translate3d(var(--x), -1px, 0);
    filter: blur(0.25px);
  }

  82% {
    transform: translate3d(calc(var(--x) * -0.2), 2px, 0);
    filter: blur(0.45px);
  }

  100% {
    transform: translate3d(0, 0, 0);
    filter: blur(0.1px);
  }
}
/* =========================
   HERO BINARY — MOBILE FIX
========================= */

@media (max-width: 768px) {

  .hero-visual.hero-binary-lines {
    width: 145%;
    height: 150px;

    right: -92%;
    top: 25%;

    transform: none;

    justify-content: space-between;
    gap: 0;

    opacity: 0.38;

    overflow: hidden;

    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 12%,
      black 45%,
      black 85%,
      transparent 100%
    );

    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 12%,
      black 45%,
      black 85%,
      transparent 100%
    );
  }

  .hero-visual.hero-binary-lines span {
    font-size: 12px;
    letter-spacing: 0.26em;

    color: rgba(185, 194, 204, 0.14);
  }

  .hero-visual.hero-binary-lines span:nth-child(n+6) {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

.statement-title span {
  white-space: nowrap;
}
/* ========================================
   HERO — FORMAT 01 MARK
======================================== */

.hero-mark {
  position: relative;
  width: 370px;
  aspect-ratio: 1 / 1;

transform: translate(-32px, -18px);

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;

  
  overflow: hidden;
}

.hero-mark::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(241, 240, 236, 0.035);
  pointer-events: none;
}

.hero-mark::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 162, 124, 0.28),
    transparent
  );

  opacity: 0;
  pointer-events: none;

  animation: heroMarkScan 5s ease-in-out infinite;
}

@keyframes heroMarkScan {
  0%,
  72% {
    top: 16px;
    opacity: 0;
  }

  76% {
    opacity: 0.55;
  }

  92% {
    top: calc(100% - 16px);
    opacity: 0.22;
  }

  100% {
    top: calc(100% - 16px);
    opacity: 0;
  }
}

.hero-mark-logo {
  position: relative;
  z-index: 2;

  width: 64%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark-logo img {
  display: block;
  width: 100%;
  height: auto;

  opacity: 0.88;
}

.hero-mark-code {
  position: absolute;
  left: 18px;

  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.15em;

  color: rgba(184, 162, 124, 0.42);

  z-index: 3;
}

.hero-mark-code-top {
  top: 18px;
}

.hero-mark-code-bottom {
  bottom: 18px;
}

.hero-mark-id {
  position: absolute;
  right: 18px;
  bottom: 18px;

  font-family: "Sora", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;

  color: rgba(241, 240, 236, 0.32);

  z-index: 3;
}

/* ========================================
   HERO — FINAL LAYOUT
   TEXT LEFT / F01 RIGHT
======================================== */

.hero-layout {
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 90px !important;
}

.hero-content {
  order: 0 !important;
  flex: 0 1 760px !important;
}

.hero-blueprint {
  order: 0 !important;
  flex: 0 0 370px !important;

  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  transform: translate(60px, -18px) !important;
}

/* =========================================
   HERO LOGO BUILD ANIMATION
========================================= */

.hero-mark-logo.build-logo {
  position: relative;
  width: 150px;
  height: 95px;
}

.hero-mark-logo.build-logo .logo-seg {
  position: absolute;
  display: block;
  opacity: 0;
  filter: blur(6px);
  transform: scale(0.88) translateY(8px);
  will-change: transform, opacity, filter;
}

.hero-mark-logo.build-logo.play .logo-seg {
  animation: logoBuildIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* F */
.hero-mark-logo.build-logo .f-stem {
  left: 16px;
  top: 26px;
  width: 8px;
  height: 46px;
  background: #f1f0ec;
  border-radius: 2px;
  animation-delay: 0.08s;
}

.hero-mark-logo.build-logo .f-top {
  left: 16px;
  top: 26px;
  width: 42px;
  height: 8px;
  background: #f1f0ec;
  border-radius: 2px;
  animation-delay: 0.18s;
}

.hero-mark-logo.build-logo .f-mid {
  left: 16px;
  top: 44px;
  width: 30px;
  height: 8px;
  background: #f1f0ec;
  border-radius: 2px;
  animation-delay: 0.30s;
}

/* O */
.hero-mark-logo.build-logo .o-ring {
  left: 50px;
  top: 18px;
  width: 54px;
  height: 54px;
  border: 8px solid #f1f0ec;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  animation-delay: 0.44s;
}

/* 1 */
.hero-mark-logo.build-logo .one {
  left: 108px;
  top: 18px;
  width: 8px;
  height: 54px;
  background: #f1f0ec;
  border-radius: 2px;
  animation-delay: 0.58s;
}

/* scan line */
.hero-mark-logo.build-logo::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(241, 240, 236, 0.00) 35%,
    rgba(241, 240, 236, 0.18) 50%,
    rgba(241, 240, 236, 0.00) 65%,
    transparent 100%
  );
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
}

.hero-mark-logo.build-logo.play::before {
  animation: logoScan 1.1s ease-out forwards;
}

@keyframes logoBuildIn {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: scale(0.88) translateY(8px);
  }
  55% {
    opacity: 1;
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
  }
}

@keyframes logoScan {
  0% {
    opacity: 0;
    transform: translateX(-140%);
  }
  15% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateX(120%);
  }
  100% {
    opacity: 0;
    transform: translateX(140%);
  }
}

/* ========================================
   HERO — PIXEL BUILD LOGO V2
======================================== */

.hero-mark-logo.pixel-build-logo {
  position: relative;

  width: 64%;
  max-width: 250px;
  height: 110px;

  display: block;
  overflow: visible;

  z-index: 2;
}

/* Pravi F01 logo */
.hero-mark-logo.pixel-build-logo .pixel-build-image {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: auto;

  transform: translate(-50%, -50%) scale(0.96);

  opacity: 0;
  filter: blur(7px);

  z-index: 2;
}

/* Prostor u kojem će JS napraviti sitne blokove */
.pixel-build-grid {
  position: absolute;
  inset: 0;

  pointer-events: none;
  z-index: 3;
}

/* Jedan mali digitalni blok */
.pixel-build-chip {
  position: absolute;

  width: 6px;
  height: 6px;

  background: rgba(241, 240, 236, 0.88);

  opacity: 0;

  transform:
    translate(var(--start-x), var(--start-y))
    scale(0.35);

  will-change: transform, opacity;
}

/* Kad JS pokrene animaciju */
.pixel-build-logo.is-building .pixel-build-chip {
  animation:
    pixelAssemble 1.15s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;

  animation-delay: var(--delay);
}

/* Pravi logo se pojavljuje tek pred kraj */
.pixel-build-logo.is-building .pixel-build-image {
  animation:
    pixelLogoReveal 0.75s
    cubic-bezier(0.22, 1, 0.36, 1)
    0.15s
    forwards;
}

@keyframes pixelAssemble {
  0% {
    opacity: 0;
    transform:
      translate(var(--start-x), var(--start-y))
      scale(0.35);
  }

  18% {
    opacity: 0.8;
  }

  55% {
    opacity: 1;
  }

  82% {
    opacity: 0.75;
    transform:
      translate(0, 0)
      scale(1);
  }

  100% {
    opacity: 0;
    transform:
      translate(0, 0)
      scale(0.3);
  }
}

@keyframes pixelLogoReveal {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform:
      translate(-50%, -50%)
      scale(0.96);
  }

  55% {
    opacity: 0.9;
    filter: blur(1px);
  }

  100% {
    opacity: 0.88;
    filter: blur(0);
    transform:
      translate(-50%, -50%)
      scale(1);
  }
}

/* ========================================
   HERO — FRAME BUILD
======================================== */

/* Stari gotovi okvir zasad sakrij */
.hero-mark {
  border-color: transparent;
}

/* I unutarnji stari okvir sakrij */
.hero-mark::before {
  opacity: 0;
}

/* Stari scan zasad ne pokreći */
.hero-mark::after {
  animation: none;
  opacity: 0;
}

/* Binary oznake i FORMAT / 01 čekaju boot */
.hero-mark-code,
.hero-mark-id {
  opacity: 0;
}

/* Layer za crtanje okvira */
.hero-frame-build {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-frame-line {
  position: absolute;
  display: block;
  background: rgba(241, 240, 236, 0.16);
}

/* Gornja linija */
.frame-top {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
}

/* Desna */
.frame-right {
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
}

/* Donja */
.frame-bottom {
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
}

/* Lijeva */
.frame-left {
  left: 0;
  bottom: 0;
  width: 1px;
  height: 0;
}

/* Početna signalna točka */
.hero-frame-origin {
  position: absolute;
  top: -2px;
  left: -2px;

  width: 5px;
  height: 5px;

  border-radius: 50%;
  background: rgba(184, 162, 124, 0.85);

  opacity: 0;
  transform: scale(0.3);

  box-shadow: 0 0 12px rgba(184, 162, 124, 0.18);
}

/* Kad JS pokrene cijeli boot */
.hero-mark.is-booting .hero-frame-origin {
  animation: heroOrigin 0.45s ease forwards;
}

.hero-mark.is-booting .frame-top {
  animation: frameTop 0.8s ease forwards 0.5s;
}

.hero-mark.is-booting .frame-right {
  animation: frameRight 0.8s ease forwards 1.25s;
}

.hero-mark.is-booting .frame-bottom {
  animation: frameBottom 0.8s ease forwards 2s;
}

.hero-mark.is-booting .frame-left {
  animation: frameLeft 0.8s ease forwards 2.75s;
}

/* Binary detalji se pojave tek kad je okvir gotov */
.hero-mark.is-booting .hero-mark-code,
.hero-mark.is-booting .hero-mark-id {
  animation: heroMetaReveal 0.7s ease forwards 3.5s;
}

@keyframes heroOrigin {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  55% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.7;
    transform: scale(0.75);
  }
}

@keyframes frameTop {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes frameRight {
  from { height: 0; }
  to { height: 100%; }
}

@keyframes frameBottom {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes frameLeft {
  from { height: 0; }
  to { height: 100%; }
}

@keyframes heroMetaReveal {
  from {
    opacity: 0;
    filter: blur(3px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* ========================================
   HERO — PIXEL CONSTRUCTION FROM BOTTOM
======================================== */

/* Novi pixel layer preko cijelog kvadrata */
.hero-pixel-field {
  position: absolute;
  inset: 0;
  z-index: 8;
  overflow: visible;
  pointer-events: none;
}

/* Jedan construction pixel */
.hero-construct-pixel {
  position: absolute;

  width: 4px;
  height: 4px;

  background: rgba(241, 240, 236, 0.82);

  opacity: 0;

  transform:
    translate(
      var(--start-x),
      var(--start-y)
    )
    scale(0.4);

  will-change: transform, opacity;
}

/* Kad novi JS pokrene gradnju */
.hero-mark.is-constructing .hero-construct-pixel {
  animation:
    heroPixelRise 2.4s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;

  animation-delay: var(--delay);
}

/* UGASI stari način crtanja okvira */
.hero-mark.is-booting .hero-frame-origin,
.hero-mark.is-booting .frame-top,
.hero-mark.is-booting .frame-right,
.hero-mark.is-booting .frame-bottom,
.hero-mark.is-booting .frame-left {
  animation: none !important;
  opacity: 0 !important;
}

/* Dok se gradi, pravi frame/logo još nisu vidljivi */
.hero-mark .pixel-build-image {
  opacity: 0;
}

.hero-mark-code,
.hero-mark-id {
  opacity: 0;
}

/* Kad konstrukcija završi — finalni čisti element */
.hero-mark.is-constructed {
 border: 1px solid rgba(241, 240, 236, 0.18);
}

.hero-mark.is-constructed::before {
  opacity: 1;
}

.hero-mark.is-constructed .pixel-build-image {
  animation: finalLogoResolve 1.6s ease forwards;
}

.hero-mark.is-constructed .hero-construct-pixel {
  animation: finalPixelFade 1.4s ease forwards;
}

@keyframes finalLogoResolve {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translate(-50%, -50%) scale(0.98);
  }

  55% {
    opacity: 0.55;
    filter: blur(2px);
  }

  100% {
    opacity: 0.88;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes finalPixelFade {
  0% {
    opacity: 1;
  }

  45% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
  }
}

.hero-mark.is-constructed .hero-mark-code,
.hero-mark.is-constructed .hero-mark-id {
  opacity: 1;
}

/* Pixel dolazi OD DNA prema svojoj finalnoj poziciji */
@keyframes heroPixelRise {
  0% {
    opacity: 0;
    transform:
      translate(
        var(--start-x),
        var(--start-y)
      )
      scale(0.25);
  }

  25% {
    opacity: 0.35;
  }

  55% {
    opacity: 0.9;
  }

  82% {
    opacity: 1;
    transform:
      translate(0, 0)
      scale(1.15);
  }

  100% {
    opacity: 1;
    transform:
      translate(0, 0)
      scale(1);
  }
}

/* ========================================
   HERO — PIXEL WAVE LEAVES LOGO BEHIND
======================================== */

/* Gotovi okvir postoji, ali je na početku odrezan odozdo */
.hero-frame-build {
  border: 1px solid rgba(241, 240, 236, 0.10);

  clip-path: inset(100% 0 0 0);

  z-index: 4;
}

/* Stare 4 crtane linije više ne trebamo */
.hero-frame-build .hero-frame-line,
.hero-frame-build .hero-frame-origin {
  display: none !important;
}

/* Pravi logo je spreman, ali skriven odozdo */
.hero-mark .pixel-build-image {
  opacity: 0.88;

  filter: blur(0);

  transform:
    translate(-50%, -50%)
    scale(1);

  clip-path: inset(100% 0 0 0);
}

/* Kad krenu pixeli, KVADRAT se otkriva odozdo prema gore */
.hero-mark.is-constructing .hero-frame-build {
  animation:
    frameRevealFromBottom
    2.8s
    cubic-bezier(0.35, 0, 0.2, 1)
    forwards;
}

/* I F01 se otkriva ISTIM smjerom */
.hero-mark.is-constructing .pixel-build-image {
  animation:
    logoRevealFromBottom
    2.35s
    steps(26, end)
    0.35s
    forwards;
}

/* Detalji tek pri vrhu */
.hero-mark.is-constructing .hero-mark-code,
.hero-mark.is-constructing .hero-mark-id {
  animation:
    heroMetaFinalReveal
    0.45s
    ease
    2.45s
    forwards;
}

/* Kad završi, sve ostaje potpuno vidljivo */
.hero-mark.is-constructed .hero-frame-build,
.hero-mark.is-constructed .pixel-build-image {
  clip-path: inset(0 0 0 0);
}

@keyframes frameRevealFromBottom {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes logoRevealFromBottom {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroMetaFinalReveal {
  from {
    opacity: 0;
    filter: blur(3px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}
/* ========================================
   HERO — PIXEL SHAKE / SPILL / CLEAN LOCK
======================================== */

/* Čisti logo je točno ispod pixela.
   NEMA scale animacije, NEMA plutanja. */
.hero-mark.is-resolving .pixel-build-image {
  animation: heroCleanLogoLock 1.45s linear forwards;
}


/* Nakon trzaja svaki pixel odlazi svojim smjerom */
.hero-mark.is-resolving .hero-construct-pixel {
  animation:
    heroPixelReverse 1.6s
    cubic-bezier(0.4, 0, 0.2, 1)
    var(--reverse-delay)
    both !important;
}
/* Dok se pixeli prosipaju, pojavljuje se čisti okvir */
.hero-mark.is-resolving {
  animation: heroFrameLock 1.2s ease 0.3s forwards;
}

/* Finalno stanje */
.hero-mark.is-constructed {
  border: 1px solid rgba(241, 240, 236, 0.18);
}

.hero-mark.is-constructed .pixel-build-image {
  opacity: 0.88;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
}

.hero-mark.is-constructed .hero-construct-pixel {
  opacity: 0 !important;
}

@keyframes heroPixelReverse {
  0% {
    opacity: 1;
    transform:
      translate(0, 0)
      scale(1);
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform:
      translate(
        var(--start-x),
        var(--start-y)
      )
      scale(0.35);
  }
}

/* Čisti F01 ne leti prema nama.
   Samo se pojavljuje NA ISTOM MJESTU. */
@keyframes heroCleanLogoLock {
  0% {
    opacity: 0;
    filter: none;
    transform: translate(-50%, -50%) scale(1);
  }

  35% {
    opacity: 0;
  }

  60% {
    opacity: 0.35;
  }

  100% {
    opacity: 0.88;
    filter: none;
    transform: translate(-50%, -50%) scale(1);
  }
}


/* Čisti okvir ostane iza pixel okvira */
@keyframes heroFrameLock {
  from {
    border-color: rgba(241, 240, 236, 0);
  }

  to {
    border-color: rgba(241, 240, 236, 0.18);
  }
}

.hero-mark::before {
  display: none !important;
}


.hero-mark.is-resolving,
.hero-mark.is-constructed {
  border: 1px solid rgba(241, 240, 236, 0.18);
}

/* CLEAN F01 — skriven dok traje build */
.hero-mark .pixel-build-image {
  opacity: 0 !important;
  visibility: hidden !important;
  filter: none !important;
  transform: translate(-50%, -50%) scale(1) !important;
  animation: none !important;
}

/* Reverse kreće:
   čisti F01 odmah stoji ISPOD pixel verzije */
.hero-mark.is-resolving .pixel-build-image {
  opacity: 0.88 !important;
  visibility: visible !important;
  filter: none !important;
  transform: translate(-50%, -50%) scale(1) !important;

  clip-path: inset(0 0 100% 0);

  animation:
    revealCleanF01 4s
    linear
    forwards !important;
}

@keyframes revealCleanF01 {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* Finalno stanje */
.hero-mark.is-constructed .pixel-build-image {
  opacity: 0.88 !important;
  visibility: visible !important;
  filter: none !important;
  transform: translate(-50%, -50%) scale(1) !important;
  animation: none !important;
}

/* ========================================
   HERO — FINAL CLEAN LOGO REVEAL
======================================== */

/* Tijekom BUILD-a pravi PNG ne postoji vizualno */
.hero-mark:not(.is-resolving):not(.is-constructed) .pixel-build-image {
  opacity: 0 !important;
  visibility: hidden !important;
  clip-path: inset(0 0 100% 0) !important;
  animation: none !important;
}

/* Reverse počinje:
   clean F01 se otkriva ISTIM valom od vrha prema dnu */
.hero-mark.is-resolving .pixel-build-image {
  visibility: visible !important;
  opacity: 0.88 !important;

  filter: none !important;
  transform: translate(-50%, -50%) scale(1) !important;

  clip-path: inset(0 0 100% 0);

  animation:
  cleanF01TopDown 2.4s
  linear
  1.05s
  forwards !important;
}

/* Kad reverse završi */
.hero-mark.is-constructed .pixel-build-image {
  visibility: visible !important;
  opacity: 0.88 !important;

  filter: none !important;
  transform: translate(-50%, -50%) scale(1) !important;

  clip-path: inset(0 0 0 0) !important;
  animation: none !important;
}

@keyframes cleanF01TopDown {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

.hero-frame-origin {
  display: none !important;
}

.pixel-build-grid {
  display: none !important;
}

.hero-frame-build {
  display: none !important;
}

/* ========================================
   FINAL MOBILE HERO
======================================== */

@media (max-width: 768px) {

  .hero {
    min-height: auto !important;
    padding: 110px 28px 90px !important;
  }

  .hero-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 38px !important;
  }

  .hero-content {
    order: 1 !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .hero-blueprint {
  order: 2 !important;

  flex: none !important;
  width: 270px !important;
  max-width: calc(100vw - 56px) !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
align-self: flex-start !important;

  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  transform: none !important;
  box-sizing: border-box !important;
}

.hero-blueprint-square {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  box-sizing: border-box !important;
}

.hero-mark {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1 !important;

  margin: 0 auto !important;

  transform: none !important;
}

  .hero-title {
    font-size: clamp(42px, 12vw, 56px) !important;
    line-height: 0.98 !important;
  }



.hero-button {
  padding: 12px 18px !important;
  font-size: 12px !important;
}

.hero-link {
  font-size: 12px !important;
}



/* MOBILE — CASE STUDY HEADER */

.case-study {
  padding: 30px 28px 90px !important;
}

.case-study-inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.case-study-heading {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  margin-top: 22px !important;
}

.case-study-heading h2 {
  width: 100% !important;
  max-width: none !important;

  font-size: clamp(36px, 10vw, 46px) !important;
  line-height: 1.02 !important;
}

.case-study-heading p {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;

  font-size: 13px !important;
  line-height: 1.7 !important;
}

/* MOBILE — PROJECTS / CASE FINAL ALIGNMENT */

.projects {
  padding-bottom: 20px !important;
}

.projects-header {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  text-align: left !important;
}

.projects-header .section-label,
.projects-heading {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
}

.case-study {
  padding-top: 20px !important;
}

.case-study-header {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-top: 12px !important;
  text-align: left !important;
}

.case-study-header > .section-label,
.case-study-heading,
.case-study-heading h2,
.case-study-heading p {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
}

/* ========================================
   FINAL MOBILE — PROJECT SPACING
======================================== */

@media (max-width: 768px) {

  .projects {
    padding: 120px 28px 20px !important;
  }

  .projects-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .projects-header {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .case-study {
    padding: 20px 28px 90px !important;
  }

  .projects-heading,
.case-study-heading h2 {
  margin-left: -3px !important;
}

/* MOBILE — CASE STUDY POINTS */

.case-study-points article {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;

  padding: 24px 0 28px !important;

  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.case-study-points article {
  width: 100% !important;
  min-width: 0 !important;

  padding: 30px 0 !important;

  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
}

/* MOBILE — CASE STUDY POINTS FINAL */

.case-study-points {
  display: grid !important;
  grid-template-columns: 1fr !important;
  width: 100% !important;
  gap: 0 !important;
}

.case-study-points article {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;

  padding: 18px 0 30px !important;

  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
}

/* MOBILE — CASE STUDY LOGO CARDS */

.case-study-showcase-panel {
  height: 300px !important;
  min-height: 0 !important;
}

.case-study-showcase {
  margin-top: 55px !important;
}

/* MOBILE — UPCOMING PROJECTS */

.case-study-upcoming-row {
  display: grid !important;
  grid-template-columns: 42px 1fr !important;
  align-items: center !important;
  gap: 0 !important;
  width: 100% !important;
}

.case-study-upcoming-row > *:nth-child(n+3) {
  display: none !important;
}

.case-study-upcoming-row > *:nth-child(2) {
  text-align: left !important;
  margin: 0 !important;
}

.services {
  padding-top: 40px !important;
}

.case-study-upcoming-row a,
.case-study-upcoming-row h3,
.case-study-upcoming-row .case-study-upcoming-title {
  font-size: 12px !important;
  line-height: 1.08 !important;
}

.case-study-upcoming-header span {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
}

.case-study-upcoming-header {
  padding: 18px 0 !important;
  margin: 0 !important;
}

.case-study-upcoming-row {
  min-height: 0 !important;
  padding: 18px 0 !important;
  margin: 0 !important;
}

/* MOBILE — SERVICE DETAILS FINAL */

.service-details {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.service-details-inner {
  display: flex !important;
  flex-direction: column !important;

  width: 100% !important;
  max-width: none !important;

  gap: 18px !important;

  padding: 24px 0 30px !important;
}

.service-details-inner > * {
  grid-column: auto !important;
  grid-row: auto !important;
}

.service-details-kicker {
  display: block !important;
  margin: 0 !important;
}

.service-details-text {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;

  font-size: 13px !important;
  line-height: 1.65 !important;
}

.service-details-list {
  display: flex !important;
  flex-wrap: wrap !important;

  width: 100% !important;

  gap: 8px !important;
  margin: 2px 0 0 !important;
}

.service-details-list span {
  flex: 0 1 auto !important;

  max-width: 100% !important;

  padding: 8px 10px !important;

  white-space: normal !important;
}

.service-details-cta {
  display: inline-flex !important;
  align-self: flex-start !important;

  margin-top: 4px !important;
}

/* MOBILE — SERVICE DETAILS COMPACT */

.service-row {
  padding-top: 20px !important;
  padding-bottom: 22px !important;
}

.service-details-inner {
  gap: 12px !important;
  padding: 14px 0 18px !important;
}

.service-details-kicker {
  font-size: 12px !important;
}

.service-details-text {
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.service-details-list {
  gap: 6px !important;
}

.service-details-list span {
  padding: 6px 9px !important;
  font-size: 11px !important;
}

.service-details-cta {
  margin-top: 0 !important;
  font-size: 12px !important;
}

/* MOBILE — SERVICE DETAILS COMPACT */

.service-row {
  padding-top: 20px !important;
  padding-bottom: 22px !important;
}

.service-details-inner {
  gap: 12px !important;
  padding: 14px 0 18px !important;
}

.service-details-kicker {
  font-size: 12px !important;
}

.service-details-text {
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.service-details-list {
  gap: 6px !important;
}

.service-details-list span {
  padding: 6px 9px !important;
  font-size: 11px !important;
}

.service-details-cta {
  margin-top: 0 !important;
  font-size: 12px !important;
}

/* MOBILE — CLOSED SERVICES EXTRA COMPACT */

.service-row:has(.service-toggle[aria-expanded="false"]) {
  padding-top: 10px !important;
  padding-bottom: 12px !important;
  gap: 6px 12px !important;
}

.service-row:has(.service-toggle[aria-expanded="false"]) .service-content h3 {
  margin: 0 !important;
  font-size: 19px !important;
  line-height: 1.02 !important;
}

.services {
  padding-bottom: 55px !important;
}

.service-row:has(.service-toggle[aria-expanded="false"]) .service-action-label {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

/* =========================================
   MOBILE — SERVICES FINAL ALIGNMENT
========================================= */

.service-row {
  display: grid !important;

  grid-template-columns: 34px minmax(0, 1fr) 18px !important;
  grid-template-areas:
    "number content arrow"
    ". label arrow"
    "details details details" !important;

  column-gap: 10px !important;
  row-gap: 3px !important;

  min-height: 0 !important;
  padding: 15px 0 !important;

  align-items: start !important;
  background: transparent !important;
}

/* broj lijevo */
.service-number {
  grid-area: number !important;

  margin: 2px 0 0 !important;

  font-size: 10px !important;
  line-height: 1 !important;
}

/* naslov */
.service-content {
  grid-area: content !important;
  width: 100% !important;
}

.service-content h3,
.service-accordion.is-open .service-content h3 {
  margin: 0 !important;

  font-size: 18px !important;
  line-height: 1.12 !important;
  font-weight: 400 !important;

  transform: none !important;
}

/* DETALJI */
.service-action-label {
  grid-area: label !important;

  margin: 3px 0 0 !important;

  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
}

/* + / x desno */
.service-toggle {
  grid-area: arrow !important;

  align-self: start !important;
  justify-self: end !important;

  margin: 1px 0 0 !important;

  transform: none !important;
}

/* otvoreni sadržaj */
.service-details {
  grid-area: details !important;

  width: 100% !important;
  max-width: 100% !important;
}

/* sadržaj otvorene usluge poravnaj ispod naslova */
.service-details-inner {
  width: auto !important;
  max-width: none !important;

  margin-left: 44px !important;
  padding: 16px 0 8px !important;

  gap: 11px !important;
}

/* malo kompaktniji otvoreni tekst */
.service-details-kicker {
  font-size: 10px !important;
}

.service-details-text {
  font-size: 11px !important;
  line-height: 1.55 !important;
}

.service-details-list span {
  padding: 5px 8px !important;
  font-size: 10px !important;
}

.service-details-cta {
  font-size: 11px !important;
}

/* =========================================
   MOBILE — CLOSED SERVICES LIKE PRICING
========================================= */

.service-row:has(.service-toggle[aria-expanded="false"]) {
  display: grid !important;

  grid-template-columns: 34px minmax(0, 1fr) 18px !important;
  grid-template-areas:
    "number content arrow"
    ". label arrow" !important;

  column-gap: 14px !important;
  row-gap: 5px !important;

  min-height: 0 !important;
  padding: 18px 0 !important;

  align-items: start !important;
}

/* 01 / 02 / 03 / 04 */
.service-row:has(.service-toggle[aria-expanded="false"]) .service-number {
  grid-area: number !important;

  margin: 2px 0 0 !important;

  font-size: 10px !important;
  line-height: 1 !important;
}

/* VIZUALNI IDENTITET / GRAFIČKI DIZAJN... */
.service-row:has(.service-toggle[aria-expanded="false"]) .service-content {
  grid-area: content !important;
}

.service-row:has(.service-toggle[aria-expanded="false"]) .service-content h3 {
  margin: 0 !important;

  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 500 !important;

  color: #f1f0ec !important;

  transform: none !important;
}

/* DETALJI = kao cijena OD 180 € */
.service-row:has(.service-toggle[aria-expanded="false"]) .service-action-label {
  display: block !important;
  grid-area: label !important;

  margin: 0 !important;

  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;

  color: #8d969f !important;
  opacity: 1 !important;
}

/* + desno */
.service-row:has(.service-toggle[aria-expanded="false"]) .service-toggle {
  grid-area: arrow !important;

  justify-self: end !important;
  align-self: center !important;

  margin: 0 !important;

  transform: none !important;
}

/* MOBILE — PRICING SECTION SPACING */

.pricing {
  padding-top: 64px !important;
  padding-bottom: 52px !important;
}

.pricing-cta {
  padding-top: 35px !important;
}

.details-title {
  margin-left: -3px !important;
  margin-bottom: 10px !important;
}

.contact-cta-heading h2 {
  margin-left: -3px !important;
}

}
}

/* TABLET — CASE STUDY ALIGNMENT */
@media (min-width: 769px) and (max-width: 1100px) {
  .case-study-heading {
    align-items: start;
  }
.case-study-heading > p {
    margin-top: 26px;
  }
}

/* ACCESSIBILITY — TEXT CONTRAST */
#pricing.pricing,
#pricing .pricing-note {
  color: #a1a6ac !important;
  opacity: 1 !important;
}

.site-footer,
.site-footer span {
  color: #92979d !important;
  opacity: 1 !important;
}