/*
================================================================================
  ML Software, LLC
  Copyright 2026. All rights reserved.

  Renewal IQ - renewal-iq.com

  assets/css/site.css
  Version: 2.1.0
  Created: 2026-03-25
  Updated: 2026-04-18

  Description: Full stylesheet for renewal-iq.com marketing site.
  Dark theme, amber accent. Fonts: Barlow Condensed (display) + DM Sans (body).
  Complete mobile and tablet responsive coverage for all sections.

  Version History:
    2.1.0 - 2026-04-18 - Added .mobileStrip / .mobileStripIcon /
                         .mobileStripBody for full-width mobile feature
                         row below features grid. Amber-tinted with
                         left-border accent, phone icon + headline + copy.
                         Stacks vertically below 640px.
    2.0.0 - 2026-04-03 - Full responsive pass for all new sections added in
                         index.cfm v2.0.0: pain strip, before/after grid,
                         story block, ease strip, consequence grid, hard close
                         CTA, pricing row. Improved touch targets throughout.
                         Topbar hamburger-style collapse on mobile.
                         Fixed hero panel overflow on small screens.
                         Container padding tightened on mobile.
    1.0.0 - 2026-03-25 - Initial build.
================================================================================
*/


/* ----------------------------
   Tokens
---------------------------- */
:root {
  --bg:          #0d0f0a;
  --panel:       #131508;
  --panel2:      #1a1c0f;
  --border:      rgba(255,255,255,0.07);
  --borderSoft:  rgba(255,255,255,0.11);
  --amber:       #f5a623;
  --amber2:      #c4811a;
  --amberGlow:   rgba(245,166,35,0.15);
  --amberBorder: rgba(245,166,35,0.28);
  --text:        #f0ece0;
  --muted:       rgba(240,236,224,0.68);
  --muted2:      rgba(240,236,224,0.44);
  --green:       #4cff91;
  --red:         #ff6450;
  --shadow:      0 20px 60px rgba(0,0,0,0.55);
  --radius:      12px;
  --radiusSm:    10px;
  --max:         1160px;
  --topbar-h:    62px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-padding-top: calc(var(--topbar-h) + 12px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 400;
}

[id] { scroll-margin-top: calc(var(--topbar-h) + 12px); }

a { color: var(--text); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.muted  { color: var(--muted); }
.muted2 { color: var(--muted2); }

.lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.72;
}

h1, h2, h3 { margin: 0; color: var(--text); }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.eyebrow {
  display: inline-block;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-size: 11.5px;
  margin-bottom: 10px;
}

.eyebrowPill {
  background: var(--amberGlow);
  border: 1px solid var(--amberBorder);
  border-radius: 20px;
  padding: 4px 14px;
}


/* ----------------------------
   Topbar
---------------------------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--topbar-h);
  background: rgba(13,15,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.topbar .container { width: 100%; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brandMark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 9px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brandMark svg { display: block; }

.brandText { display: flex; flex-direction: column; line-height: 1; }

.brandName {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: var(--text);
}

.brandTag {
  font-size: 10.5px;
  color: var(--muted2);
  font-weight: 500;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 13.5px;
  padding: 7px 10px;
  border-radius: 8px;
  transition: color .12s, background .12s;
  /* Minimum touch target */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:not(.btn):hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}


/* ----------------------------
   Buttons
---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: var(--radiusSm);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform .12s, background .12s, border-color .12s, box-shadow .12s;
  line-height: 1;
  min-height: 44px; /* Minimum touch target */
}

.btn:hover { transform: translateY(-1px); }
.btn.small { padding: 8px 14px; font-size: 12.5px; }
.btn.large { padding: 14px 28px; font-size: 15px; }

.btnPrimary {
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber2) 100%);
  border-color: rgba(245,166,35,0.40);
  color: #1a0f00;
}

.btnPrimary:hover {
  box-shadow: 0 8px 28px rgba(245,166,35,0.30);
  border-color: rgba(245,166,35,0.60);
}

.btnGhost {
  background: rgba(245,166,35,0.07);
  border-color: var(--amberBorder);
  color: var(--amber);
}

.btnGhost:hover { background: rgba(245,166,35,0.13); }

.btnOutline {
  background: transparent;
  border-color: rgba(255,255,255,0.14);
  color: var(--muted);
}

.btnOutline:hover {
  border-color: rgba(255,255,255,0.28);
  color: var(--text);
}


/* ----------------------------
   Reveal animation
---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .40s ease, transform .40s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------
   Section base
---------------------------- */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section.alt { background: var(--panel); }

.sectionHead {
  text-align: center;
  margin-bottom: 52px;
}

.sectionHead h2 { margin-top: 10px; }

.sectionSub {
  color: var(--muted);
  font-size: 16px;
  margin-top: 12px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}


/* ----------------------------
   Hero
---------------------------- */
.hero {
  padding: 96px 0 80px;
  margin-top: var(--topbar-h);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.25), transparent);
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.heroLeft { position: relative; z-index: 1; }

.heroH1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 10px 0 18px;
}

.heroH1 span { color: var(--amber); }

.heroLead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 52ch;
  margin-bottom: 28px;
}

.heroCtas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.heroNote {
  font-size: 12.5px;
  color: var(--muted2);
  font-weight: 500;
}

.heroPanel {
  background: var(--panel);
  border: 1px solid var(--borderSoft);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.heroPanelTop {
  padding: 14px 18px;
  background: rgba(245,166,35,0.07);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.heroPanelDot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(245,166,35,0.60);
  flex-shrink: 0;
}

.heroPanelTitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.heroPanelBody { padding: 18px; }

.licenseRow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.licenseRow:last-child { border-bottom: none; }

.licenseIcon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.licenseInfo { flex: 1; min-width: 0; }

.licenseName {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.licenseEntity {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.licenseDays {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.daysRed   { background: rgba(255,100,80,0.14); color: #ff6450; border: 1px solid rgba(255,100,80,0.28); }
.daysAmber { background: rgba(245,166,35,0.14); color: var(--amber); border: 1px solid var(--amberBorder); }
.daysGreen { background: rgba(76,255,145,0.10); color: var(--green); border: 1px solid rgba(76,255,145,0.24); }

.heroPanelFoot {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.heroPanelFootStat {
  font-size: 12px;
  color: var(--muted2);
}

.heroPanelFootStat strong {
  color: var(--amber);
  font-weight: 700;
}


/* ----------------------------
   Pain strip
---------------------------- */
.painStrip {
  background: rgba(255,100,80,0.06);
  border-top: 1px solid rgba(255,100,80,0.18);
  border-bottom: 1px solid rgba(255,100,80,0.18);
  padding: 18px 0;
}

.painItems {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.painItem {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,180,170,0.9);
  padding: 10px 28px;
  border-right: 1px solid rgba(255,100,80,0.15);
  line-height: 1.4;
}

.painItem:last-child { border-right: none; }

.painItem svg { flex-shrink: 0; color: #ff6450; }

.painCost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #ff6450;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}


/* ----------------------------
   Story / before-after
---------------------------- */
.storyBlock {
  background: var(--panel);
  border: 1px solid var(--borderSoft);
  border-left: 3px solid #ff6450;
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 28px;
}

.storyText {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 10px;
}

.storyAttrib {
  font-size: 12px;
  color: var(--muted2);
}

.baGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.baCard {
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid;
}

.baCard.before {
  background: rgba(255,100,80,0.05);
  border-color: rgba(255,100,80,0.2);
}

.baCard.after {
  background: rgba(76,255,145,0.05);
  border-color: rgba(76,255,145,0.2);
}

.baLabel {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.baCard.before .baLabel { color: #ff6450; }
.baCard.after  .baLabel { color: var(--green); }

.baItem {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.4;
}

.baItem:last-child { border-bottom: none; }
.baItem .bi { flex-shrink: 0; margin-top: 2px; }


/* ----------------------------
   Features + Bonus
---------------------------- */
.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.featureCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}

.featureCard:hover {
  border-color: var(--amberBorder);
  box-shadow: 0 6px 28px rgba(245,166,35,0.08);
  transform: translateY(-2px);
}

.featureIcon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--amberGlow);
  border: 1px solid var(--amberBorder);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--amber);
}

.featureCard h3 { margin-bottom: 8px; }

.featureCard p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.bonusCard {
  background: rgba(245,166,35,0.05);
  border: 1px solid var(--amberBorder);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.bonusBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--amber);
  background: var(--amberGlow);
  border: 1px solid var(--amberBorder);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

/* ----------------------------
   Mobile strip (full-width feature row)
---------------------------- */
.mobileStrip {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 22px 26px;
  background: rgba(245,166,35,0.05);
  border: 1px solid var(--amberBorder);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
}

.mobileStripIcon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--amberGlow);
  border: 1px solid var(--amberBorder);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.mobileStripBody h3 {
  margin: 0 0 6px 0;
  font-size: 17px;
}

.mobileStripBody p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .mobileStrip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }
}

.easeStrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.easeItem {
  text-align: center;
  padding: 20px 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.easeNum {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.easeDesc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}


/* ----------------------------
   Who It's For
---------------------------- */
.whoGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.whoCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .15s;
}

.whoCard:hover { border-color: var(--amberBorder); }

.whoNum {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.whoContent h3 { margin-bottom: 6px; font-size: 16px; }

.whoContent p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}


/* ----------------------------
   How It Works
---------------------------- */
.stepsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.stepsGrid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amberBorder), var(--amberBorder), transparent);
  z-index: 0;
}

.stepCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: border-color .15s;
}

.stepCard:hover { border-color: var(--amberBorder); }

.stepNum {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amberGlow);
  border: 1px solid var(--amberBorder);
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.stepCard h3 { font-size: 15px; margin-bottom: 8px; }

.stepCard p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.58;
  margin: 0;
}


/* ----------------------------
   Consequence
---------------------------- */
.consequenceGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.consequenceCard {
  background: rgba(255,100,80,0.05);
  border: 1px solid rgba(255,100,80,0.18);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.consequenceTitle {
  font-size: 13px;
  font-weight: 700;
  color: #ff6450;
  margin-bottom: 5px;
}

.consequenceDesc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}


/* ----------------------------
   Pricing
---------------------------- */
.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.pricingCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}

.pricingCard:hover { border-color: var(--amberBorder); }

.pricingCard.featured {
  border-color: var(--amberBorder);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.15), 0 12px 40px rgba(245,166,35,0.10);
  background: linear-gradient(160deg, rgba(245,166,35,0.06), var(--panel));
}

.pricingTier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted2);
  margin-bottom: 10px;
}

.pricingCard.featured .pricingTier { color: var(--amber); }

.pricingPrice {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricingPrice sup {
  font-size: 22px;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.pricingNote {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 22px;
}

.pricingDivider {
  height: 1px;
  background: var(--border);
  margin: 0 0 18px;
}

.pricingFeatures {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricingFeatures li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}

.pricingFeatures li::before {
  content: 'v';
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 1px;
  /* Using v as checkmark placeholder - styled via font */
  font-size: 0; /* Hide the v */
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7L5.5 10.5L12 4' stroke='%23f5a623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
  background-size: 14px;
  display: block;
}


/* ----------------------------
   Hard close CTA
---------------------------- */
.ctaSection {
  padding: 88px 0;
  background: var(--panel2);
  border-top: 1px solid var(--amberBorder);
  position: relative;
  overflow: hidden;
}

.ctaSection::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.ctaInner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ctaInner h2 { margin-bottom: 14px; }
.ctaInner .lead { margin-bottom: 36px; }

.valueList {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.valueList li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

.vcheck {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(76,255,145,0.12);
  border: 1px solid rgba(76,255,145,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.vcheck svg { width: 10px; height: 10px; }

.ctaPricingRow {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.ctaPlan {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  padding: 18px 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color .15s;
}

.ctaPlan:hover { border-color: var(--amberBorder); }

.ctaPlan.hot {
  border-color: var(--amberBorder);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.12);
}

.ctaPlanName {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted2);
  margin-bottom: 6px;
}

.ctaPlan.hot .ctaPlanName { color: var(--amber); }

.ctaPlanPrice {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.ctaPlanNote {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 3px;
}

.ctaPlanVs {
  font-size: 11.5px;
  color: var(--green);
  margin-top: 8px;
}

.btnHardClose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amber);
  color: #1a0f00;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
  letter-spacing: -0.2px;
  min-height: 56px; /* Large touch target */
}

.btnHardClose:hover {
  background: #f0b030;
  transform: translateY(-1px);
}

.btnHardClose:active { transform: translateY(0); }

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--borderSoft);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 28px;
  text-align: left;
}

.guaranteeIcon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.guaranteeText {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.guaranteeText strong { color: var(--text); }


/* ----------------------------
   Contact / signup section
---------------------------- */
.signupSection {
  padding: 88px 0;
  background: var(--panel2);
  border-top: 1px solid var(--amberBorder);
  position: relative;
  overflow: hidden;
}

.signupSection::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.signupInner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.signupInner h2 { margin-bottom: 12px; }

.signupInner p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 32px;
}

.signupForm {
  background: var(--panel);
  border: 1px solid var(--borderSoft);
  border-radius: 16px;
  padding: 28px;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.formGroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.formGroup:last-of-type { margin-bottom: 0; }

.formLabel {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted2);
}

.formInput,
.formSelect,
.formTextarea {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  color: var(--text);
  font-size: 14px;
  padding: 10px 14px;
  width: 100%;
  min-height: 44px; /* Touch target */
  transition: border-color .15s, box-shadow .15s;
}

.formInput:focus,
.formSelect:focus,
.formTextarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(245,166,35,0.18);
}

.formSelect {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23f5a623' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
  cursor: pointer;
  height: 44px;
}

.formSelect option { background: #0d0f0a; color: var(--text); }

.formTextarea { resize: vertical; min-height: 80px; }

.formActions { margin-top: 20px; }

.formActions .btn { width: 100%; justify-content: center; min-height: 48px; }

.formNote {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 12px;
  text-align: center;
}

.formSuccess {
  background: rgba(76,255,145,0.07);
  border: 1px solid rgba(76,255,145,0.22);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.formSuccessTitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.formSuccessBody { color: var(--muted); font-size: 14px; }

.formErrorBanner {
  background: rgba(255,100,80,0.10);
  border: 1px solid rgba(255,100,80,0.28);
  border-radius: 9px;
  padding: 11px 14px;
  color: #ffb3aa;
  font-size: 13.5px;
  margin-bottom: 16px;
  text-align: left;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}


/* ----------------------------
   Footer
---------------------------- */
.footer {
  background: #080a06;
  border-top: 1px solid var(--border);
  padding: 36px 0 28px;
}

.footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footerBrand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.footerTag {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 3px;
}

.footerLinks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footerLinks a {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 500;
  transition: color .12s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footerLinks a:hover { color: var(--amber); }

.footerLegal {
  font-size: 12px;
  color: rgba(240,236,224,0.35);
}


/* ============================================================
   RESPONSIVE
   Breakpoints:
     1024px - tablet landscape / small desktop
      768px - tablet portrait / large phone
      480px - phone
      360px - small phone
============================================================ */

/* ----------------------------
   1024px - tablet landscape
---------------------------- */
@media (max-width: 1024px) {
  .featureGrid   { grid-template-columns: repeat(2, 1fr); }
  .stepsGrid     { grid-template-columns: repeat(2, 1fr); }
  .stepsGrid::before { display: none; }
  .pricingGrid   { grid-template-columns: 1fr; max-width: 420px; }
  .easeStrip     { grid-template-columns: repeat(3, 1fr); }
}


/* ----------------------------
   768px - tablet portrait
---------------------------- */
@media (max-width: 768px) {

  /* Topbar - hide text nav links, keep CTA button */
  .topbar .container { padding-top: 0; padding-bottom: 0; }
  .nav a:not(.btn) { display: none; }
  .brandTag { display: none; } /* Clean up brand at small size */

  /* Container tighter on mobile */
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .heroGrid { grid-template-columns: 1fr; gap: 28px; }
  .heroH1 { font-size: clamp(34px, 9vw, 48px); }
  .heroLead { font-size: 15px; }
  .heroCtas { gap: 10px; }

  /* Hero panel - tighten up on tablet */
  .heroPanelBody { padding: 12px; }
  .licenseRow { gap: 8px; padding: 8px 0; }
  .licenseIcon { width: 28px; height: 28px; font-size: 13px; }

  /* Sections */
  .section { padding: 48px 0; }
  .sectionHead { margin-bottom: 32px; }
  .sectionHead h2 { font-size: 28px; }
  .lead { font-size: 15px; }

  /* Pain strip - stack vertically */
  .painItems { flex-direction: column; align-items: stretch; }
  .painItem {
    border-right: none;
    border-bottom: 1px solid rgba(255,100,80,0.15);
    padding: 12px 0;
    justify-content: flex-start;
  }
  .painItem:last-child { border-bottom: none; }

  /* Before/after - stack */
  .baGrid { grid-template-columns: 1fr; }

  /* Features */
  .featureGrid { grid-template-columns: 1fr; }

  /* Ease strip - stack */
  .easeStrip { grid-template-columns: 1fr; gap: 10px; }
  .easeItem { padding: 14px; display: flex; align-items: center; gap: 16px; text-align: left; }
  .easeNum { font-size: 26px; flex-shrink: 0; margin-bottom: 0; }

  /* Who */
  .whoGrid { grid-template-columns: 1fr; }

  /* Steps */
  .stepsGrid { grid-template-columns: 1fr; }

  /* Consequence */
  .consequenceGrid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricingGrid { grid-template-columns: 1fr; max-width: 100%; }

  /* Hard close CTA */
  .ctaSection { padding: 56px 0; }
  .ctaInner h2 { font-size: 26px; }
  .ctaInner .lead { font-size: 15px; margin-bottom: 24px; }
  .valueList { max-width: 100%; }
  .valueList li { font-size: 14px; }
  .ctaPricingRow { flex-direction: column; align-items: stretch; }
  .ctaPlan { max-width: 100%; }
  .btnHardClose { width: 100%; padding: 16px 24px; font-size: 15px; }
  .guarantee { flex-direction: row; }

  /* Contact form */
  .signupSection { padding: 56px 0; }
  .signupForm { padding: 20px 16px; }
  .formRow { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .formRow .formGroup { margin-bottom: 14px; }

  /* Footer */
  .footerInner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footerLinks { gap: 12px; }
}


/* ----------------------------
   480px - phone
---------------------------- */
@media (max-width: 480px) {

  h2 { font-size: 26px; }
  h3 { font-size: 15px; }

  .heroH1 { font-size: 30px; }
  .heroCtas { flex-direction: column; }
  .heroCtas .btn { width: 100%; justify-content: center; }

  /* Hide hero panel on small phones - it takes too much vertical space */
  .heroRight { display: none; }

  .storyBlock { padding: 16px; }
  .storyText { font-size: 14px; }

  .baCard { padding: 16px 14px; }

  .easeItem { padding: 12px; }

  .whoCard { flex-direction: column; gap: 4px; }
  .whoNum { width: auto; font-size: 28px; }

  .signupForm { padding: 16px 12px; }

  .ctaInner h2 { font-size: 23px; }
  .guarantee { flex-direction: column; gap: 10px; }
  .guaranteeIcon { font-size: 22px; }

  .footerLinks { flex-direction: column; gap: 4px; }
  .footerLinks a { min-height: 36px; }
}


/* ----------------------------
   360px - small phone
---------------------------- */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .heroH1 { font-size: 26px; }
  h2 { font-size: 23px; }
  .btnHardClose { font-size: 14px; padding: 14px 16px; }
  .nav .btn.small { padding: 8px 10px; font-size: 12px; }
}