@import url('./tokens.css');
@import url('./animations.css');

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-pill);
  padding: var(--sp-3) var(--sp-8);
  transition: all var(--ease-base);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-20);
}
.btn--outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange-20);
  padding: var(--sp-2) var(--sp-6);
}
.btn--ghost:hover { border-color: var(--orange); background: var(--orange-10); }
.btn__arrow { transition: transform var(--ease-spring); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: calc(var(--z-nav) + 1);
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs); font-family: var(--font-body);
  transition: transform var(--ease-base), opacity var(--ease-base);
}
@media (max-width: 480px) {
  .announce-bar { padding: var(--sp-1.5) var(--sp-4); font-size: 0.65rem; }
}
.announce-bar.dismissed { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.announce-bar__inner { display: flex; align-items: center; gap: var(--sp-3); color: var(--white); }
.announce-bar__dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; opacity: 0.7; flex-shrink: 0; }
.announce-bar__text { font-size: var(--text-xs); }
.announce-bar__text a { color: var(--white); font-weight: var(--weight-medium); text-decoration: underline; text-underline-offset: 2px; }
.announce-bar__close {
  position: absolute; right: var(--sp-5); top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.75rem;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all var(--ease-fast);
}
.announce-bar__close:hover { background: rgba(255,255,255,0.2); color: var(--white); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 44px; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: var(--sp-6) 0;
  transition: background var(--ease-base), padding var(--ease-base),
              border-color var(--ease-base), top var(--ease-base);
  border-bottom: 1px solid transparent;
}
.nav.menu-open {
  z-index: 300;
  top: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  border-color: transparent !important;
}
.nav.no-announce { top: 0; }
.nav.scrolled {
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: var(--sp-3) 0;
  border-color: var(--white-08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--white);
}
.nav__logo-mark {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--white); font-weight: var(--weight-black);
}
.nav__logo span { color: var(--orange); }
.nav__links { display: flex; align-items: center; gap: var(--sp-8); }
.nav__link {
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  color: var(--grey-200);
  position: relative; padding-bottom: 2px;
  transition: color var(--ease-fast);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  border-radius: var(--radius-pill);
  transition: width var(--ease-base);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta {
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  background: var(--orange); color: var(--white);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-pill);
  transition: all var(--ease-fast);
  min-width: 140px;
}
.nav__cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }

/* Scroll Progress */
.nav__progress {
  position: absolute; bottom: -1px; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: width 0.08s linear;
  border-radius: var(--radius-pill);
  opacity: 0; transition: opacity var(--ease-base), width 0.08s linear;
}
.nav.scrolled .nav__progress { opacity: 1; }

.nav__hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  position: relative; z-index: var(--z-nav);
  padding: var(--sp-2);
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  border-radius: 2px; transform-origin: center;
  transition: transform var(--ease-base), opacity var(--ease-fast), width var(--ease-base);
}
.nav__hamburger span:nth-child(2) { width: 70%; margin-left: auto; }
.nav.menu-open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__hamburger span:nth-child(2) { opacity: 0; width: 0; }
.nav.menu-open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Language selector */
.nav__lang {
  display: flex; align-items: center; gap: var(--sp-4);
  margin-left: var(--sp-6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease-expo);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}
.nav__lang:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
.nav__lang-btn {
  width: 20px; height: 14px;
  background: none; border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer; padding: 0;
  transition: all 0.3s var(--ease-base);
  filter: grayscale(1);
  opacity: 0.5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 2px;
}
.nav__lang-btn svg { width: 100%; height: 100%; object-fit: cover; }
.nav__lang-btn:hover { opacity: 1; filter: grayscale(0); transform: translateY(-1px); border-color: rgba(255, 255, 255, 0.4); }
.nav__lang-btn.active { opacity: 1; filter: grayscale(0); transform: scale(1.2); border-color: var(--orange); box-shadow: 0 0 15px var(--orange-20); }
.nav__lang-sep { display: none; }
.nav__lang--mobile {
  margin: 0;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  align-self: flex-start;
  margin-bottom: var(--sp-8); /* Add space below switcher when at top */
}
@media (max-width: 768px) { 
  .nav__lang:not(.nav__lang--mobile) { display: none; } 
}

/* Mobile menu */
.nav__mobile {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: var(--sp-32) var(--sp-8) var(--sp-12);
  position: fixed; inset: 0;
  z-index: 90;
  opacity: 0; pointer-events: none;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: opacity var(--ease-expo), clip-path 0.65s var(--ease-expo);
}
.nav__mobile-bg {
  position: absolute; inset: 0;
  background: var(--black);
  z-index: -1;
}
.nav__mobile.open { 
  z-index: 200;
  opacity: 1; pointer-events: all; clip-path: circle(150% at calc(100% - 40px) 40px); 
}
.nav__mobile-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: var(--weight-black);
  color: var(--grey-600);
  line-height: 1.15;
  letter-spacing: -0.02em;
  transition: color var(--ease-fast);
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.4s ease calc(var(--i) * 0.07s + 0.1s),
              transform 0.4s var(--ease-expo) calc(var(--i) * 0.07s + 0.1s),
              color var(--ease-fast);
}
.nav__mobile.open .nav__mobile-link { opacity: 1; transform: translateX(0); }
.nav__mobile-link:hover { color: var(--orange); }
.nav__mobile-link.active-mobile { color: var(--white); }
.nav__mobile-footer {
  display: flex; flex-direction: column; gap: var(--sp-6);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s var(--ease-expo) 0.5s;
}
.nav__mobile.open .nav__mobile-footer { opacity: 1; transform: translateY(0); }
.nav__mobile-cta { align-self: flex-start; }
.nav__mobile-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs); color: var(--grey-400);
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--black);
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__blob--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,66,0,0.35) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: blob-drift-1 14s ease-in-out infinite alternate;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,80,0,0.20) 0%, transparent 70%);
  bottom: 0px; left: -100px;
  animation: blob-drift-2 18s ease-in-out infinite alternate;
}
.hero__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--white-08) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white-08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.3; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: var(--sp-12);
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-16);
  min-height: calc(100vh - 44px);
  width: 100%;
}

/* ── Left: copy ── */
.hero__copy { display: flex; flex-direction: column; }
.hero__badges {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  animation: fade-up 0.8s var(--ease-expo) both;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--orange-10); border: 1px solid var(--orange-20);
  border-radius: var(--radius-pill);
  padding: var(--sp-2) var(--sp-4);
  width: fit-content;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%; position: relative;
}
.hero__badge-dot::after {
  content: ''; position: absolute; inset: 0;
  background: var(--orange); border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.hero__badge span { font-size: var(--text-xs); font-weight: var(--weight-medium); color: var(--orange); letter-spacing: 0.06em; }
.hero__rating {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--white-08); border: 1px solid var(--white-12);
  border-radius: var(--radius-pill); padding: var(--sp-2) var(--sp-4);
}
.hero__rating-stars { color: var(--orange); font-size: 0.7rem; letter-spacing: 2px; }
.hero__rating-text { font-size: var(--text-xs); color: var(--grey-200); }

/* Title */
.hero__title {
  font-size: var(--text-hero);
  font-family: var(--font-display); font-weight: var(--weight-black);
  line-height: 1.0; letter-spacing: -0.03em; color: var(--white);
  margin-bottom: var(--sp-6); overflow: hidden;
}
.hero__title-line {
  display: block;
  animation: word-reveal 0.9s var(--ease-expo) both;
}
.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.2s; color: var(--orange); }
.hero__title-line:nth-child(3) { animation-delay: 0.3s; }

/* Cycling tagline */
.hero__tagline-wrap {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  animation: fade-up 0.9s var(--ease-expo) 0.4s both;
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: var(--weight-black);
  line-height: 1;
  color: var(--grey-300);
}
.hero__tagline-static {
  color: var(--grey-300);
  font-size: inherit; font-weight: inherit; line-height: inherit;
  font-family: inherit;
}
.hero__tagline-cycle {
  position: relative; display: inline-block;
  height: 2.2em; overflow: hidden;
  min-width: 200px;
}
.hero__tagline-word {
  display: flex; align-items: center;
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  color: var(--orange);
  font-size: inherit; font-weight: inherit;
  line-height: 1; font-family: inherit;
  opacity: 0; transform: translateY(50%);
  transition: opacity 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
  white-space: nowrap;
}
.hero__tagline-word.active { opacity: 1; transform: translateY(0); }
.hero__tagline-word.exit  { opacity: 0; transform: translateY(-50%); }

/* Desc */
.hero__desc {
  font-size: var(--text-base); color: var(--grey-200);
  max-width: 480px; line-height: 1.8; margin-bottom: var(--sp-10);
  animation: fade-up 0.9s var(--ease-expo) 0.5s both;
}

/* Actions */
.hero__actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-4);
  animation: fade-up 0.9s var(--ease-expo) 0.6s both;
  margin-bottom: var(--sp-10);
}

/* Meta stats */
.hero__meta {
  display: flex; align-items: center; gap: var(--sp-6);
  animation: fade-up 0.9s var(--ease-expo) 0.7s both;
}
.hero__meta-stat { display: flex; flex-direction: column; gap: 2px; }
.hero__meta-divider {
  width: 1px; height: 32px;
  background: var(--white-12); flex-shrink: 0;
}
.hero__stat-number {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: var(--weight-black); color: var(--white); line-height: 1;
}
.hero__stat-label {
  font-size: var(--text-xs); color: var(--grey-400);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── Right: visual ── */
.hero__visual {
  position: relative;
  animation: fade-up 1s var(--ease-expo) 0.3s both;
}
.hero__visual-main {
  position: relative;
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--white-08);
  box-shadow: var(--shadow-lg);
}
.hero__visual-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--grey-800) 0%, var(--grey-700) 50%, var(--grey-800) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-600); font-family: var(--font-display); font-size: var(--text-sm);
  letter-spacing: 0.1em;
}
.hero__visual-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.9), transparent);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.hero__visual-tag {
  font-size: var(--text-xs); color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.hero__visual-title {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: var(--weight-bold); color: var(--white);
}

/* Floating stat cards */
.hero__float {
  position: absolute;
  display: flex; align-items: center; gap: var(--sp-3);
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--white-12);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-md);
}
.hero__float--tl { top: -20px; left: -28px; animation: fade-up 1s var(--ease-expo) 0.6s both; }
.hero__float--br { bottom: 20px; right: -24px; animation: fade-up 1s var(--ease-expo) 0.8s both; }
.hero__float--tr { top: 28%; right: -28px; animation: fade-up 1s var(--ease-expo) 0.7s both; }
.hero__float-icon { font-size: 1.4rem; flex-shrink: 0; }
.hero__float-label { font-size: 0.65rem; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.08em; }
.hero__float-val { font-family: var(--font-display); font-size: var(--text-sm); font-weight: var(--weight-bold); color: var(--white); }
.hero__float-mini { display: flex; flex-direction: column; }
.hero__visual-stats {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-end;
}
.hero__visual-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--white-12);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-md);
  animation: fade-up 1s var(--ease-expo) 0.6s both;
}
.hero__visual-stat-icon {
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
}
.hero__visual-stat-info {
  display: flex;
  flex-direction: column;
}
.hero__visual-stat-label {
  font-size: 0.65rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.hero__visual-stat-val {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--white);
  line-height: 1.2;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  color: var(--grey-400); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2;
  animation: fade-in 1s var(--ease-expo) 1.2s both;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ── Hero responsive ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; min-height: auto; padding-top: var(--sp-24); padding-bottom: var(--sp-24); }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero__float--tl { left: -10px; }
  .hero__float--br { right: -10px; }
  .hero__float--tr { right: -10px; }
}
@media (max-width: 768px) {
  .hero__title { font-size: clamp(1.9rem, 8.5vw, 3.2rem); line-height: 1.1; letter-spacing: -0.04em; }
  .hero__visual { display: none; }
  .hero__float { display: none; }
  .hero__visual-stats { display: none; }
  .hero__tagline-wrap { font-size: var(--text-base); gap: var(--sp-1.5); }
  .hero__tagline-cycle { min-width: 140px; height: 1.4em; }
  .hero__badges { flex-wrap: wrap; gap: var(--sp-3); }
}


/* ══════════════════════════════════════════
   TICKER / MARQUEE BAR
══════════════════════════════════════════ */
.ticker {
  background: var(--orange);
  overflow: hidden;
  padding: var(--sp-3) 0;
}
.marquee { display: flex; overflow: hidden; white-space: nowrap; }
.marquee__track {
  display: flex; flex-shrink: 0;
  align-items: center;
  width: max-content;
  will-change: transform;
}
.ticker .marquee__track {
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: var(--weight-bold);
  color: var(--white); letter-spacing: 0.06em; text-transform: uppercase;
  gap: var(--sp-8);
}
.ticker__dot {
  width: 5px; height: 5px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CLIENT LOGOS
══════════════════════════════════════════ */
.clients { padding: var(--sp-16) 0; background: var(--grey-900); border-top: 1px solid var(--white-08); border-bottom: 1px solid var(--white-08); }
.clients__label {
  text-align: center;
  font-size: var(--text-xs); color: var(--grey-400);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: var(--sp-8);
}
.clients .marquee__track {
  display: flex; align-items: center; gap: var(--sp-16);
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 36px; min-width: 100px;
  opacity: 0.35; filter: grayscale(1);
  transition: opacity var(--ease-base), filter var(--ease-base);
  flex-shrink: 0;
}
.client-logo:hover { opacity: 0.8; filter: grayscale(0); }
.client-logo span {
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: var(--text-lg); color: var(--white); letter-spacing: -0.02em;
}

/* ══════════════════════════════════════════
   GALLERY / BENTO GRID
══════════════════════════════════════════ */
/* ══ GALLERY ══ */
.gallery { background: var(--black); }

/* Filter tabs */
.gallery__filters {
  display: flex; gap: var(--sp-2); flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.gallery__filter {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-pill);
  border: 1px solid var(--white-08);
  font-size: var(--text-xs); font-weight: var(--weight-medium);
  color: var(--grey-400); background: none; cursor: pointer;
  transition: all var(--ease-fast);
  font-family: var(--font-body);
}
.gallery__filter:hover { border-color: var(--orange-20); color: var(--grey-200); }
.gallery__filter.active {
  background: var(--orange); border-color: var(--orange);
  color: var(--white);
}

/* Grid - 3-column, wide items span 2 */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform var(--ease-base), opacity 0.4s ease;
}
.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.gallery__item.hidden {
  display: none;
}

/* Category-coloured gradient placeholders */
.gallery__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s var(--ease-slow);
}
.gallery__item:hover .gallery__placeholder { transform: scale(1.06); }

.gallery__placeholder--branding {
  background-color: #0C0C0C;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,66,0,0.12) 0px, rgba(255,66,0,0.12) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(-45deg, rgba(255,66,0,0.12) 0px, rgba(255,66,0,0.12) 1px, transparent 1px, transparent 28px),
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(255,66,0,0.18) 0%, transparent 70%);
}
.gallery__placeholder--motion {
  background-color: #0C0C0C;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,66,0,0.10) 0px, rgba(255,66,0,0.10) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(255,66,0,0.10) 0px, rgba(255,66,0,0.10) 1px, transparent 1px, transparent 32px),
    radial-gradient(circle 120px at 30% 60%, rgba(255,66,0,0.22) 0%, transparent 70%);
}
.gallery__placeholder--production {
  background-color: #0C0C0C;
  background-image:
    repeating-linear-gradient(30deg, rgba(255,66,0,0.09) 0px, rgba(255,66,0,0.09) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(150deg, rgba(255,66,0,0.09) 0px, rgba(255,66,0,0.09) 1px, transparent 1px, transparent 24px),
    radial-gradient(ellipse 80% 50% at 50% 80%, rgba(255,66,0,0.2) 0%, transparent 70%);
}
.gallery__placeholder--web {
  background-color: #0C0C0C;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,66,0,0.08) 0px, rgba(255,66,0,0.08) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(255,66,0,0.08) 0px, rgba(255,66,0,0.08) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 39px, rgba(255,66,0,0.04) 39px, rgba(255,66,0,0.04) 40px),
    radial-gradient(circle 160px at 80% 20%, rgba(255,66,0,0.16) 0%, transparent 70%);
}
.gallery__placeholder--cinematic {
  background-color: #0C0C0C;
  background-image:
    repeating-linear-gradient(60deg, rgba(255,66,0,0.10) 0px, rgba(255,66,0,0.10) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(120deg, rgba(255,66,0,0.10) 0px, rgba(255,66,0,0.10) 1px, transparent 1px, transparent 20px),
    radial-gradient(ellipse 50% 70% at 20% 50%, rgba(255,66,0,0.15) 0%, transparent 70%);
}
.gallery__placeholder--design {
  background-color: #0C0C0C;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0px, transparent 18px, rgba(255,66,0,0.10) 18px, rgba(255,66,0,0.10) 19px),
    repeating-radial-gradient(circle at 24px 24px, transparent 0px, transparent 18px, rgba(255,66,0,0.10) 18px, rgba(255,66,0,0.10) 19px),
    radial-gradient(circle 140px at 60% 40%, rgba(255,66,0,0.18) 0%, transparent 70%);
}

.gallery__placeholder-num {
  font-family: var(--font-display); font-size: 6rem;
  font-weight: var(--weight-black); color: rgba(255,255,255,0.06);
  line-height: 1; user-select: none;
}

/* Overlay - slides up on hover */
.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.97) 0%, rgba(12,12,12,0.4) 50%, transparent 80%);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: var(--sp-5);
  opacity: 0; transition: opacity var(--ease-base);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay-top { display: flex; align-items: flex-start; }
.gallery__cat-badge {
  font-size: 0.65rem; font-weight: var(--weight-bold);
  background: var(--orange); color: var(--white);
  border-radius: var(--radius-pill);
  padding: 3px var(--sp-3);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.gallery__overlay-body {
  transform: translateY(12px);
  transition: transform 0.35s var(--ease-base);
}
.gallery__item:hover .gallery__overlay-body { transform: translateY(0); }

.gallery__item-title {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: var(--weight-black); color: var(--white);
  margin-bottom: var(--sp-2); display: block;
}
.gallery__item-desc {
  font-size: var(--text-xs); color: var(--grey-300);
  line-height: 1.65; margin-bottom: var(--sp-4);
  font-family: var(--font-body);
  display: none;
}
.gallery__item--wide .gallery__item-desc { display: block; }
.gallery__cta {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs); font-weight: var(--weight-bold);
  color: var(--orange); transition: gap var(--ease-spring);
}
.gallery__cta:hover { gap: var(--sp-3); }
.gallery__cta span { transition: transform var(--ease-spring); }
.gallery__cta:hover span { transform: translateX(3px); }

/* Gallery responsive */
@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery__item-desc { display: none !important; }
}


/* ══ COMPARISON ══ */
.comparison { background: var(--grey-900); }
.comparison__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-top: var(--sp-8); }
.comparison__col {
  border-radius: var(--radius-lg); padding: var(--sp-8);
  border: 1px solid var(--white-08);
}
.comparison__col--dada {
  background: linear-gradient(135deg, var(--orange-10), transparent);
  border-color: var(--orange-20);
}
.comparison__col-head {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-black);
  margin-bottom: var(--sp-6); padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--white-08);
}
.comparison__col--dada .comparison__col-head { color: var(--orange); }
.comparison__row {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--white-08);
  font-size: var(--text-sm); color: var(--grey-200);
}
.comparison__row:last-child { border-bottom: none; }
.comparison__icon { flex-shrink: 0; width: 20px; font-size: 0.9rem; }
.comparison__col--others .comparison__icon { color: var(--grey-400); }
.comparison__col--dada .comparison__icon { color: var(--orange); }

/* ══ WHY US ══ */
.why-us { background: var(--black); }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-8); }
.why-card {
  background: var(--grey-900); border: 1px solid var(--white-08);
  border-radius: var(--radius-lg); padding: var(--sp-8);
  transition: border-color var(--ease-base), transform var(--ease-base);
}
.why-card:hover { border-color: var(--orange-20); transform: translateY(-4px); }
.why-card__icon {
  width: 52px; height: 52px; background: var(--orange-10);
  border: 1px solid var(--orange-20); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: var(--sp-5);
}
.why-card__title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--weight-bold); margin-bottom: var(--sp-2); }
.why-card__text { font-size: var(--text-sm); color: var(--grey-300); line-height: 1.7; }

/* ══ TEAM ══ */
.team { background: var(--grey-900); }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.team-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.team-card__photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--grey-700); overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); transition: filter var(--ease-base), transform var(--ease-base); }
.team-card:hover .team-card__photo img { filter: grayscale(0); transform: scale(1.04); }
.team-card__info {
  padding: var(--sp-4) 0;
}
.team-card__name { font-family: var(--font-display); font-size: var(--text-base); font-weight: var(--weight-bold); }
.team-card__role { font-size: var(--text-xs); color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-top: var(--sp-1); }

/* ══ STATS ══ */
.stats {
  background: var(--orange);
  padding: var(--sp-12) 0;
  position: relative; overflow: hidden;
}

/* Background bloom */
.stats__bg-blur {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

/* Grid - items + dividers */
.stats__grid {
  display: flex; align-items: center;
  gap: 0; position: relative; z-index: 1;
}

/* Each stat item */
.stats__item {
  flex: 1; display: flex; align-items: center;
  gap: var(--sp-4); padding: var(--sp-4) var(--sp-6);
}

/* Icon */
.stats__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}

/* Text block */
.stats__text { display: flex; flex-direction: column; flex: 1; }
.stats__number {
  font-family: var(--font-display); font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  color: var(--white); line-height: 1; display: block;
}
.stats__label {
  font-size: var(--text-xs); color: rgba(255,255,255,0.75);
  margin-top: var(--sp-1); font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Trend badge */
.stats__trend {
  font-size: 0.65rem; color: rgba(255,255,255,0.6);
  font-family: var(--font-body); white-space: nowrap;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 3px var(--sp-2);
  align-self: flex-start;
}

/* Vertical dividers */
.stats__divider {
  width: 1px; height: 60px; flex-shrink: 0;
  background: rgba(255,255,255,0.2);
}

/* Stats responsive */
@media (max-width: 1024px) {
  .stats__grid { flex-wrap: wrap; gap: var(--sp-2); }
  .stats__item { flex: 1 1 calc(50% - var(--sp-2)); }
  .stats__divider { display: none; }
}
@media (max-width: 480px) {
  .stats__item { flex: 1 1 100%; }
}


/* ══ INDUSTRIES ══ */
.industries { background: var(--black); padding: var(--sp-20) 0; overflow: hidden; }
.industries .marquee__track { gap: var(--sp-4); }
#industries-track { gap: var(--sp-4); }
.industry-tag {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--grey-800); border: 1px solid var(--white-08);
  border-radius: var(--radius-pill);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm); color: var(--grey-200); white-space: nowrap;
  flex-shrink: 0; transition: border-color var(--ease-fast), color var(--ease-fast);
}
.industry-tag:hover { border-color: var(--orange); color: var(--white); }
.industry-tag::before { content: '✦'; color: var(--orange); font-size: 0.6rem; }

/* ══ SERVICES ══ */
.services { background: var(--grey-900); }

/* Ghost button variant */
.btn--ghost {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  color: var(--grey-300); border: 1px solid var(--white-12);
  border-radius: var(--radius-pill); padding: var(--sp-3) var(--sp-6);
  transition: all var(--ease-fast); white-space: nowrap; align-self: flex-end;
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

/* Grid - columns: [featured spans 2] [normal] + [normal][normal][normal] */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

/* Base card */
.service-card {
  background: var(--grey-800); border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
  position: relative; overflow: hidden;
}
.service-card__inner {
  padding: var(--sp-8);
  display: flex; flex-direction: column;
  height: 100%; position: relative; z-index: 1;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-10), transparent);
  opacity: 0; transition: opacity var(--ease-base); z-index: 0;
}
.service-card:hover { border-color: var(--orange-20); box-shadow: 0 0 40px rgba(255,66,0,0.08); }
.service-card:hover::before { opacity: 1; }

/* Featured card - spans 2 cols */
.service-card--featured {
  grid-column: span 2;
  background: var(--grey-900);
  border-color: var(--orange-20);
}
.service-card--featured::before { opacity: 0.5; }
.service-card__featured-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at right center, rgba(255,66,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Top row: icon + number */
.service-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-5);
}
.service-card__icon-wrap {
  width: 44px; height: 44px;
  background: var(--orange-10); border: 1px solid var(--orange-20);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  transition: background var(--ease-fast), transform var(--ease-spring);
}
.service-card:hover .service-card__icon-wrap {
  background: var(--orange); color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}
.service-card__num {
  font-family: var(--font-display); font-size: 2rem; font-weight: var(--weight-black);
  color: var(--white-08); line-height: 1; user-select: none;
}

/* Content */
.service-card__title {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: var(--weight-bold); margin-bottom: var(--sp-3);
  transition: color var(--ease-fast);
}
.service-card:hover .service-card__title { color: var(--orange); }
.service-card__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.service-tag {
  font-size: var(--text-xs); color: var(--orange);
  background: var(--orange-10); border: 1px solid var(--orange-20);
  border-radius: var(--radius-pill); padding: 2px var(--sp-3);
  letter-spacing: 0.04em;
}
.service-card__desc {
  font-size: var(--text-sm); color: var(--grey-300);
  line-height: 1.7; margin-bottom: var(--sp-5); flex: 1;
}

/* Deliverables */
.service-card__deliverables {
  list-style: none; margin-bottom: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.service-card__deliverables li {
  font-size: var(--text-xs); color: var(--grey-400);
  padding-left: var(--sp-4); position: relative;
}
.service-card__deliverables li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--orange); font-size: 0.7rem;
}

/* Link */
.service-card__link {
  font-size: var(--text-sm); color: var(--orange);
  font-weight: var(--weight-medium);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: auto;
  transition: gap var(--ease-spring);
}
.service-card__link:hover { gap: var(--sp-4); }
.service-card__link span { transition: transform var(--ease-spring); }
.service-card__link:hover span { transform: translateX(4px); }

/* Footer CTA */
.services__footer {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--grey-800); border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-8);
  margin-top: var(--sp-4);
}
.services__footer-text {
  font-size: var(--text-base); color: var(--grey-300);
  font-family: var(--font-body);
}

/* Services responsive */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .services__footer { flex-direction: column; gap: var(--sp-5); text-align: center; }
}


/* ══ PROJECTS ══ */
.projects { background: var(--black); }
.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin-top: var(--sp-12); }
.project-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer;
  transition: transform var(--ease-base);
  transform-style: preserve-3d;
}
.project-card__thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-slow);
}
.project-card:hover .project-card__thumb { transform: scale(1.06); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.95) 30%, transparent 75%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: var(--sp-6);
  transition: opacity var(--ease-base);
}
.project-card__cat { font-size: var(--text-xs); color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: var(--sp-2); }
.project-card__title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-black); color: var(--white); margin-bottom: var(--sp-3); }
.project-card__cta { font-size: var(--text-xs); color: var(--grey-300); display: inline-flex; align-items: center; gap: var(--sp-2); opacity: 0; transform: translateY(8px); transition: all var(--ease-base); }
.project-card:hover .project-card__cta { opacity: 1; transform: translateY(0); }
.project-card__placeholder { width: 100%; height: 100%; background: var(--grey-700); }

/* ══ PROCESS ══ */
.process { background: var(--grey-900); }

/* Timeline track */
.process__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-8);
}

/* Gradient connector line across top dots */
.process__connector {
  position: absolute;
  top: 28px; left: calc(10% + 28px); right: calc(10% + 28px);
  height: 1px;
  background: linear-gradient(90deg,
    var(--orange) 0%,
    rgba(255,66,0,0.4) 50%,
    var(--orange) 100%);
  z-index: 0;
}

/* Each step */
.process-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 var(--sp-3);
  text-align: center;
}

/* Icon dot at top */
.process-step__dot {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--grey-800);
  border: 2px solid var(--orange-20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-400);
  margin-bottom: var(--sp-6);
  position: relative; z-index: 2;
  transition: all var(--ease-base);
}
.process-step:hover .process-step__dot {
  background: var(--orange); border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 6px var(--orange-10);
  transform: scale(1.1);
}
.process-step__dot--final {
  background: var(--orange-10); border-color: var(--orange);
  color: var(--orange);
}
.process-step:hover .process-step__dot--final {
  background: var(--orange); color: var(--white);
}

/* Body */
.process-step__body { display: flex; flex-direction: column; align-items: center; }
.process-step__header {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.process-step__num {
  font-family: var(--font-display); font-size: 0.7rem;
  font-weight: var(--weight-black); color: var(--orange);
  letter-spacing: 0.1em;
}
.process-step__duration {
  font-size: 0.6rem; color: var(--grey-500);
  background: var(--grey-800); border: 1px solid var(--white-08);
  border-radius: var(--radius-pill); padding: 2px var(--sp-2);
  font-family: var(--font-body);
}
.process-step__title {
  font-family: var(--font-display); font-size: var(--text-base);
  font-weight: var(--weight-bold); margin-bottom: var(--sp-3);
  transition: color var(--ease-fast);
}
.process-step:hover .process-step__title { color: var(--orange); }
.process-step__desc {
  font-size: var(--text-xs); color: var(--grey-400);
  line-height: 1.7; margin-bottom: var(--sp-4);
  font-family: var(--font-body);
}
.process-step__deliverables {
  display: flex; flex-direction: column; gap: var(--sp-1);
  align-items: center;
}
.deliverable {
  font-size: 0.65rem; color: var(--grey-400);
  background: var(--grey-800); border: 1px solid var(--white-08);
  border-radius: var(--radius-pill);
  padding: 2px var(--sp-3);
  font-family: var(--font-body);
  transition: border-color var(--ease-fast), color var(--ease-fast);
  white-space: nowrap;
}
.process-step:hover .deliverable { border-color: var(--orange-20); color: var(--grey-200); }

/* Summary strip */
.process__summary {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--grey-800); border: 1px solid var(--white-08);
  border-radius: var(--radius-lg); padding: var(--sp-5) var(--sp-8);
  margin-top: var(--sp-6);
}
.process__summary-inner { display: flex; align-items: center; gap: var(--sp-4); }
.process__summary-label {
  font-size: var(--text-xs); color: var(--grey-400);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.process__summary-val {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: var(--weight-black); color: var(--orange);
}
.process__summary-note {
  font-size: var(--text-xs); color: var(--grey-400);
  font-family: var(--font-body); text-align: right;
}

/* Process responsive */
@media (max-width: 1024px) {
  .process__track { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
  .process__connector { display: none; }
  .process__summary { flex-direction: column; gap: var(--sp-4); text-align: center; }
  .process__summary-note { text-align: center; }
}

@media (max-width: 768px) {
  /* Switch track to single-column vertical list */
  .process__track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 28px; /* space for left timeline line */
  }

  /* Left-side vertical connector line - handled by steps now */
  .process__track::before { display: none; }

  /* Hide the horizontal absolute connector */
  .process__connector { display: none; }

  /* Each step becomes a horizontal row: dot left, content right */
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    padding-bottom: 32px; /* gap between steps */
    gap: var(--sp-5);
    position: relative;
  }
  .process-step::before {
    content: '';
    position: absolute;
    left: 28px; /* Center of the 56px dot */
    top: 28px;  /* Start from center of dot */
    bottom: -32px; /* Stretch to the center of the next dot */
    width: 2px;
    background: var(--orange);
    opacity: 0.4;
    z-index: 1;
  }
  .process-step:last-child { padding-bottom: 0; }
  .process-step:last-child::before { display: none; }

  /* Dot stays left, no bottom margin - spacing handled by step gap */
  .process-step__dot {
    flex-shrink: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    background: var(--grey-900); /* Match section background to hide line behind it */
  }

  /* Body flows to the right of the dot */
  .process-step__body {
    align-items: flex-start;
    flex: 1;
    padding-top: var(--sp-2); /* optically align with dot center */
  }

  /* Header row: step number + duration badge */
  .process-step__header {
    justify-content: flex-start;
  }

  /* Deliverables left-aligned, allow wrapping */
  .process-step__deliverables {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-2);
  }

  /* Summary strip stacks vertically */
  .process__summary {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }
  .process__summary-inner { justify-content: center; }
  .process__summary-note { text-align: center; }
}

@media (max-width: 480px) {
  .process__track {
    padding-left: 0; /* Remove redundant padding */
  }
  /* Slightly tighter dot on small phones */
  .process-step__dot {
    width: 44px;
    height: 44px;
  }
  .process-step::before {
    left: 22px; /* Center of the 44px dot */
    top: 22px;
    bottom: -32px;
  }
  .process-step__title {
    font-size: var(--text-sm);
  }
}



/* ══ PRICING ══ */
.pricing { background: var(--black); }

/* Header */
.pricing__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--sp-16); flex-wrap: wrap; gap: var(--sp-8);
}

/* Billing toggle */
.pricing__toggle {
  display: flex; background: var(--grey-900);
  border: 1px solid var(--white-08); border-radius: var(--radius-pill);
  padding: 3px;
}
.pricing__toggle-btn {
  padding: var(--sp-2) var(--sp-6);
  border-radius: var(--radius-pill); border: none;
  font-size: var(--text-xs); font-weight: var(--weight-medium);
  color: var(--grey-400); background: none; cursor: pointer;
  transition: all var(--ease-fast);
}
.pricing__toggle-btn.active {
  background: var(--orange); color: var(--white);
  box-shadow: 0 2px 8px rgba(255,66,0,0.3);
}

/* Currency pill - EUR / USD */
.pricing__currency {
  display: inline-flex; align-items: center;
  gap: 0;
  background: transparent;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 3px;
  margin-bottom: var(--sp-4);
}
.pricing__currency-btn {
  font-family: var(--font-display);
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--sp-2) var(--sp-5);
  border-radius: 999px; border: none;
  background: transparent;
  color: #888; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.pricing__currency-btn.active {
  background: var(--orange);
  color: var(--white);
}
.pricing__currency-btn:not(.active):hover { color: var(--grey-200); }

/* Grid */
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5); align-items: start;
}
.pricing-card {
  background: var(--grey-900); border: 1px solid var(--white-08);
  border-radius: var(--radius-xl); padding: var(--sp-8);
  position: relative;
  transition: transform var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--white-12); }
.pricing-card--popular {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(255,66,0,0.06) 0%, var(--grey-900) 60%);
  box-shadow: 0 0 0 1px var(--orange-20), var(--shadow-orange);
  transform: scale(1.02) translateY(-4px);
}
.pricing-card--popular:hover { transform: scale(1.02) translateY(-8px); }

/* Badge */
.pricing-badge {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  background: var(--orange); color: var(--white);
  font-size: 0.65rem; font-weight: var(--weight-bold);
  padding: 3px var(--sp-3); border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-4);
}
.pricing-tier {
  font-size: var(--text-xs); color: var(--grey-400);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--sp-2);
}
.pricing-name {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: var(--weight-black); color: var(--white); margin-bottom: var(--sp-2);
}
.pricing-target {
  font-size: var(--text-sm); color: var(--grey-300);
  margin-bottom: var(--sp-6); line-height: 1.6;
}

/* Price display */
.pricing-price {
  display: flex; align-items: baseline; gap: var(--sp-1);
  margin-bottom: var(--sp-6);
}
.pricing-currency {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: var(--weight-black); color: var(--orange);
}
.pricing-amount {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: var(--weight-black); color: var(--white); line-height: 1;
  transition: all 0.3s var(--ease-base);
}
.pricing-period {
  font-size: var(--text-sm); color: var(--grey-400);
  font-family: var(--font-body);
}
.pricing-price--custom {
  align-items: center; margin-bottom: var(--sp-6);
}
.pricing-custom-label {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: var(--weight-black); color: var(--orange);
}

/* Divider */
.pricing-divider {
  height: 1px; background: var(--white-08);
  margin-bottom: var(--sp-6);
}

/* Features */
.pricing-features { list-style: none; margin-bottom: var(--sp-8); flex: 1; }
.pricing-features li {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-sm); padding: var(--sp-2) 0;
  font-family: var(--font-body);
}
.pricing-features li.included { color: var(--grey-200); }
.pricing-features li.excluded { color: var(--grey-600); text-decoration: line-through; }
.pricing-features li.included::before {
  content: '✓'; color: var(--orange); font-weight: var(--weight-bold);
  flex-shrink: 0; width: 16px;
}
.pricing-features li.excluded::before {
  content: '✕'; color: var(--grey-600);
  flex-shrink: 0; width: 16px;
}

/* CTA */
.pricing-cta { width: 100%; text-align: center; margin-bottom: var(--sp-3); }
.pricing-note {
  text-align: center; font-size: var(--text-xs);
  color: var(--grey-500); font-family: var(--font-body);
}

/* Custom strip */
.pricing__custom {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--grey-900); border: 1px solid var(--white-08);
  border-radius: var(--radius-lg); padding: var(--sp-6) var(--sp-8);
  margin-top: var(--sp-12); flex-wrap: wrap; gap: var(--sp-4);
}
.pricing__custom-text {
  display: flex; align-items: center; gap: var(--sp-4);
  font-family: var(--font-body);
}
.pricing__custom-text strong {
  font-family: var(--font-display); font-size: var(--text-base);
  font-weight: var(--weight-bold); color: var(--white);
  display: block; margin-bottom: var(--sp-1);
}
.pricing__custom-text span {
  font-size: var(--text-sm); color: var(--grey-400);
}
.pricing__custom-icon { font-size: 1.5rem; color: var(--orange); }

/* Pricing responsive */
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--popular { transform: none; grid-column: span 2; }
  .pricing-card--popular:hover { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--popular { grid-column: span 1; }
  .pricing__header { flex-direction: column; align-items: flex-start; }
  .pricing__custom { flex-direction: column; }
}

/* ══ TESTIMONIALS ══ */
.testimonials { background: var(--grey-900); }

/* Rating cluster in header */
.testimonials__rating {
  display: flex; flex-direction: column; align-items: flex-end; gap: var(--sp-1);
}
.testimonials__rating-stars { color: var(--orange); font-size: 1rem; letter-spacing: 3px; }
.testimonials__rating-text { font-size: var(--text-xs); color: var(--grey-400); font-family: var(--font-body); }

/* Grid */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.testimonial-card {
  background: var(--grey-800); border: 1px solid var(--white-08);
  border-radius: var(--radius-xl); padding: var(--sp-8);
  display: flex; flex-direction: column;
  transition: border-color var(--ease-base), transform var(--ease-base);
}
.testimonial-card:hover { border-color: var(--orange-20); transform: translateY(-4px); }

/* Top row: avatar + stars */
.testimonial-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-6);
}
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.75rem;
  font-weight: var(--weight-black); color: var(--white);
}
.testimonial-card__stars {
  color: var(--orange); font-size: 0.75rem; letter-spacing: 2px;
}

/* Quote text */
.testimonial-card__text {
  font-size: var(--text-sm); color: var(--grey-200);
  line-height: 1.8; font-style: italic;
  font-family: var(--font-body); flex: 1;
  margin-bottom: var(--sp-6);
}

/* Author */
.testimonial-card__author { margin-top: auto; }
.testimonial-card__author-name {
  font-family: var(--font-display); font-size: var(--text-sm);
  font-weight: var(--weight-bold); color: var(--white);
}
.testimonial-card__author-role {
  font-size: var(--text-xs); color: var(--orange);
  margin-top: 2px; font-family: var(--font-body);
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__rating { align-items: flex-start; }
}

/* ══ BLOG ══ */
.blog { background: var(--black); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--grey-900); border: 1px solid var(--white-08);
  transition: transform var(--ease-base), border-color var(--ease-base);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--orange-20); }
.blog-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--grey-700); }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-slow); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__body { padding: var(--sp-6); }
.blog-card__cat { font-size: var(--text-xs); color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-3); }
.blog-card__title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--white); margin-bottom: var(--sp-3); line-height: 1.25; }
.blog-card__meta { display: flex; align-items: center; gap: var(--sp-4); font-size: var(--text-xs); color: var(--grey-400); }
.blog-card__dot { width: 3px; height: 3px; background: var(--grey-400); border-radius: 50%; }

/* ══ FAQ ══ */
.faq { background: var(--black); }

/* Removed override to use global section__header */
.faq__contact-link { color: var(--orange); transition: opacity var(--ease-fast); }
.faq__contact-link:hover { opacity: 0.8; }

.faq__list { border-top: 1px solid var(--white-08); max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--white-08); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-6) 0; cursor: pointer; gap: var(--sp-4);
  font-family: var(--font-display); font-size: var(--text-base); font-weight: var(--weight-bold);
  color: var(--white); text-align: left; transition: color var(--ease-fast);
}
.faq__question:hover { color: var(--orange); }
.faq__icon {
  flex-shrink: 0; width: 30px; height: 30px;
  border: 1px solid var(--white-12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-400);
  transition: transform var(--ease-spring), background var(--ease-fast),
              border-color var(--ease-fast), color var(--ease-fast);
}
.faq__item.open .faq__icon {
  transform: rotate(180deg);
  background: var(--orange); border-color: var(--orange); color: var(--white);
}
.faq__question:hover .faq__icon { border-color: var(--orange-20); color: var(--orange); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-base); }
.faq__item.open .faq__answer { max-height: 400px; }
.faq__answer-inner {
  padding: 0 0 var(--sp-8);
  font-size: var(--text-sm); color: var(--grey-300); line-height: 1.85;
  font-family: var(--font-body);
}
.faq__answer-inner strong { color: var(--white); }

/* ══ CTA BANNER ══ */
.cta-banner {
  background: var(--black);
  border-top: 1px solid var(--white-08);
  padding: var(--sp-32) 0;
  position: relative; overflow: hidden;
}
.cta-banner__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-banner__bg-blob {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,66,0,0.12) 0%, transparent 65%);
  top: 50%; left: 30%; transform: translate(-50%, -50%);
  animation: blob-drift-1 16s ease-in-out infinite alternate;
}
.cta-banner__bg-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--white-08) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 40% 50%, black 20%, transparent 70%);
  opacity: 0.2;
}

/* Inner layout */
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative; z-index: 1;
}

/* Left copy */
.cta-banner__copy { display: flex; flex-direction: column; align-items: flex-start; }
.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl); font-weight: var(--weight-black);
  color: var(--white); line-height: 1.05; letter-spacing: -0.02em;
  margin: var(--sp-4) 0 var(--sp-5);
}
.cta-banner__title-accent {
  display: block; color: var(--orange);
}
.cta-banner__sub {
  font-size: var(--text-base); color: var(--grey-300);
  line-height: 1.75; max-width: 480px;
  margin-bottom: var(--sp-8);
}

/* Trust pills */
.cta-banner__trust {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}
.cta-trust-pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--grey-900); border: 1px solid var(--white-08);
  border-radius: var(--radius-pill);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs); color: var(--grey-200);
  font-family: var(--font-body);
  transition: border-color var(--ease-fast);
}
.cta-trust-pill:hover { border-color: var(--orange-20); }
.cta-trust-pill__icon { color: var(--orange); font-size: 0.75rem; }

.cta-banner__actions {
  display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap;
}

/* Booking card */
.cta-banner__card { display: flex; justify-content: center; }
.cta-card {
  background: var(--grey-900);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  width: 100%; max-width: 400px;
  box-shadow: var(--shadow-lg);
}
.cta-card__header {
  display: flex; align-items: center; gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--white-08);
}
.cta-card__avatar { position: relative; flex-shrink: 0; }
.cta-card__avatar-img {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: var(--weight-black);
  font-size: 0.9rem; color: var(--white);
}
.cta-card__avatar-status {
  width: 12px; height: 12px; border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--grey-900);
  position: absolute; bottom: 0; right: 0;
  animation: orange-pulse 2s ease infinite;
}
.cta-card__name { font-family: var(--font-display); font-size: var(--text-base); font-weight: var(--weight-bold); color: var(--white); }
.cta-card__role { font-size: var(--text-xs); color: var(--grey-400); margin-top: 2px; font-family: var(--font-body); }

.cta-card__msg {
  font-size: var(--text-sm); color: var(--grey-300);
  line-height: 1.7; margin-bottom: var(--sp-6);
  font-style: italic; font-family: var(--font-body);
}

/* Slots */
/* Booking block (replaces slot grid) */
.cta-card__booking {
  margin-bottom: var(--sp-6);
  padding: var(--sp-5);
  background: var(--grey-800);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-md);
}
.cta-card__booking-heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.cta-card__booking-sub {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--grey-400);
  font-family: var(--font-body);
  margin-bottom: var(--sp-5);
}
.cta-card__booking-sub svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* Google Calendar CTA button */
.cta-card__book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  padding: var(--sp-4) var(--sp-6);
  background: #FF4200;
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background var(--ease-fast), transform var(--ease-fast), box-shadow var(--ease-fast);
  border: none;
  cursor: pointer;
}
.cta-card__book-btn:hover {
  background: #e53a00; /* #FF4200 darkened ~10% */
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 66, 0, 0.35);
}
.cta-card__book-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Shared note style */
.cta-card__btn { width: 100%; justify-content: center; border-radius: var(--radius-md); margin-bottom: var(--sp-4); }
.cta-card__note {
  text-align: center; font-size: var(--text-xs);
  color: var(--grey-400); font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-banner__inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .cta-card { max-width: 100%; }
}
@media (max-width: 768px) {
  .cta-banner__title { font-size: var(--text-2xl); }
}



/* ══ FOOTER ══ */
.footer {
  background: var(--black);
  padding: var(--sp-20) 0 0;
  border-top: 1px solid var(--white-08);
  position: relative; overflow: hidden;
}
.footer__glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, var(--orange-10) 0%, transparent 70%);
  pointer-events: none;
}

/* Top grid */
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer__brand-logo {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display); font-weight: var(--weight-black);
  font-size: 1.3rem; color: var(--white);
}
.footer__brand-name span { color: var(--orange); }
.footer__tagline {
  font-size: var(--text-sm); color: var(--grey-300);
  line-height: 1.8; font-family: var(--font-body);
}
.footer__socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-2); }
.footer__social {
  width: 34px; height: 34px;
  border: 1px solid var(--white-12); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-300);
  transition: all var(--ease-fast);
}
.footer__social:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* Columns */
.footer__col { display: flex; flex-direction: column; }
.footer__col-title {
  font-family: var(--font-display); font-size: var(--text-sm);
  font-weight: var(--weight-bold); color: var(--white);
  margin-bottom: var(--sp-5);
}
.footer__link {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); color: var(--grey-400);
  margin-bottom: var(--sp-3);
  transition: color var(--ease-fast);
  font-family: var(--font-body);
}
.footer__link:hover { color: var(--orange); }
.footer__link--contact { color: var(--grey-300); }
.footer__contact-icon { font-size: 0.8rem; color: var(--orange); flex-shrink: 0; }

/* Newsletter */
.footer__newsletter { margin-top: var(--sp-5); }
.footer__newsletter-label {
  font-size: var(--text-xs); color: var(--grey-400);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: var(--sp-3); font-family: var(--font-body);
}
.footer__newsletter-form {
  display: flex;
  background: var(--grey-800); border: 1px solid var(--white-12);
  border-radius: var(--radius-pill); overflow: hidden;
  transition: border-color var(--ease-fast);
}
.footer__newsletter-form:focus-within { border-color: var(--orange); }
.footer__newsletter-input {
  flex: 1; background: none; border: none; outline: none;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-xs); color: var(--white);
  font-family: var(--font-body);
}
.footer__newsletter-input::placeholder { color: rgba(255, 255, 255, 0.25); }
.footer__newsletter-btn {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; border-radius: 50%;
  margin: 2px; transition: background var(--ease-fast), transform var(--ease-spring);
}
.footer__newsletter-btn:hover { background: var(--orange-dark); transform: scale(1.1); }

/* Mid acronym */
.footer__mid {
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  padding: var(--sp-6) 0;
  margin-bottom: 0;
}
.footer__acronym {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-6);
  flex-wrap: wrap;
}
.footer__acronym-item {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: var(--weight-bold); color: var(--grey-600);
  transition: color var(--ease-fast);
}
.footer__acronym-item:hover { color: var(--white); }
.footer__acronym-item em { color: var(--orange); font-style: normal; }
.footer__acronym-sep { color: var(--grey-700); font-size: 1.2rem; }

/* Bottom bar */
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-6) 0;
}
.footer__copy { font-size: var(--text-xs); color: var(--grey-400); font-family: var(--font-body); }
.footer__copy span { color: var(--orange); }
.footer__legal { display: flex; gap: var(--sp-6); }
.footer__legal a {
  font-size: var(--text-xs); color: var(--grey-400);
  font-family: var(--font-body);
  transition: color var(--ease-fast);
}
.footer__legal a:hover { color: var(--white); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: var(--sp-8); right: var(--sp-8);
  z-index: var(--z-overlay);
  width: 44px; height: 44px;
  background: var(--orange); color: var(--white);
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--ease-base), transform var(--ease-spring),
              background var(--ease-fast), box-shadow var(--ease-fast);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); box-shadow: var(--shadow-orange); transform: translateY(-2px); }

/* Footer responsive */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
}
@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__brand { grid-column: span 2; margin-bottom: var(--sp-4); }
  .footer__col:last-child { grid-column: span 2; }
  .footer__bottom { flex-direction: column; gap: var(--sp-4); text-align: center; }
  .footer__acronym { gap: var(--sp-4); }
}

/* ══ SECTION HEADER LAYOUT ══ */
.section__header { margin-bottom: var(--sp-10); }
.section__header--split { display: flex; align-items: flex-end; justify-content: space-between; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
  .process__steps::before { display: none; }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex !important; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 5rem); }
  .hero__bottom { flex-direction: column; gap: var(--sp-6); align-items: flex-start; }
  .hero__stats { gap: var(--sp-8); }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item { grid-column: span 1 !important; }
  .comparison__grid { grid-template-columns: 1fr; }
  .why-us__grid, .services__grid, .projects__grid, .pricing__grid,
  .testimonials__grid, .blog__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__brand { grid-column: span 2; }
  .footer__col:last-child { grid-column: span 2; }
  .footer__bottom { flex-direction: column; gap: var(--sp-4); text-align: center; }
  .pricing-card--popular { transform: none; }
  .cta-banner__title { font-size: var(--text-2xl); }
}
