/* ============================================
   Sunloft Digital — Main Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;800;900&family=Nunito:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* --- Custom Properties --- */
:root {
  /* Palette — 80s Tropical */
  --magenta: #E930A8;
  --teal: #00CED1;
  --orange: #FF6F2C;
  --violet: #8B2FC9;
  --gold: #FFBF00;
  --green: #00B87A;

  /* Text-safe variants (WCAG AA on white) */
  --magenta-text: #DD1797;
  --teal-text: #008284;
  --orange-text: #D14200;
  --violet-text: #8B2FC9;
  --gold-text: #936E00;
  --green-text: #008457;

  /* Neutrals */
  --midnight: #0F0F1A;
  --night-sky: #1E1E30;
  --shell: #F5F3F0;
  --driftwood: #E0DCD6;
  --white: #FFFFFF;

  /* Typography */
  --font-headline: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 80px;
  --space-3xl: 100px;

  /* Section padding (desktop) */
  --section-pad-x: 160px;
  --section-pad-y: 80px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 50px;
  --radius-circle: 50%;

  /* Focus ring */
  --focus-ring: 0 0 0 3px var(--teal);
  --focus-ring-dark: 0 0 0 3px var(--gold);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--midnight);
  background-color: var(--shell);
  overflow-x: hidden;
  overflow-y: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}


/* ============================================
   ACCESSIBILITY
   ============================================ */

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 24px;
  background-color: var(--midnight);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
}

/* --- Focus styles --- */
*:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

/* Focus ring for buttons and pills */
.btn:focus-visible {
  box-shadow: var(--focus-ring);
  outline-offset: 2px;
}

/* Light focus ring on dark backgrounds */
#trust-strip *:focus-visible,
#stats *:focus-visible,
#process *:focus-visible,
#footer *:focus-visible,
.pricing-card.monthly *:focus-visible,
.mobile-nav *:focus-visible {
  box-shadow: var(--focus-ring-dark);
}

#contact *:focus-visible {
  box-shadow: var(--focus-ring-dark);
}

/* Restore default focus ring on the form (white bg) */
.cta-form *:focus-visible {
  box-shadow: var(--focus-ring);
}

/* --- Screen reader only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* --- Typography Scale --- */
.h-hero {
  font-family: var(--font-headline);
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 100%;
}

.h-section {
  font-family: var(--font-headline);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 110%;
}

.h-section-lg {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 110%;
}

.h-section-sm {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 120%;
}

.h-cta {
  font-family: var(--font-headline);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 110%;
}

.h-step {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 110%;
}

.h-sub {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 120%;
}

.h-card {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.h-faq {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.body-lg {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}

.body-md {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 165%;
}

.body-sm {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 155%;
}

.body-xs {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  font-size: 16px;
  padding: 18px 40px;
}

.btn-md {
  font-size: 15px;
  padding: 16px 32px;
}

.btn-sm {
  font-size: 14px;
  padding: 14px 28px;
}

.btn-outline {
  background: transparent;
  border: 2.5px solid currentColor;
}

/* --- Decorative Circles --- */
.circle {
  position: absolute;
  border-radius: var(--radius-circle);
  pointer-events: none;
  z-index: 0;
}

/* --- Section base --- */
.section {
  position: relative;
  width: 100%;
  overflow: clip;
}

.section-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
}

/* --- Divider --- */
.divider {
  width: 100%;
  height: 1px;
}

/* --- Checkmark list --- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-item {
  display: flex;
  gap: 10px;
  align-items: start;
}

.check-item .check {
  font-size: 16px;
  line-height: 22px;
  flex-shrink: 0;
}

.check-item .check-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 22px;
}

/* --- Form --- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #666;
}

.form-input,
.form-textarea {
  background-color: var(--shell);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--midnight);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}


/* ============================================
   SECTION STYLES
   ============================================ */

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: auto;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(245, 243, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--driftwood);
}

.nav-logo {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--midnight);
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 15, 26, 0.6);
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--midnight);
}

.nav-cta {
  background-color: var(--midnight);
  color: var(--white);
  font-size: 14px;
  padding: 10px 24px;
}

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px 0;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background-color: var(--midnight);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 24px; }
.nav-hamburger span:nth-child(3) { width: 16px; }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--midnight);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px 28px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  visibility: hidden;
}

.mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-logo {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.mobile-nav-close {
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-nav-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 1px;
  top: 50%;
  left: 50%;
}

.mobile-nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
}

.mobile-nav-link {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: -0.02em;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 40px;
}

.mobile-nav-cta .btn {
  width: 100%;
}

.mobile-nav-email {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Mobile nav decorative circles */
.mobile-nav .circle {
  z-index: -1;
}


/* --- 1. Hero --- */
#hero {
  background-color: var(--shell);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: clip;
}

#hero .section-inner {
  padding-top: 140px;
  padding-bottom: var(--section-pad-y);
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0;
  margin-left: max(calc((100vw - 1440px) / 2 + 128px), 128px);
}

.hero-headline {
  max-width: 900px;
}

.hero-body {
  color: #666;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  max-width: 900px;
}

.hero-ctas .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.hero-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--shell);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
}

.hero-pill-value {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 900;
}

.hero-pill-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: #999;
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  font-family: var(--font-headline);
  font-size: 260px;
  font-weight: 900;
  color: rgba(15, 15, 26, 0.03);
  letter-spacing: -0.06em;
  line-height: 85%;
  top: 50%;
  left: 48px;
  transform: translateY(-30%);
  pointer-events: none;
  white-space: pre;
  user-select: none;
}


/* --- 2. Trust Strip --- */
#trust-strip {
  background-color: var(--midnight);
}

#trust-strip .section-inner {
  padding: 32px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-stat-value {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.trust-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 130%;
  white-space: pre-line;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
}

.trust-companies {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.trust-companies-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 2px;
}

.trust-company {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}


/* --- 3. Services --- */
#services {
  background-color: var(--shell);
}

#services .section-inner {
  display: flex;
  gap: 60px;
}

.services-headline {
  flex-shrink: 0;
  width: 380px;
  padding-top: 8px;
}

.services-list {
  flex: 1;
}

.service-row {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--driftwood);
}

.service-row:last-child {
  border-bottom: none;
}

.service-accent {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-title {
  color: var(--midnight);
}

.service-desc {
  color: #666;
}


/* --- 4. Stats Banner --- */
#stats {
  background-color: var(--night-sky);
}

#stats .section-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stats-headline {
  color: var(--white);
  max-width: 600px;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.stat-value {
  font-family: var(--font-headline);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 100%;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.stats-divider {
  width: 1px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}


/* --- Violet Thread (from portrait through process) --- */
.about-portrait {
  width: 400px;
  height: 400px;
  border-radius: var(--radius-circle);
  outline: 10px solid var(--violet);
  flex-shrink: 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-circle);
}

.about-portrait::after {
  content: '';
  position: absolute;
  width: 10px;
  background-color: var(--violet);
  border-radius: 5px 5px 0 0;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  height: var(--thread-height, 2000px);
  z-index: -1;
  pointer-events: none;
}

.about-portrait::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--violet);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: calc(50% + var(--thread-height, 2000px) - 40px);
  z-index: -1;
  pointer-events: none;
}

/* --- 5. About --- */
#about {
  background-color: var(--teal);
  overflow: visible;
}

#about .section-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-headline {
  color: #000;
}

.about-body {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
}


/* --- 6. Process --- */
#process {
  background-color: var(--midnight);
  overflow: visible;
}

#process .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-top: 120px;
  padding-bottom: 100px;
}

.process-headline {
  color: var(--white);
  text-align: center;
}

.process-steps {
  width: 100%;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 136px;
  list-style: none;
  margin: 0;
}

.process-steps::before {
  display: none;
}

.process-step {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  position: relative;
}

.process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
  padding-top: 8px;
}

.process-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.process-circle .label {
  color: var(--midnight);
  font-size: 16px;
}

.process-circle.step-02 .label {
  color: var(--white);
}

.process-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.process-step-title {
  color: var(--white);
}

.process-step-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 170%;
  max-width: 700px;
}


/* --- 7. Differentiator --- */
#differentiator {
  background-color: var(--green);
}

#differentiator .section-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.diff-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
}

.diff-headline {
  color: var(--midnight);
}

.diff-sub {
  color: rgba(15, 15, 26, 0.7);
}

.diff-rows {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
}

.diff-row {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-top: 2px solid rgba(15, 15, 26, 0.12);
}

.diff-statement {
  flex: 1;
  color: var(--midnight);
}

.diff-answer {
  flex: 1;
  color: rgba(15, 15, 26, 0.65);
}


/* --- 8. Pricing --- */
#pricing {
  background-color: var(--white);
}

#pricing .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.pricing-header {
  text-align: center;
}

.pricing-sub {
  color: #666;
  margin-top: 12px;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  width: 100%;
}

.pricing-card {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card.monthly {
  background-color: var(--midnight);
}

.pricing-card.upfront {
  background-color: var(--shell);
}

.pricing-badge {
  background-color: rgba(0, 206, 209, 0.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-amount {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 56px;
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 16px;
}

.pricing-starting {
  font-family: var(--font-body);
  font-size: 16px;
  color: #999;
}


/* --- 9. FAQ --- */
#faq {
  background-color: var(--shell);
}

#faq .section-inner {
  display: flex;
  gap: 80px;
}

.faq-headline {
  flex-shrink: 0;
  width: 360px;
  padding-top: 8px;
}

.faq-list {
  flex: 1;
}

/* FAQ details/summary pattern */
.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--driftwood);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  color: var(--midnight);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item .faq-answer {
  padding: 0 0 24px 0;
  color: #666;
}

.faq-question {
  color: var(--midnight);
}


/* --- 10. CTA / Contact --- */
#contact {
  background-color: var(--magenta);
}

#contact .section-inner {
  display: flex;
  gap: 80px;
  align-items: start;
}

.cta-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.cta-headline {
  color: var(--white);
}

.cta-body {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 170%;
}

.cta-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-top: 8px;
}

.cta-alt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-alt-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-alt-buttons {
  display: flex;
  gap: 12px;
}

.cta-alt-buttons .btn {
  white-space: nowrap;
}

.cta-form {
  width: 440px;
  flex-shrink: 0;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--midnight);
}


/* --- 11. Footer --- */
#footer {
  background-color: var(--midnight);
}

#footer .section-inner {
  padding-top: 64px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  gap: 60px;
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-name {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 160%;
  max-width: 300px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.3);
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 24px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright,
.footer-credit {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --section-pad-x: 60px;
  }

  .h-hero { font-size: 52px; }
  .h-section { font-size: 36px; }
  .h-section-lg { font-size: 44px; }
  .h-cta { font-size: 40px; }
  .h-step { font-size: 32px; }

  .hero-watermark { font-size: 180px; }

  #hero .section-inner {
    margin-left: 60px;
    max-width: none;
  }

  #services .section-inner { flex-direction: column; gap: 32px; }
  .services-headline { width: auto; }

  #about .section-inner { flex-direction: column; align-items: center; text-align: center; }
  .about-portrait { width: 280px; height: 280px; }

  .process-steps { padding-left: 80px; }
  .process-steps::before { left: 15px; }

  /* Hide violet thread on tablet */
  .about-portrait::after,
  .about-portrait::before { display: none; }

  #faq .section-inner { flex-direction: column; gap: 32px; }
  .faq-headline { width: auto; }

  #contact .section-inner { flex-direction: column; gap: 40px; }
  .cta-form { width: 100%; }
  .cta-alt-buttons .btn { white-space: normal; }

  .stat-value { font-size: 48px; }
}

@media (max-width: 780px) {
  :root {
    --section-pad-x: 28px;
    --section-pad-y: 56px;
  }

  /* Nav */
  .nav { padding: 20px 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .h-hero { font-size: 38px; }
  .hero-watermark { font-size: 120px; left: 10px; }

  #hero .section-inner {
    padding-top: 100px;
    margin-left: 0;
    max-width: none;
    gap: 32px;
  }

  .hero-ctas {
    flex-wrap: wrap;
    gap: 12px;
    max-width: 100%;
  }

  .hero-ctas .btn {
    flex: 1 1 100%;
    padding: 16px 24px;
    font-size: 15px;
  }

  .hero-ctas .btn:nth-child(2),
  .hero-ctas .btn:nth-child(3) {
    flex: 1 1 calc(50% - 6px);
  }

  /* Trust strip */
  #trust-strip .section-inner {
    flex-direction: column;
    gap: 16px;
    padding: 32px 28px;
  }

  .trust-stats-row {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .trust-stat-value { font-size: 22px; }

  .trust-companies {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
  }

  .trust-companies-label {
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }

  /* Stats */
  .stat-value { font-size: 40px; }
  .stats-headline { font-size: 26px; }
  .stats-divider { height: 56px; }

  /* About */
  .about-portrait { width: 200px; height: 200px; outline-width: 8px; }

  /* Process */
  .process-steps { padding-left: 0; }
  .process-steps::before { display: none; }
  .process-step { gap: 20px; padding: 36px 0; }
  .process-node { width: 40px; }
  .process-circle { width: 36px; height: 36px; }
  .process-circle .label { font-size: 13px; }
  .process-step-body { font-size: 14px; }
  .h-step { font-size: 26px; }

  /* Differentiator */
  .h-section-lg { font-size: 34px; }
  .diff-row { flex-direction: column; gap: 8px; }
  .diff-statement { font-size: 20px; }
  .diff-answer { font-size: 14px; }

  /* Pricing */
  .pricing-cards { flex-direction: column; }
  .pricing-amount { font-size: 44px; line-height: 44px; }

  /* CTA */
  .h-cta { font-size: 32px; }
  .cta-alt-buttons { flex-direction: row; }
  .cta-alt-buttons .btn { flex: 1; text-align: center; justify-content: center; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-top > :first-child { margin-bottom: 8px; }
  .footer-cols { display: flex; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 4px; align-items: flex-start; }
}


/* ============================================
   ANIMATIONS
   ============================================ */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }

  .mobile-nav {
    transition: none;
  }
}
