/* ═══════════════════════════════
   TOKENS – FOREST PALETTE
═══════════════════════════════ */
:root {
  --f1:  #0D2B1E;   /* deepest forest */
  --f2:  #163B2A;   /* dark canopy */
  --f3:  #1E5238;   /* forest mid */
  --f4:  #276B49;   /* moss */
  --f5:  #2E8B57;   /* sea-green leaf */
  --f6:  #D4F0E0;   /* pale mint */
  --f7:  #EBF8F2;   /* whisper mint */

  --g1:  #B5872A;   /* deep gold */
  --g2:  #D4A535;   /* warm gold */
  --g3:  #F0C842;   /* bright gold */
  --g4:  #FDF3CE;   /* gold whisper */

  --ink: #0D1F16;
  --ink2:#3D5246;
  --line:#C6DFD2;
  --card:#FFFFFF;
  --bg:  #F2FAF6;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-s: 0 2px 12px rgba(13,43,30,.10);
  --shadow-m: 0 6px 28px rgba(13,43,30,.13);
  --shadow-l: 0 14px 52px rgba(13,43,30,.16);
}

/* ═══════════════════════════════
   RESET & BASE
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', sans-serif;
  background: #e8ede8;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── 600px WRAPPER ── */
.page {
  width: 100%;
  max-width: 600px;
  background: var(--card);
  box-shadow: 0 0 60px rgba(0,0,0,.18);
  overflow: hidden;
  position: relative;
}

/* ═══════════════════════════════
   TOPBAR
═══════════════════════════════ */
.topbar {
  background: var(--f1);
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar-logo {
  display: flex; gap: 10px; align-items: center;
}
.topbar-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--f4), var(--f5));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  flex-shrink: 0;
}
.topbar-name {
  font-family: 'Amiri', serif;
  font-size: 1.1rem; color: #fff; line-height: 1;
}
.topbar-tagline { font-size: .62rem; color: rgba(255,255,255,.5); letter-spacing: .05em; }
.topbar-contact {
  display: flex; gap: 6px; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.75);
}
.topbar-contact i { color: var(--g3); }

/* ═══════════════════════════════
   HERO SECTION
═══════════════════════════════ */
.hero {
  background: linear-gradient(170deg, var(--f1) 0%, var(--f2) 40%, var(--f3) 100%);
  padding: 44px 28px 40px;
  position: relative;
  overflow: hidden;
}
/* background decorative rings */
.hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.hero::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(212,165,53,.12);
}
.hero-deco-leaf {
  position: absolute; bottom: -20px; left: -20px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,87,.18) 0%, transparent 70%);
}

.hero-badge {
  display: inline-flex; gap: 7px; align-items: center;
  background: rgba(212,165,53,.15);
  border: 1px solid rgba(212,165,53,.35);
  color: var(--g3);
  font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px;
  margin-bottom: 22px;
}
.hero-badge i { font-size: .7rem; }

.hero h1 {
  font-family: 'Amiri', serif;
  font-size: 1.85rem;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.hero h1 em {
  font-style: italic;
  color: var(--g3);
}
.hero-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.hero-highlights {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 30px;
  position: relative; z-index: 1;
}
.hero-hl {
  display: flex; gap: 9px; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.85);
  font-weight: 600;
}
.hero-hl-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--g3); flex-shrink: 0;
}
.hero-hl-price {
  font-family: 'Amiri', serif;
  color: var(--g3); font-size: 1rem;
}

.btn-wa-hero {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #1DB954, #25D366);
  color: #fff; font-weight: 800; font-size: 1rem;
  border: none; border-radius: var(--radius-m);
  cursor: pointer; position: relative; z-index: 1;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform .18s, box-shadow .18s;
  letter-spacing: .01em;
  text-decoration: none;
}
.btn-wa-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.4); }
.btn-wa-hero i { font-size: 1.3rem; }
.btn-wa-hero span small {
  display: block; font-size: .68rem; font-weight: 500;
  opacity: .85; letter-spacing: 0;
}

/* ═══════════════════════════════
   TRUST STRIP
═══════════════════════════════ */
.trust-strip {
  background: var(--f3);
  padding: 20px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.trust-item {
  text-align: center;
  padding: 10px 6px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Amiri', serif;
  font-size: 1.4rem; color: var(--g3);
  line-height: 1; margin-bottom: 3px;
}
.trust-label { font-size: .62rem; color: rgba(255,255,255,.65); line-height: 1.4; }

/* ═══════════════════════════════
   SECTIONS COMMON
═══════════════════════════════ */
.section { padding: 44px 24px; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--f2); }

.sec-eyebrow {
  display: inline-flex; gap: 7px; align-items: center;
  font-size: .66rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--f4); margin-bottom: 8px;
}
.sec-eyebrow::before, .sec-eyebrow::after {
  content: '';
  width: 22px; height: 2px;
  background: var(--g2); border-radius: 2px; flex-shrink: 0;
}
.sec-title {
  font-family: 'Amiri', serif;
  font-size: 1.55rem; color: var(--ink);
  line-height: 1.3; margin-bottom: 6px;
}
.sec-title em { color: var(--f4); font-style: italic; }
.sec-title-light { color: #fff; }
.sec-title-light em { color: var(--g3); }
.sec-desc { font-size: .88rem; color: var(--ink2); line-height: 1.75; }
.sec-desc-light { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════
   PAIN POINT
═══════════════════════════════ */
.pain-list { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.pain-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--f4);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  font-size: .88rem; color: var(--ink);
  font-weight: 600;
  box-shadow: var(--shadow-s);
  transition: border-left-color .2s;
}
.pain-item:hover { border-left-color: var(--g2); }
.pain-item i {
  color: var(--f4); margin-top: 1px; flex-shrink: 0;
  width: 16px;
}

/* ═══════════════════════════════
   WHY SECTION
═══════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s, border-color .2s;
  box-shadow: var(--shadow-s);
}
.why-card:hover { box-shadow: var(--shadow-m); border-color: var(--f5); }
.why-ico {
  width: 40px; height: 40px;
  background: var(--f7);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--f4); font-size: .95rem;
}
.why-card h4 { font-size: .85rem; font-weight: 800; color: var(--ink); line-height: 1.3; }
.why-card p { font-size: .78rem; color: var(--ink2); line-height: 1.6; }

/* ═══════════════════════════════
   PACKAGES
═══════════════════════════════ */
.pkg-list { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.pkg-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
  box-shadow: var(--shadow-s);
}
.pkg-card.featured { border-color: var(--g2); }
.pkg-card:hover { box-shadow: var(--shadow-m); }

.pkg-header {
  padding: 16px 20px 14px;
  display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.pkg-tier {
  font-size: .62rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 3px;
}
.pkg-tier.silver { color: #78909C; }
.pkg-tier.gold   { color: var(--g1); }
.pkg-tier.platinum { color: var(--f4); }
.pkg-name { font-family: 'Amiri', serif; font-size: 1.2rem; color: var(--ink); }

.pkg-badge-pop {
  background: var(--f3); color: #fff;
  font-size: .6rem; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.pkg-price-block { padding: 14px 20px; display: flex; align-items: flex-end; gap: 6px; }
.pkg-price {
  font-family: 'Amiri', serif;
  font-size: 1.9rem; color: var(--f3); line-height: 1;
}
.pkg-per { font-size: .72rem; color: var(--ink2); padding-bottom: 4px; }

.pkg-features {
  padding: 0 20px 16px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.pkg-feat {
  display: flex; gap: 7px; align-items: flex-start;
  font-size: .78rem; color: var(--ink2);
}
.pkg-feat i { color: var(--f5); margin-top: 2px; flex-shrink: 0; width: 11px; }

.pkg-cta {
  margin: 0 20px 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: calc(100% - 40px);
  padding: 12px;
  background: var(--f3);
  color: #fff; font-weight: 800; font-size: .88rem;
  border: none; border-radius: var(--radius-s);
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.pkg-cta:hover { background: var(--f4); transform: translateY(-1px); }
.pkg-card.featured .pkg-cta {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: 0 4px 16px rgba(181,135,42,.3);
}
.pkg-card.featured .pkg-cta:hover { background: linear-gradient(135deg, var(--g2), var(--g1)); }

/* ═══════════════════════════════
   BONUS SECTION
═══════════════════════════════ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.bonus-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-m);
  padding: 18px 12px;
  text-align: center;
  transition: background .2s;
}
.bonus-item:hover { background: rgba(255,255,255,.12); }
.bonus-ico { font-size: 1.6rem; margin-bottom: 8px; }
.bonus-name {
  font-size: .75rem; color: rgba(255,255,255,.85);
  font-weight: 700; line-height: 1.4;
}
.bonus-tag {
  display: inline-block;
  margin-top: 4px;
  background: var(--g1); color: #fff;
  font-size: .58rem; font-weight: 800; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testi-list { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px;
  box-shadow: var(--shadow-s);
}
.testi-stars { color: var(--g2); font-size: .8rem; margin-bottom: 8px; }
.testi-quote {
  font-size: .85rem; color: var(--ink2);
  line-height: 1.75; font-style: italic;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--f6);
}
.testi-quote::before { content: '\201C'; color: var(--f5); font-size: 1.1rem; }
.testi-quote::after  { content: '\201D'; color: var(--f5); font-size: 1.1rem; }
.testi-user { display: flex; gap: 10px; align-items: center; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--f6);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--f4); flex-shrink: 0;
}
.testi-name { font-weight: 800; font-size: .82rem; color: var(--ink); }
.testi-loc  { font-size: .72rem; color: var(--ink2); }

/* ═══════════════════════════════
   SOCIAL PROOF / STATS BAND
═══════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, var(--f2), var(--f3));
  padding: 32px 24px;
  text-align: center;
}
.stats-band-title {
  font-family: 'Amiri', serif;
  font-size: 1.2rem; color: rgba(255,255,255,.9);
  line-height: 1.4; margin-bottom: 24px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-m);
  padding: 18px 12px;
}
.stat-num {
  font-family: 'Amiri', serif;
  font-size: 2rem; color: var(--g3);
  line-height: 1; margin-bottom: 4px;
}
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.65); line-height: 1.4; }

/* ═══════════════════════════════
   LIMITED OFFER
═══════════════════════════════ */
.offer-box {
  background: linear-gradient(135deg, #0D2B1E, #163B2A);
  border: 2px solid var(--g2);
  border-radius: var(--radius-l);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(240,200,66,.07) 0%, transparent 60%);
}
.offer-label {
  display: inline-flex; gap: 6px; align-items: center;
  background: var(--g1); color: #fff;
  font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 14px;
}
.offer-title {
  font-family: 'Amiri', serif;
  font-size: 1.35rem; color: #fff;
  line-height: 1.3; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.offer-seat {
  display: inline-flex; gap: 8px; align-items: center;
  background: rgba(240,200,66,.12);
  border: 1px solid rgba(240,200,66,.3);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: .82rem; color: var(--g3); font-weight: 700;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.offer-sub {
  font-size: .82rem; color: rgba(255,255,255,.65);
  margin-bottom: 22px;
  position: relative; z-index: 1;
  line-height: 1.65;
}

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--card);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 16px;
  font-size: .85rem; font-weight: 700; color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q i { color: var(--f4); font-size: .85rem; flex-shrink: 0; transition: transform .25s; }
.faq-a {
  font-size: .82rem; color: var(--ink2); line-height: 1.7;
  padding: 0 16px;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-a  { max-height: 140px; padding: 0 16px 14px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

/* ═══════════════════════════════
   FINAL CTA
═══════════════════════════════ */
.final-cta {
  background: linear-gradient(170deg, var(--f1) 0%, var(--f3) 100%);
  padding: 48px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.final-cta::after {
  content: '';
  position: absolute; top: -40px; left: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,53,.09), transparent 70%);
}
.final-cta-icon {
  font-size: 2.4rem; margin-bottom: 14px; position: relative; z-index: 1;
}
.final-cta h2 {
  font-family: 'Amiri', serif;
  font-size: 1.65rem; color: #fff;
  line-height: 1.25; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.final-cta h2 em { color: var(--g3); font-style: italic; }
.final-cta p {
  font-size: .88rem; color: rgba(255,255,255,.68);
  line-height: 1.75; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.btn-wa-final {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 380px;
  padding: 17px 24px;
  background: linear-gradient(135deg, #128C47, #25D366);
  color: #fff; font-weight: 800; font-size: 1rem;
  border: none; border-radius: var(--radius-m);
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: transform .18s, box-shadow .18s;
  position: relative; z-index: 1;
  text-decoration: none;
}
.btn-wa-final:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,.45); }
.btn-wa-final i { font-size: 1.3rem; }
.btn-wa-final span small {
  display: block; font-size: .68rem; font-weight: 500; opacity: .85;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: var(--f1);
  padding: 20px 24px;
  text-align: center;
}
.footer-logo {
  font-family: 'Amiri', serif;
  font-size: 1.1rem; color: #fff; margin-bottom: 4px;
}
.footer-sub { font-size: .7rem; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.footer-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.footer-links a { font-size: .7rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-copy { font-size: .65rem; color: rgba(255,255,255,.25); margin-top: 10px; }

/* ═══════════════════════════════
   FLOATING WA BUTTON
═══════════════════════════════ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border: none; border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.1); }

/* ═══════════════════════════════
   DIVIDER
═══════════════════════════════ */
.divider-ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 4px 0 20px;
}
.divider-ornament span { font-size: .95rem; color: var(--f4); }
.divider-ornament::before, .divider-ornament::after {
  content: ''; flex: 1;
  height: 1px; background: var(--line);
}

/* ═══════════════════════════════
   UTILITIES
═══════════════════════════════ */
.text-center { text-align: center; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.35); }
  50%       { box-shadow: 0 10px 36px rgba(37,211,102,.55); }
}
.btn-wa-hero { animation: pulse-glow 2.5s ease-in-out infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge  { animation: fadeUp .5s ease .1s both; }
.hero h1     { animation: fadeUp .5s ease .2s both; }
.hero-sub    { animation: fadeUp .5s ease .3s both; }
.hero-highlights { animation: fadeUp .5s ease .4s both; }
.btn-wa-hero { animation: fadeUp .5s ease .5s both, pulse-glow 2.5s ease-in-out 1s infinite; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 400px) {
  .trust-strip   { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .why-grid      { grid-template-columns: 1fr; }
  .bonus-grid    { grid-template-columns: repeat(2, 1fr); }
  .pkg-features  { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
}