/* ═══════════════════════════════════════════
   GLPRO — style.css  |  theme: #0f707e
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a2a2e;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --green:    #0f707e;
  --green-d:  #0a5260;
  --green-m:  #1a8a9a;
  --green-l:  #e6f5f7;
  --green-xl: #f0fafb;
  --gold:     #c8960c;
  --gold-l:   #f5c842;
  --gold-d:   #a67a00;
  --text:     #1a2a2e;
  --text-m:   #4a6065;
  --text-l:   #7a9298;
  --border:   #d4e8eb;
  --bg-light: #f7fcfd;
  --white:    #ffffff;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(15,112,126,0.10);
  --shadow-lg:0 8px 40px rgba(15,112,126,0.18);
}

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec-tag {
  display: inline-block;
  background: var(--green-l);
  color: var(--green-d);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--text-m);
  max-width: 640px;
  margin: 0 auto 48px;
}
.text-center { text-align: center; }

/* BUTTONS */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-m), var(--green-d));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(15,112,126,0.35);
  text-decoration: none;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,112,126,0.45); }
.btn-green:active { transform: translateY(0); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: #1a1a00;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(200,150,12,0.4);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,150,12,0.55); }
.btn-gold:active { transform: translateY(0); }

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg, var(--green-d), var(--green));
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  position: relative;
  z-index: 200;
}
.topbar span { margin: 0 8px; opacity: 0.6; }

/* ── STICKY HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(15,112,126,0.12); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-m), var(--green-d));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 1.15rem; color: var(--green-d); letter-spacing: 0.06em; }
.logo-tag  { font-size: 0.68rem; color: var(--text-l); letter-spacing: 0.05em; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-m);
  transition: color 0.15s;
  white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--green); }

.h-email {
  font-size: 0.8rem;
  color: var(--text-l);
  white-space: nowrap;
}
.h-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s;
  flex-shrink: 0;
}
.h-btn:hover { background: var(--green-d); transform: translateY(-1px); }
.pulse-dot {
  width: 8px; height: 8px;
  background: #4eff91;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.35); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-d);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.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: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mob-menu a:last-child { border-bottom: none; }
.mob-menu a:hover { color: var(--green); }
.mob-menu .mob-order {
  margin-top: 12px;
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  padding: 13px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: none !important;
}

/* ── HERO SECTION ── */
#glpro-official-website {
  background: linear-gradient(160deg, var(--green-xl) 0%, #fff 60%);
  padding: 64px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-img-col { order: 1; }
.hero-text-col { order: 2; }

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-img-wrap img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(15,112,126,0.22));
  border-radius: var(--radius-lg);
}
.hero-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(200,150,12,0.5);
}

.official-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-l);
  color: var(--green-d);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.official-pill::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green-m);
  border-radius: 50%;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
}
.hero-h1 em { font-style: normal; color: var(--green); }
.hero-h1 strong { color: var(--green-d); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-m);
  margin-bottom: 22px;
  line-height: 1.7;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.stars-label { font-size: 0.88rem; color: var(--text-m); font-weight: 600; }

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--border);
  color: var(--text-m);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
  background: #fff;
}
.trust-pill::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
}

/* ── CUSTOMER REVIEWS ── */
#glpro-reviews {
  padding: 80px 0;
  background: var(--bg-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-l);
  background: var(--green-l);
}
.review-meta { flex: 1; }
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-loc  { font-size: 0.78rem; color: var(--text-l); }
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e8f7ee;
  color: #1a7a3e;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.review-headline {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.review-body { font-size: 0.92rem; color: var(--text-m); line-height: 1.65; }

/* ── WHY CHOOSE ── */
#why-choose {
  padding: 80px 0;
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-card:hover { border-color: var(--green-m); box-shadow: var(--shadow); }
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--green-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.why-card h3 { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.why-card p  { font-size: 0.88rem; color: var(--text-m); line-height: 1.55; }

/* ── PRICING SECTIONS ── */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #031c1f 0%, var(--green-d) 100%);
}
.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.pricing-sub {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 44px;
}
.offer-badge-wrap {
  text-align: center;
  margin-bottom: 36px;
}
.offer-badge-wrap img {
  max-width: 520px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.price-card.featured {
  transform: scale(1.04);
  border: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(200,150,12,0.35);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card-badge {
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 20px;
}
.price-card img { width: 100%; }
.price-cta {
  display: block;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: #1a1a00;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 15px 24px;
  margin: 0 20px 20px;
  border-radius: 100px;
  transition: transform 0.18s;
  box-shadow: 0 4px 16px rgba(200,150,12,0.4);
}
.price-cta:hover { transform: translateY(-2px); }
.price-note {
  font-size: 0.78rem;
  color: var(--text-l);
  padding: 0 20px 18px;
  text-align: center;
}

/* ── WHAT IS ── */
#what-is-glpro {
  padding: 80px 0;
  background: #fff;
}
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.what-is-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.what-is-text p {
  font-size: 1rem;
  color: var(--text-m);
  margin-bottom: 18px;
  line-height: 1.75;
}
.what-is-text p:last-child { margin-bottom: 0; }

/* ── HOW IT WORKS ── */
#how-does-glpro-work {
  padding: 80px 0;
  background: var(--bg-light);
}
.how-steps {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.step-card {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1.5px solid var(--border);
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.step-card:hover { border-color: var(--green-m); box-shadow: var(--shadow); }
.step-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.step-arrow {
  position: absolute;
  top: 30px;
  right: -14px;
  width: 26px; height: 26px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}
.step-card:last-child .step-arrow { display: none; }
.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 0.84rem; color: var(--text-m); line-height: 1.55; }

/* ── ADVANTAGE ── */
#advantage {
  padding: 80px 0;
  background: #fff;
}
.adv-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; color: var(--text-m); }
.adv-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.adv-item:hover { border-color: var(--green-m); }
.adv-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.adv-item h4 { font-weight: 700; font-size: 0.96rem; margin-bottom: 5px; }
.adv-item p  { font-size: 0.88rem; color: var(--text-m); line-height: 1.55; }

/* ── INGREDIENTS ── */
#glpro-ingredients {
  padding: 80px 0;
  background: var(--bg-light);
}
.ing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.ing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.ing-card:hover { border-color: var(--green-m); transform: translateY(-3px); }
.ing-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-l);
  line-height: 1;
  margin-bottom: 10px;
  transition: color 0.2s, transform 0.2s;
  display: block;
}
.ing-card:hover .ing-num { color: var(--green-l); transform: scale(1.1); }
.ing-name { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 8px; }
.ing-desc { font-size: 0.84rem; color: var(--text-m); line-height: 1.55; margin-bottom: 12px; }
.ing-tag {
  display: inline-block;
  background: var(--green-l);
  color: var(--green-d);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.ing-science {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sci-box {
  background: linear-gradient(135deg, var(--green-d), var(--green));
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: #fff;
}
.sci-box h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.sci-box p  { font-size: 0.88rem; opacity: 0.85; line-height: 1.55; }

/* ── BENEFITS ── */
#glpro-benefits {
  padding: 80px 0;
  background: linear-gradient(160deg, #031c1f 0%, var(--green-d) 100%);
  color: #fff;
}
#glpro-benefits .sec-tag { background: rgba(255,255,255,0.15); color: #fff; }
#glpro-benefits .sec-h { color: #fff; }
#glpro-benefits .sec-sub { color: rgba(255,255,255,0.75); }

.ben-intro {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.02rem;
}
.ben-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.ben-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}
.ben-check {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.ben-item p { font-size: 0.95rem; line-height: 1.55; color: rgba(255,255,255,0.9); }

/* ── GUARANTEE ── */
#glpro-guarantee {
  padding: 80px 0;
  background: #fff;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.guarantee-badge img {
  width: 200px;
  filter: drop-shadow(0 8px 24px rgba(15,112,126,0.2));
}
.guarantee-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--text);
}
.guarantee-text p {
  font-size: 0.98rem;
  color: var(--text-m);
  line-height: 1.72;
  margin-bottom: 16px;
}
.g-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.g-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--green-m);
  color: var(--green-d);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.g-pill::before { content: '✓'; font-weight: 800; }

/* ── FAQ ── */
#glpro-faq {
  padding: 80px 0;
  background: #f4f8f9;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--green-m); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  gap: 16px;
  user-select: none;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-l);
  color: var(--green-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.25s, background 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.93rem;
  color: var(--text-m);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ── FINAL CTA ── */
#final-cta {
  padding: 80px 0;
  background: linear-gradient(160deg, #021417 0%, var(--green-d) 100%);
  text-align: center;
}
.urgency-box {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,150,12,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(200,150,12,0); }
}
#final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 10px;
}
#final-cta p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 1rem; }
.order-img-link { display: inline-block; margin-bottom: 24px; }
.order-img-link img {
  max-width: 400px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}
.order-img-link:hover img { transform: scale(1.03); }
.price-note-final {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 28px;
}
.payment-logos {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pay-logo {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* ── SECURITY STRIP ── */
.security-strip {
  background: var(--green-l);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sec-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-d);
}

/* ── FOOTER ── */
.site-footer {
  background: #031c1f;
  color: rgba(255,255,255,0.65);
  padding: 48px 0 24px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-bottom: 16px;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--gold-l); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}
.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 24px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.9); }
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 20px;
}
.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── STICKY MOBILE CTA ── */
.mob-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(90deg, var(--green-d), var(--green));
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mob-cta-bar a {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* ── LEGAL PAGES ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-d), var(--green-m));
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.page-hero p { font-size: 0.95rem; opacity: 0.8; }

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text);
  margin: 32px 0 10px;
  border-left: 3px solid var(--green);
  padding-left: 14px;
}
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap p {
  font-size: 0.94rem;
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-wrap ul li {
  font-size: 0.93rem;
  color: var(--text-m);
  margin-bottom: 6px;
  line-height: 1.6;
}
.legal-note {
  background: var(--green-l);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--green-d);
  margin-bottom: 20px;
}
.legal-cta-box {
  background: linear-gradient(135deg, var(--green-d), var(--green-m));
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin-top: 48px;
  color: #fff;
}
.legal-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.legal-cta-box p { opacity: 0.85; font-size: 0.95rem; margin-bottom: 24px; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px;
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-form-wrap p { color: var(--text-m); font-size: 0.95rem; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-m);
  box-shadow: 0 0 0 3px rgba(15,112,126,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6065' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--green-m), var(--green-d));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(15,112,126,0.3);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(15,112,126,0.42); }

.contact-info-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 22px;
}
.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 14px;
}
.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.info-card p  { font-size: 0.85rem; color: var(--text-m); line-height: 1.5; }
.faq-cta-card {
  background: linear-gradient(135deg, var(--green-d), var(--green-m));
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
.faq-cta-card h4 { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.faq-cta-card p  { font-size: 0.85rem; opacity: 0.85; margin-bottom: 16px; }
.faq-cta-card a {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.faq-cta-card a:hover { background: rgba(255,255,255,0.3); }
.form-success {
  display: none;
  background: #e8f7ee;
  color: #1a7a3e;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */

/* ── 960px and below — hero stacks ── */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-img-col { order: 1; }
  .hero-text-col { order: 2; }
  .hero-img-wrap img { max-width: 280px; margin: 0 auto; }
  .hero-stars, .trust-pills { justify-content: center; }

  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .what-is-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
  .guarantee-badge { display: flex; justify-content: center; }
  .g-pills { justify-content: center; }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-science { grid-template-columns: 1fr; }
  .ben-list { grid-template-columns: 1fr; }
  .adv-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mob-cta-bar { display: block; }
  body { padding-bottom: 64px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .price-card.featured { transform: none; }
}

/* ── 860px and below — hamburger ── */
@media (max-width: 860px) {
  .desktop-nav, .h-email { display: none; }
  .hamburger { display: flex; }
  .h-btn { display: none; }
}

/* ── 560px and below ── */
@media (max-width: 560px) {
  .hero-img-wrap img { max-width: 220px; }
  .why-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .topbar { font-size: 0.72rem; }
  .footer-nav, .footer-legal { flex-direction: column; align-items: center; gap: 8px; }
}
