﻿/* ================================================
   DESIGN SYSTEM — AETHERFORGE Web Agency
   Version: 1.0  |  Built for Hostinger (static)
   Design DNA: Nadia Wellness × Dark Premium 2026
   ================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────── */
:root {
  /* Core Colors */
  --color-void:        #050508;
  --color-abyss:       #0a0b14;
  --color-midnight:    #0d1b2a;
  --color-cosmos:      #1a2744;
  --color-electric:    #2563eb;
  --color-arctic:      #60a5fa;
  --color-emerald:     #059669;
  --color-forest:      #10b981;
  --color-glacier:     #f0f7ff;
  --color-mist:        #94a3b8;
  --color-glass:       rgba(255, 255, 255, 0.08);
  --color-glass-fill:  rgba(255, 255, 255, 0.04);
  --color-pain-border: rgba(239, 68, 68, 0.45);

  /* Gradients */
  --gradient-hero:     linear-gradient(135deg, #050508 0%, #0d1b2a 50%, #050f1a 100%);
  --gradient-electric: linear-gradient(120deg, #1a2744 0%, #2563eb 60%, #059669 100%);
  --gradient-cta:      linear-gradient(120deg, #2563eb 0%, #059669 100%);
  --gradient-glow:     radial-gradient(ellipse at center, rgba(37,99,235,0.18) 0%, transparent 65%);
  --gradient-emerald:  linear-gradient(120deg, #059669 0%, #2563eb 100%);
  --gradient-section:  linear-gradient(180deg, #050508 0%, #0a0b14 100%);

  /* Typography */
  --font-display:  'Cinzel', serif;
  --font-headline: 'Playfair Display', serif;
  --font-body:     'Inter', sans-serif;
  --font-stat:     'Space Grotesk', sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  min(90rem, 100% - 3rem);

  /* Radii */
  --radius-sm:   0.75rem;
  --radius-md:   1.5rem;
  --radius-lg:   2rem;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-card: 0 20px 60px rgba(37, 99, 235, 0.12);
  --shadow-glow: 0 8px  32px rgba(37, 99, 235, 0.4);
  --shadow-soft: 0 15px 35px rgba(10, 11,  20, 0.6);

  /* Easing */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background-color: var(--color-void);
  color: var(--color-mist);
  line-height: 1.75;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── 3. LAYOUT UTILITIES ──────────────────────── */
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding-block: var(--section-py);
  position: relative;
}
.section--abyss    { background-color: var(--color-abyss); }
.section--midnight { background-color: var(--color-midnight); }
.section--cosmos   { background-color: var(--color-cosmos); }
.section--b-forest { background-color: #050f0a; }

/* Sacred texture overlay */
.sacred-texture { position: relative; }
.sacred-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.sacred-texture > * { position: relative; z-index: 1; }

/* Radial glow layer */
.glow-bg { position: relative; overflow: hidden; }
.glow-bg::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  max-width: 900px; max-height: 900px;
  background: var(--gradient-glow);
  pointer-events: none;
  z-index: 0;
}
.glow-bg > * { position: relative; z-index: 1; }

/* ── 4. TYPOGRAPHY ────────────────────────────── */
.display-text {
  font-family: var(--font-display);
  color: var(--color-glacier);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.headline {
  font-family: var(--font-headline);
  color: var(--color-glacier);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; }
.h2 { font-size: clamp(1.9rem, 4vw, 3.25rem); font-weight: 700; }
.h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 700; }

.text-gradient {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-mist   { color: var(--color-mist); }
.text-arctic { color: var(--color-arctic); }
.text-glacier { color: var(--color-glacier); }
.text-forest  { color: var(--color-forest); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-arctic);
  margin-bottom: 1rem;
  display: block;
}
.section-header {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--color-mist);
  max-width: 40rem;
  margin-inline: auto;
}

/* ── 5. BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-15deg);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(37,99,235,0.5); }
.btn-primary:hover::after { animation: shimmer 0.65s ease forwards; }

.btn-emerald {
  background: var(--gradient-emerald);
  color: #fff;
  box-shadow: 0 4px 24px rgba(5, 150, 105, 0.35);
}
.btn-emerald:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(5,150,105,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--color-glacier);
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--color-glass-fill);
  border-color: rgba(96,165,250,0.4);
  color: var(--color-arctic);
  transform: translateY(-2px);
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── 6. GLASS CARD ────────────────────────────── */
.glass-card {
  background: var(--color-glass-fill);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.glass-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.2);
}

/* ── 7. ICON ORB ──────────────────────────────── */
.icon-orb {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-electric);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.icon-orb svg { color: #fff; width: 24px; height: 24px; }
.icon-orb--emerald { background: var(--gradient-emerald); box-shadow: 0 8px 32px rgba(5,150,105,0.4); }
.icon-orb--sm { width: 48px; height: 48px; }
.icon-orb--sm svg { width: 20px; height: 20px; }

/* ── 8. NAVIGATION ────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.35s var(--ease-out);
}
.nav.scrolled {
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-glass);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-glacier);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav__logo span { color: var(--color-arctic); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mist);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--color-glacier); }
.nav__cta { flex-shrink: 0; }
.nav__cta .btn { padding: 0.6rem 1.4rem; font-size: 0.74rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-glacier);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: rgba(10, 11, 20, 0.97);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--color-glass);
  padding: 6rem 2rem 2rem;
  transition: right 0.35s var(--ease-out);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__mobile.open { right: 0; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mist);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-glass);
  transition: color 0.2s;
  display: block;
}
.nav__mobile a:hover { color: var(--color-glacier); }
.nav__mobile .btn { margin-top: 1.5rem; text-align: center; justify-content: center; }

/* ── 9. HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.2) brightness(0.4);
  transform: scale(1.03);
  display: block;
}
.hero__glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75vw; height: 75vw;
  max-width: 950px; max-height: 950px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero__content { max-width: 54rem; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-arctic);
  margin-bottom: 1.75rem;
}
.hero__badge svg { width: 13px; height: 13px; }
.hero__title { margin-bottom: 1.25rem; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-mist);
  max-width: 36rem;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-glass);
}
.hero__stat-num {
  font-family: var(--font-stat);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-glacier);
  line-height: 1;
}
.hero__stat-num .accent { color: var(--color-arctic); }
.hero__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-top: 0.3rem;
}

/* Hero split layout (A & B) */
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero__mockup { opacity: 0.15; pointer-events: none; }
.hero__mockup-frame {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1a2744, #0d1b2a);
  border: 1px solid var(--color-glass);
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: 1.25rem;
}
.hero__mockup-bar { display: flex; gap: 6px; margin-bottom: 1rem; }
.hero__mockup-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.hero__mockup-lines div {
  height: 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 9px;
}
.hero__mockup-lines div:nth-child(1) { width: 60%; }
.hero__mockup-lines div:nth-child(2) { width: 82%; }
.hero__mockup-lines div:nth-child(3) { width: 43%; }
.hero__mockup-lines div:nth-child(4) { width: 70%; }
.hero__mockup-lines div:nth-child(5) { width: 55%; background: rgba(37,99,235,0.25); }
.hero__mockup-lines div:nth-child(6) { width: 35%; background: rgba(5,150,105,0.2); margin-top: 1rem; height: 28px; border-radius: 14px; }

/* Hero foreground image — right column */
.hero__fg-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px var(--color-glass);
  aspect-ratio: 4 / 3;
}
.hero__fg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero__fg-img:hover img { transform: scale(1.03); }
.hero__fg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,8,0.65) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__fg-img { display: none; }
}

/* ── 10. PROOF STRIP ──────────────────────────── */
.proof-strip {
  background: var(--color-midnight);
  border-top: 1px solid var(--color-glass);
  border-bottom: 1px solid var(--color-glass);
  padding: 3.5rem 0;
}
.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.proof-strip__num {
  font-family: var(--font-stat);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.proof-strip__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-top: 0.4rem;
}

/* ── 11. PAIN SECTION ─────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.pain-card {
  padding: 2rem;
  border-left: 3px solid var(--color-pain-border);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(239, 68, 68, 0.04);
  border-top: 1px solid var(--color-glass);
  border-right: 1px solid var(--color-glass);
  border-bottom: 1px solid var(--color-glass);
  transition: transform 0.3s var(--ease-out);
}
.pain-card:hover { transform: translateY(-3px); }
.pain-card__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.pain-card__icon svg { width: 18px; height: 18px; color: #f87171; }
.pain-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-glacier);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.pain-card p { font-size: 0.875rem; line-height: 1.75; }

/* ── 12. PORTFOLIO ────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.portfolio-card { padding: 0; overflow: hidden; }
.portfolio-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-cosmos), var(--color-midnight));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.portfolio-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.05); }
.portfolio-card__body { padding: 1.5rem; }
.portfolio-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-arctic);
  margin-bottom: 0.5rem;
}
.portfolio-card__title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--color-glacier);
  margin-bottom: 0.4rem;
}
.portfolio-card p { font-size: 0.875rem; line-height: 1.7; }
.portfolio-card__result {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-forest);
  margin-top: 0.75rem;
}
.portfolio-card__result svg { width: 12px; height: 12px; }

/* ── 13. METHOD / FRAMEWORK ───────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.method-card { padding: 2rem 1.75rem; text-align: center; }
.method-card .icon-orb { margin: 0 auto 1.25rem; }
.method-card__num {
  font-family: var(--font-stat);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-arctic);
  margin-bottom: 0.75rem;
}
.method-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-glacier);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.method-card p { font-size: 0.875rem; line-height: 1.75; }

/* ── 14. TESTIMONIALS ─────────────────────────── */
.testimonials-masonry {
  columns: 3;
  column-gap: 1.5rem;
}
.testimonial-card {
  break-inside: avoid;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.testimonial-card__quote {
  font-family: var(--font-headline);
  font-size: 3.5rem;
  line-height: 0.75;
  color: var(--color-electric);
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
}
.testimonial-card p {
  font-size: 0.925rem;
  color: var(--color-mist);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-electric);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.875rem; color: var(--color-glacier); }
.testimonial-card__role { font-size: 0.75rem; color: var(--color-mist); }
.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.testimonial-card__stars svg { width: 14px; height: 14px; color: #f59e0b; fill: #f59e0b; }

/* ── 15. BENEFITS ─────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.benefit-card { padding: 2.25rem 2rem; text-align: center; }
.benefit-card .icon-orb { margin-inline: auto; margin-bottom: 1.5rem; }
.benefit-card__title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--color-glacier);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.benefit-card p { font-size: 0.875rem; line-height: 1.75; }

/* ── 16. PROCESS ──────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-emerald));
  opacity: 0.3;
}
.process-step { text-align: center; }
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-stat);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-glow);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-glacier);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.85rem; line-height: 1.75; }

/* ── 17. FAQ ──────────────────────────────────── */
.faq-list { max-width: 52rem; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--color-glass); }
.faq-item:first-child { border-top: 1px solid var(--color-glass); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-glacier);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--color-arctic); }
.faq-trigger svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--color-arctic);
  transition: transform 0.3s var(--ease-out);
}
.faq-item.open .faq-trigger svg { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-body.open { max-height: 350px; padding-bottom: 1.5rem; }
.faq-body p { font-size: 0.95rem; color: var(--color-mist); line-height: 1.85; }

/* ── 18. CONTACT FORM ─────────────────────────── */
.contact-section { position: relative; overflow: hidden; }
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.contact-section > .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-left h2 { margin-bottom: 1rem; }
.contact-left p  { margin-bottom: 2rem; }
.trust-badges { display: flex; flex-direction: column; gap: 0.75rem; }
.trust-badge { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--color-mist); }
.trust-badge svg { width: 18px; height: 18px; color: var(--color-forest); flex-shrink: 0; }

.contact-form { padding: 2.5rem; border-radius: var(--radius-lg); }
.form-group { margin-bottom: 1.25rem; position: relative; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-glass);
  border-radius: var(--radius-sm);
  color: var(--color-glacier);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-mist); opacity: 0.5; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: var(--color-midnight); color: var(--color-glacier); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group.is-valid input,
.form-group.is-valid select { border-color: rgba(16, 185, 129, 0.6); padding-right: 2.75rem; }
.form-group textarea { resize: vertical; min-height: 115px; }
.valid-icon {
  position: absolute;
  right: 1rem; top: 2.4rem;
  width: 18px; height: 18px;
  color: var(--color-forest);
  display: none;
  pointer-events: none;
}
.form-group.is-valid .valid-icon { display: block; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 0.875rem; margin-top: 0.5rem; }

.form-thanks { display: none; text-align: center; padding: 3rem 2rem; }
.form-thanks .icon-orb { margin-inline: auto; margin-bottom: 1.5rem; }
.form-thanks h3 { font-family: var(--font-headline); font-size: 1.5rem; color: var(--color-glacier); margin-bottom: 0.75rem; }
.form-thanks p { color: var(--color-mist); font-size: 0.95rem; }

/* ── 19. SCARCITY BADGE ───────────────────────── */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #f87171;
  margin-bottom: 1.5rem;
}
.scarcity-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #f87171;
  animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}

/* ── 20. LOGO STRIP ───────────────────────────── */
.logo-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-glass);
  border-bottom: 1px solid var(--color-glass);
}
.logo-strip__label {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-bottom: 1.5rem;
  opacity: 0.65;
}
.logo-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 3rem;
}
.logo-strip__logos span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mist);
  opacity: 0.4;
  transition: opacity 0.2s;
}
.logo-strip__logos span:hover { opacity: 0.75; }

/* ── 21. MID-PAGE CTA ─────────────────────────── */
.mid-cta {
  padding-block: 3.5rem;
  text-align: center;
}
.mid-cta h2 { max-width: 36rem; margin-inline: auto; margin-bottom: 1.75rem; }

/* ── 22. FOOTER ───────────────────────────────── */
.footer {
  background: var(--color-void);
  border-top: 1px solid var(--color-glass);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-glacier);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.footer__logo span { color: var(--color-arctic); }
.footer__brand p { font-size: 0.875rem; max-width: 22rem; line-height: 1.8; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-glacier);
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--color-mist);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--color-glacier); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-glass);
  font-size: 0.78rem;
  color: var(--color-mist);
  opacity: 0.55;
}

/* ── 23. MOBILE STICKY CTA ────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-glass);
  padding: 0.875rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-glacier);
}
.sticky-cta .btn { padding: 0.65rem 1.5rem; font-size: 0.75rem; }

/* ── 24. SCROLL ANIMATIONS ────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ── 25. RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-masonry  { columns: 2; }
  .benefits-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-steps         { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer__inner         { grid-template-columns: 1fr 1fr; }
  .contact-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .hero--split .hero__inner { grid-template-columns: 1fr; }
  .hero__mockup          { display: none; }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .benefits-grid     { grid-template-columns: 1fr; }
  .method-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-masonry { columns: 1; }
  .sticky-cta        { display: block; }
  .footer__inner     { grid-template-columns: 1fr; gap: 2rem; }
  .portfolio-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .method-grid    { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .cta-group      { flex-direction: column; align-items: flex-start; }
  .hero__stats    { gap: 1.5rem; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
