/* ============================================
   MEMOPRYL™ STYLES
   Mobile-first · FOCUSfactor-inspired palette
   White · Navy · Gray · Green CTAs
   ============================================ */

/* ---- BUTTONS ---- */
.btn-green {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--white);
  font-family: var(--font-head); font-weight: 750; font-size: 1.05rem;
  padding: .9rem 2rem 1rem; border-radius: var(--r-full); border: none;
  cursor: pointer; text-decoration: none; white-space: nowrap; line-height: 1;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(92,173,30,.35);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(92,173,30,.45); text-decoration: none; color: var(--white); }
.btn-green:active { transform: translateY(0); }
.btn-full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
  border-radius: var(--r-full); font-family: var(--font-head); font-weight: 750;
  font-size: .9rem; padding: .65rem 1.75rem .75rem; cursor: pointer;
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); text-decoration: none; }

/* ---- SECTION TYPOGRAPHY ---- */
.section-label {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--navy);
  background: var(--blue-pale); border: 1px solid rgba(35,56,141,.2);
  padding: .25rem .8rem; border-radius: var(--r-full); margin-bottom: var(--s2);
}
.section-title {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.55rem, 5.5vw, 2.4rem); line-height: 1.1;
  color: var(--navy); margin-bottom: var(--s2);
}
.section-title em { font-style: normal; color: var(--green); }
.section-body { font-size: .95rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: var(--s4); }
.section-body strong { color: var(--navy); }


/* ---- NAV ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.1);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 var(--s3); max-width: 1100px; margin-inline: auto;
}
.nav-logo img { height: 30px; background: var(--white); border-radius: 5px; padding: 3px 8px; }
.nav-links { display: none; align-items: center; gap: 2px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.75); padding: .4rem .85rem; border-radius: var(--r-sm); transition: color .15s, background .15s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta { background: var(--green) !important; color: var(--white) !important; border-radius: var(--r-full) !important; font-weight: 700 !important; padding: .45rem 1.1rem .5rem !important; }
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.08); }
.nav-drawer.open { display: block; }
.nav-drawer a { display: block; color: rgba(255,255,255,.8); font-weight: 600; padding: .9rem var(--s3); border-bottom: 1px solid rgba(255,255,255,.06); font-size: 1rem; }
.nav-drawer a:last-child { border: none; }
.nav-drawer a:hover { color: #fff; }
.drawer-cta { color: var(--green-light) !important; font-weight: 800 !important; }


/* ---- HERO ---- */
.hero { background: var(--white); overflow: hidden; }

.hero-image-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--white);
}
.hero-bottle {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  padding: var(--s4) var(--s3) var(--s5);
  max-width: 480px; margin-inline: auto; text-align: center;
  background: var(--white);
}
.hero-eyebrow {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--navy);
  background: var(--blue-pale); border: 1px solid rgba(35,56,141,.2);
  display: inline-block; padding: .25rem .8rem; border-radius: var(--r-full);
  margin-bottom: var(--s2);
}
.hero-title {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.9rem, 7.5vw, 3rem); line-height: 1.06;
  color: var(--navy); margin-bottom: var(--s2);
}
.hero-title em { font-style: normal; color: var(--green); display: block; }
.hero-sub { font-size: .95rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: var(--s3); }
.hero-sub strong { color: var(--navy); }

.hero-rating {
  display: inline-flex; align-items: center; gap: var(--s1);
  background: var(--off-white); border: 1px solid var(--light);
  border-radius: var(--r-full); padding: .4rem 1rem;
  font-size: .85rem; margin-bottom: var(--s3); box-shadow: var(--shadow-sm);
}
.hero-rating strong { color: var(--navy); }

.hero-bullets {
  display: flex; flex-direction: column; gap: var(--s1);
  text-align: left; margin-bottom: var(--s4);
  max-width: 280px; margin-inline: auto;
}
.hero-bullets li {
  display: flex; align-items: center; gap: var(--s2);
  font-size: 1rem; font-weight: 600; color: var(--navy);
}
.hero-bullets li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12l3 3 5-5' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}
.hero-guarantee { font-size: .75rem; color: var(--gray); margin-top: var(--s2); margin-bottom: 0; }


/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy); border-top: none; border-bottom: none;
  padding: var(--s2) 0;
}
.trust-scroll {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s3); flex-wrap: wrap; padding: 0 var(--s3);
}
.trust-scroll img {
  height: 60px; width: 60px; object-fit: contain; background: #fff;
  border-radius: 50%; padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: transform .2s;
}
.trust-scroll img:hover { transform: scale(1.1); }


/* ---- CLINICAL ---- */
.clinical { background: var(--white); }
.clinical .wrap { text-align: center; }

.clinical-graph {
  background: var(--off-white); border: 1px solid var(--light);
  border-radius: var(--r-lg); padding: var(--s4) var(--s3);
  margin-bottom: var(--s4);
}
.graph-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: var(--s5); height: 180px; position: relative;
  padding-right: var(--s5); margin-bottom: var(--s3);
}
.bar-group { display: flex; flex-direction: column; align-items: center; gap: var(--s1); }
.bar { width: 68px; border-radius: 6px 6px 0 0; transition: height 1.6s cubic-bezier(.34,1.56,.64,1); }
.bar-placebo { height: 85px; background: var(--light); border: 1px solid #ccc; }
.bar-memopryl { height: 155px; background: linear-gradient(to top, var(--navy-dark), var(--navy-light)); }
.bar-label { font-size: .7rem; color: var(--gray); text-align: center; line-height: 1.3; }
.graph-yaxis {
  position: absolute; right: 0; top: 0; bottom: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: .65rem; color: var(--gray);
}
.graph-benefits {
  display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; margin-bottom: var(--s2);
}
.graph-benefits li { display: flex; align-items: center; gap: .3em; font-size: .85rem; font-weight: 700; color: var(--navy); }
.benefit-arrow { color: var(--green); font-size: 1.1em; font-weight: 900; }
.graph-footnote {
  font-size: .72rem; color: var(--gray); line-height: 1.6;
  border-top: 1px solid var(--light); padding-top: var(--s2);
}


/* ---- INGREDIENTS ---- */
.ingredients { background: var(--off-white); }
.ingredients .wrap { text-align: center; }

/* Mobile: vertical stack. Desktop: horizontal scroll or grid */
.ingredients-scroll {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s3) var(--s3) var(--s4);
  max-width: 480px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .ingredients-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-direction: unset;
    max-width: 1100px;
    padding-inline: var(--s4);
  }
}

/* Scroll hint for mobile */
.ingredients-hint {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s1); font-size: .75rem; color: var(--gray);
  margin-bottom: var(--s2);
}
.ingredients-hint svg { color: var(--navy); }
@media (min-width: 768px) { .ingredients-hint { display: none; } }

.ingredient-card {
  background: #ffffff; border-radius: var(--r-lg);
  padding: var(--s3); box-shadow: var(--shadow-sm); text-align: center;
  border-top: 3px solid var(--navy); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: row; align-items: center; gap: var(--s3);
}
@media (min-width: 768px) {
  .ingredient-card { flex-direction: column; align-items: center; }
}
.ingredient-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.ingredient-img-wrap {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--light); background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
@media (min-width: 768px) {
  .ingredient-img-wrap { width: 90px; height: 90px; margin-bottom: var(--s2); }
}
.ingredient-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; display: block; background: #ffffff;
}
.ingredient-text { flex: 1; text-align: left; }
@media (min-width: 768px) { .ingredient-text { text-align: center; flex: none; } }
.ingredient-card h3 {
  font-family: var(--font-head); font-weight: 750; font-size: .9rem;
  color: var(--navy); margin-bottom: var(--s1);
}
.ingredient-card p { font-size: .78rem; color: var(--gray); line-height: 1.6; margin: 0; }

.serving-row {
  display: flex; align-items: center; gap: var(--s3);
  background: var(--navy); border-radius: var(--r-lg);
  padding: var(--s3); margin-top: var(--s4); color: var(--white);
}
.serving-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--r-md); flex-shrink: 0; }
.serving-text strong { display: block; color: #91d50a; font-size: 1rem; margin-bottom: .4rem; }
.serving-text p { font-size: .8rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.6; }


/* ---- CRAFTED FOR (FOCUSfactor style) ---- */
.crafted { background: var(--white); overflow: hidden; }
.crafted .wrap { text-align: center; margin-bottom: var(--s4); }

.crafted-grid {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  max-width: 480px;
  margin-inline: auto;
  padding-inline: var(--s3);
}
@media (min-width: 768px) {
  .crafted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s2);
    max-width: 1100px;
    padding-inline: var(--s4);
  }
}

.crafted-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.crafted-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
@media (min-width: 768px) {
  .crafted-item img { height: 340px; }
}
.crafted-item:hover img { transform: scale(1.04); }
.crafted-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s3) var(--s3) var(--s3);
  background: linear-gradient(to top, rgba(26,42,108,.92) 0%, rgba(26,42,108,.55) 65%, transparent 100%);
  color: var(--white);
}
.crafted-overlay strong {
  display: block; font-family: var(--font-head); font-weight: 750;
  font-size: 1.15rem; margin-bottom: .35rem; color: var(--white);
}
.crafted-overlay p { font-size: .82rem; color: rgba(255,255,255,.85); margin: 0; line-height: 1.5; }


/* ---- PHARMA BANNER ---- */
.pharma-banner { background: var(--off-white); }
.pharma-text { text-align: center; padding: var(--s4) var(--s3) var(--s3); }
.pharma-text h2 {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.3rem, 4.5vw, 2rem); color: var(--navy); line-height: 1.2;
  margin-bottom: var(--s1);
}
.pharma-text h2 em { font-style: normal; color: var(--green); }
.pharma-img-wrap { overflow: hidden; }
.pharma-img-wrap img { width: 100%; display: block; }


/* ---- REVIEWS ---- */
.reviews { background: var(--off-white); }
.reviews .wrap { text-align: center; margin-bottom: var(--s4); }
.reviews-agg {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--white); border: 1px solid var(--light);
  border-radius: var(--r-full); padding: .5rem 1.25rem; box-shadow: var(--shadow-sm);
  margin-bottom: var(--s2);
}
.agg-score { font-family: var(--font-head); font-weight: 750; font-size: 2rem; color: var(--navy); line-height: 1; }
.agg-label { font-size: .75rem; color: var(--gray); margin-top: .1rem; }

/* Scroll hint */
.reviews-hint {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s1); font-size: .75rem; color: var(--gray); margin-bottom: var(--s2);
}
@media (min-width: 900px) { .reviews-hint { display: none; } }

.reviews-track {
  display: flex; overflow-x: auto; gap: var(--s3);
  padding: var(--s1) var(--s3) var(--s4);
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
@media (min-width: 900px) {
  .reviews-track { display: grid; grid-template-columns: repeat(2, 1fr); overflow: visible; padding-inline: var(--s4); max-width: 1100px; margin-inline: auto; }
}

.review-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--s4); box-shadow: var(--shadow-sm); border: 1px solid var(--light);
}
@media (min-width: 900px) { .review-card { flex: none; } }
.review-stars { font-size: .9rem; margin-bottom: var(--s2); }
.review-title { font-family: var(--font-head); font-weight: 750; font-size: 1rem; color: var(--navy); margin-bottom: var(--s2); line-height: 1.2; }
.review-body { font-size: .85rem; color: #444; line-height: 1.7; margin-bottom: var(--s3); }
.review-meta { display: flex; align-items: center; gap: var(--s1); margin-bottom: var(--s2); }
.review-meta strong { font-size: .85rem; color: var(--navy); }
.review-verified { font-size: .72rem; color: var(--success); }
.review-actions { display: flex; gap: var(--s2); padding-top: var(--s2); border-top: 1px solid var(--light); }
.review-like {
  display: flex; align-items: center; gap: .4em; font-size: .72rem; color: var(--gray);
  padding: .3rem .65rem; border: 1px solid var(--light); border-radius: var(--r-sm);
  background: none; font-family: var(--font-body); transition: all .15s; cursor: pointer;
}
.review-like:hover, .review-like.liked { background: var(--green-pale); border-color: var(--green); color: var(--green-dark); }
.review-like.disliked { background: #fff0f0; border-color: #faa; color: #c33; }


/* ---- PRICING ---- */
.pricing { background: var(--navy); color: var(--white); }
.pricing .wrap { text-align: center; margin-bottom: var(--s5); }
.pricing .section-title { color: var(--white); }
.pricing .section-body { color: rgba(255,255,255,.65); margin-bottom: 0; }

.pricing-grid {
  display: flex; flex-direction: column; gap: var(--s4);
  padding-inline: var(--s3); max-width: 480px; margin-inline: auto;
}
@media (min-width: 900px) {
  .pricing-grid { flex-direction: row; max-width: 1100px; padding-inline: var(--s4); align-items: flex-start; }
}

.price-card {
  flex: 1; display: flex; flex-direction: column;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  text-decoration: none; color: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); text-decoration: none; color: var(--white); }
.price-card--best {
  border-color: rgba(145,213,10,.6);
  box-shadow: 0 0 0 1px rgba(145,213,10,.4), 0 8px 32px rgba(0,0,0,.2);
  background: rgba(145,213,10,.07);
}
@media (min-width: 900px) {
  .price-card--best { transform: scale(1.04); }
  .price-card--best:hover { transform: scale(1.04) translateY(-4px); }
}

.price-card-badge {
  padding: .55rem var(--s2); text-align: center;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.4);
}
.price-card--best .price-card-badge { background: var(--green); color: var(--white); }
.price-card-badge--popular { background: rgba(255,255,255,.1) !important; color: rgba(255,255,255,.65) !important; }
.price-card-badge--starter { background: rgba(255,255,255,.04) !important; color: rgba(255,255,255,.3) !important; }

.price-card-inner {
  padding: var(--s4) var(--s3); display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: var(--s2); flex: 1;
}
.price-card-supply { line-height: 1.2; }
.price-card-supply strong { display: block; font-family: var(--font-head); font-weight: 750; font-size: 1.65rem; }
.price-card-supply span { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; }
.price-card-img { max-width: 170px; width: 100%; }

.price-card-price { display: flex; align-items: baseline; gap: .1em; line-height: 1; }
.price-card-price sup { font-size: 1.4rem; font-weight: 700; color: #91d50a; }
.price-big { font-family: var(--font-head); font-weight: 750; font-size: clamp(3.2rem, 11vw, 4.2rem); color: var(--white); }
.price-per { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; align-self: flex-end; margin-bottom: .5rem; }

.price-card-total { font-size: .88rem; color: rgba(255,255,255,.6); }
.price-card-total s { text-decoration-color: rgba(255,80,80,.8); text-decoration-thickness: 2px; }
.price-card-total strong { color: var(--white); }

.price-card-savings {
  display: inline-block; background: rgba(145,213,10,.15); color: #91d50a;
  border: 1px solid rgba(145,213,10,.3); border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; padding: .2rem .85rem;
}

.price-card-perks { list-style: none; margin: 0; padding: 0; text-align: left; width: 100%; }
.price-card-perks li {
  font-size: .78rem; color: rgba(255,255,255,.65);
  padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: .5em;
}
.price-card-perks li::before { content: '✓'; color: #91d50a; font-weight: 900; flex-shrink: 0; }
.price-card-perks li:last-child { border: none; }

.price-card-btn {
  width: 100%; text-align: center; padding: .85rem 1rem .95rem;
  font-family: var(--font-head); font-weight: 750; font-size: 1rem;
  background: var(--green); color: var(--white); border-radius: var(--r-full);
  box-shadow: 0 4px 14px rgba(92,173,30,.4); transition: background .2s, transform .15s;
  display: block;
}
.price-card-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.price-card-small { font-size: .7rem; color: rgba(255,255,255,.3); text-align: center; }

.payment-row {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s3); flex-wrap: wrap; margin-top: var(--s4);
  padding-top: var(--s4); border-top: 1px solid rgba(255,255,255,.08);
}
.payment-label { font-size: .72rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; }
.payment-icons { display: flex; align-items: center; gap: var(--s2); }
.payment-icons img { height: 22px; opacity: .55; filter: brightness(2); transition: opacity .15s; }
.payment-icons img:hover { opacity: .85; }


/* ---- HEALTHY CLUB ---- */
.healthy-club {
  background: linear-gradient(135deg, #0c1d12 0%, #163024 60%, #0c1d12 100%);
  color: var(--white);
}
.hc-inner {
  display: flex; flex-direction: column; gap: var(--s4); align-items: flex-start;
}
@media (min-width: 768px) { .hc-inner { flex-direction: row; align-items: flex-start; gap: var(--s5); } }
.hc-logo { width: 110px; flex-shrink: 0; margin: 0 auto; }
@media (min-width: 768px) { .hc-logo { width: 130px; margin: 0; } }
.hc-logo img { width: 100%; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
.hc-content { flex: 1; }
.hc-eyebrow { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #6ddc96; margin-bottom: var(--s1); }
.hc-title { font-family: var(--font-head); font-weight: 750; font-size: clamp(1.3rem, 4.5vw, 1.8rem); color: var(--white); margin-bottom: .3rem; }
.hc-tagline { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: var(--s2); }
.hc-perks { margin-bottom: var(--s3); display: flex; flex-direction: column; gap: .5rem; }
.hc-perks li { display: flex; align-items: flex-start; gap: var(--s1); font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.45; }
.hc-perks li span { color: #6ddc96; font-weight: 900; flex-shrink: 0; font-size: .9rem; margin-top: .05rem; }
.hc-perks li strong { color: rgba(255,255,255,.95); }
.hc-notice {
  background: rgba(255,255,255,.05); border: 1px solid rgba(109,220,150,.2);
  border-radius: var(--r-md); padding: var(--s2) var(--s3);
  font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.7;
}
.hc-notice strong { color: rgba(255,255,255,.8); }


/* ---- GUARANTEE ---- */
.guarantee { background: var(--navy); padding: var(--s7) 0; }
.guarantee-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: var(--s5) var(--s4); text-align: center;
  box-shadow: var(--shadow-xl); max-width: 560px; margin-inline: auto;
}
.guarantee-seal { width: 130px; margin: 0 auto var(--s3); filter: drop-shadow(0 4px 12px rgba(0,0,0,.12)); }
.guarantee-card h2 {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.4rem, 5vw, 1.9rem); color: var(--navy);
  margin-bottom: var(--s3); line-height: 1.15;
}
.guarantee-card h2 em { font-style: normal; color: var(--green); }
.guarantee-card p { font-size: .9rem; color: #555; line-height: 1.75; }


/* ---- FAQ ---- */
.faq { background: var(--off-white); }
.faq .wrap { text-align: center; }
.faq-list { max-width: 680px; margin-inline: auto; margin-top: var(--s4); display: flex; flex-direction: column; gap: var(--s2); }
.faq-item { background: var(--white); border-radius: var(--r-md); border: 1px solid var(--light); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--s3) var(--s3); background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body); font-size: .9rem; font-weight: 700;
  color: var(--navy); gap: var(--s2); transition: background .15s;
}
.faq-q:hover { background: var(--off-white); }
.faq-icon {
  flex-shrink: 0; width: 1.4rem; height: 1.4rem;
  background: var(--navy); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700; line-height: 1;
  transition: transform .25s, background .15s;
}
.faq-q[aria-expanded="true"] .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 var(--s3) var(--s3); font-size: .88rem; color: #555; line-height: 1.75; }
.faq-a.open { display: block; }
.faq-a p { margin-bottom: var(--s1); }
.faq-a p:last-child { margin: 0; }


/* ---- FOOTER ---- */
.site-footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.06); padding: var(--s6) 0 var(--s4); }
.site-footer .wrap { text-align: center; }
.footer-logo { margin: 0 auto var(--s3); height: 30px; background: rgba(255,255,255,.9); border-radius: 5px; padding: 3px 10px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s1); margin-bottom: var(--s4); }
.footer-links a { font-size: .75rem; color: rgba(255,255,255,.4); padding: .2rem .5rem; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-disclaimer { text-align: left; border-top: 1px solid rgba(255,255,255,.06); padding-top: var(--s3); margin-bottom: var(--s3); }
.footer-disclaimer p { font-size: .72rem; color: rgba(255,255,255,.25); line-height: 1.7; margin-bottom: var(--s1); }
.footer-disclaimer p:last-child { margin: 0; }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.2); margin-top: var(--s3); }


/* ---- STICKY CTA ---- */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy-dark); border-top: 1px solid rgba(92,173,30,.4);
  padding: var(--s2) var(--s3); box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
@media (max-width: 767px) { .sticky-cta { display: block; } }
