/* =====================
   CSS VARIABLES — BRAND
   ===================== */
:root {
  --peach:       #C96028;
  --peach-dark:  #A44C1E;
  --peach-light: #E07A42;
  --peach-pale:  #FDF0E6;

  --green:       #4E8C1C;
  --green-dark:  #3A6A14;
  --green-light: #6AAE2E;
  --green-pale:  #EDF5E8;

  --white:       #FFFFFF;
  --off-white:   #F7F8F5;
  --gray-light:  #E8E5E0;
  --gray-mid:    #C8C2B8;
  --text-dark:   #1A1F14;
  --text-body:   #3D4835;
  --text-muted:  #6B7560;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);

  --radius-lg:   16px;
  --radius-md:   10px;
  --radius-sm:   6px;
  --radius-pill: 999px;

--font-body: 'Outfit', sans-serif;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* =====================
   UTILITY
   ===================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 14px;
}
.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.eyebrow-dot {
  width: 16px; height: 2px;
  background: var(--peach);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow-dot-light {
  width: 16px; height: 2px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.13;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.section-title-light {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.13;
  color: var(--white);
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
}

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal         { transform: translateY(24px); }
.reveal-left    { transform: translateX(-28px); }
.reveal-right   { transform: translateX(28px); }
.reveal-scale   { transform: scale(0.97); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { opacity: 1; transform: none; }

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4E8C1C;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 16px rgba(201,96,40,0.28);
}
.btn-primary:hover {
  background: var(--peach-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,96,40,0.36);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--peach);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--peach);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.btn-ghost:hover {
  background: var(--peach);
  color: var(--white);
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0;
  transition: all 0.3s ease;
  max-width: 90%;
  margin: 12px auto 0;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-md);
}

.nav.scrolled {
  background: rgba(255,255,255,0.98);
  max-width: 100%;
  margin-top: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav-logo-img { height: 64px; width: auto; object-fit: contain; flex-shrink: 0; }
.nav-logo-text .brand-name { 
  font-size: 20px; 
  font-weight: 800;
  color: var(--text-dark); 
  letter-spacing: 0.3px; 
  line-height: 1.1; 
}
.nav-logo-text .brand-name .part-peach { 
  color: var(--peach); 
}
.nav-logo-text .brand-sub {
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: 1.4px;
  text-transform: uppercase; 
  color: var(--text-muted); 
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 15px; font-weight: 600; color: black;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color 0.18s ease, background 0.18s ease;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}
.nav-links a:hover { color: var(--white); background: var(--green-light); }
.nav-cta {
  background: var(--peach) !important;
  color: var(--white) !important;
  border-radius: var(--radius-md) !important;
  padding: 9px 18px !important;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(201,96,40,0.25);
}
.nav-cta:hover {
  background: var(--peach-dark) !important;
  color: var(--white) !important;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-dark); font-size: 15px;
}

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, #A44C1E 0%, var(--peach) 50%, var(--peach-light) 100%);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 40%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -280px; left: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.16);
  box-shadow:
    0 0 0 52px  rgba(255,255,255,0.06),
    0 0 0 104px rgba(255,255,255,0.04),
    0 0 0 156px rgba(255,255,255,0.025),
    0 0 0 208px rgba(255,255,255,0.012);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  color: #55b806;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
}
.hero-trust-item i {
  font-size: 15px; color: rgba(255,255,255,0.65);
}
.hero-trust-item span {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
}
.hero-img-wrap {
  position: relative;
}
.hero-img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  display: block;
}
.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 12px;
  min-width: 164px;
}
.hero-stat-card.card-left { bottom: 36px; left: -20px; }
.hero-stat-card.card-top  { top: 36px;    right: -20px; }
.hero-stat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--peach-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.hero-stat-icon i  { color: var(--peach); font-size: 17px; }
.hero-stat-num     { font-size: 20px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.hero-stat-label   { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-top: 3px; }

/* =====================
   TICKER / MARQUEE
   ===================== */
.ticker-bar {
  background: var(--green);
  padding: 11px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0 28px;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.6px; text-transform: uppercase;
}
.ticker-item i { font-size: 11px; color: rgba(255,255,255,0.6); }
.ticker-dot {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.35); border-radius: 50%;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   STATS BAND
   ===================== */
.stats-band {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--gray-light);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; padding-right: 0; }
.stat-num {
  font-size: 40px; font-weight: 800;
  color: var(--text-dark); letter-spacing: -1.5px;
  line-height: 1; margin-bottom: 8px;
}
.stat-num span { color: var(--peach); }
.stat-desc {
  font-size: 16px; color: var(--text-muted);
  font-weight: 500; line-height: 1.4;
}

/* =====================
   PROBLEM SECTION
   ===================== */
.problem-section {
  padding: 100px 0;
  background: var(--off-white);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-img {
  width: 100%; height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.problem-points {
  display: flex; flex-direction: column;
  gap: 16px; margin-top: 28px;
}
.problem-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.problem-point:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,96,40,0.2);
}
.pp-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--peach-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.pp-icon i { color: var(--peach); font-size: 16px; }
.pp-text h4 {
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 3px;
}
.pp-text p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* =====================
   HOW IT WORKS (REDESIGN)
   ===================== */
.how-section {
  background: var(--white);
  padding: 100px 0;
}
.how-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.how-main-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.how-sub-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.how-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
}
.card-white {
  background: #c96028ed; /* Soft off-white */
}
.card-green {
  background: #c96028ed; /* Soft light green */
}
.step-badge {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.step-card-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: white;
  margin-bottom: 20px;
}
.step-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: white;
  margin-bottom: 15px;
}
.step-card-text:last-child {
  margin-bottom: 0;
}
.step-card-text a {
  color: #2196F3;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 991px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =====================
   WHAT WE BUY
   ===================== */
.buy-section {
  background: var(--off-white);
  padding: 100px 0;
}
.buy-header {
  text-align: center; margin-bottom: 52px;
}
.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.buy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.buy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.buy-card-img {
  width: 100%; height: auto; object-fit: cover; display: block;
}
.buy-card-img-fallback {
  width: 100%; height: 160px;
  background: var(--off-white);
  display: none; align-items: center; justify-content: center;
}
.buy-card-img-fallback i { font-size: 36px; color: var(--gray-mid); }
.buy-card-body { padding: 18px 20px; }
.buy-card-title {
  font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 5px;
}
.buy-card-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.55; margin-bottom: 12px;
}
.buy-card-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-pale);
  color: var(--green-dark, #3A6A14);
  font-size: 13px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--radius-pill);
}
.buy-card-badge i { font-size: 10px; }

/* =====================
   SOCIAL PROOF
   ===================== */
.proof-section {
  background: var(--white);
  padding: 100px 0;
}
.proof-header { text-align: center; margin-bottom: 52px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease;
}
.proof-card:hover { box-shadow: var(--shadow-md); }
.proof-stars {
  display: flex; gap: 3px; margin-bottom: 16px;
}
.proof-stars i { color: #E8A020; font-size: 13px; }
.proof-quote {
  font-size: 17px; line-height: 1.72;
  color: var(--text-body); margin-bottom: 24px;
}
.proof-divider {
  height: 1px; background: var(--gray-light); margin-bottom: 20px;
}
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--green);
  flex-shrink: 0;
}
.proof-name { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.proof-location { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* =====================
   CTA / QUOTE FORM
   ===================== */
.cta-section {
  background: linear-gradient(150deg, var(--peach) 0%, var(--peach-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 75% 90% at 15% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 15% 50%, black 0%, transparent 80%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -220px; right: -220px;
  width: 580px; height: 580px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 0 58px  rgba(255,255,255,0.055),
    0 0 0 116px rgba(255,255,255,0.035),
    0 0 0 174px rgba(255,255,255,0.018),
    0 0 0 232px rgba(255,255,255,0.008);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-content { padding-top: 8px; }
.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.5px; line-height: 1.15;
  margin-bottom: 14px;
}
.cta-content p {
  font-size: 18px; color: rgba(255,255,255,0.82);
  line-height: 1.7; margin-bottom: 32px;
}
.cta-perks { display: flex; flex-direction: column; gap: 14px; }
.cta-perk { display: flex; align-items: flex-start; gap: 12px; }
.cta-perk-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.cta-perk-icon i { font-size: 16px; color: var(--white); }
.cta-perk span { font-size: 14px; color: rgba(255,255,255,0.88); font-weight: 500; line-height: 1.5; padding-top: 7px; }

.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  position: relative; z-index: 1;
}
.form-title {
  font-size: 20px; font-weight: 800;
  color: var(--text-dark); margin-bottom: 4px;
}
.form-sub {
  font-size: 15px; color: var(--text-muted); margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; font-family: var(--font-body);
  font-size: 14px; color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 11px 14px; outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--peach);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,96,40,0.1);
}
.form-group textarea { resize: vertical; min-height: 86px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 14px;
  font-size: 15px; border-radius: var(--radius-md);
  margin-top: 6px; justify-content: center;
}
.form-msg {
  display: none; padding: 13px 16px;
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; margin-top: 14px;
}
.form-msg.success { background: #EBF8F0; color: #1A7B44; display: block; }
.form-msg.error   { background: #FEF0E4; color: #C45E18; display: block; }
#submit-btn{
  back
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--green);
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
}
/* subtle radial glow behind glass */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(255,255,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(201,96,40,0.12) 0%, transparent 65%);
  pointer-events: none;
}
/* glassmorphism card */
.footer-glass {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 56px 56px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  height: 100px; width: auto;
  margin-bottom: 16px;
  opacity: 1;
}
.footer-brand-desc {
  font-size: 16px; color: rgba(255,255,255,0.82);
  line-height: 1.7; max-width: 280px;
}
.footer-col-title {
  font-size: 13px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color:white;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 16px; color: rgba(255,255,255,0.85);
  transition: color 0.18s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start;
  gap: 10px; margin-bottom: 12px;
}
.footer-contact-item i {
  font-size: 13px; color: rgba(255,255,255,0.75);
  margin-top: 2px; flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5;
}
.footer-bottom {
  padding: 20px 0;
  margin: 0 -56px;
  padding-left: 56px; padding-right: 56px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.08);
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-legal { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-legal a { color: rgba(255,255,255,0.8); transition: color 0.18s ease; }
.footer-legal a:hover { color: var(--white); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .buy-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-glass { padding: 40px 32px 0; }
  .footer-bottom { margin: 0 -32px; padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 900px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 48px; }
  .hero-img-wrap { order: -1; }
  .hero-img { height: 320px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-steps    { grid-template-columns: 1fr; background: transparent; gap: 16px; }
  .step-card    { border: 1px solid var(--gray-light); border-radius: var(--radius-lg); }
  .cta-grid     { grid-template-columns: 1fr; gap: 48px; }
  .proof-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { padding: 24px 20px; border-right: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-mobile-toggle { display: flex; }
  .buy-grid    { grid-template-columns: 1fr 1fr; }
  .proof-grid  { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero        { padding: 100px 0 64px; }
  .hero-trust  { gap: 16px; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
}
.hero-video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  display: block;
}

/* =====================
   WORDPRESS OVERRIDES
   ===================== */
.site-main { padding-top: 68px; }
.entry-content h1,.entry-content h2,.entry-content h3,
.entry-content h4,.entry-content h5,.entry-content h6 { color: var(--text-dark); font-weight: 700; line-height: 1.3; margin: 1.5em 0 0.6em; }
.entry-content p   { margin-bottom: 1.2em; line-height: 1.75; }
.entry-content ul,
.entry-content ol  { padding-left: 1.6em; margin-bottom: 1.2em; }
.entry-content li  { margin-bottom: 0.4em; line-height: 1.7; }
.entry-content a   { color: var(--peach); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--peach-dark); }
.entry-content blockquote { border-left: 3px solid var(--peach); padding: 12px 20px; margin: 1.5em 0; background: var(--peach-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.entry-content img { border-radius: var(--radius-md); max-width: 100%; height: auto; }
.post-navigation a { color: var(--peach); font-weight: 600; }
.post-navigation a:hover { color: var(--peach-dark); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .buy-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-glass { padding: 40px 32px 0; }
  .footer-bottom { margin: 0 -32px; padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 900px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 48px; }
  .hero-img-wrap { order: -1; }
  .hero-img     { height: 320px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-steps    { grid-template-columns: 1fr; background: transparent; gap: 16px; }
  .step-card    { border: 1px solid var(--gray-light); border-radius: var(--radius-lg); }
  .cta-grid     { grid-template-columns: 1fr; gap: 48px; }
  .proof-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item    { padding: 24px 20px; border-right: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 16px 24px 24px;
    gap: 4px; border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-mobile-toggle { display: flex; }
  .buy-grid    { grid-template-columns: 1fr 1fr; }
  .proof-grid  { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-glass { padding: 36px 24px 0; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .footer-bottom { margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
  .hero        { padding: 100px 0 64px; }
  .hero-trust  { gap: 16px; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
}
