/* ================================================
   DEBT DIGITAL — Shared Stylesheet
   Used across all pages. Edit once, updates everywhere.
   ================================================ */

:root {
  --navy: #0B1F3A;
  --navy-deep: #061324;
  --cream: #F7F3EC;
  --cream-warm: #EFE8DC;
  --sage: #4A6B57;
  --sage-light: #7A9A84;
  --gold: #B8894D;
  --gold-soft: #D4B583;
  --ink: #1A2332;
  --muted: #5A6576;
  --line: rgba(11, 31, 58, 0.12);
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 31, 58, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ========== NAV ========== */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px !important;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--sage); transform: translateY(-1px); }
.mobile-toggle { display: none; font-size: 24px; color: var(--navy); }

/* ========== DROPDOWN ========== */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
}
.nav-dropdown-menu a:hover {
  background: var(--cream-warm);
  color: var(--navy);
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary::after {
  content: '→';
  transition: transform 0.25s;
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-secondary {
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  border: 1.5px solid var(--line);
  transition: all 0.25s;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover { border-color: var(--navy); background: rgba(11, 31, 58, 0.03); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 24px 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184, 137, 77, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74, 107, 87, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(74, 107, 87, 0.1);
  color: var(--sage);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 300;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-meta {
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
  animation: fadeUp 0.7s ease 0.4s both;
}
.hero-meta span { margin: 0 12px; }
.hero-meta strong { color: var(--sage); font-weight: 600; }

/* Compact inner-page hero */
.page-hero {
  padding: 70px 24px 60px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.page-hero .hero-eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ========== TRUST BAR ========== */
.trust {
  padding: 48px 24px;
  background: var(--navy);
  color: var(--cream);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.trust-item { position: relative; }
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  height: 60%; width: 1px;
  background: rgba(247, 243, 236, 0.15);
}
.trust-label {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--gold-soft);
  font-style: italic;
  margin-bottom: 6px;
}
.trust-desc {
  font-size: 14px;
  color: rgba(247, 243, 236, 0.7);
  font-weight: 300;
}

/* ========== SECTION STYLES ========== */
section { scroll-margin-top: 80px; }
.section-pad { padding: 120px 24px; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== SERVICES GRID ========== */
.bg-warm { background: var(--cream-warm); }
.bg-cream { background: var(--cream); }

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.bg-warm .service-card { background: var(--cream); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 31, 58, 0.2);
}
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 12px;
}
.service-title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 14px;
}
.service-desc {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15.5px;
}
.service-section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-benefits { list-style: none; margin-bottom: 24px; }
.service-benefits li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px dashed var(--line);
}
.service-benefits li:last-child { border-bottom: none; }
.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.service-ideal {
  background: rgba(74, 107, 87, 0.06);
  border-left: 3px solid var(--sage);
  padding: 16px 18px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 28px;
  font-size: 14.5px;
  color: var(--ink);
}
.service-ideal strong { color: var(--sage); }
.service-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  align-self: flex-start;
  transition: all 0.25s;
}
.service-cta:hover { background: var(--sage); gap: 12px; }

/* ========== SOCIAL PROOF ========== */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}
.proof-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-stat-num em { color: var(--gold); font-style: italic; }
.proof-stat-label { font-size: 14px; color: var(--muted); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.bg-warm .testimonial { background: var(--cream); }
.testimonial::before {
  content: '"';
  font-family: 'Fraunces', serif;
  font-size: 80px;
  color: var(--gold-soft);
  position: absolute;
  top: 0; left: 20px;
  line-height: 1;
  opacity: 0.6;
}
.testimonial-quote {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
}
.testimonial-name { font-size: 14.5px; font-weight: 500; color: var(--navy); }
.testimonial-meta { font-size: 12.5px; color: var(--muted); }

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--sage); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.25s;
}
.faq-item.open .faq-icon {
  background: var(--navy);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 28px;
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 137, 77, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74, 107, 87, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-eyebrow { color: var(--gold-soft); }
.cta-inner h2 {
  color: var(--cream);
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
  font-weight: 300;
}
.cta-inner h2 em { color: var(--gold-soft); font-style: italic; }
.cta-inner p {
  font-size: 19px;
  color: rgba(247, 243, 236, 0.8);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 20px 40px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 10px 30px rgba(184, 137, 77, 0.3);
}
.cta-btn:hover { background: var(--gold-soft); transform: translateY(-2px); }
.cta-btn::after { content: '→'; transition: transform 0.25s; }
.cta-btn:hover::after { transform: translateX(4px); }

/* ========== FOOTER ========== */
footer {
  background: var(--navy-deep);
  color: rgba(247, 243, 236, 0.7);
  padding: 60px 24px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.1);
}
.footer-brand .logo { color: var(--cream); font-size: 28px; }
.footer-brand p {
  margin-top: 16px;
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-disclaimer {
  margin-top: 32px;
  padding: 20px;
  background: rgba(247, 243, 236, 0.03);
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(247, 243, 236, 0.55);
}
.footer-disclaimer strong { color: rgba(247,243,236,0.8); }

/* ========== SOLUTION DETAIL PAGE ========== */
.solution-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}
.solution-main h2 {
  font-size: 36px;
  font-weight: 400;
  margin: 40px 0 16px;
}
.solution-main h2:first-child { margin-top: 0; }
.solution-main p {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.7;
}
.solution-main ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
}
.solution-main ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.solution-main ul li:last-child { border-bottom: none; }
.solution-main ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 12px;
  color: var(--sage);
  font-weight: 700;
  font-size: 18px;
}
.solution-main .callout {
  background: rgba(74, 107, 87, 0.08);
  border-left: 3px solid var(--sage);
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
}
.solution-main .callout strong { color: var(--sage); }

.solution-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  background: var(--cream-warm);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--line);
}
.sidebar-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.sidebar-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.sidebar-stats { margin-bottom: 24px; }
.sidebar-stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat span:first-child { color: var(--muted); }
.sidebar-stat span:last-child { color: var(--navy); font-weight: 600; }
.sidebar-cta {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.25s;
  display: block;
}
.sidebar-cta:hover { background: var(--sage); }

.related-solutions {
  background: var(--cream-warm);
  padding: 80px 24px;
}
.related-grid {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--cream);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.related-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.related-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.related-card a {
  font-size: 14px;
  color: var(--sage);
  font-weight: 600;
}
.related-card a:hover { color: var(--navy); }

/* ========== LEGAL PAGE STYLING ========== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal-content h2 {
  font-size: 28px;
  margin: 40px 0 16px;
  font-weight: 400;
}
.legal-content h3 {
  font-size: 20px;
  margin: 28px 0 12px;
  font-weight: 500;
}
.legal-content p {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.75;
}
.legal-content ul {
  margin: 0 0 20px 24px;
  color: var(--ink);
  line-height: 1.75;
}
.legal-content ul li { margin-bottom: 8px; }
.legal-content .last-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.legal-content .warning-box {
  background: rgba(184, 137, 77, 0.1);
  border: 1px solid rgba(184, 137, 77, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
  font-size: 14.5px;
  color: var(--ink);
}
.legal-content .warning-box strong { color: var(--gold); }

/* ========== CONTACT FORM ========== */
.contact-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.contact-info p { color: var(--muted); margin-bottom: 24px; }
.contact-method {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-method strong {
  display: block;
  font-size: 13px;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-method a, .contact-method span {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}

.contact-form {
  background: var(--cream-warm);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74, 107, 87, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s;
}
.form-submit:hover { background: var(--sage); }

/* ========== HOW IT WORKS ========== */
.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  align-items: start;
  transition: all 0.25s;
}
.bg-warm .process-step { background: var(--cream); }
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.step-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 400;
}
.step-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ========== QUIZ (dedicated page) ========== */
.quiz-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.quiz-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.progress-bar {
  height: 3px;
  background: var(--cream-warm);
  border-radius: 100px;
  margin-bottom: 32px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--sage);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 100px;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp 0.3s ease; }
.quiz-step h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 400;
}
.quiz-step p.quiz-sub {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 28px;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  padding: 18px 20px;
  background: var(--cream-warm);
  border: 2px solid transparent;
  border-radius: 12px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
  width: 100%;
}
.quiz-option:hover {
  border-color: var(--sage);
  background: var(--cream);
}
.quiz-result { text-align: center; }
.result-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(74, 107, 87, 0.12);
  color: var(--sage);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.result-title {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 400;
}
.result-desc {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 16.5px;
  line-height: 1.7;
}
.result-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.25s;
}
.result-cta:hover { background: var(--sage); }
.restart-btn {
  display: block;
  margin: 20px auto 0;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  background: none;
}

/* ========== ABOUT PAGE ========== */
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.about-content p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 22px;
}
.about-content h2 {
  font-size: 32px;
  margin: 50px 0 20px;
  font-weight: 400;
}
.about-content .pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--navy);
  padding: 40px 0;
  margin: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  line-height: 1.4;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.value-item {
  padding: 28px;
  background: var(--cream-warm);
  border-radius: 14px;
}
.value-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--sage);
}
.value-item p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    align-items: flex-start;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 0 16px;
    border: none;
    min-width: 0;
    background: transparent;
    margin-top: 8px;
  }
  .mobile-toggle { display: block; }
  .section-pad { padding: 80px 24px; }
  .hero { padding: 60px 24px 80px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-item:nth-child(2)::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px; }
  .proof-stats { grid-template-columns: 1fr; gap: 32px; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .solution-layout { grid-template-columns: 1fr; gap: 40px; }
  .solution-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .quiz-card { padding: 32px 24px; }
  .process-step { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
  .step-num { font-size: 40px; }
}
@media (max-width: 520px) {
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item::after { display: none !important; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
