/* ===== TOKENS ===== */
:root {
  --bg:          #FAFAF8;
  --bg-2:        #F0EFEA;
  --surface:     #FFFFFF;
  --surface-2:   #F5F4F0;
  --border:      #E2E0D8;
  --blue:        #1E3A5F;
  --blue-light:  #2D5A8A;
  --orange:      #E86A2C;
  --orange-dim:  rgba(232, 106, 44, 0.08);
  --text:        #1A1A1A;
  --text-2:      #5C5C5C;
  --text-3:      #9A9A9A;
  --ff-head:     'Sora', system-ui, sans-serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;
  --radius:      10px;
  --radius-lg:   16px;
  --max:         1160px;
  --shadow:      0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg:   0 4px 24px rgba(0,0,0,0.10), 0 12px 48px rgba(0,0,0,0.08);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ===== NAV ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff !important;
  background: var(--orange);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: #D45A20;
  transform: translateY(-1px);
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--blue);
  padding: 0;
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.stat {
  flex: 1;
  padding: 1.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
  max-width: 160px;
}

/* ===== HERO ===== */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-dim);
  border: 1px solid rgba(232, 106, 44, 0.2);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(232,106,44,0.3);
}
.btn-primary:hover {
  background: #D45A20;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,106,44,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--text-2);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-trust-label {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.trust-tags span {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

/* ===== HERO IMAGE ===== */
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(30,58,95,0.85) 0%, transparent 100%);
  padding: 1.5rem 1.5rem 1.25rem;
}
.hero-image-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== PAIN POINTS ===== */
.pain-points {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.pain-points-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-tag {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}
.pain-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.pain-header p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pain-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.25s;
}
.pain-card:hover {
  border-color: rgba(232, 106, 44, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.pain-card h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.pain-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}
.pain-stat {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pain-stat strong {
  color: var(--orange);
  font-size: 1rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.how-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.how-header p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-connector {
  display: none; /* simple without connector lines */
}
.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  border-color: rgba(232, 106, 44, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.step-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}
.step-detail {
  margin-top: 1.25rem;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.sp-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.sp-header {
  text-align: center;
  margin-bottom: 3rem;
}
.sp-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.sp-header p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.testimonial:hover {
  border-color: rgba(30, 58, 95, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after { content: '"'; }
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--orange);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-info { min-width: 0; }
.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.author-meta {
  font-size: 0.75rem;
  color: var(--text-3);
}
.testimonial-result {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.result-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.result-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 6rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-dim);
  border: 1px solid rgba(232, 106, 44, 0.2);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.cta-headline {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cta-note {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ===== FOOTER ===== */
footer {
  background: var(--blue);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col-head {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .stats-inner { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-headline { font-size: 2rem; }
  .cta-headline { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}