/* ============================================
   SYFAI.STUDIO — NETLIFY CLONE
   ============================================ */

/* Load Neue Helvetica 107 Condensed Extra Black from system */
@font-face {
  font-family: 'NeueHelvetica107';
  src: local('HelveticaNeue-CondBlk'),
       local('HelveticaNeueCondensed-Black'),
       local('Helvetica Neue Condensed Black'),
       local('HelveticaNeue-BoldCondensed'),
       local('Helvetica Neue Bold Condensed');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F4F4F4;
  --text: #0E0E0E;
  --accent: #1A1050;
  --accent-rich: #2410a0;   /* richer purple for nav bg */
  --accent-hover: #3018c8;
  --gray: #acacac;
  --gray-divider: rgba(14,14,14,0.12);
  --white: #ffffff;
  --font-body: 'Inter', Arial, sans-serif;
  --font-narrow: 'Barlow Condensed', Impact, sans-serif;
  --font-hero: 'NeueHelvetica107', 'HelveticaNeueCondensed-Black', 'Helvetica Neue Condensed', 'Barlow Condensed', Arial, sans-serif;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #0a0620; /* matches hero bg — prevents white flash on overscroll */
  overscroll-behavior-y: none;
}
body {
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  padding: 0 8px 8px;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

.container-lg { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.padding-v { padding: 120px 0; }

/* ============================================
   SECTION CARDS — rounded corners on white bg
   ============================================ */
.section-reel,
.ticker-section,
.section-intro,
.section-projects,
.section-services,
.section-testimonials,
.section-pricing,
.section-faq,
.section-cta,
.footer {
  border-radius: 36px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* Hero is flush at the top — only bottom corners rounded */
.section-hero {
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* ============================================
   NAVBAR
   Default: transparent container, each link is its own dark pill.
   Scrolled: solid navy rounded bar appears, everything compresses.
   ============================================ */
.navbar {
  position: fixed;
  top: 12px;
  left: 32px;
  right: 32px;
  z-index: 1000;
  background: transparent;
  transition: background 0.8s ease, border-radius 0.8s ease,
              top 0.8s ease, left 0.8s ease, right 0.8s ease,
              box-shadow 0.8s ease;
}
/* Scrolled: solid rounded pill container pulls in further */
.navbar.scrolled {
  top: 14px;
  left: 56px;
  right: 56px;
  border-radius: 100px;
  background: rgba(18, 10, 80, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(6,2,30,0.55);
}

.navbar-inner {
  height: 84px;
  display: flex;
  align-items: center;
  /* Default: spread to edges */
  padding: 0 52px;
  gap: 16px;
  transition: padding 0.5s cubic-bezier(0.25,1,0.5,1),
              height 0.5s ease;
}
/* Scrolled: pull inward slightly */
.navbar.scrolled .navbar-inner {
  padding: 0 36px;
  height: 76px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
}
.logo-name {
  font-family: var(--font-narrow);
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 0.01em;
}
.logo-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.3);
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Top nav links — each has its OWN dark pill bg at default */
.top-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}

.top-nav-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(14, 10, 55, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.top-nav-link:hover {
  background: rgba(40, 25, 120, 0.55);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.top-nav-link.active {
  background: rgba(40, 25, 120, 0.5);
  color: #fff;
}
/* Top nav slot-machine letters */
.top-nav-link {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}
.top-nav-link .nav-ltr-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.2;
}
.top-nav-link .nav-letter {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transform: translateY(0);
}
.top-nav-link .nav-letter-clone {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(110%);
}
.top-nav-link:hover .nav-letter { transform: translateY(-110%); }
.top-nav-link:hover .nav-letter-clone { transform: translateY(0); }

/* When scrolled, links blend into the solid bar — very subtle bg */
.navbar.scrolled .top-nav-link {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.05);
}
.navbar.scrolled .top-nav-link:hover {
  background: rgba(255,255,255,0.13);
}

/* Caiyro pill — slightly brighter */
.caiyro-pill {
  border-color: rgba(255,255,255,0.2) !important;
}

/* Hamburger */
.menu-btn {
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  z-index: 1100;
  border-radius: 100px;
  background: rgba(14, 10, 55, 0.32);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.2s;
}
.menu-btn:hover { background: rgba(40, 25, 120, 0.55); }
.navbar.scrolled .menu-btn {
  background: rgba(255,255,255,0.06);
}
.menu-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
}
.menu-btn.open .menu-line.top  { transform: translateY(3.75px) rotate(45deg); }
.menu-btn.open .menu-line.bottom { transform: translateY(-3.75px) rotate(-45deg); }

/* ============================================
   NAV OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
}
.nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  min-width: 480px;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 64px 60px;
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.77,0,0.175,1);
}
.nav-overlay.open { pointer-events: all; }
.nav-overlay.open .nav-backdrop { opacity: 1; }
.nav-overlay.open .nav-panel { transform: translateX(0); }

/* Nav link rows */
.nav-links-list { display: flex; flex-direction: column; margin-bottom: 40px; }
.nav-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-divider);
}
.nav-overlay-link {
  display: block;
  padding: 10px 0;
}

/* Letter clip — each letter sits inside a clip container */
.nav-link-clip {
  overflow: hidden;
  /* height = font-size * line-height — clips letters during animation */
  height: clamp(56px, 7.5vw, 92px);
  display: flex;
  align-items: center;
}

/* Individual letter spans — built by JS */
.nav-letter {
  display: block;
  font-family: var(--font-narrow);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--text);
  transform: translateY(0);
  /* transition set inline by JS with per-letter delay */
}

/* Clone letter — sits below, animates up */
.nav-letter-clone {
  display: block;
  font-family: var(--font-narrow);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(110%);
  /* transition set inline by JS with per-letter delay */
}

/* Letter group wrapper */
.nav-ltr-group {
  display: inline-flex;
  position: relative;
}

/* Hover: primary exits up, clone rises in */
.nav-overlay-link:hover .nav-letter {
  transform: translateY(-110%);
}
.nav-overlay-link:hover .nav-letter-clone {
  transform: translateY(0);
}

.nav-link-num {
  font-size: 11px;
  color: var(--gray);
  font-family: var(--font-body);
  flex-shrink: 0;
  margin-left: 12px;
}

/* CTA + social fade in after panel opens */
.nav-cta-wrap {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease 0.45s, transform 0.45s ease 0.45s;
}
.nav-social-row {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease 0.52s, transform 0.45s ease 0.52s;
}
.nav-overlay.open .nav-cta-wrap,
.nav-overlay.open .nav-social-row {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 100px;
  transition: background 0.25s;
}
.nav-cta-btn:hover { background: var(--accent-hover); }
.nav-social-link {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-social-link:hover { color: var(--text); }

/* ============================================
   HERO — full-screen cycling video bg
   ============================================ */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-videobg {
  position: absolute;
  inset: 0;
  background: #0a0620;
}
.hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-vid.show { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(10,6,40,0.5) 60%,
    rgba(10,6,40,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-heading {
  font-family: var(--font-hero);
  font-size: clamp(120px, 20vw, 288px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-sub {
  display: block;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-top: 64px;
  font-weight: 300;
  letter-spacing: 0.05em;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.hero-ticker-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-tags { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-tag { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero-tag-dot { color: rgba(255,255,255,0.25); }
.hero-social { display: flex; align-items: center; gap: 16px; }
.hero-social-icon { color: rgba(255,255,255,0.55); transition: color 0.2s; display: flex; align-items: center; }
.hero-social-icon:hover { color: #fff; }

/* ============================================
   VIDEO REEL SECTION (below hero)
   ============================================ */
.section-reel {
  position: relative;
  background: var(--text);
}
.reel-ticker .section-ticker {
  /* override color for dark bg */
}
.reel-viewport {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: #050310;
}
.reel-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.reel-vid.show { opacity: 1; }
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.4) 100%
  );
  pointer-events: none;
}
.reel-caption {
  position: absolute;
  bottom: 32px;
  left: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
.reel-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
}
.reel-dots {
  display: flex;
  gap: 6px;
}
.reel-dot {
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.reel-dot.active {
  background: rgba(255,255,255,0.9);
  width: 36px;
}
.reel-prev, .reel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.reel-prev:hover, .reel-next:hover { background: rgba(255,255,255,0.2); }
.reel-prev { left: 24px; }
.reel-next { right: 24px; }

/* ============================================
   TICKER
   ============================================ */
.ticker-section {
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--gray-divider);
  border-bottom: 1px solid var(--gray-divider);
  padding: 14px 0;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 18s linear infinite;
}
.ticker-inner span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  padding-right: 64px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-ticker-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--gray-divider);
  padding: 12px 0;
  margin-bottom: 64px;
}
.section-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}
.section-ticker span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  padding-right: 64px;
}
.section-reel .section-ticker span { color: rgba(255,255,255,0.35); }

.footer-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  margin-bottom: 64px;
}
.footer-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}
.footer-ticker span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding-right: 64px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(14,14,14,0.25);
  color: var(--text);
  font-size: 13px;
  padding: 16px 28px;
  border-radius: 100px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--text); background: rgba(14,14,14,0.04); }

/* ============================================
   INTRO
   ============================================ */
.section-intro { background: var(--bg); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-eyebrow {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.intro-list { margin-bottom: 32px; }
.intro-list li {
  font-size: 14px;
  color: rgba(14,14,14,0.6);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-divider);
}
.intro-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   DISPLAY HEADING
   ============================================ */
.display-heading {
  font-family: var(--font-narrow);
  font-size: clamp(64px, 11vw, 180px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* ============================================
   PROJECTS (dark purple)
   ============================================ */
.section-projects {
  background: var(--accent);
  padding: 0 0 100px;
  color: var(--white);
}
.section-projects .section-ticker-wrap { border-color: rgba(255,255,255,0.1); }
.section-projects .section-ticker span { color: rgba(255,255,255,0.3); }

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.projects-year {
  font-family: var(--font-narrow);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.project-card { position: relative; }
.project-link { display: block; }
.project-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: rgba(255,255,255,0.05);
}
.project-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-img { transform: scale(1.05); }
.project-hover-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.project-card:hover .project-hover-bar { transform: translateY(0); }
.project-meta { padding: 10px 2px 0; }
.project-cat { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.section-cta-row { margin-top: 56px; display: flex; }
.section-projects .display-heading { color: var(--white); }

/* ============================================
   SERVICES (dark purple)
   ============================================ */
.section-services {
  background: var(--accent);
  padding: 0 0 100px;
  color: var(--white);
}
.section-services .section-ticker-wrap { border-color: rgba(255,255,255,0.1); }
.section-services .section-ticker span { color: rgba(255,255,255,0.3); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-row:hover::before { transform: scaleX(1); }
.service-num { font-size: 11px; color: rgba(255,255,255,0.35); }
.service-name-wrap { overflow: hidden; }
.service-name {
  font-family: var(--font-narrow);
  font-size: clamp(44px, 6.5vw, 105px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  transition: transform 0.4s ease;
}
.service-row:hover .service-name { transform: translateX(8px); }
.service-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.section-testimonials { background: var(--bg); }
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(14,14,14,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.testimonial-stars { color: #f0c040; font-size: 13px; }
.testimonial-title { font-size: 14px; font-weight: 600; line-height: 1.3; }
.testimonial-text { font-size: 13px; color: rgba(14,14,14,0.58); line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--gray-divider); }
.testimonial-name { font-size: 12px; font-weight: 500; }
.testimonial-rating { font-size: 11px; color: var(--gray); }

/* ============================================
   PRICING (dark purple)
   ============================================ */
.section-pricing {
  background: var(--accent);
  padding: 0 0 100px;
  color: var(--white);
}
.section-pricing .section-ticker-wrap { border-color: rgba(255,255,255,0.1); }
.section-pricing .section-ticker span { color: rgba(255,255,255,0.3); }
.pricing-header { margin-bottom: 48px; }
.pricing-header .display-heading { color: var(--white); }
.pricing-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px;
}
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 36px;
}
.pricing-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.pricing-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before { content: '✓'; color: rgba(255,255,255,0.4); font-size: 12px; }
.pricing-timeline { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }
.pricing-meta-row { display: flex; gap: 10px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.pricing-meta-row span { font-size: 11px; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 6px 14px; }
.pricing-amount { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; }
.pricing-price { font-family: var(--font-body); font-size: clamp(44px, 6vw, 64px); font-weight: 500; color: var(--white); }
.pricing-period { font-size: 15px; color: rgba(255,255,255,0.45); }

/* ============================================
   FAQ
   ============================================ */
.section-faq { background: var(--bg); }
.faq-heading { margin-bottom: 56px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--gray-divider); }
.faq-item { border-bottom: 1px solid var(--gray-divider); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: clamp(17px, 2.2vw, 28px);
  font-weight: 400;
  text-align: left;
  gap: 20px;
}
.faq-icon { font-size: 22px; color: var(--gray); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 180px; }
.faq-answer p { font-size: 14px; color: rgba(14,14,14,0.6); line-height: 1.75; padding-bottom: 24px; max-width: 680px; }

/* ============================================
   CTA
   ============================================ */
.section-cta {
  background: var(--text);
  padding: 120px 0 80px;
  color: var(--white);
}
.cta-heading-wrap { display: flex; flex-direction: column; margin-bottom: 56px; }
.cta-word {
  font-family: var(--font-narrow);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.cta-bottom { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btn { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); }
.cta-btn:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 0 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-logo { display: block; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 18px; }
.footer-address { font-size: 13px; line-height: 1.7; margin-bottom: 10px; color: rgba(255,255,255,0.4); }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.footer-col-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .navbar { width: calc(100% - 40px); }
  .top-nav { display: none; }
  .projects-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .pricing-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container-lg { padding: 0 24px; }
  .navbar { width: calc(100% - 24px); top: 12px; border-radius: 16px; }
  .nav-panel { width: 100%; min-width: unset; padding: 80px 32px 40px; }
  .intro-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .projects-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-desc { display: none; }
  .projects-header, .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-ticker-wrap { flex-direction: column; gap: 10px; align-items: flex-start; padding: 14px 24px; }
  .reel-viewport { height: 60vw; min-height: 280px; }
}
