/* =========================================================
   WELAXIS MULTI — WELZONA | Landing Page Stylesheet
   Architecture: Section-scoped semantic
   Tokens: --bg-* / --clr-* / --font-*
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ---- TOKENS ---- */
:root {
  --bg-deep:     #07112A;
  --bg-section:  #0D1E3C;
  --bg-card:     #112240;
  --bg-elevated: #192E50;
  --bg-footer:   #060F22;

  --clr-green:      #1BDB8A;
  --clr-green-dim:  #16B975;
  --clr-green-glow: rgba(27, 219, 138, 0.22);
  --clr-gold:       #F2A922;
  --clr-gold-dim:   #C98C1A;

  --clr-text:   #E1EEF8;
  --clr-muted:  #89ACCA;
  --clr-dim:    #4D6D87;
  --clr-border: #1C3352;
  --clr-white:  #FFFFFF;

  --font-display: 'PT Serif', Georgia, serif;
  --font-body:    'Open Sans', Helvetica, sans-serif;

  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-pill: 60px;

  --shadow-card: 0 8px 36px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 30px rgba(27, 219, 138, 0.28);
  --shadow-gold: 0 0 20px rgba(242, 169, 34, 0.3);

  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-w: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); color: var(--clr-white); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); color: var(--clr-white); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--clr-white); }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--clr-green); text-transform: uppercase; letter-spacing: 0.08em; }
p  { color: var(--clr-muted); font-size: 1.02rem; }

/* ---- LAYOUT ---- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-py { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }
.text-center { text-align: center; }
.row { display: flex; align-items: center; gap: 60px; }
.row--rev { flex-direction: row-reverse; }
.col { flex: 1; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* Decorative divider */
.section-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--clr-green), var(--clr-gold));
  border-radius: 4px;
  margin: 18px auto 0;
}
.section-divider--left { margin-left: 0; }

/* Section label */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27, 219, 138, 0.1);
  border: 1px solid rgba(27, 219, 138, 0.3);
  color: var(--clr-green);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

/* ---- CTA BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dim));
  color: #06111F;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 44px rgba(27, 219, 138, 0.45);
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dim));
  color: #07112A;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 0 36px rgba(242, 169, 34, 0.45); }
.btn-outline {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--clr-green);
  color: var(--clr-green);
  font-weight: 600; font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--clr-green); color: #06111F; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0C1B33;
  border-top: 1px solid var(--clr-border);
  padding: 20px 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  transform: translateY(0); transition: transform 0.4s var(--ease);
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__text p { font-size: 0.88rem; color: var(--clr-muted); }
.cookie-banner__text a { color: var(--clr-green); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--clr-green); color: #06111F;
  font-weight: 700; font-size: 0.88rem;
  padding: 10px 22px; border-radius: var(--radius-pill);
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.88; }
.cookie-btn-decline {
  background: transparent; border: 1px solid var(--clr-border);
  color: var(--clr-muted); font-size: 0.88rem;
  padding: 10px 22px; border-radius: var(--radius-pill);
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: var(--clr-muted); color: var(--clr-text); }

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 16px 0;
  background: rgba(7, 17, 42, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 51, 82, 0.7);
  transition: padding 0.3s, background 0.3s;
}
.site-header.scrolled { padding: 10px 0; background: rgba(7, 17, 42, 0.98); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo svg { height: 36px; width: auto; }
.logo-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--clr-white); letter-spacing: -0.02em;
}
.logo-name span { color: var(--clr-green); }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--clr-muted);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--clr-white); }
.header-cta { flex-shrink: 0; }
.header-cta .btn-primary { padding: 10px 24px; font-size: 0.9rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px; transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 850;
  background: rgba(7, 17, 42, 0.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--clr-text); font-weight: 700;
}
.mobile-nav a:hover { color: var(--clr-green); }
.mobile-nav .btn-primary { font-size: 1rem; padding: 14px 36px; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: var(--clr-muted); cursor: pointer;
}

/* ---- HERO ---- */
.hero-section {
  padding: 150px 0 100px;
  background: var(--bg-deep);
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(8, 22, 54, 0.72) 0%,
    rgba(14, 38, 80, 0.52) 50%,
    rgba(20, 55, 110, 0.38) 100%
  );
  pointer-events: none;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 1;
  pointer-events: none;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-tag { margin-bottom: 22px; }
.hero-title { margin-bottom: 22px; }
.hero-title em { font-style: italic; color: var(--clr-green); }
.hero-sub {
  font-size: 1.1rem; color: var(--clr-muted);
  margin-bottom: 36px; max-width: 540px; line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-price-note { font-size: 0.88rem; color: var(--clr-dim); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding-top: 28px; border-top: 1px solid var(--clr-border);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--clr-muted); font-weight: 500;
}
.hero-trust-icon { font-size: 1rem; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,17,42,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: -18px; left: -22px;
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-green);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.hero-badge strong { display: block; font-size: 1.1rem; color: var(--clr-green); font-weight: 700; }
.hero-badge span { font-size: 0.8rem; color: var(--clr-muted); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 30px 0;
}
.trust-strip-inner {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 40px;
}
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  color: var(--clr-text); font-size: 0.9rem; font-weight: 500;
}
.trust-badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(27, 219, 138, 0.12);
  border: 1px solid rgba(27, 219, 138, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.trust-badge-text strong { display: block; font-size: 0.92rem; color: var(--clr-text); }
.trust-badge-text span { font-size: 0.8rem; color: var(--clr-muted); }

/* ---- AWARENESS / PROBLEM SECTION ---- */
.awareness-section { background: var(--bg-section); }
.awareness-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}
.awareness-image img { width: 100%; height: 420px; object-fit: cover; }
.awareness-content { padding: 10px 0; }
.awareness-content h2 { margin: 16px 0 18px; }
.awareness-content p { margin-bottom: 16px; line-height: 1.85; }
.awareness-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.awareness-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.96rem; color: var(--clr-muted);
}
.awareness-list li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(27,219,138,0.14);
  color: var(--clr-green);
  border-radius: 50%; font-size: 0.75rem; font-weight: 700;
  margin-top: 2px;
}

/* ---- BENEFITS GRID ---- */
.benefits-section { background: var(--bg-deep); }
.benefits-intro { max-width: 620px; margin: 0 auto 52px; }
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-green);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.benefit-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(27, 219, 138, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; line-height: 1.75; }

/* ---- PRODUCT SECTION ---- */
.product-section { background: var(--bg-section); position: relative; overflow: hidden; }
.product-section::before {
  content: '';
  position: absolute; top: -60px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,219,138,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.product-visual { position: relative; text-align: center; }
.product-img-container {
  display: inline-block; position: relative;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(27,219,138,0.1) 0%, transparent 65%);
  padding: 20px;
}
.product-img-container img {
  max-height: 420px; max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(27,219,138,0.25));
  animation: float-product 4s ease-in-out infinite;
}
@keyframes float-product {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.product-glow {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 30px;
  background: rgba(27,219,138,0.18);
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}
.product-content { }
.product-content h2 { margin: 16px 0 10px; }
.product-subtitle {
  font-size: 1.08rem; color: var(--clr-muted);
  margin-bottom: 28px; line-height: 1.75;
}
.product-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.product-feature {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.product-feature-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--clr-green); flex-shrink: 0;
}
.product-feature span { font-size: 0.93rem; color: var(--clr-text); }
.product-price-block {
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.price-label { font-size: 0.82rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.price-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--clr-gold); }
.price-note { font-size: 0.78rem; color: var(--clr-dim); }

/* ---- FOR WHOM SECTION ---- */
.forwhom-section { background: var(--bg-deep); }
.forwhom-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  position: relative;
}
.forwhom-image img { width: 100%; height: 460px; object-fit: cover; }
.forwhom-content h2 { margin: 16px 0 18px; }
.forwhom-content p { margin-bottom: 22px; }
.forwhom-list { display: flex; flex-direction: column; gap: 16px; }
.forwhom-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-green);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.forwhom-item-num {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: rgba(27,219,138,0.35);
  line-height: 1; flex-shrink: 0; min-width: 28px;
}
.forwhom-item-body strong { display: block; font-size: 0.95rem; color: var(--clr-text); margin-bottom: 3px; }
.forwhom-item-body span { font-size: 0.86rem; color: var(--clr-muted); }

/* ---- LIFESTYLE CARDS ---- */
.lifestyle-section { background: var(--bg-section); }
.lifestyle-intro { max-width: 580px; margin: 0 auto 52px; }
.lifestyle-card {
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.lifestyle-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.lifestyle-card-body { padding: 22px 22px 26px; }
.lifestyle-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.lifestyle-card-body p { font-size: 0.88rem; line-height: 1.7; }

/* ---- STATS STRIP ---- */
.stats-section {
  background: var(--bg-card);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 44px 0;
}
.stats-inner { display: flex; justify-content: center; gap: 70px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 700;
  color: var(--clr-gold);
  line-height: 1.1; display: block;
}
.stat-label { font-size: 0.84rem; color: var(--clr-muted); margin-top: 6px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--bg-deep); }
.testimonials-intro { max-width: 540px; margin: 0 auto 52px; }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.25s;
}
.review-card:hover { box-shadow: var(--shadow-card); }
.review-stars { color: var(--clr-gold); font-size: 1rem; letter-spacing: 3px; }
.review-text {
  font-size: 0.95rem; color: var(--clr-text);
  line-height: 1.8; font-style: italic;
  border-left: 3px solid rgba(27,219,138,0.4);
  padding-left: 16px; flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-green), #0D8B5B);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #06111F;
  flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 0.9rem; color: var(--clr-text); }
.review-meta span { font-size: 0.8rem; color: var(--clr-muted); }

/* ---- ORDER FORM ---- */
.order-section {
  background: linear-gradient(135deg, #0B1D36 0%, #0D2040 50%, #0A1830 100%);
  position: relative; overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(27,219,138,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.order-section::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(242,169,34,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.order-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  position: relative; z-index: 2;
}
.order-info h2 { margin: 16px 0 20px; }
.order-info p { margin-bottom: 28px; }
.order-perks { display: flex; flex-direction: column; gap: 14px; }
.order-perk {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.92rem; color: var(--clr-muted);
}
.order-perk-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(27,219,138,0.12);
  border: 1px solid rgba(27,219,138,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.order-form-card {
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.order-form-title {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--clr-white); margin-bottom: 6px;
}
.order-form-sub { font-size: 0.88rem; color: var(--clr-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.84rem; font-weight: 600;
  color: var(--clr-text); margin-bottom: 7px;
}
.form-group input, .form-group select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text);
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 3px rgba(27,219,138,0.12);
}
.form-group input::placeholder { color: var(--clr-dim); }
.form-price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(27,219,138,0.07);
  border: 1px solid rgba(27,219,138,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.form-price-label { font-size: 0.88rem; color: var(--clr-muted); }
.form-price-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--clr-gold); font-weight: 700; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dim));
  color: #06111F; font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 700;
  padding: 17px 24px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-glow);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(27,219,138,0.45); }
.form-disclaimer {
  font-size: 0.78rem; color: var(--clr-dim);
  text-align: center; margin-top: 12px; line-height: 1.6;
}

/* ---- FAQ ---- */
.faq-section { background: var(--bg-section); }
.faq-intro { max-width: 560px; margin: 0 auto 52px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--clr-text); text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--clr-green); }
.faq-question.open { color: var(--clr-green); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(27,219,138,0.1);
  border: 1px solid rgba(27,219,138,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-arrow svg { width: 14px; height: 14px; stroke: var(--clr-green); }
.faq-question.open .faq-arrow { transform: rotate(180deg); background: rgba(27,219,138,0.2); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.95rem; color: var(--clr-muted); line-height: 1.85;
  border-top: 1px solid var(--clr-border);
  padding-top: 18px;
}

/* ---- CONTACT SECTION ---- */
.contact-section { background: var(--bg-deep); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px; text-align: center;
}
.contact-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(27,219,138,0.1);
  border: 1px solid rgba(27,219,138,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 16px;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--clr-muted); }
.contact-card a:hover { color: var(--clr-green); }

/* ---- DISCLAIMER STRIP ---- */
.disclaimer-strip {
  background: rgba(242,169,34,0.06);
  border-top: 1px solid rgba(242,169,34,0.2);
  border-bottom: 1px solid rgba(242,169,34,0.2);
  padding: 20px 0;
}
.disclaimer-strip p {
  font-size: 0.82rem; color: rgba(242,169,34,0.75); text-align: center; line-height: 1.7;
}
.disclaimer-strip a { color: var(--clr-gold); text-decoration: underline; }

/* ---- FOOTER ---- */
.site-footer { background: var(--bg-footer); padding: 52px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand .logo-name { font-size: 1.2rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.88rem; color: var(--clr-dim); line-height: 1.75; margin-top: 12px; }
.footer-col h4 { font-size: 0.82rem; color: var(--clr-green); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--clr-dim); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--clr-text); }
.footer-bottom {
  border-top: 1px solid var(--clr-border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 0.82rem; color: var(--clr-dim); }
.footer-copy a { color: var(--clr-dim); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.8rem; color: var(--clr-dim); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--clr-green); }

/* ---- FADE-IN ANIMATION ---- */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---- LEGAL PAGE ---- */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 10px; }
.legal-page .legal-date { font-size: 0.88rem; color: var(--clr-muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; color: var(--clr-green); font-family: var(--font-display); }
.legal-content p { margin-bottom: 14px; font-size: 0.95rem; color: var(--clr-muted); line-height: 1.85; }
.legal-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.legal-content ul li { font-size: 0.93rem; color: var(--clr-muted); margin-bottom: 8px; line-height: 1.75; }

/* ---- SUCCESS PAGE ---- */
.success-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-deep); text-align: center; padding: 40px 24px;
}
.success-card {
  background: var(--bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 52px 44px; max-width: 540px;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(27,219,138,0.12);
  border: 2px solid var(--clr-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 28px;
  box-shadow: var(--shadow-glow);
}
.success-card h1 { font-size: 1.9rem; margin-bottom: 14px; }
.success-card p { color: var(--clr-muted); margin-bottom: 14px; line-height: 1.8; }
.success-card .btn-primary { margin-top: 16px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-img-wrap img { height: 400px; }
  .order-inner { gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --section-py: 60px; }
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-section { padding: 120px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img-wrap img { height: 320px; }
  .hero-badge { bottom: -14px; left: -10px; }
  .row { flex-direction: column; gap: 36px; }
  .row--rev { flex-direction: column; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .order-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { gap: 36px; }
  .trust-strip-inner { gap: 24px; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .product-price-block { flex-direction: column; align-items: flex-start; gap: 12px; }
  .order-form-card { padding: 28px 20px; }
}
