/* ===== Font Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ===== Design Tokens ===== */
:root {
  --forest:       #052c1e;
  --forest-mid:   #0a4830;
  --emerald:      #06db6b;
  --mint:         #07be5e;
  --whatsapp:     #09ab55;

  --cream:        #f7f9f5;
  --surface:      #ffffff;
  --surface-alt:  #f2f7f3;

  --text:         #0d1f14;
  --text-sec:     #4a6155;
  --text-muted:   #7a9486;

  --border:       #dce8e0;
  --border-light: #eef4f0;

  --shadow-sm:  0 1px 4px rgba(5,44,30,.07), 0 1px 2px rgba(5,44,30,.04);
  --shadow-md:  0 4px 18px rgba(5,44,30,.10), 0 2px 6px rgba(5,44,30,.06);
  --shadow-lg:  0 8px 36px rgba(5,44,30,.14), 0 4px 12px rgba(5,44,30,.07);
  --shadow-glow: 0 6px 24px rgba(6,219,107,.40);

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Fira Mono', monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { margin: 0; overflow-x: hidden; }

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, li { list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--mint) 0%, var(--emerald) 100%);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,219,107,.52);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background-color: var(--forest);
  color: #f5f5f5;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  transition: transform 0.22s var(--ease-out), background-color 0.22s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: var(--forest-mid);
  transform: translateY(-2px);
}

/* ===== Navigation ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: rgba(247, 249, 245, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 232, 224, 0.6);
  transition: background-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s;
}

.nav-wrapper.scrolled {
  background-color: rgba(247, 249, 245, 0.97);
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-left a.logo-link img { width: 9rem; }

.nav-link {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: width 0.25s var(--ease-out);
}

.nav-link:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Nav */
.nav-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background-color: var(--cream);
}

@media (min-width: 1024px) { .nav-mobile { display: none; } }

.nav-mobile .logo-link img { width: 7.5rem; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
  color: var(--text);
}

.hamburger svg { width: 1.5rem; height: 1.5rem; display: block; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.25rem 1.25rem 1.75rem;
  background-color: var(--cream);
  position: absolute;
  top: 100%; left: 0; right: 0;
  z-index: 50;
  box-shadow: 0 8px 28px rgba(5,44,30,.12);
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-nav-link {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu .btn-primary,
.mobile-menu .btn-secondary { align-self: flex-start; }

/* ===== Hero ===== */
.hero {
  position: relative;
  margin-top: 3.5rem;
  overflow: hidden;
  background-color: var(--cream);
}

@media (min-width: 1024px) { .hero { margin-top: 0; } }

.hero-image { position: relative; }

.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: right center;
  display: block;
}

@media (min-width: 768px)  { .hero-image img { height: 480px; } }
@media (min-width: 1024px) { .hero-image img { height: 580px; } }

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #f7f9f5 0%,
    rgba(247,249,245,.93) 28%,
    rgba(247,249,245,.62) 50%,
    rgba(247,249,245,.18) 72%,
    transparent 88%
  );
  pointer-events: none;
}

.hero-text {
  position: absolute;
  top: 0; left: 1rem;
  width: 78%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-text {
    width: 52%;
    gap: 1rem;
    left: max(1.25rem, calc((100% - 768px) / 2 + 1.25rem));
  }
}

@media (min-width: 1024px) {
  .hero-text {
    top: 2.5rem;
    width: 48%;
    gap: 1.125rem;
    left: max(2rem, calc((100% - 1024px) / 2 + 2rem));
  }
}

@media (min-width: 1280px) {
  .hero-text { left: calc((100% - 1280px) / 2 + 2rem); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  flex-shrink: 0;
}

@media (min-width: 768px) { .hero-eyebrow { font-size: 0.75rem; } }

.hero-text h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: -0.03em;
}

@media (min-width: 768px) { .hero-text h2 { font-size: 2rem; } }
@media (min-width: 1024px) { .hero-text h2 { font-size: 2.75rem; } }

.hero-text h3 {
  font-size: 0.725rem;
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 38ch;
}

@media (min-width: 768px) { .hero-text h3 { font-size: 0.9375rem; } }
@media (min-width: 1024px) { .hero-text h3 { font-size: 1rem; } }

.hero-text .btn-primary {
  font-size: 0.7rem;
  margin-top: 0.25rem;
}

@media (min-width: 1024px) {
  .hero-text .btn-primary {
    font-size: 0.8125rem;
    padding: 0.75rem 1.875rem;
    margin-top: 0.5rem;
  }
}

/* ===== Section Label ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

.section-label::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== Section Base ===== */
.section {
  padding: 3.5rem 1.25rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}

@media (min-width: 768px)  { .section { padding: 5.5rem 1.25rem; max-width: 768px; } }
@media (min-width: 1024px) { .section { max-width: 1024px; padding: 6.5rem 2rem; } }
@media (min-width: 1280px) { .section { max-width: 1280px; } }

/* ===== About Section ===== */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) { .about-section { gap: 6rem; } }

/* ===== Carousel ===== */
.carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-md);
}

.carousel-slide {
  display: none;
  width: 100%;
  justify-content: center;
}

.carousel-slide.active { display: flex; }

.carousel-slide img {
  height: 220px;
  object-fit: cover;
  border-radius: 1.25rem;
  width: 100%;
}

@media (min-width: 768px) { .carousel-slide img { height: 420px; } }

.reason-left .carousel-slide img { height: 220px; }

@media (min-width: 768px)  { .reason-left .carousel-slide img { height: 300px; } }
@media (min-width: 1024px) { .reason-left .carousel-slide img { height: 420px; } }

/* ===== Feature Cards (3-col) ===== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}

@media (min-width: 768px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* ===== Feature Cards (4-col) ===== */
.cards-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}

@media (min-width: 768px)  { .cards-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Light cards (about section) */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.375rem;
  padding: 1.75rem 1.375rem;
  text-align: center;
  transition: transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              border-color 0.25s;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(7, 190, 94, 0.45);
}

.feature-card img {
  margin: 0 auto;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.feature-card h4 {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-top: 0.25rem;
}

.feature-card p {
  font-size: 0.8125rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ===== Reason Section ===== */
.reason-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .reason-section {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.reason-left { width: 100%; flex-shrink: 0; }
@media (min-width: 1024px) { .reason-left { width: 48%; } }

.reason-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

@media (min-width: 1024px) { .reason-right { width: 52%; } }

.reason-right h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--forest);
  letter-spacing: -0.02em;
}

@media (min-width: 768px)  { .reason-right h3 { font-size: 1.625rem; } }
@media (min-width: 1024px) { .reason-right h3 { font-size: 1.875rem; } }

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.bullet-list li img { width: 1.375rem; height: 1.375rem; flex-shrink: 0; }

/* ===== Features Section (dark) ===== */
.features-section-wrapper {
  background-color: var(--forest);
  /* dot-grid texture */
  background-image:
    radial-gradient(rgba(6, 219, 107, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
}

.features-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px)  { .features-section { padding: 6rem 1.25rem; gap: 4rem; } }
@media (min-width: 1024px) { .features-section { padding: 7rem 2rem; } }

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.section-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--surface);
  letter-spacing: -0.02em;
}

@media (min-width: 768px)  { .section-header h3 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .section-header h3 { font-size: 2.25rem; } }

.section-header p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.55);
  max-width: 55ch;
}

/* Dark feature cards */
.features-section .feature-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}

.features-section .feature-card:hover {
  background: rgba(6, 219, 107, 0.07);
  border-color: rgba(6, 219, 107, 0.38);
  box-shadow: 0 4px 24px rgba(6,219,107,.10);
}

.features-section .feature-card h4 { color: rgba(255,255,255,.94); }
.features-section .feature-card p  { color: rgba(255,255,255,.50); }

.features-section .section-label { color: var(--emerald); }
.features-section .section-label::before { background: var(--emerald); }

/* ===== Pricing Section ===== */
.pricing-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px)  { .pricing-section { padding: 6rem 1.25rem; } }
@media (min-width: 1024px) { .pricing-section { padding: 7rem 2rem; gap: 3.5rem; } }

/* Override section-header colors for light background */
.pricing-section .section-header h3 { color: var(--text); }
.pricing-section .section-header p  { color: var(--text-sec); }

/* Promo Banner */
.promo-banner {
  background-color: var(--forest);
  background-image: radial-gradient(rgba(6, 219, 107, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: 1.375rem;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  overflow: hidden;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--emerald);
  color: var(--forest);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  align-self: flex-start;
}

.promo-banner > p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.88);
  line-height: 1.5;
}

.promo-banner strong { color: var(--emerald); }

.promo-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.50);
}

.promo-code {
  background: rgba(6,219,107,.15);
  border: 1px solid rgba(6,219,107,.35);
  color: var(--emerald);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.15rem 0.6rem;
  border-radius: 0.375rem;
  letter-spacing: 0.05em;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .pricing-grid { grid-template-columns: repeat(5, 1fr); gap: 0.875rem; } }

/* Pricing Card */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.375rem;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  background: var(--forest);
  border-color: rgba(6,219,107,.5);
  color: white;
  box-shadow: 0 8px 32px rgba(5,44,30,.22);
}

.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(5,44,30,.3);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(6,219,107,.12);
  color: var(--mint);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.featured .tier-badge {
  background: var(--emerald);
  color: var(--forest);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.featured .tier-name { color: white; }

.tier-tx {
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  margin-top: 0.875rem;
  letter-spacing: -0.03em;
}

.featured .tier-tx { color: var(--emerald); }

.tier-tx-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.featured .tier-tx-label { color: rgba(255,255,255,.45); }

.tier-amount {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-sec);
  margin-top: 0.5rem;
}

.featured .tier-amount { color: rgba(255,255,255,.65); }

.tier-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}

.featured .tier-divider { border-color: rgba(255,255,255,.1); }

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-sec);
  line-height: 1.45;
}

.featured .tier-feature { color: rgba(255,255,255,.72); }

.tier-check {
  color: var(--mint);
  font-size: 0.875rem;
  flex-shrink: 0;
  line-height: 1.45;
}

.featured .tier-check { color: var(--emerald); }

.tier-support {
  font-size: 0.7375rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
}

.featured .tier-support {
  color: rgba(255,255,255,.38);
  border-color: rgba(255,255,255,.1);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  padding: 0.5625rem 1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 50;
  transition: transform 0.22s var(--ease-spring);
}

.whatsapp-float:hover { transform: scale(1.12); }

.whatsapp-float img {
  width: 3rem;
  height: 3rem;
  background-color: var(--whatsapp);
  padding: 0.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 18px rgba(9,171,85,.42);
}

@media (min-width: 768px)  { .whatsapp-float img { width: 3.375rem; height: 3.375rem; } }
@media (min-width: 1024px) { .whatsapp-float img { width: 3.625rem; height: 3.625rem; padding: 0.625rem; } }

/* ===== Footer ===== */
footer { background-color: var(--surface); }

/* Footer CTA */
.footer-cta {
  position: relative;
  background-color: var(--forest);
  background-image: radial-gradient(rgba(6, 219, 107, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  overflow: hidden;
}

.footer-cta-bg {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
}

.footer-cta-bg img { height: 100%; width: auto; object-fit: cover; }

@media (min-width: 1024px) {
  .footer-cta-bg img { width: 100%; height: auto; }
}

.footer-cta-inner {
  position: relative;
  z-index: 10;
  color: var(--surface);
  padding: 3.5rem 1.25rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px)  { .footer-cta-inner { padding: 5.5rem 1.25rem; } }
@media (min-width: 1024px) { .footer-cta-inner { padding: 6.5rem 2rem; } }

.footer-cta-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 768px)  { .footer-cta-content { width: 70%; } }
@media (min-width: 1024px) { .footer-cta-content { width: 55%; } }

.footer-cta-content .section-label { color: var(--emerald); }
.footer-cta-content .section-label::before { background: var(--emerald); }

.footer-cta-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

@media (min-width: 768px)  { .footer-cta-content h3 { font-size: 2.375rem; } }
@media (min-width: 1024px) { .footer-cta-content h3 { font-size: 2.875rem; } }

.footer-cta-content > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.60);
  line-height: 1.75;
}

@media (min-width: 768px) { .footer-cta-content > p { font-size: 1rem; } }

.check-list {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) { .check-list { font-size: 0.9375rem; } }

.check-list li { display: flex; align-items: center; gap: 0.625rem; }
.check-list li img { height: 1.125rem; flex-shrink: 0; }
.check-list li span { color: var(--emerald); font-weight: 600; }

.footer-cta-content .btn-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 1.25rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px)  { .footer-links { flex-direction: row; gap: 4rem; padding: 3.5rem 1.25rem; } }
@media (min-width: 1024px) { .footer-links { padding: 4rem 2rem; } }

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-address .footer-logo { width: 8.5rem; margin-bottom: 0.25rem; }

.footer-address > p {
  line-height: 1.75;
  color: var(--text-sec);
  font-size: 0.875rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.375rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-sec);
  transition: color 0.2s;
}

.contact-item:hover { color: var(--forest); }
.contact-item img { width: 1rem; flex-shrink: 0; opacity: 0.65; }

.social-links { display: flex; gap: 0.75rem; padding-top: 0.5rem; }

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-sec);
  transition: color 0.2s;
}

.social-link:hover { color: var(--forest); }
.social-link img { width: 1.125rem; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col h5 {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.footer-col a {
  color: var(--text-sec);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--forest); }

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom img { width: 7rem; opacity: 0.5; }

/* ===== Legal Pages (Privacy Policy, Terms of Service) ===== */
.legal-hero {
  background-color: var(--forest);
  padding: 7rem 1.25rem 3.5rem;
  text-align: center;
}

.legal-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.legal-hero h1 {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--surface);
}

@media (min-width: 768px) { .legal-hero h1 { font-size: 2.625rem; } }

.legal-meta {
  font-size: 0.875rem;
  color: rgba(247,249,245,0.55);
}

.legal-body {
  background-color: var(--cream);
  padding: 3.5rem 1.25rem 5rem;
}

.legal-article {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-article section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-article h2 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.legal-article h3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.legal-article p,
.legal-article li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-sec);
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.legal-article ul { list-style: disc; }
.legal-article ol { list-style: decimal; }

.legal-article a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-article a:hover { color: var(--mint); }

.legal-article strong { color: var(--text); font-weight: 600; }

.legal-divider {
  border: none;
  border-top: 1px solid var(--border-light);
}
