/* AquaSculpt — theme for aquaesculpt.com */
/* Extracted site styles + legal page styles */
/* ═══════════════════════════════
   TOKENS
═══════════════════════════════ */
:root {
  --blue:        #1a56db;
  --blue-dark:   #1042b0;
  --blue-deeper: #0c3488;
  --blue-light:  #ebf1fd;
  --blue-mid:    #c3d6f9;
  --yellow:      #f5c518;
  --yellow-dark: #d9a800;
  --yellow-light:#fffbe6;
  --white:       #ffffff;
  --off:         #f7f9ff;
  --ink:         #0f172a;
  --body:        #374151;
  --muted:       #6b7280;
  --border:      #dbe5fb;
  --font:        'Figtree', sans-serif;
  --r:           12px;
  --r-lg:        20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size:  20px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

.wrap    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wrap-md { max-width:  860px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width:  720px; margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4,h5 {
  font-family: var(--font);
  line-height: 1.15;
  color: var(--ink);
}

/* ── YELLOW BUTTON ── */
.btn-y {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font);
  font-size: 24px;
  font-weight: 800;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(245,197,24,0.42);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-y:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,197,24,0.55);
  color: var(--ink);
}
.btn-y-lg  { font-size: 18px; padding: 18px 42px; }
.btn-y-xl  { font-size: 20px; padding: 20px 52px; border-radius: 50px; }

/* ── BLUE OUTLINE BUTTON ── */
.btn-b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-b:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-b-lg { font-size: 18px; padding: 16px 40px; }

/* ── PILL CHIP ── */
.chip {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid var(--blue-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}
.chip-yellow {
  background: var(--yellow-light);
  color: #92650a;
  border-color: #f5d76e;
}

/* ── SECTION TITLES ── */
.s-chip  { text-align: center; margin-bottom: 12px; }
.s-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  text-align: center;
  color: var(--ink);
  margin-bottom: 14px;
}
.s-title span { color: var(--blue); }
.s-sub {
  text-align: center;
  color: var(--muted);
  font-size:  20px;
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.sec       { padding: 80px 0; }
.sec-off   { background: var(--off); }
.sec-blue  { background: var(--blue-light); }

/* ═══════════════════════════════
   ANN BAR
═══════════════════════════════ */
.ann {
  background: var(--blue);
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 11px 20px;
  font-size: 23px;
  font-weight: 600;
}
.ann strong { color: var(--yellow); font-weight: 800; }
.ann .pipe  { margin: 0 10px; opacity: 0.35; }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-logo:hover { color: var(--blue); text-decoration: none; }
.nav-logo sup {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  vertical-align: super;
  margin-left: 1px;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 23px; font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta .btn-y { padding: 10px 22px; font-size: 23px; }

.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.ham span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; display: block; transition: all 0.3s; }

@media(max-width:820px) {
  .nav-in { flex-wrap: wrap; height: auto; min-height: 68px; padding-top: 14px; padding-bottom: 14px; }
  .nav-logo { order: 1; }
  .ham { display: flex; order: 2; margin-left: auto; }
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    order: 3;
    width: 100%;
    gap: 0;
    padding: 12px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
    align-items: stretch;
  }
  .nav.open .nav-links li { width: 100%; }
  .nav.open .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
  }
  .nav.open .nav-links li:last-child a { border-bottom: none; }
  .nav.open .nav-cta {
    display: block;
    order: 4;
    width: 100%;
    padding: 12px 0 4px;
  }
  .nav.open .nav-cta .btn-y {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 14px 22px;
  }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #ebf1fd 0%, #f7f9ff 50%, #ffffff 100%);
  padding: 80px 0 64px;
  overflow: hidden;
  position: relative;
}
/* decorative circle top right */
.hero::before {
  content: '';
  position: absolute;
  top: -140px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--blue-mid) 0%, transparent 68%);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}
/* bottom left accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, #fdf3c0 0%, transparent 70%);
  opacity: 0.6;
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { padding-bottom: 0; }

/* "AQUASCULPT" written at the very top of hero */
.hero-brand-name {
      font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-brand-name::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.hero-h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-h1 span { color: var(--blue); }
.hero-h1 em   { font-style: italic; color: var(--blue); }

.hero-sub {
  font-size: 18px;
  color: var(--body);
  font-weight: 400;
  line-height: 1.68;
  margin-bottom: 30px;
  max-width: 530px;
}

/* weight loss proof bar */
.hero-proof {
  display: flex;
  gap: 0;
  margin-bottom: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  max-width: 520px;
}
.proof-item {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.proof-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.3px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-guarantee {
  margin-top: 16px;
      font-size: 20px;
  color: var(--muted);
  font-weight: 500;
}
.hero-guarantee strong { color: var(--blue); }

/* product image side */
.hero-img-side { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-side img {
  width: 85%;
  border-radius: 24px;
  filter: drop-shadow(0 28px 56px rgba(26,86,219,0.18));
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}

@media(max-width:880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { padding-bottom: 0; order: 2; }
  .hero-img-side { order: 1; max-width: 280px; margin: 0 auto; }
}

/* ═══════════════════════════════
   SCROLLING RIBBON
═══════════════════════════════ */
.ribbon { background: var(--blue); padding: 14px 0; overflow: hidden; }
.ribbon-track {
  display: flex;
  gap: 44px;
  animation: scroll 24s linear infinite;
  width: max-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ribbon-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
      font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.ribbon-star { color: var(--yellow); font-size: 23px; }

/* ═══════════════════════════════
   TRUST BADGES
═══════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 18px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.trust-card:hover { box-shadow: 0 10px 32px rgba(26,86,219,0.12); transform: translateY(-4px); }
.trust-card img { height: 96px; width: 100%; object-fit: contain; margin-bottom: 14px; }
.trust-card h3 { font-size: 23px; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.trust-card p  {     font-size: 20px; color: var(--muted); line-height: 1.55; margin: 0; }

@media(max-width:760px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:440px) { .trust-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.testi-card:hover { box-shadow: 0 12px 36px rgba(26,86,219,0.11); transform: translateY(-4px); }
.testi-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.testi-av {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
}
.testi-name { font-size: 23px; font-weight: 800; color: var(--ink); }
.testi-loc  { font-size: 12px; color: var(--muted); }
.testi-stars { color: var(--yellow); font-size: 24px; margin-bottom: 12px; }
.testi-text { font-size: 23px; color: #444; line-height: 1.7; font-style: italic; }
.testi-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: #dcfce7;
  color: #15803d;
  font-size: 10px; font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.testi-wl {
  margin-top: 14px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 8px;
  padding: 8px 12px;
      font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}

@media(max-width:860px) { .testi-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   WHAT IS + STORY
═══════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: center;
}
.story-img img {
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(26,86,219,0.15);
  width: 100%;
}
.story-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 18px;
}
.story-text h2 span { color: var(--blue); }
.story-text p { font-size: 24px; color: #4b5563; margin-bottom: 16px; line-height: 1.75; }

.wl-pillars { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 30px; }
.wl-pillar {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--r);
  padding: 13px 16px;
}
.wl-pillar-ico { font-size: 20px; line-height: 1; margin-top: 1px; }
.wl-pillar-title { font-size: 23px; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.wl-pillar-desc  {     font-size: 20px; color: var(--muted); line-height: 1.5; }

@media(max-width:860px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ═══════════════════════════════
   HOW IT WORKS
═══════════════════════════════ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue), var(--blue-mid));
  z-index: 0;
}
.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 18px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.25s, transform 0.25s;
}
.how-card:hover { box-shadow: 0 10px 32px rgba(26,86,219,0.12); transform: translateY(-4px); }
.how-num {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(26,86,219,0.30);
}
.how-card h3 { font-size: 23px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.how-card p  {     font-size: 20px; color: var(--muted); line-height: 1.55; margin: 0; }

@media(max-width:760px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
}
@media(max-width:440px) { .how-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   INGREDIENTS
═══════════════════════════════ */
.ingr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ingr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ingr-card:hover { box-shadow: 0 8px 26px rgba(26,86,219,0.11); transform: translateY(-3px); }
.ingr-n {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 23px; font-weight: 900;
  color: var(--blue);
}
.ingr-name { font-size: 23px; font-weight: 800; color: var(--ink); margin-bottom: 5px; }
.ingr-desc {     font-size: 20px; color: var(--muted); line-height: 1.55; margin: 0; }

@media(max-width:760px) { .ingr-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .ingr-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   BENEFITS
═══════════════════════════════ */
.ben-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ben-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.ben-item:hover { box-shadow: 0 6px 22px rgba(26,86,219,0.09); border-color: var(--blue-mid); }
.ben-ico {
  width: 34px; height: 34px; min-width: 34px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 23px; font-weight: 900;
  margin-top: 1px;
}
.ben-title { font-size: 23px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.ben-desc  {     font-size: 20px; color: var(--muted); line-height: 1.5; margin: 0; }

@media(max-width:680px) { .ben-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   BONUS
═══════════════════════════════ */
.bonus-stack { display: flex; flex-direction: column; gap: 22px; }
.bonus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex; gap: 26px; align-items: flex-start;
  box-shadow: 0 4px 18px rgba(26,86,219,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.bonus-card:hover { box-shadow: 0 12px 36px rgba(26,86,219,0.12); transform: translateY(-3px); }
.bonus-card img { width: 148px; min-width: 148px; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
.bonus-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: #92650a;
  border: 1px solid #f5d76e;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px;
  margin-bottom: 10px;
}
.bonus-card h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.bonus-card p  { font-size: 23px; color: #4b5563; line-height: 1.7; margin: 0; }

@media(max-width:580px) {
  .bonus-card { flex-direction: column; }
  .bonus-card img { width: 100%; min-width: unset; }
}

/* ═══════════════════════════════
   CTA STEPS
═══════════════════════════════ */
.order-steps {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.os-step { text-align: center; max-width: 130px; }
.os-num {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  margin: 0 auto 10px;
  box-shadow: 0 4px 14px rgba(26,86,219,0.28);
}
.os-step p {     font-size: 20px; color: var(--muted); line-height: 1.55; }

.checkout-img {
  max-width: 620px; margin: 0 auto 36px;
  border-radius: var(--r-lg);
  box-shadow: 0 16px 52px rgba(26,86,219,0.13);
  overflow: hidden;
}
.checkout-img img { width: 100%; cursor: pointer; }

/* ═══════════════════════════════
   GUARANTEE
═══════════════════════════════ */
.guarantee-box {
  display: flex; gap: 48px; align-items: center;
  background: var(--white);
  border: 2px solid var(--blue-mid);
  border-radius: var(--r-lg);
  padding: 50px 44px;
  box-shadow: 0 10px 40px rgba(26,86,219,0.09);
}
.guarantee-box img { width: 186px; min-width: 186px; }
.guarantee-box h2 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 14px; }
.guarantee-box h2 span { color: var(--blue); }
.guarantee-box p { font-size: 24px; color: #4b5563; line-height: 1.75; margin-bottom: 12px; }

@media(max-width:680px) {
  .guarantee-box { flex-direction: column; text-align: center; padding: 34px 22px; }
  .guarantee-box img { width: 130px; margin: 0 auto; }
}

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item.open { border-color: var(--blue-mid); }
.faq-item:hover { box-shadow: 0 4px 18px rgba(26,86,219,0.09); }
.faq-btn {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font);
  font-size: 24px; font-weight: 700; color: var(--ink);
}
.faq-icon {
  width: 30px; height: 30px; min-width: 30px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 18px;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}
.faq-body {
  max-height: 0; overflow: hidden;
  font-size: 23px; color: #4b5563; line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-body { max-height: 400px; padding: 0 22px 20px; }

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
.pricing-notice {
  display: inline-block;
  background: #fff8e6;
  border: 1px solid #f5d76e;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 23px; font-weight: 700;
  color: #92650a;
  margin-bottom: 34px;
}
.pricing-img {
  max-width: 860px; margin: 0 auto 36px;
  border-radius: var(--r-lg);
  box-shadow: 0 14px 48px rgba(26,86,219,0.12);
  overflow: hidden;
}
.pricing-img img { width: 100%; cursor: pointer; }
.pricing-trust {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.pt { display: flex; align-items: center; gap: 7px;     font-size: 20px; font-weight: 700; color: var(--blue); }
.pt::before { content: '✓'; font-size: 23px; color: #16a34a; }

.pricing-notes {
  max-width: 780px; margin: 0 auto;
  font-size: 23px; color: #4b5563; line-height: 1.75; text-align: left;
}
.pricing-notes h3 { font-size: 23px; font-weight: 600; color: var(--ink); margin: 16px 0 4px; }

/* ═══════════════════════════════
   FINAL CTA
═══════════════════════════════ */
.final {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.final::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.final-brand {
      font-size: 20px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.final h2 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.final .price-line {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.final .price-line s { opacity: 0.5; }
.final .price-line strong { color: var(--yellow); font-size: 24px; }
.final img {
  max-width: 300px; margin: 0 auto 32px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  position: relative; z-index: 1;
}
.final .btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.final .trust-row {
  margin-top: 22px;
      font-size: 20px;
  color: rgba(255,255,255,0.55);
  position: relative; z-index: 1;
}
.final .trust-row span { margin: 0 10px; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 42px 24px;
  text-align: center;
      font-size: 20px;
  line-height: 1.75;
}
footer .foot-brand {
  font-size: 20px;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
footer .foot-brand span { color: var(--yellow); }
footer .foot-links {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  position: relative;
  z-index: 2;
}
footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  margin: 0;
  pointer-events: auto;
  cursor: pointer;
}
footer a:hover { color: #fff; }
footer .disclaim { max-width: 860px; margin: 12px auto 0; font-size: 12px; opacity: 0.5; line-height: 1.7; }

.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 20px;
}
.ref-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.ref-card:hover {
  box-shadow: 0 8px 24px rgba(26,86,219,0.1);
  border-color: var(--blue-mid);
  text-decoration: none;
}
.ref-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.35;
}
.ref-card span {
  color: var(--muted);
  font-size: 14px;
}
.ref-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.sec-note {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  max-width: 720px;
  margin: 28px auto 0;
  line-height: 1.7;
}
.story-text .sec-note {
  text-align: left;
  margin: 8px 0 22px;
}
a.kw-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a.kw-link:hover { color: var(--blue-deeper); }
.final a.kw-link {
  color: var(--yellow);
  font-weight: 700;
}
@media (max-width: 680px) {
  .ref-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.au  { animation: fadeUp 0.65s ease both; }
.d1  { animation-delay: 0.10s; }
.d2  { animation-delay: 0.20s; }
.d3  { animation-delay: 0.32s; }
.d4  { animation-delay: 0.44s; }

/* —— Sticky order button —— */
.as-sticky-wrap {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 1050;
  width: min(92vw, 440px);
  pointer-events: none;
}
.as-sticky-wrap .btn-y,
.as-sticky-cta {
  pointer-events: auto;
  width: 100%;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(15, 41, 66, 0.28), 0 6px 16px rgba(245, 197, 24, 0.5) !important;
}

/* ===== Legal pages ===== */
.legal-page {
  padding: 40px 20px 80px;
  background: var(--off);
}
.legal-page .container {
  max-width: 860px;
  margin: 0 auto;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.08);
}
.legal-card h2,
.legal-card h3 {
  color: var(--ink);
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
}
.legal-card p,
.legal-card li {
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}
.legal-card .legal-subtitle {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.np-legal-back:hover {
  text-decoration: underline;
}


