/* ================================================ */
/* CANNABIZSEO — MASTER STYLESHEET                  */
/* Edit once, applies to all 400 pages              */
/* ================================================ */

:root {
  --green: #29d463;
  --green-dim: #1faa4e;
  --green-dark: #0a2b17;
  --green-glow: rgba(41, 212, 99, 0.13);
  --red: #e8453c;
  --gold: #c9a227;
  --bg: #080808;
  --bg2: #0d0d0d;
  --bg3: #111111;
  --brick: #1a0f0a;
  --text: #e8e8e8;
  --text-dim: #999;
  --border: rgba(41,212,99,0.18);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9;
  opacity: 0.35;
}

/* ─── NAV ─── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}

.nav-logo-link {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(41,212,99,0.5)) brightness(1.15);
}

.nav-desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 0 12px;
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-link:hover { color: var(--green); }

.nav-call-btn {
  background: linear-gradient(135deg, #34d96a 0%, #1db855 50%, #178a40 100%);
  color: #000;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0 18px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-left: 12px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.2s;
}

.nav-call-btn:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,255,106,0.4);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #e8e8e8;
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(8,8,8,0.99);
  border-bottom: 1px solid rgba(41,212,99,0.18);
  z-index: 999;
  flex-direction: column;
  padding: 8px 0 16px;
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--green); background: rgba(41,212,99,0.04); }

.mobile-call-btn {
  margin: 16px 24px 0 !important;
  background: linear-gradient(135deg,#34d96a 0%,#1db855 50%,#178a40 100%) !important;
  color: #000 !important;
  font-weight: 700 !important;
  text-align: center !important;
  border-bottom: none !important;
  padding: 14px 24px !important;
  justify-content: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  display: flex !important;
}
.mobile-call-btn:hover { background: #fff !important; color: #000 !important; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #34d96a 0%, #1db855 50%, #178a40 100%);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 34px;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 4px 14px rgba(29,184,85,0.25);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3de878 0%, #24c45e 50%, #1aa34a 100%) !important;
  box-shadow: 0 6px 24px rgba(29,184,85,0.4), 0 1px 0 rgba(255,255,255,0.2) inset !important;
  transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); box-shadow: 0 0 16px rgba(41,212,99,0.15); }

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #34d96a 0%, #1db855 50%, #178a40 100%);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 22px 48px;
  text-decoration: none;
  width: 100%;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 20px rgba(29,184,85,0.3);
}
.btn-primary-lg:hover {
  background: linear-gradient(135deg, #36e870 0%, var(--green) 100%) !important;
  box-shadow: 0 0 40px rgba(41,212,99,0.4), 0 4px 0 rgba(0,0,0,0.4) !important;
  transform: translateY(-2px);
}

/* ─── SECTION TAG ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,212,99,0.08);
  border: 1px solid rgba(41,212,99,0.2);
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
  position: relative;
}
.section-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0,255,106,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0,100,40,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  color: #fff;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,255,106,0.08);
  border: 1px solid var(--border);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  max-width: 680px;
}
.hero h1 .accent { color: var(--green); text-shadow: 0 0 30px rgba(41,212,99,0.45); }
.hero h1 .red { color: var(--red); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 20px rgba(41,212,99,0.35);
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}
.hero-brick {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(8,8,8,1) 0%, rgba(8,8,8,0.6) 35%, rgba(8,8,8,0.15) 100%),
    url('https://assets.cdn.filesafe.space/YtT1fFVCMbc9Hb5SNqYf/media/6987af702dd9852191d3e1e9.jpg');
  background-size: cover;
  background-position: 70% 20%;
}
.hero-brick::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080808 0%, transparent 30%);
}

/* ─── PAIN SECTION ─── */
.pain {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.pain h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
}
.pain h2 .accent { color: var(--green); }
.pain-intro {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 660px;
  margin-bottom: 70px;
  line-height: 1.8;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
  background: var(--border);
}
.pain-card {
  background: var(--bg2);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--green);
  transition: height 0.4s;
}
.pain-card:hover { background: #0f0f0f; }
.pain-card:hover::before { height: 100%; }
.pain-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  color: rgba(41,212,99,0.06);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
  transition: color 0.3s;
}
.pain-card:hover .pain-number { color: rgba(41,212,99,0.11); }
.pain-icon {
  width: 44px; height: 44px;
  background: var(--green-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.pain-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.pain-card p { font-size: 15px; color: var(--text-dim); line-height: 1.7; }
.pain-card p strong { color: var(--text); }

/* ─── REALITY CHECK ─── */
.reality {
  background: var(--brick);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.02) 28px, rgba(255,255,255,0.02) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 58px, rgba(255,255,255,0.01) 58px, rgba(255,255,255,0.01) 60px);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.reality::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,255,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.reality-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reality h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}
.reality h2 span { color: var(--green); }
.reality-body p { font-size: 17px; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; }
.reality-body p strong { color: var(--text); }
.reality-body .callout {
  border-left: 3px solid var(--green);
  padding: 20px 24px;
  background: rgba(41,212,99,0.04);
  margin: 32px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}
.money-lost {
  background: rgba(255,59,59,0.06);
  border: 1px solid rgba(255,59,59,0.2);
  padding: 40px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.money-lost h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 28px;
}
.money-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.money-row:last-child { border-bottom: none; }
.money-label { font-size: 14px; color: var(--text-dim); font-weight: 500; }
.money-value { font-family: 'Space Grotesk', sans-serif; font-size: 28px; color: var(--red); letter-spacing: 1px; }
.money-total {
  margin-top: 20px; padding-top: 20px;
  border-top: 2px solid rgba(255,59,59,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.money-total .money-label { color: var(--text); font-weight: 700; font-size: 16px; }
.money-total .money-value { font-size: 48px; }

/* ─── FALSE BELIEF BREAKER ─── */
.beliefs {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.beliefs h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}
.beliefs h2 span { color: var(--green); }
.beliefs-sub {
  text-align: center;
  font-size: 18px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 70px;
  line-height: 1.7;
}
.belief-flip {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 3px;
  align-items: stretch;
}
.belief-before {
  background: rgba(255,59,59,0.05);
  border: 1px solid rgba(255,59,59,0.12);
  padding: 28px 32px;
  clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.belief-before .label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px; opacity: 0.8;
}
.belief-before p { font-size: 16px; color: rgba(255,255,255,0.6); font-style: italic; line-height: 1.5; }
.belief-arrow {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); color: var(--green); font-size: 20px;
}
.belief-after {
  background: rgba(41,212,99,0.04);
  border: 1px solid var(--border);
  padding: 28px 32px;
  clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 100%, 0% 100%);
}
.belief-after .label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px; opacity: 0.8;
}
.belief-after p { font-size: 16px; color: var(--text); font-weight: 500; line-height: 1.5; }

/* ─── SERVICE SECTION ─── */
.service {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg3) 50%, var(--bg) 100%);
  padding: 120px 40px;
  position: relative;
}
.service-inner { max-width: 1200px; margin: 0 auto; }
.service-header { text-align: center; margin-bottom: 80px; }
.service h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 600; color: #fff; margin-bottom: 16px;
}
.service h2 span { color: var(--green); }
.service-desc { font-size: 18px; color: var(--text-dim); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 80px;
}
.service-item {
  background: var(--bg2);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-item:hover { background: #101010; }
.service-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-item:hover::after { opacity: 1; }
.service-item-cta {
  background: linear-gradient(135deg, #0a1a0e 0%, #080f0b 100%) !important;
  border: 1px solid rgba(41,212,99,0.12) !important;
  display: flex; align-items: center;
  grid-column: 1 / -1;
}
.service-item-cta:hover { background: linear-gradient(135deg, #0d2012 0%, #0a120d 100%) !important; }
.service-cta-inner { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-cta-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600; letter-spacing: -0.02em;
  color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.service-cta-big strong { color: var(--green); }
.service-cta-sub { font-size: 15px; color: var(--text-dim); line-height: 1.75; }
.service-cta-stats { display: flex; flex-direction: column; gap: 2px; }
.scs-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(41,212,99,0.08);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.scs-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px; font-weight: 700;
  color: var(--green); line-height: 1;
  text-shadow: 0 0 20px rgba(41,212,99,0.3);
}
.scs-label { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.service-check {
  width: 36px; height: 36px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  font-size: 16px; color: #000; font-weight: 900; flex-shrink: 0;
}
.service-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #fff; margin-bottom: 12px;
}
.service-item p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

/* ─── PRICING CARD ─── */
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  max-width: 600px; margin: 0 auto;
  position: relative; overflow: hidden;
  clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  transition: all 0.4s ease;
}
.pricing-card:hover {
  box-shadow: 0 0 60px rgba(41,212,99,0.1), 0 20px 60px rgba(0,0,0,0.5);
  border-color: rgba(41,212,99,0.3);
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.pricing-top {
  padding: 44px 48px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.pricing-badge {
  display: inline-block;
  background: var(--green); color: #000;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 16px; margin-bottom: 20px;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}
.pricing-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; letter-spacing: -0.02em; font-weight: 600; color: #fff; margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 76px; color: var(--green); line-height: 1;
  text-shadow: 0 0 40px rgba(0,255,106,0.4);
}
.pricing-price sup { font-size: 32px; vertical-align: top; margin-top: 16px; display: inline-block; }
.pricing-period { font-size: 16px; color: var(--text-dim); margin-top: 4px; }
.pricing-includes { padding: 36px 48px; }
.pricing-includes h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 24px;
}
.include-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.include-check {
  width: 20px; height: 20px;
  background: rgba(0,255,106,0.15); border: 1px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px; color: var(--green); margin-top: 2px;
}
.include-item p { font-size: 15px; color: var(--text); line-height: 1.5; }
.include-item p span { display: block; font-size: 12px; color: var(--text-dim); margin-top: 3px; }
.pricing-bonus {
  background: rgba(212,168,71,0.06);
  border-top: 1px solid rgba(212,168,71,0.2);
  padding: 24px 48px;
}
.pricing-bonus h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.bonus-line {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bonus-line:last-of-type { border-bottom: none; }
.bonus-check { color: var(--green); font-size: 12px; font-weight: 700; flex-shrink: 0; width: 16px; }
.bonus-name { flex: 1; font-size: 13px; font-weight: 600; color: var(--text); }
.bonus-val { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; white-space: nowrap; }
.bonus-total-line {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(212,168,71,0.25);
  font-size: 13px; color: var(--text-dim); text-align: center;
}
.bonus-total-line strong { color: var(--gold); font-size: 15px; }
.pricing-cta-wrap { padding: 32px 48px 44px; text-align: center; }
.pricing-note { font-size: 13px; color: var(--text-dim); margin-top: 14px; }

/* ─── BONUSES SECTION ─── */
.bonuses-section {
  padding: 110px 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(41,212,99,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(201,162,39,0.04) 0%, transparent 50%),
    var(--bg3);
}
.bonuses-header { text-align: center; max-width: 780px; margin: 0 auto 72px; }
.bonuses-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600; letter-spacing: -0.03em; color: #fff;
  margin-bottom: 14px; line-height: 1.05;
}
.bonuses-header h2 em { font-style: normal; color: var(--green); }
.bonuses-header p { font-size: 17px; color: var(--text-dim); line-height: 1.75; max-width: 580px; margin: 0 auto; }
.bonuses-header p strong { color: var(--text); }
.bonuses-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(255,255,255,0.04);
  max-width: 1200px; margin: 0 auto 56px;
}
.bonus-card {
  background: var(--bg2); padding: 48px 44px;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.bonus-card:hover { background: #0f0f0f; }
.bonus-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.bonus-card:hover::before { opacity: 1; }
.bonus-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px; gap: 16px;
}
.bonus-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: #fff; line-height: 1.2;
}
.bonus-card-value {
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800; letter-spacing: 1px;
  padding: 4px 14px; white-space: nowrap;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  flex-shrink: 0;
}
.bonus-card p { font-size: 15px; color: var(--text-dim); line-height: 1.75; margin-bottom: 14px; }
.bonus-card p strong { color: var(--text); }
.bonus-card ul { list-style: none; margin-top: 18px; }
.bonus-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-dim);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); line-height: 1.5;
}
.bonus-card ul li:last-child { border-bottom: none; }
.bonus-card ul li::before { content: '→'; color: var(--green); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.bonuses-total {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(41,212,99,0.06) 100%);
  border: 1px solid rgba(201,162,39,0.2);
  padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
}
.bonuses-total-left p { font-size: 16px; color: var(--text-dim); line-height: 1.6; }
.bonuses-total-left p strong { color: var(--text); }
.bonuses-total-right { text-align: right; flex-shrink: 0; }
.bonuses-total-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-dim); display: block; margin-bottom: 4px;
}
.bonuses-total-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1;
  text-shadow: 0 0 30px rgba(201,162,39,0.3);
}
.bonuses-total-amount sup { font-size: 24px; vertical-align: super; }

/* ─── HALF BATTLE ─── */
.half-battle {
  padding: 100px 40px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,255,106,0.05) 0%, transparent 60%),
    var(--bg3);
  position: relative; overflow: hidden;
}
.half-battle-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.half-battle h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.08; letter-spacing: -0.03em; font-weight: 600; color: #fff; margin-bottom: 24px;
}
.half-battle h2 span { color: var(--green); }
.half-battle p { font-size: 16px; color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; }
.half-battle p strong { color: var(--text); }
.half-battle-right {
  position: relative; min-height: 480px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.half-battle-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.85) brightness(0.88); transition: transform 0.6s ease;
}
.half-battle-right:hover img { transform: scale(1.03); }
.half-battle-right::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(8,8,8,0.7) 0%, transparent 40%),
    linear-gradient(90deg, rgba(8,8,8,0.4) 0%, transparent 50%);
}
.google-trust {
  background: var(--bg2); border: 1px solid var(--border); padding: 36px; position: relative;
}
.google-trust::before {
  content: 'THE TRUTH';
  position: absolute; top: -10px; left: 24px;
  background: var(--green); color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 2px 12px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-item:last-child { border-bottom: none; }
.trust-x {
  width: 24px; height: 24px;
  background: rgba(255,59,59,0.15); border: 1px solid rgba(255,59,59,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--red); flex-shrink: 0; margin-top: 2px;
}
.trust-check2 {
  width: 24px; height: 24px;
  background: rgba(0,255,106,0.1); border: 1px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--green); flex-shrink: 0; margin-top: 2px;
}
.trust-item p { font-size: 14px; color: var(--text-dim); line-height: 1.5; margin: 0; }
.trust-item p strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ─── IMAGE FEATURES ─── */
.img-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto 2px; gap: 2px; align-items: stretch;
}
.img-feature.reverse { direction: rtl; }
.img-feature.reverse > * { direction: ltr; }
.img-feature-photo {
  position: relative; overflow: hidden; min-height: 460px; background: var(--bg3);
}
.img-feature-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  transition: transform 0.7s ease; filter: saturate(0.9) brightness(0.92);
}
.img-feature-photo:hover img { transform: scale(1.03); }
.img-feature-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(41,212,99,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.img-feature-copy {
  background: var(--bg2); padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
}
.img-feature-copy::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--green), transparent);
  opacity: 0.5;
}
.img-feature-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 46px); font-weight: 600; letter-spacing: -0.03em;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.img-feature-copy h2 .accent { color: var(--green); }
.img-feature-copy p { font-size: 16px; color: var(--text-dim); line-height: 1.8; margin-bottom: 16px; }
.img-feature-copy p strong { color: var(--text); }
.img-feature-copy .section-tag { margin-bottom: 14px; }

/* ─── DIVIDER IMAGE ─── */
.divider-img { height: 320px; position: relative; overflow: hidden; }
.divider-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  filter: saturate(0.7) brightness(0.6);
}
.divider-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%),
    linear-gradient(90deg, rgba(41,212,99,0.08) 0%, transparent 60%);
  z-index: 1;
}
.divider-img-text {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; z-index: 2; text-align: center; padding: 40px;
}
.divider-img-text p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 40px); font-weight: 600; letter-spacing: -0.02em;
  color: #fff; line-height: 1.2; text-shadow: 0 2px 20px rgba(0,0,0,0.8); max-width: 760px;
}
.divider-img-text p em { font-style: normal; color: var(--green); }

/* ─── CLICK BOMB ─── */
.clickbomb {
  background: linear-gradient(135deg, #0a1f10 0%, #080808 60%);
  border: 1px solid rgba(41,212,99,0.15);
  padding: 56px 40px; max-width: 1200px; margin: 0 auto;
  position: relative; overflow: hidden;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.clickbomb::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--green-dim), transparent);
}
.clickbomb::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(41,212,99,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.clickbomb-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.clickbomb-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.3);
  padding: 5px 16px; font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.clickbomb h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; letter-spacing: -0.03em;
  color: #fff; line-height: 1.05; margin-bottom: 20px;
}
.clickbomb h2 .accent { color: var(--green); }
.clickbomb p { font-size: 16px; color: var(--text-dim); line-height: 1.8; margin-bottom: 16px; }
.clickbomb p strong { color: var(--text); }
.clickbomb-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.05);
}
.cb-stat { background: rgba(8,8,8,0.8); padding: 28px 24px; position: relative; overflow: hidden; }
.cb-stat::before {
  content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0;
  background: var(--green); transition: height 0.4s;
}
.cb-stat:hover::before { height: 100%; }
.cb-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px; font-weight: 700; color: var(--green); line-height: 1;
  text-shadow: 0 0 20px rgba(41,212,99,0.3); display: block; margin-bottom: 6px;
}
.cb-stat-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); }

/* ─── OPTIN ─── */
.optin { padding: 120px 40px; max-width: 860px; margin: 0 auto; text-align: center; }
.optin h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4vw, 58px); line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 600; color: #fff; margin-bottom: 16px;
}
.optin h2 span { color: var(--green); }
.optin-sub {
  font-size: 18px; color: var(--text-dim); line-height: 1.7; margin-bottom: 48px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.optin-box {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 48px; position: relative; overflow: hidden;
  clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  margin-bottom: 48px;
}
.optin-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.optin-checklist-preview { text-align: left; margin-bottom: 36px; }
.checklist-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 15px; color: var(--text-dim);
}
.checklist-item:last-child { border: none; }
.checklist-item::before { content: '☐'; color: var(--green); font-size: 16px; flex-shrink: 0; }
.checklist-blur { filter: blur(3px); opacity: 0.4; pointer-events: none; }
.checklist-cta-overlay {
  background: linear-gradient(0deg, var(--bg2) 40%, transparent);
  padding-top: 40px; margin-top: -20px; text-align: center;
  font-size: 15px; color: var(--green); font-weight: 600; position: relative;
}
.optin-form { display: flex; gap: 0; max-width: 500px; margin: 0 auto; }
.optin-form input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12); border-right: none;
  color: var(--text); font-family: 'Barlow', sans-serif; font-size: 15px;
  padding: 16px 20px; outline: none; transition: border-color 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.optin-form input:focus { border-color: var(--green); }
.optin-form input::placeholder { color: var(--text-dim); }
.optin-form button {
  background: var(--green); color: #000;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 16px 28px;
  border: none; cursor: pointer; white-space: nowrap;
  clip-path: polygon(0% 0%, calc(100% - 8px) 0%, 100% 100%, 0% 100%);
  transition: all 0.2s;
}
.optin-form button:hover { background: #fff; box-shadow: 0 4px 20px rgba(0,255,106,0.3); }
.optin-privacy { font-size: 12px; color: var(--text-dim); margin-top: 14px; }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--brick);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(0,255,106,0.1) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.015) 28px, rgba(255,255,255,0.015) 30px);
  padding: 120px 40px; text-align: center; position: relative; overflow: hidden;
}
.final-cta::after {
  content: ''; position: absolute; bottom: -150px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,255,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 1.0; letter-spacing: -0.03em;
  font-weight: 600; color: #fff; margin-bottom: 20px;
}
.final-cta h2 span { color: var(--green); text-shadow: 0 0 40px rgba(0,255,106,0.5); }
.final-cta p {
  font-size: 19px; color: var(--text-dim); max-width: 580px;
  margin: 0 auto 48px; line-height: 1.7;
}
.final-cta p strong { color: var(--text); }

/* ─── FOOTER ─── */
footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; color: var(--green); letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0,255,106,0.4);
}
.footer-logo span { color: #fff; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-dim); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.2); text-align: center;
  margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.04);
  max-width: 1200px; margin-left: auto; margin-right: auto;
}

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #main-nav { padding: 0 20px; height: 60px; }
  .nav-desktop { display: none !important; }
  .hamburger { display: flex !important; }
  .hero-content, .pain, .beliefs, .service-inner, .optin, .final-cta { padding-left: 20px; padding-right: 20px; }
  .reality-inner, .half-battle-inner { grid-template-columns: 1fr; gap: 48px; }
  .reality { padding: 60px 20px; }
  .half-battle { padding: 60px 20px; }
  .hero-brick { width: 100%; background-position: 85% 20% !important; }
  .hero-brick::after { background: linear-gradient(90deg, #080808 0%, rgba(8,8,8,0.5) 50%, transparent 100%); }
  .optin-form { flex-direction: column; }
  .optin-form input { border-right: 1px solid rgba(255,255,255,0.12); clip-path: none; }
  .optin-form button { clip-path: none; }
  .optin-box { padding: 28px 20px; }
  .pricing-top, .pricing-includes, .pricing-bonus, .pricing-cta-wrap { padding-left: 24px; padding-right: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .belief-flip { grid-template-columns: 1fr; }
  .belief-arrow { display: none; }
  .belief-before { clip-path: none; }
  .belief-after { clip-path: none; margin-top: 2px; }
  .img-feature { grid-template-columns: 1fr; }
  .img-feature-photo { min-height: 260px; }
  .img-feature-copy { padding: 40px 20px; }
  .img-feature.reverse { direction: ltr; }
  .clickbomb-inner { grid-template-columns: 1fr; gap: 40px; }
  .clickbomb-stats { grid-template-columns: 1fr 1fr; }
  .divider-img { height: 220px; }
  .half-battle-right { min-height: 280px; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .bonuses-total { flex-direction: column; text-align: center; clip-path: none; }
  .bonuses-total-right { text-align: center; }
}
