/* ============================================
   THE GENIUS SWITCH — MASTER STYLESHEET
============================================ */

/* ---- RESET ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul,ol{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;font-size:1rem;}

/* ---- VARIABLES ---- */
:root{
  --green:#043748;
  --green-d:#021f2a;
  --green-m:#0a5066;
  --green-l:#0e6e8a;
  --cream:#FFFEEC;
  --cream-d:#FFF8D6;
  --gold:#FBC719;
  --gold-d:#E0A800;
  --ink:#0b2530;
  --gray:#5b6e75;
  --line:#e3e0cc;
  --white:#ffffff;
  --radius:16px;
  --radius-sm:10px;
  --shadow:0 14px 40px rgba(4,55,72,.14);
  --shadow-lg:0 24px 60px rgba(4,55,72,.22);
  --ff-head:'Playfair Display',serif;
  --ff-body:'Inter',sans-serif;
}

body{
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

/* ---- UTILITIES ---- */
.sec-tag{
  display:inline-block;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--green-l);
  background:rgba(10,80,102,.08);
  padding:6px 16px;
  border-radius:30px;
  margin-bottom:14px;
}
.sec-h{
  font-family:var(--ff-head);
  font-weight:700;
  font-size:clamp(1.8rem,3.6vw,2.6rem);
  color:var(--green);
  line-height:1.2;
  margin-bottom:14px;
}
.sec-h em{color:var(--green-l);font-style:italic;}
.sec-h strong{color:var(--gold-d);}
.sec-sub{
  font-size:1.05rem;
  color:var(--gray);
  max-width:680px;
  margin:0 auto 40px;
}
.center{text-align:center;}
.sec-head{text-align:center;max-width:760px;margin:0 auto 50px;}

section{padding:80px 0;}
.bg-cream{background:var(--cream);}
.bg-white{background:var(--white);}
.bg-dark{background:linear-gradient(160deg,var(--green-d),var(--green) 70%);color:var(--cream);}
.bg-dark .sec-h{color:var(--cream);}
.bg-dark .sec-sub{color:rgba(255,254,236,.78);}
.bg-dark .sec-tag{background:rgba(251,199,25,.16);color:var(--gold);}
.bg-gray{background:#f6f4e7;}

.btn-green,.btn-gold{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:800;
  font-size:1.02rem;
  padding:17px 38px;
  border-radius:50px;
  transition:transform .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.btn-green{background:var(--green);color:var(--cream);box-shadow:0 10px 26px rgba(4,55,72,.3);}
.btn-green:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(4,55,72,.4);}
.btn-gold{background:linear-gradient(180deg,#FFE070,var(--gold) 60%,var(--gold-d));color:var(--green-d);box-shadow:0 12px 30px rgba(251,199,25,.45);}
.btn-gold:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 18px 40px rgba(251,199,25,.55);}
.btn-block{width:100%;}

/* ---- TOPBAR ---- */
.topbar{
  background:var(--gold);
  color:var(--green-d);
  text-align:center;
  font-size:.84rem;
  font-weight:700;
  letter-spacing:.02em;
  padding:9px 14px;
}

/* ---- HEADER ---- */
header.site-head{
  position:sticky;top:0;z-index:1000;
  background:var(--cream);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s ease;
}
header.site-head.scrolled{box-shadow:0 6px 24px rgba(4,55,72,.12);}
.head-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.logo{display:flex;align-items:center;gap:12px;}
.logo img{width:46px;height:46px;border-radius:50%;background:var(--green);padding:4px;}
.logo-text{display:flex;flex-direction:column;line-height:1.15;}
.logo-text .name{font-family:var(--ff-head);font-weight:700;font-size:1.18rem;color:var(--green);}
.logo-text .tag{font-size:.68rem;color:var(--gray);text-transform:uppercase;letter-spacing:.08em;}
nav.desk-nav{display:flex;align-items:center;gap:30px;}
nav.desk-nav a{font-weight:600;font-size:.95rem;color:var(--green-d);position:relative;padding:6px 0;}
nav.desk-nav a.active,nav.desk-nav a:hover{color:var(--green-l);}
nav.desk-nav a.active::after{content:'';position:absolute;left:0;bottom:0;width:100%;height:2px;background:var(--gold);}
.head-actions{display:flex;align-items:center;gap:16px;}
.h-btn{
  background:var(--green);color:var(--cream);
  padding:12px 24px;border-radius:50px;font-weight:700;font-size:.92rem;
  display:flex;align-items:center;gap:10px;
}
.pulse-dot{width:9px;height:9px;border-radius:50%;background:var(--gold);position:relative;flex-shrink:0;}
.pulse-dot::after{
  content:'';position:absolute;inset:-4px;border-radius:50%;
  border:2px solid var(--gold);animation:pulse 1.6s ease-out infinite;
}
@keyframes pulse{0%{transform:scale(.6);opacity:1;}100%{transform:scale(1.8);opacity:0;}}
.hamburger{display:none;flex-direction:column;gap:5px;width:30px;}
.hamburger span{height:2px;width:100%;background:var(--green);border-radius:2px;transition:.25s;}
.hamburger.o span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.o span:nth-child(2){opacity:0;}
.hamburger.o span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.mob-menu{
  display:none;flex-direction:column;
  background:var(--white);border-top:1px solid var(--line);
  padding:10px 24px 24px;
}
.mob-menu.show{display:flex;}
.mob-menu a{padding:13px 0;border-bottom:1px solid var(--line);font-weight:600;color:var(--green-d);}
.mob-menu .h-btn{margin-top:16px;justify-content:center;}

/* ---- HERO ---- */
.hero{
  background:linear-gradient(180deg,var(--cream) 0%,var(--cream-d) 100%);
  padding:64px 0 70px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:50px;
  align-items:center;
}
.hero-img-col{order:1;display:flex;justify-content:center;position:relative;}
.hero-text-col{order:2;}
.hero-img-wrap{position:relative;max-width:460px;}
.hero-img-wrap img{
  animation:floaty 5s ease-in-out infinite;
  filter:drop-shadow(0 30px 40px rgba(4,55,72,.35));
}
@keyframes floaty{0%,100%{transform:translateY(0);}50%{transform:translateY(-16px);}}
.hero-badge{
  position:absolute;bottom:6px;right:-10px;
  background:var(--green);color:var(--cream);
  padding:12px 18px;border-radius:14px;
  font-size:.8rem;font-weight:700;text-align:center;
  box-shadow:var(--shadow);
  border:2px solid var(--gold);
}
.hero-badge strong{display:block;font-size:1.3rem;color:var(--gold);}
.official-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(10,80,102,.1);color:var(--green-l);
  font-weight:700;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;
  padding:7px 16px;border-radius:30px;margin-bottom:18px;
}
.official-pill::before{content:'';width:8px;height:8px;border-radius:50%;background:#1fae5a;}
.hero-text-col h1{
  font-family:var(--ff-head);
  font-size:clamp(2.1rem,4.4vw,3.2rem);
  line-height:1.14;
  color:var(--green-d);
  margin-bottom:18px;
}
.hero-text-col h1 em{color:var(--green-l);font-style:italic;}
.hero-text-col h1 strong{color:var(--gold-d);}
.hero-desc{font-size:1.08rem;color:var(--gray);margin-bottom:22px;max-width:560px;}
.hero-stars{display:flex;align-items:center;gap:10px;margin-bottom:26px;}
.hero-stars .stars{color:var(--gold-d);font-size:1.1rem;letter-spacing:2px;}
.hero-stars span{font-size:.9rem;color:var(--gray);font-weight:600;}
.hero-cta-row{display:flex;flex-wrap:wrap;gap:16px;align-items:center;margin-bottom:30px;}
.trust-pills{display:flex;flex-wrap:wrap;gap:14px;}
.trust-pills .pill{
  display:flex;align-items:center;gap:8px;
  font-size:.85rem;font-weight:600;color:var(--green-d);
  background:var(--white);padding:9px 16px;border-radius:30px;
  box-shadow:0 4px 14px rgba(4,55,72,.08);
}
.trust-pills .pill svg{width:16px;height:16px;flex-shrink:0;color:var(--green-l);}

/* ---- REVIEWS ---- */
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.review-card{
  background:var(--white);border-radius:var(--radius);padding:30px;
  box-shadow:var(--shadow);position:relative;
}
.review-top{display:flex;align-items:center;gap:14px;margin-bottom:16px;}
.review-top img{width:56px;height:56px;border-radius:50%;object-fit:cover;border:3px solid var(--cream-d);}
.review-name{font-weight:700;color:var(--green-d);font-size:.98rem;}
.review-loc{font-size:.8rem;color:var(--gray);}
.verified{
  display:inline-flex;align-items:center;gap:5px;
  font-size:.72rem;font-weight:700;color:#1fae5a;margin-top:3px;
}
.review-stars{color:var(--gold-d);font-size:.95rem;margin-bottom:10px;letter-spacing:1px;}
.review-card h4{font-size:1.08rem;color:var(--green-d);margin-bottom:10px;font-family:var(--ff-head);}
.review-card p{color:var(--gray);font-size:.94rem;}

/* ---- WHY CHOOSE ---- */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.why-card{
  background:var(--white);border-radius:var(--radius);padding:32px 26px;text-align:center;
  box-shadow:0 8px 24px rgba(4,55,72,.08);transition:transform .25s ease;
}
.why-card:hover{transform:translateY(-6px);}
.why-icon{
  width:60px;height:60px;border-radius:50%;
  background:linear-gradient(160deg,var(--green-l),var(--green));
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 18px;color:var(--cream);
}
.why-icon svg{width:28px;height:28px;}
.why-card h3{font-size:1.05rem;color:var(--green-d);margin-bottom:10px;font-family:var(--ff-head);}
.why-card p{font-size:.9rem;color:var(--gray);}

/* ---- PRICING ---- */
.pricing-wrap{
  background:var(--cream-d);
  border:2px solid var(--gold);
  border-radius:24px;
  padding:50px 40px;
  max-width:920px;margin:0 auto;
  text-align:center;
  box-shadow:var(--shadow-lg);
}
.pricing-wrap h3{font-family:var(--ff-head);color:var(--green-d);font-size:1.5rem;margin-bottom:6px;}
.pricing-wrap .sub-line{color:var(--gray);margin-bottom:30px;font-size:.95rem;}
.price-img-link{display:block;max-width:420px;margin:0 auto 26px;border-radius:16px;overflow:hidden;box-shadow:var(--shadow);}
.price-img-link img{transition:transform .3s ease;}
.price-img-link:hover img{transform:scale(1.015);}
.price-boxes{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;max-width:760px;margin:0 auto 26px;}
.price-box{
  background:var(--white);border-radius:14px;padding:16px;display:flex;align-items:center;gap:10px;
  box-shadow:0 6px 18px rgba(4,55,72,.1);text-align:left;font-weight:700;font-size:.9rem;color:var(--green-d);
}
.price-box .ic{width:34px;height:34px;border-radius:50%;background:var(--green);color:var(--gold);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.price-strike{color:#b23434;text-decoration:line-through;font-size:.95rem;margin:0 6px;}
.price-now{font-family:var(--ff-head);font-size:3rem;color:var(--green-d);font-weight:700;margin:10px 0 26px;}
.price-now .cur{font-size:1.6rem;vertical-align:top;color:var(--gold-d);}

/* ---- BONUSES ---- */
.bonus-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.bonus-card{
  background:rgba(255,254,236,.06);border:1px solid rgba(255,254,236,.18);
  border-radius:var(--radius);padding:26px;text-align:center;
}
.bonus-card img{border-radius:12px;margin-bottom:18px;}
.bonus-retail{color:#ff9c9c;text-decoration:line-through;font-size:.85rem;}
.bonus-card h4{font-family:var(--ff-head);font-size:1.1rem;margin:8px 0 10px;color:var(--gold);}
.bonus-card p{font-size:.88rem;color:rgba(255,254,236,.78);}

/* ---- WHAT-IS ---- */
.what-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:54px;align-items:center;}
.what-img{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);}
.what-text p{color:var(--gray);margin-bottom:16px;font-size:1.02rem;}
.what-text p:last-child{margin-bottom:0;}

/* ---- HOW IT WORKS ---- */
.steps-row{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
.step-card{
  background:var(--white);border-radius:var(--radius);padding:28px 20px;text-align:center;position:relative;
  box-shadow:0 8px 22px rgba(4,55,72,.08);
}
.step-num{
  position:absolute;top:-16px;right:-10px;
  width:36px;height:36px;border-radius:50%;background:var(--gold);color:var(--green-d);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.92rem;
  box-shadow:0 6px 14px rgba(251,199,25,.5);
}
.step-icon{
  width:58px;height:58px;border-radius:50%;background:var(--cream-d);
  display:flex;align-items:center;justify-content:center;margin:0 auto 16px;color:var(--green);
}
.step-icon svg{width:26px;height:26px;}
.step-card h4{font-size:.98rem;color:var(--green-d);margin-bottom:8px;font-family:var(--ff-head);}
.step-card p{font-size:.84rem;color:var(--gray);}

/* ---- ADVANTAGE ---- */
.adv-intro{max-width:740px;margin:0 auto 40px;text-align:center;color:var(--gray);}
.adv-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.adv-item{display:flex;gap:16px;background:var(--white);padding:22px;border-radius:14px;box-shadow:0 6px 18px rgba(4,55,72,.07);}
.adv-dot{width:38px;height:38px;border-radius:50%;background:var(--green);color:var(--gold);flex-shrink:0;display:flex;align-items:center;justify-content:center;font-weight:800;}
.adv-item h4{color:var(--green-d);font-size:1rem;margin-bottom:6px;font-family:var(--ff-head);}
.adv-item p{font-size:.88rem;color:var(--gray);}

/* ---- BENEFITS CHECKLIST ---- */
.benefit-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;max-width:920px;margin:0 auto;}
.benefit-item{display:flex;gap:14px;align-items:flex-start;}
.benefit-check{
  width:28px;height:28px;border-radius:50%;background:var(--gold);color:var(--green-d);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;font-weight:800;font-size:.85rem;
}
.benefit-item p{color:rgba(255,254,236,.88);font-size:.96rem;}

/* ---- FAQ ---- */
.faq-list{max-width:820px;margin:0 auto;}
.faq-item{background:var(--white);border-radius:14px;margin-bottom:14px;box-shadow:0 4px 14px rgba(4,55,72,.06);overflow:hidden;}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px;cursor:pointer;font-weight:700;color:var(--green-d);font-size:.98rem;gap:14px;
}
.faq-q .plus{width:24px;height:24px;flex-shrink:0;position:relative;}
.faq-q .plus::before,.faq-q .plus::after{
  content:'';position:absolute;background:var(--green);border-radius:2px;
}
.faq-q .plus::before{width:14px;height:2px;top:11px;left:5px;}
.faq-q .plus::after{width:2px;height:14px;top:5px;left:11px;transition:.25s;}
.faq-item.open .plus::after{transform:rotate(90deg);opacity:0;}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.faq-a p{padding:0 24px 20px;color:var(--gray);font-size:.92rem;}
.faq-item.open .faq-a{max-height:400px;}

/* ---- FINAL CTA ---- */
.final-cta-box{
  max-width:760px;margin:0 auto;text-align:center;
  background:rgba(255,254,236,.07);border:1px solid rgba(251,199,25,.35);
  border-radius:24px;padding:46px 36px;
}
.urgency{
  display:inline-block;background:rgba(251,199,25,.16);color:var(--gold);
  font-weight:700;font-size:.82rem;letter-spacing:.06em;text-transform:uppercase;
  padding:8px 20px;border-radius:30px;margin-bottom:20px;
}
.final-order-img{max-width:300px;margin:0 auto 22px;border-radius:14px;overflow:hidden;box-shadow:0 16px 40px rgba(0,0,0,.4);}
.price-note{color:rgba(255,254,236,.7);font-size:.85rem;margin-top:16px;}
.pay-logos{display:flex;justify-content:center;gap:18px;margin-top:28px;opacity:.85;flex-wrap:wrap;}
.pay-logos span{font-size:.78rem;font-weight:700;letter-spacing:.06em;border:1px solid rgba(255,254,236,.3);padding:6px 14px;border-radius:8px;color:rgba(255,254,236,.8);}

/* ---- SECURITY STRIP ---- */
.security-strip{display:flex;justify-content:center;gap:40px;flex-wrap:wrap;padding:30px 0;background:var(--cream-d);}
.security-strip .s-item{display:flex;align-items:center;gap:10px;font-size:.85rem;font-weight:700;color:var(--green-d);}
.security-strip svg{width:20px;height:20px;color:var(--green-l);}

/* ---- FOOTER ---- */
footer{background:var(--green-d);color:rgba(255,254,236,.75);padding:60px 0 30px;font-size:.88rem;}
.foot-row{display:flex;flex-wrap:wrap;gap:24px;justify-content:center;padding-bottom:20px;border-bottom:1px solid rgba(255,254,236,.12);margin-bottom:20px;}
.foot-row a{color:rgba(255,254,236,.85);font-weight:600;}
.foot-row a:hover{color:var(--gold);}
.foot-legal{max-width:900px;margin:0 auto 24px;font-size:.78rem;line-height:1.7;color:rgba(255,254,236,.55);text-align:center;}
.foot-copy{text-align:center;font-size:.82rem;color:rgba(255,254,236,.5);}
.foot-logo{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:24px;}
.foot-logo img{width:38px;height:38px;border-radius:50%;}
.foot-logo span{font-family:var(--ff-head);font-weight:700;color:var(--cream);font-size:1.1rem;}

/* ---- STICKY MOBILE CTA ---- */
.mob-cta{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:999;
  background:var(--green-d);padding:12px 16px;box-shadow:0 -8px 24px rgba(0,0,0,.25);
}
.mob-cta a{
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:var(--gold);color:var(--green-d);font-weight:800;
  padding:14px;border-radius:50px;font-size:.95rem;
}

/* ---- PROSE / NARRATIVE BLOCKS ---- */
.prose-block{max-width:820px;margin:0 auto;}
.prose-block p{color:var(--gray);font-size:1.02rem;margin-bottom:16px;}
.prose-block p:last-child{margin-bottom:0;}
.bg-dark .prose-block p{color:rgba(255,254,236,.82);}

/* ---- PROS & CONS ---- */
.proscons-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;max-width:980px;margin:0 auto;}
.proscons-card{background:var(--white);border-radius:var(--radius);padding:32px;box-shadow:var(--shadow);}
.proscons-card h3{font-family:var(--ff-head);font-size:1.2rem;margin-bottom:18px;}
.proscons-card.pros h3{color:#1fae5a;}
.proscons-card.cons h3{color:#c4452f;}
.proscons-card li{display:flex;gap:10px;align-items:flex-start;margin-bottom:13px;font-size:.94rem;color:var(--gray);}
.proscons-card.pros li::before{content:'✔';color:#1fae5a;font-weight:800;flex-shrink:0;}
.proscons-card.cons li::before{content:'✘';color:#c4452f;font-weight:800;flex-shrink:0;}

/* ---- AUDIENCE / WHO BENEFITS CARDS ---- */
.audience-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.audience-card{background:var(--white);border-radius:var(--radius);padding:28px;box-shadow:0 8px 22px rgba(4,55,72,.08);}
.audience-card h4{font-family:var(--ff-head);color:var(--green-d);font-size:1.05rem;margin-bottom:10px;}
.audience-card p{font-size:.9rem;color:var(--gray);}

/* ---- NUMBERED LIST (key features / how-to-use) ---- */
.numlist-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.numlist-item{display:flex;gap:16px;background:var(--white);padding:24px;border-radius:14px;box-shadow:0 6px 18px rgba(4,55,72,.07);}
.bg-dark .numlist-item{background:rgba(255,254,236,.06);box-shadow:none;border:1px solid rgba(255,254,236,.15);}
.numlist-num{width:40px;height:40px;border-radius:50%;background:var(--green);color:var(--gold);flex-shrink:0;display:flex;align-items:center;justify-content:center;font-weight:800;font-family:var(--ff-head);}
.bg-dark .numlist-num{background:var(--gold);color:var(--green-d);}
.numlist-item h4{color:var(--green-d);font-size:1rem;margin-bottom:6px;font-family:var(--ff-head);}
.bg-dark .numlist-item h4{color:var(--cream);}
.numlist-item p{font-size:.88rem;color:var(--gray);}
.bg-dark .numlist-item p{color:rgba(255,254,236,.78);}

@media(max-width:960px){
  .proscons-grid,.audience-grid,.numlist-grid{grid-template-columns:1fr;}
}

/* ---- LEGAL PAGES ---- */
.page-hero{background:linear-gradient(160deg,var(--green-d),var(--green));padding:70px 0 60px;text-align:center;}
.page-hero h1{font-family:var(--ff-head);color:var(--cream);font-size:clamp(2rem,4vw,2.8rem);}
.page-hero p{color:rgba(255,254,236,.7);margin-top:10px;}
.legal-wrap{max-width:840px;margin:0 auto;padding:70px 24px;}
.legal-wrap h2{font-family:var(--ff-head);color:var(--green-d);font-size:1.4rem;margin:36px 0 14px;}
.legal-wrap h2:first-child{margin-top:0;}
.legal-wrap p,.legal-wrap li{color:var(--gray);margin-bottom:12px;font-size:.98rem;}
.legal-wrap ul{padding-left:20px;list-style:disc;}
.legal-note{
  background:var(--cream-d);border-left:4px solid var(--gold);
  padding:18px 22px;border-radius:10px;margin:24px 0;font-size:.92rem;color:var(--green-d);
}
.legal-cta-box{
  background:var(--green-d);border-radius:20px;padding:40px;text-align:center;margin-top:50px;
}
.legal-cta-box h3{color:var(--cream);font-family:var(--ff-head);font-size:1.4rem;margin-bottom:10px;}
.legal-cta-box p{color:rgba(255,254,236,.7);margin-bottom:22px;}

/* ---- CONTACT PAGE ---- */
.contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:50px;max-width:1100px;margin:0 auto;padding:70px 24px;}
.contact-form{background:var(--white);border-radius:var(--radius);padding:38px;box-shadow:var(--shadow);}
.f-group{margin-bottom:18px;}
.f-group label{display:block;font-weight:700;font-size:.88rem;color:var(--green-d);margin-bottom:8px;}
.f-group input,.f-group select,.f-group textarea{
  width:100%;padding:13px 16px;border:1.5px solid var(--line);border-radius:10px;background:var(--cream);color:var(--ink);
}
.f-group input:focus,.f-group select:focus,.f-group textarea:focus{outline:2px solid var(--green-l);border-color:var(--green-l);}
.info-card{background:var(--white);border-radius:14px;padding:24px;margin-bottom:18px;box-shadow:0 6px 18px rgba(4,55,72,.08);display:flex;gap:16px;align-items:flex-start;}
.info-card .ic{width:44px;height:44px;border-radius:50%;background:var(--green);color:var(--gold);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.info-card h4{color:var(--green-d);font-size:.98rem;margin-bottom:4px;font-family:var(--ff-head);}
.info-card p{font-size:.86rem;color:var(--gray);}
.faq-cta-box{background:var(--cream-d);border:1px dashed var(--gold-d);border-radius:14px;padding:22px;text-align:center;}
.faq-cta-box p{font-size:.9rem;color:var(--green-d);margin-bottom:14px;}

/* ============================================
   RESPONSIVE
============================================ */
@media(max-width:960px){
  .hero-grid{grid-template-columns:1fr;text-align:center;}
  .hero-img-col{order:1;}
  .hero-text-col{order:2;}
  .hero-cta-row,.trust-pills,.hero-stars{justify-content:center;}
  .hero-desc{margin:0 auto 22px;}
  .what-grid{grid-template-columns:1fr;}
  .review-grid,.why-grid,.bonus-grid{grid-template-columns:repeat(2,1fr);}
  .steps-row{grid-template-columns:repeat(3,1fr);}
  .adv-grid,.benefit-grid{grid-template-columns:1fr;}
  .price-boxes{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
}
@media(max-width:860px){
  nav.desk-nav{display:none;}
  .hamburger{display:flex;}
  .head-actions .h-btn{display:none;}
  .mob-cta{display:block;}
  body{padding-bottom:78px;}
}
@media(max-width:560px){
  .review-grid,.why-grid,.bonus-grid,.steps-row{grid-template-columns:1fr;}
  section{padding:56px 0;}
  .hero-img-wrap{max-width:300px;}
  .pricing-wrap{padding:34px 20px;}
  .price-now{font-size:2.3rem;}
  .foot-row{flex-direction:column;align-items:center;}
}
