/* ============================================
   AQUASCULPT — STYLESHEET
   Primary: #204099 | Secondary: #C2E5F9 | CTA: #FBC719
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #204099;
  --blue-d: #142a66;
  --blue-m: #2c52bd;
  --blue-l: #4a6cc7;
  --sky: #C2E5F9;
  --sky-l: #E4F4FC;
  --sky-d: #9ccfe8;
  --gold: #FBC719;
  --gold-d: #e0a800;
  --gold-l: #fde08a;
  --ink: #1a2238;
  --gray: #5b6478;
  --gray-l: #8891a3;
  --line: #e3e8f2;
  --off: #f7f9fc;
  --white: #ffffff;
  --green: #2fa84f;
  --shadow-sm: 0 2px 8px rgba(32,64,153,0.08);
  --shadow-md: 0 8px 24px rgba(32,64,153,0.12);
  --shadow-lg: 0 16px 48px rgba(32,64,153,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--blue);
  line-height: 1.15;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ---------- Utilities ---------- */
.sec-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-m);
  background: var(--sky-l);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.sec-h {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.sec-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 400;
}

.center { text-align: center; }

.btn-green, .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 17px 38px;
  border-radius: 50px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn-green {
  background: linear-gradient(135deg, var(--blue-m), var(--blue));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(32,64,153,0.32);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd54a, var(--gold));
  color: var(--blue-d);
  box-shadow: 0 10px 28px rgba(251,199,25,0.38);
}

.btn-green:hover, .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(32,64,153,0.28);
}

.btn-gold:hover { box-shadow: 0 16px 36px rgba(251,199,25,0.45); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--blue-d);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}
.topbar span { color: var(--gold-l); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(20,30,60,0.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 42px; height: 42px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.logo-tag {
  font-size: 10.5px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
  position: relative;
}
.main-nav a:hover { color: var(--blue-m); }

.header-right { display: flex; align-items: center; gap: 22px; }
.header-email {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.h-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--blue-m), var(--blue));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(32,64,153,0.3);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { opacity: 0; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.hamburger span {
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.o span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.o span:nth-child(2) { opacity: 0; }
.hamburger.o span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mob-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 12px 24px 20px;
}
.mob-menu.show { display: flex; }
.mob-menu a {
  padding: 13px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mob-menu .h-btn { margin-top: 14px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--sky-l) 0%, var(--white) 70%);
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero-img-col { order: 1; display: flex; justify-content: center; }
.hero-text-col { order: 2; }

.hero-img-wrap {
  position: relative;
  display: inline-block;
}
.hero-img-wrap img {
  max-width: 340px;
  filter: drop-shadow(0 30px 50px rgba(32,64,153,0.28));
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-badge {
  position: absolute;
  bottom: 10px;
  right: -18px;
  background: var(--white);
  border-radius: 50%;
  width: 92px; height: 92px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
  text-align: center;
}
.hero-badge strong { font-size: 20px; color: var(--blue); font-family: 'Playfair Display', serif; line-height: 1; }
.hero-badge span { font-size: 9px; font-weight: 700; color: var(--gray); letter-spacing: 0.04em; text-transform: uppercase; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--sky-d);
  color: var(--blue-m);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-pill::before { content: '●'; color: var(--green); font-size: 10px; }

.hero-text-col h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 18px;
}
.hero-text-col h1 em {
  font-style: normal;
  color: var(--gold-d);
  background: linear-gradient(135deg, #f0b400, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text-col h1 strong { color: var(--blue-m); }

.hero-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 22px;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}
.hero-stars .stars { color: var(--gold-d); font-size: 17px; letter-spacing: 2px; }

.hero-cta { margin-bottom: 28px; }
.hero-cta small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pills span {
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  padding: 7px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Security Strip ---------- */
.sec-strip {
  background: var(--blue-d);
  padding: 16px 0;
}
.sec-strip .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sec-strip span {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  opacity: 0.92;
}

/* ---------- Generic Section ---------- */
section { padding: 84px 0; }
.bg-sky { background: var(--sky-l); }
.bg-off { background: var(--off); }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-l), var(--blue));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 19px;
  font-family: 'Playfair Display', serif;
}
.review-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.review-loc { font-size: 12.5px; color: var(--gray); }
.review-stars { color: var(--gold-d); font-size: 14px; margin-bottom: 10px; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; color: var(--green);
  background: #e8f7ec; padding: 3px 10px; border-radius: 20px;
  margin-bottom: 12px;
}
.review-headline { font-weight: 700; font-size: 15.5px; margin-bottom: 8px; color: var(--ink); }
.review-text { font-size: 14.5px; color: var(--gray); margin-bottom: 14px; }
.review-result {
  font-size: 13px; font-weight: 700; color: var(--blue-m);
  background: var(--sky-l); padding: 8px 14px; border-radius: 8px;
  display: inline-block;
}

/* ---------- Why Choose ---------- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.choose-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.choose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.choose-card img { width: 84px; height: auto; margin: 0 auto 18px; }
.choose-card h5 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.choose-card p { font-size: 13.5px; color: var(--gray); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: end;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular { border-color: var(--gold); transform: scale(1.04); box-shadow: var(--shadow-md); }
.price-card img { width: 100%; }
.price-link { display: block; }

/* ---------- Bonuses ---------- */
.bonus-section { background: #CAE9EC; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 880px;
  margin: 0 auto;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.bonus-card img { max-width: 170px; margin: 0 auto 18px; }
.bonus-tag {
  display: inline-block;
  background: #ff4d4d;
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.bonus-price { font-size: 14px; color: var(--gray); margin-bottom: 6px; }
.bonus-price s { color: #c0392b; }
.bonus-name { font-size: 18px; margin-bottom: 8px; }
.bonus-desc { font-size: 14px; color: var(--gray); }

/* ---------- What Is ---------- */
.whatis-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.whatis-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.whatis-text p { color: var(--gray); margin-bottom: 16px; font-size: 16px; }
.whatis-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: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--sky-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.step-num {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--blue-d);
  font-weight: 700;
  font-size: 12px;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.step-card h5 { font-family: 'Inter', sans-serif; font-size: 15.5px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--gray); }

/* ---------- Advantage ---------- */
.advantage-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  max-width: 980px;
  margin: 0 auto;
}
.adv-item { display: flex; gap: 16px; align-items: flex-start; }
.adv-dot {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}
.adv-item h5 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.adv-item p { font-size: 14px; color: var(--gray); }

/* ---------- Ingredients ---------- */
.ing-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.ing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.ing-card:hover { transform: translateY(-4px); }
.ing-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.ing-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--sky-d);
  transition: transform 0.25s ease, color 0.25s ease;
}
.ing-card:hover .ing-num { transform: scale(1.25); color: var(--gold); }
.ing-card h5 { font-family: 'Inter', sans-serif; font-size: 16.5px; font-weight: 700; color: var(--blue); }
.ing-card p { font-size: 13.5px; color: var(--gray); margin-bottom: 12px; }
.ing-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-m);
  background: var(--sky-l);
  padding: 4px 12px;
  border-radius: 20px;
}
.science-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.science-box {
  background: var(--sky-l);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
}
.science-box strong { display: block; font-size: 28px; color: var(--blue); font-family: 'Playfair Display', serif; }
.science-box span { font-size: 13px; color: var(--gray); font-weight: 600; }

/* ---------- Benefits ---------- */
.benefits-section { background: linear-gradient(135deg, #CAE9EC, var(--sky-l)); }
.benefits-intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 36px;
  max-width: 980px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.7);
  padding: 14px 18px;
  border-radius: 12px;
}
.benefit-item .check {
  width: 24px; height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item p { font-size: 14.5px; color: var(--ink); font-weight: 600; }

/* ---------- Guarantee ---------- */
.guarantee-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.guarantee-grid img { max-width: 260px; margin: 0 auto; }
.guarantee-text p { color: var(--gray); font-size: 16px; margin-bottom: 16px; }
.guarantee-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.guarantee-pills span {
  background: var(--sky-l);
  color: var(--blue-m);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ---------- FAQ ---------- */
.faq-section { background: #CAE9EC; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  font-weight: 700;
  font-size: 16px;
  color: var(--blue);
  cursor: pointer;
}
.faq-q .plus { font-size: 22px; color: var(--blue-m); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }
.faq-a p { color: var(--gray); font-size: 14.5px; }

/* ---------- Final CTA ---------- */
.final-cta { background: #C2E5F9; padding: 70px 0; }
.final-cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.urgency-box {
  background: var(--blue-d);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}
.final-cta h2 { color: var(--blue-d); margin-bottom: 14px; }
.final-cta-img {
  max-width: 280px;
  margin: 24px auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.final-price-note { font-size: 15px; font-weight: 700; color: var(--blue-d); margin-bottom: 20px; }
.final-price-note s { opacity: 0.6; }
.pay-logos { display: flex; justify-content: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.pay-logos span {
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--blue-d);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-d); color: #c7d3ec; padding: 56px 0 28px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); font-weight: 700; }
.footer-row1, .footer-row2 {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-row1 a, .footer-row2 a {
  font-size: 14px;
  color: #c7d3ec;
  font-weight: 600;
}
.footer-row1 a:hover, .footer-row2 a:hover { color: var(--gold); }
.legal-text { font-size: 12px; color: #8fa0c4; line-height: 1.7; padding: 22px 0; }
.copyright { font-size: 13px; color: #8fa0c4; text-align: center; padding-top: 14px; }

/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  z-index: 998;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
.mobile-cta a {
  display: block;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 30px;
}

/* ---------- Legal Pages ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--sky-l), var(--white));
  padding: 60px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.page-hero p { color: var(--gray); font-size: 15px; }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 56px 24px; }
.legal-wrap h2 { font-size: 22px; margin: 36px 0 14px; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p, .legal-wrap li { color: var(--gray); font-size: 15px; margin-bottom: 12px; line-height: 1.75; }
.legal-wrap ul { padding-left: 22px; list-style: disc; }
.legal-note {
  background: var(--sky-l);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--blue-d);
  margin: 20px 0;
}
.legal-cta-box {
  background: var(--blue-d);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 50px auto 0;
  max-width: 820px;
}
.legal-cta-box h3 { color: var(--white); font-size: 24px; margin-bottom: 10px; }
.legal-cta-box p { color: #c7d3ec; margin-bottom: 22px; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--blue); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--off);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue-m);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h5 { font-family: 'Inter', sans-serif; font-size: 15.5px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.contact-info-card p { font-size: 13.5px; color: var(--gray); }
.faq-cta-box {
  background: var(--sky-l);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
}
.faq-cta-box p { font-size: 14px; color: var(--blue-d); margin-bottom: 14px; font-weight: 600; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .review-grid, .choose-grid, .pricing-grid, .ing-grid, .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(3, 1fr); }
  .advantage-grid, .benefits-list { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-img-col { order: 1; }
  .hero-text-col { order: 2; }
  .hero-desc { margin: 0 auto 22px; }
  .hero-stars, .trust-pills { justify-content: center; }
  .hero-cta { display: flex; justify-content: center; }
  .whatis-grid, .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
  .whatis-grid img { margin: 0 auto; max-width: 360px; }
  .guarantee-pills { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-email { display: none; }
  .hamburger { display: flex; }
  .sec-strip .container { gap: 20px; }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }
  .review-grid, .choose-grid, .pricing-grid, .ing-grid, .steps-row, .science-row, .bonus-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .hero { padding: 40px 0 36px; }
  .hero-img-wrap img { max-width: 240px; }
  .footer-row1, .footer-row2 { flex-direction: column; gap: 12px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 0; }
  .final-cta-img { max-width: 220px; }
}
