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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: #0D1B2A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Layout helpers ─── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ─── Chips ─── */
.chip {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
}
.chip-light {
  background: #EBF3FF;
  color: #1B4F8A;
}
.chip-ghost {
  background: rgba(255,255,255,0.07);
  color: #7EC8E3;
  border: 1px solid rgba(255,255,255,0.13);
}
.chip-solid {
  background: #1B4F8A;
  color: #FFFFFF;
}

/* ─── Section Headers ─── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.section-header.center { align-items: center; text-align: center; }

.section-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}
.section-header h2.dark { color: #0D1B2A; }
.section-header h2:not(.dark) { color: #FFFFFF; }

.section-header p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 600px;
}
.section-header p.dark { color: #4A6080; }
.section-header p:not(.dark):not(.stats-sub) { color: #8BA6BF; }
.stats-sub { color: rgba(255,255,255,0.5); }

.section-header.white h2 { color: #FFFFFF; }
.section-header.white p { color: #8BA6BF; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E8EEF4;
  height: 72px;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 66px; width: 120px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: #3D4B5C;
  transition: color .2s;
}
.nav-links a:hover { color: #1B4F8A; }
.nav-links a.nav-pro {
  color: #1B4F8A;
  font-weight: 600;
}

.nav-ctas { display: flex; align-items: center; gap: 12px; }

.btn-login {
  font-size: 14px;
  font-weight: 600;
  color: #1B4F8A;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid #D0DCE8;
  transition: background .2s;
}
.btn-login:hover { background: #F0F6FF; }

.btn-signup {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  background: #1B4F8A;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background .2s;
}
.btn-signup:hover { background: #153d6e; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 100%);
  padding: 0 0;
}
.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 680px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 620px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EBF3FF;
  border: 1px solid #C5D9F0;
  border-radius: 999px;
  padding: 6px 14px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 500;
  color: #1B4F8A;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2E86C1;
  flex-shrink: 0;
}

.hero-headlines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-headlines h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: #0D1B2A;
  line-height: 1.1;
}
.hero-h3-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-accent {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, #1B4F8A 0%, #2E86C1 100%);
  border-radius: 12px;
  padding: 4px 16px;
  line-height: 1.1;
  display: inline-block;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: #4A6080;
  line-height: 1.65;
  max-width: 580px;
}

/* Search bar */
.hero-search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1.5px solid #C5D9F0;
  box-shadow: 0 4px 20px rgba(27,79,138,0.094);
  height: 60px;
  width: 580px;
  overflow: hidden;
}
.search-prof {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 16px;
  height: 100%;
}
.search-placeholder {
  font-size: 15px;
  color: #A0B3C8;
}
.search-divider {
  width: 1px;
  height: 36px;
  background: #E0E8F0;
  flex-shrink: 0;
}
.search-city {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  width: 180px;
  height: 100%;
}
.search-city-txt {
  font-size: 15px;
  font-weight: 500;
  color: #3D4B5C;
}
.search-btn {
  background: #1B4F8A;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  padding: 0 24px;
  height: 60px;
  border-radius: 0 10px 10px 0;
  transition: background .2s;
  white-space: nowrap;
}
.search-btn:hover { background: #153d6e; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-stars { font-size: 16px; color: #F5A623; }
.trust-txt { font-size: 14px; color: #4A6080; }

/* Hero right — prof cards */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.prof-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 24px;
  width: 440px;
  box-shadow: 0 8px 32px rgba(27,79,138,0.078);
}
.prof-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}
.prof-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prof-name {
  font-size: 16px;
  font-weight: 700;
  color: #0D1B2A;
}
.prof-spec {
  font-size: 13px;
  color: #4A6080;
}
.prof-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}
.prof-stars { font-size: 13px; font-weight: 600; color: #F5A623; }
.prof-reviews { font-size: 13px; color: #7A94AE; }
.prof-badge.verified {
  font-size: 12px;
  font-weight: 600;
  color: #2E7D32;
  background: #E8F5E9;
  border-radius: 999px;
  padding: 3px 10px;
}
.prof-cta {
  background: #1B4F8A;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.prof-cta:hover { background: #153d6e; }

.avail-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F0F6FF;
  border: 1px solid #C5D9F0;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #1B4F8A;
  align-self: flex-start;
}

/* ─── WHY DALILI ─── */
.why-dalili {
  background: #0D1B2A;
  padding: 88px 0;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.039);
  border: 1px solid rgba(255,255,255,0.078);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}
.why-card p {
  font-size: 14px;
  color: #8BA6BF;
  line-height: 1.65;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: #F8FAFD;
  padding: 88px 0;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
  width: 100%;
}
.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  text-align: center;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
}
.how-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0D1B2A;
}
.how-step p {
  font-size: 15px;
  color: #4A6080;
  line-height: 1.65;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  width: 48px;
  flex-shrink: 0;
  margin-top: 22px;
}

/* ─── PRICING ─── */
.pricing {
  background: #FFFFFF;
  padding: 88px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}
.plan {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plan-free, .plan-pro {
  background: #F8FAFD;
  border: 1px solid #E0EAF4;
}
.plan-starter {
  background: linear-gradient(160deg, #1B4F8A 0%, #2E86C1 100%);
  box-shadow: 0 16px 48px rgba(27,79,138,0.145);
}
.starter-badge {
  display: inline-block;
  background: #FFD740;
  color: #0D1B2A;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.plan-name {
  font-size: 16px;
  font-weight: 700;
  color: #0D1B2A;
}
.plan-name.white { color: #FFFFFF; }
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.plan-price-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #0D1B2A;
}
.plan-price-val.white { color: #FFFFFF; }
.plan-price-per {
  font-size: 15px;
  color: #7A94AE;
  padding-bottom: 6px;
}
.plan-price-per.muted { color: rgba(255,255,255,0.67); }

.plan-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4A6080;
}
.plan-desc.white-muted { color: rgba(255,255,255,0.8); }

.plan-divider {
  border: none;
  height: 1px;
  background: #E0EAF4;
}
.plan-divider.white { background: rgba(255,255,255,0.125); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.feat-on { color: #3D4B5C; }
.feat-off { color: #A0B3C8; }
.feat-on.white { color: #FFFFFF; }
.feat-off.white-off { color: rgba(255,255,255,0.5); }
.feat-icon { display: flex; align-items: center; flex-shrink: 0; }

.plan-spacer { flex: 1; }

.plan-btn {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: 12px 0;
  border-radius: 10px;
  transition: opacity .2s, background .2s;
  cursor: pointer;
}
.plan-btn-outline {
  border: 1.5px solid #1B4F8A;
  color: #1B4F8A;
}
.plan-btn-outline:hover { background: #EBF3FF; }
.plan-btn-white {
  background: #FFFFFF;
  color: #1B4F8A;
  font-weight: 700;
  padding: 13px 0;
}
.plan-btn-white:hover { opacity: .9; }
.plan-btn-primary {
  background: #1B4F8A;
  color: #FFFFFF;
  font-weight: 700;
  padding: 13px 0;
}
.plan-btn-primary:hover { background: #153d6e; }

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: #F8FAFD;
  padding: 88px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.test-card {
  background: #FFFFFF;
  border: 1px solid #E0EAF4;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.test-stars { font-size: 18px; color: #FFB800; letter-spacing: 2px; }
.test-quote {
  font-size: 15px;
  color: #3D4B5C;
  line-height: 1.7;
  flex: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.test-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0D1B2A;
}
.test-role {
  display: block;
  font-size: 13px;
  color: #7A94AE;
  margin-top: 2px;
}

/* ─── STATS ─── */
.stats {
  background: #0D1B2A;
  padding: 88px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.stat-card {
  background: rgba(255,255,255,0.031);
  border: 1px solid rgba(255,255,255,0.082);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: #0D1B2A;
  padding: 96px 80px;
}
.center-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  max-width: 700px;
  line-height: 1.1;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.733);
  line-height: 1.6;
  max-width: 600px;
}
.cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-btn-primary {
  background: #FFFFFF;
  color: #0D1B2A;
  font-size: 16px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  padding: 16px 32px;
  border-radius: 12px;
  transition: opacity .2s;
}
.cta-btn-primary:hover { opacity: .9; }
.cta-btn-outline {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: 16px 32px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.376);
  transition: background .2s;
}
.cta-btn-outline:hover { background: rgba(255,255,255,0.07); }

/* ─── FOOTER ─── */
.footer {
  background: #080F18;
  padding: 64px 80px 32px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
.footer-brand {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
}
.footer-col a:hover { color: #FFFFFF; }

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.082);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.313);
}

/* ─── Utility ─── */
.icon { flex-shrink: 0; }

/* ─── Hamburger button ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-hamburger:hover { background: #F0F6FF; }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1B4F8A;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-only nav CTA items — hidden on desktop */
.nav-mobile-ctas { display: none; }

/* ─── Tablet (≤ 1100px) ─── */
@media (max-width: 1100px) {
  .section-inner { padding: 0 40px; }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    gap: 48px;
    padding: 48px 40px 56px;
    min-height: auto;
  }
  .hero-left { width: 100%; flex-shrink: 1; }
  .hero-sub { max-width: 100%; }
  .hero-search { width: 100%; }
  .hero-right { width: 100%; align-items: flex-start; }
  .prof-card { width: 100%; max-width: 520px; }
  .avail-badge { align-self: flex-start; }

  /* Grids */
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Mobile (≤ 768px) ─── */
@media (max-width: 768px) {
  /* Nav */
  .nav-inner { padding: 0 20px; }
  .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E8EEF4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(13,27,42,0.1);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { padding: 0; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: none;
  }
  .nav-links a:hover { background: #F0F6FF; }

  /* Mobile CTA buttons inside nav */
  .nav-mobile-ctas {
    display: flex;
    gap: 12px;
    padding: 12px 24px 4px;
    flex-wrap: wrap;
  }
  .nav-mobile-ctas .btn-login,
  .nav-mobile-ctas .btn-signup {
    flex: 1;
    text-align: center;
    min-width: 120px;
  }

  /* Section inner */
  .section-inner { padding: 0 20px; }

  /* Section headers */
  .section-header h2,
  .section-header h2.dark { font-size: 28px; line-height: 1.15; }
  .section-header p { font-size: 15px; }

  /* Section padding */
  .why-dalili,
  .how-it-works,
  .testimonials,
  .stats { padding: 60px 0; }
  .pricing { padding: 60px 0; }

  /* Hero */
  .hero-inner { padding: 36px 20px 48px; gap: 36px; }
  .hero-headlines h1 {
    font-size: 34px;
    line-height: 1.15;
  }
  .hero-accent { font-size: 30px; padding: 3px 12px; }
  .hero-sub { font-size: 15px; }
  .hero-badge { font-size: 12px; padding: 5px 12px; }

  /* Search bar — stack vertically on mobile */
  .hero-search {
    width: 100%;
    height: auto;
    flex-direction: column;
    border-radius: 12px;
    overflow: visible;
    padding: 0;
  }
  .search-prof {
    width: 100%;
    padding: 14px 16px;
    height: 52px;
    border-bottom: 1px solid #E0E8F0;
  }
  .search-divider { display: none; }
  .search-city {
    width: 100%;
    padding: 14px 16px;
    height: 52px;
    border-bottom: 1px solid #E0E8F0;
  }
  .search-btn {
    width: 100%;
    border-radius: 0 0 10px 10px;
    height: 50px;
    font-size: 15px;
  }

  /* Trust bar — wrap */
  .hero-trust { flex-wrap: wrap; gap: 8px; }
  .trust-txt { font-size: 13px; }

  /* Prof cards */
  .prof-card {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    gap: 12px;
  }
  .prof-avatar { width: 46px; height: 46px; font-size: 15px; }
  .prof-name { font-size: 14px; }
  .prof-spec { font-size: 12px; }
  .prof-meta { flex-wrap: wrap; gap: 8px; }
  .avail-badge { font-size: 12px; padding: 8px 14px; }

  /* Why cards */
  .why-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .why-card { padding: 22px; }

  /* How it works */
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 40px;
  }
  .how-step { padding: 0 16px; width: 100%; max-width: 400px; }
  .step-arrow {
    transform: rotate(90deg);
    margin: 4px auto;
    padding: 8px 0;
    width: 48px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  .plan { padding: 24px; }
  .plan-price-val { font-size: 34px; }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  .test-card { padding: 22px; }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
  }
  .stat-card { padding: 20px 16px; }
  .stat-val { font-size: 32px; }
  .stat-label { font-size: 13px; }

  /* Final CTA */
  .final-cta { padding: 60px 20px; }
  .final-cta h2 { font-size: 28px; line-height: 1.15; }
  .final-cta p { font-size: 15px; }
  .cta-btns { flex-direction: column; width: 100%; gap: 12px; }
  .cta-btn-primary,
  .cta-btn-outline {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
    font-size: 15px;
  }

  /* Footer */
  .footer { padding: 48px 20px 28px; }
  .footer-inner { gap: 32px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ─── Extra small (≤ 400px) ─── */
@media (max-width: 400px) {
  .hero-headlines h1 { font-size: 28px; }
  .hero-accent { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-val { font-size: 40px; }
}
