/* ===========================
   Build Seven — style.css
   Premium agency design
   =========================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Syne:wght@400;500;600;700;800&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0A0E17;
  --black-light: #111827;
  --green: #10B981;
  --green-dark: #059669;
  --green-glow: rgba(16,185,129,.4);
  --white-off: #F4F3F0;
  --gold: #F59E0B;
  --white: #FFFFFF;
  --gray-100: #F7F7F5;
  --gray-200: #E5E5E3;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --shadow-hover: 0 8px 32px rgba(16,185,129,.15), 0 2px 8px rgba(0,0,0,.08);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Syne', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white-off);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .03;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
ul, ol { list-style: none; }
button { cursor: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Custom Cursor --- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transition: transform .1s ease, width .3s, height .3s, background .3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: width .35s cubic-bezier(.25,.1,.25,1), height .35s cubic-bezier(.25,.1,.25,1), border-color .3s, background .3s;
  transform: translate(-50%, -50%);
  opacity: .5;
}
.cursor-dot.hovering {
  width: 60px; height: 60px;
  background: rgba(16,185,129,.15);
  mix-blend-mode: normal;
}
.cursor-ring.hovering {
  width: 60px; height: 60px;
  border-color: transparent;
  opacity: 0;
}

@media (pointer: coarse), (hover: none) {
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.italic { font-style: italic; }
.accent { color: var(--green); }
.gold { color: var(--gold); }

p { font-size: 1.05rem; color: var(--gray-600); max-width: 640px; }

/* --- Animated Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--green), var(--gold), var(--green));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--green-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10,14,23,.4);
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* Magnetic button wrapper */
.magnetic { display: inline-block; transition: transform .3s cubic-bezier(.25,.1,.25,1); }

/* --- Navigation (Pill topbar) --- */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 900px;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 20px;
  background: rgba(10,14,23,.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  transition: background .4s, box-shadow .4s;
}
.nav-pill.scrolled {
  background: rgba(10,14,23,.92);
  box-shadow: 0 4px 32px rgba(0,0,0,.2);
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
  color: var(--white);
}
.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.lang-switch {
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.lang-switch:hover { background: rgba(255,255,255,.15); color: var(--white); }

.nav-cta { margin-left: 4px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 900px;
  background: rgba(10,14,23,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: 8px 0;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mobile-nav-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero .container { position: relative; z-index: 2; text-align: center; }
.hero-content { max-width: 900px; margin: 0 auto; }
.hero h1 { color: var(--white); margin-bottom: 24px; line-height: 1.05; }
.hero p {
  color: rgba(255,255,255,.5);
  font-size: 1.2rem;
  max-width: 540px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
}
.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero-stat { text-align: center; }
.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .stat-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.35);
}

/* Hero animated grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(16,185,129,.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(245,158,11,.04) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(99,102,241,.04) 0%, transparent 40%);
}
.hero-grid-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 20s linear infinite;
}
@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Glow orb that moves */
.hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  filter: blur(80px);
  opacity: .3;
  animation: glow-drift 12s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes glow-drift {
  0% { top: 10%; left: 20%; }
  33% { top: 50%; left: 60%; }
  66% { top: 20%; left: 70%; }
  100% { top: 60%; left: 30%; }
}

/* Hero word animation */
.hero-word {
  display: inline-block;
  overflow: hidden;
}
.hero-word-inner {
  display: inline-block;
  transform: translateY(105%);
  animation: word-up .8s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-word-inner.delay-1 { animation-delay: .1s; }
.hero-word-inner.delay-2 { animation-delay: .2s; }
.hero-word-inner.delay-3 { animation-delay: .3s; }
.hero-word-inner.delay-4 { animation-delay: .4s; }
.hero-word-inner.delay-5 { animation-delay: .5s; }
@keyframes word-up {
  to { transform: translateY(0); }
}

/* --- Marquee --- */
.marquee-section {
  padding: 24px 0;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.marquee-section.light {
  background: var(--white-off);
  border-color: rgba(0,0,0,.04);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  padding: 0 24px;
  white-space: nowrap;
  color: rgba(255,255,255,.08);
  transition: color .3s;
}
.marquee-section.light .marquee-item {
  color: rgba(10,14,23,.06);
}
.marquee-item.filled {
  color: rgba(255,255,255,.2);
  -webkit-text-stroke: 0;
}
.marquee-section.light .marquee-item.filled {
  color: rgba(10,14,23,.12);
}
.marquee-item.stroke {
  -webkit-text-stroke: 1px rgba(255,255,255,.1);
  color: transparent;
}
.marquee-section.light .marquee-item.stroke {
  -webkit-text-stroke: 1px rgba(10,14,23,.08);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Sections --- */
section { padding: 120px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark p { color: rgba(255,255,255,.5); }
.section-light { background: var(--white-off); }
.section-white { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { margin: 0 auto; }

/* --- Statement Section --- */
.statement {
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.statement h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.15;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16,185,129,.06), transparent 40%);
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(16,185,129,.15);
}
.section-dark .bento-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}
.section-dark .bento-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(16,185,129,.2);
}
.section-dark .bento-card h3 { color: var(--white); }
.section-dark .bento-card p { color: rgba(255,255,255,.5); }

.bento-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  background: rgba(16,185,129,.08);
  color: var(--green);
}
.bento-card h3 { margin-bottom: 12px; }
.bento-card p { font-size: .95rem; }
.bento-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--green);
  transition: var(--transition);
}
.bento-card .card-link:hover { gap: 12px; }

/* --- Steps with connected line --- */
.steps-wrapper { position: relative; }
.steps-line {
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: rgba(255,255,255,.06);
  z-index: 0;
}
.steps-line-fill {
  height: 100%;
  width: 0;
  background: var(--green);
  transition: width 1.5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 12px var(--green-glow);
}
.steps-line-fill.animated { width: 100%; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.step { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .6s;
}
.section-dark .step-number {
  background: rgba(16,185,129,.1);
  color: var(--green);
  border: 1px solid rgba(16,185,129,.2);
}
.section-dark .step-number.glow {
  box-shadow: 0 0 24px var(--green-glow), 0 0 48px rgba(16,185,129,.15);
  background: rgba(16,185,129,.2);
}
.section-light .step-number {
  background: var(--green);
  color: var(--white);
}
.step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-dark .step h4 { color: var(--white); }
.step p { margin: 0 auto; font-size: .92rem; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  transition: transform .4s cubic-bezier(.25,.1,.25,1), box-shadow .4s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
/* Popular card: animated gradient border */
.pricing-card.popular {
  border: none;
  background: var(--white);
  position: relative;
}
.pricing-card.popular::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green), var(--gold), var(--green), var(--gold));
  background-size: 300% 300%;
  animation: border-gradient 4s ease infinite;
  z-index: -1;
}
@keyframes border-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.pricing-card.popular:hover {
  box-shadow: 0 20px 60px rgba(16,185,129,.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pricing-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price .period {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-400);
  font-weight: 400;
}
.pricing-desc {
  font-size: .9rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-features li {
  font-size: .9rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* --- Social Proof Marquee --- */
.trust-marquee {
  overflow: hidden;
  padding: 20px 0;
}
.trust-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.trust-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  margin: 0 12px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
}
.trust-item .trust-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(245,158,11,.2));
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(16,185,129,.15); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--black);
  text-align: left;
  gap: 16px;
}
.faq-question .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  font-size: 1.1rem;
  color: var(--gray-400);
}
.faq-item.open .faq-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  opacity: .2;
}
.cta-section h2 { position: relative; z-index: 1; }
.cta-section p { position: relative; z-index: 1; margin: 16px auto 36px; }
.cta-section .btn { position: relative; z-index: 1; }

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(16,185,129,.03), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .9rem; max-width: 280px; }
.footer-links h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  padding: 6px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green); }

.footer-form h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-form form { display: flex; flex-direction: column; gap: 10px; }
.footer-form input,
.footer-form textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--white);
  transition: var(--transition);
  resize: vertical;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,.25); }
.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(255,255,255,.06);
}
.footer-form textarea { min-height: 80px; }
.footer-form .btn { align-self: flex-start; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
  position: relative;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.25); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* --- Contact Page --- */
.contact-section { padding-top: 140px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h1 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 24px; }
.contact-info .response-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,.08);
  color: var(--green);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.contact-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
}
.form-group input,
.form-group textarea {
  background: var(--gray-100);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--black);
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16,185,129,.1);
}
.form-group textarea { min-height: 120px; }

/* --- Services Page --- */
.services-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
}
.services-hero h1 { margin-bottom: 16px; }
.services-hero p { margin: 0 auto; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { margin-bottom: 16px; }
.service-detail-content .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.service-detail-content .tag {
  background: rgba(16,185,129,.08);
  color: var(--green);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.service-detail-content .tag:hover {
  background: rgba(16,185,129,.15);
}

.service-visual {
  background: var(--black);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  font-size: .85rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(16,185,129,.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(245,158,11,.05) 0%, transparent 40%);
}

.service-includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.include-item:hover {
  background: rgba(16,185,129,.04);
}
.include-item .check {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: .1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: .2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: .3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: .4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: .5s; }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* --- Nav underline animation --- */
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::before { width: 100%; }
.nav-links a.active::before { width: 100%; }
.nav-links a.active::after { display: none; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  .bento-grid,
  .pricing-grid,
  .steps,
  .contact-grid,
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  section { padding: 80px 0; }
  .hero { padding-top: 80px; padding-bottom: 60px; }
  .services-hero { padding-top: 120px; }
  .contact-section { padding-top: 120px; }

  .hero-stats { flex-direction: column; gap: 24px; }

  .pricing-card:hover { transform: none; }

  .steps-line { display: none; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .bento-card { padding: 28px 24px; }
  .pricing-card { padding: 28px 24px; }
  .contact-form { padding: 28px 24px; }
}
