/* =============================================
   LocalLeadSystemAI — styles.css
   Matches CovertAIStrategies.com theme exactly
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg:           #F7F6F3;
  --surface:      #FFFFFF;
  --card:         #FFFFFF;
  --dark:         #1A1A1A;
  --mid:          #4B5563;
  --muted:        #9CA3AF;
  --border:       #E5E7EB;

  --red:          #DC2626;
  --red-bright:   #EF4444;
  --red-bg:       #FEF2F2;
  --red-border:   #FECACA;

  --green:        #16A34A;
  --green-bright: #22C55E;
  --green-bg:     #F0FDF4;
  --green-border: #BBF7D0;

  --yellow:       #D97706;
  --yellow-bg:    #FFFBEB;
  --yellow-border:#FDE68A;

  --white:        #FFFFFF;
  --maxw:         1100px;
  --maxw-sm:      760px;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:    0 4px 24px rgba(0,0,0,.10);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: .01em;
}
a { text-decoration: none; color: var(--red); }
a:hover { color: var(--red-bright); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CONTAINERS ── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.container-sm {
  max-width: var(--maxw-sm);
  margin: 0 auto;
  padding: 5rem 2rem;
}
@media (max-width: 768px) {
  .container, .container-sm { padding: 3rem 1.25rem; }
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 900; color: var(--dark); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--dark); }
h3 { font-size: clamp(1.3rem, 3vw, 1.5rem); font-weight: 700; color: var(--dark); }
h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
p  { color: var(--mid); }
strong { color: var(--dark); font-weight: 700; }

.headline-red   { color: var(--red); }
.headline-green { color: var(--green); }
.headline-blue  { color: var(--red); } /* remapped — no blue in this theme */
.headline-gold  { color: var(--red); } /* remapped */
.text-center    { text-align: center; }
.text-dark      { color: var(--dark); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: block;
  color: var(--red);
}
.section-label.green { color: var(--green); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary,
.btn-gold,
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover,
.btn-gold:hover,
.btn-red:hover { background: var(--red-bright); color: #fff; }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-bright); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-nav {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  font-size: .9rem;
  border-radius: var(--radius-sm);
}
.btn-nav:hover { background: var(--red-bright); }

.btn-sm    { padding: 10px 20px; font-size: .88rem; }
.btn-lg    { padding: 18px 36px; font-size: 1.1rem; border-radius: 10px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) { .header-inner { padding: 0 1.25rem; } }

.logo { display: flex; align-items: center; }
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.logo-ai { color: var(--red); }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { color: var(--mid); font-weight: 600; font-size: .95rem; transition: color .15s; }
.site-nav a:hover, .site-nav a.active { color: var(--dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: flex; }
}

/* ── HERO ── */
.hero {
  background: var(--white);
  padding: 6rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, #FEF2F2 100%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  color: var(--red);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 { max-width: 820px; margin: 0 auto 1.25rem; }
.hero .lead {
  font-size: 1rem;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-sub  { margin-top: 1rem; font-size: .83rem; color: var(--muted); }

/* ── SECTION ALT / WHITE ── */
.section-alt   { background: var(--bg); }
.section-white { background: var(--white); }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.card-highlight {
  background: var(--card);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(220,38,38,.12);
  position: relative;
}
.badge-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── ABSORBING QUESTIONS ── */
.absorbing {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.absorbing p { font-size: 1.05rem; color: var(--dark); margin-bottom: 1rem; line-height: 1.7; }
.absorbing p:last-child { margin-bottom: 0; }

.question-card {
  background: var(--red-bg);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  font-size: 1rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: .85rem;
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1060px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ── CHECKLIST ── */
.check-list { display: flex; flex-direction: column; gap: .65rem; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; color: var(--dark); font-size: .95rem; }
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1.75rem; }
.step  { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-body h4 { margin-bottom: .3rem; }
.step-body p  { font-size: .92rem; }

/* ── STATS ── */
.stat-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label { color: var(--mid); font-size: .82rem; line-height: 1.4; }

/* ── QUOTE ── */
.quote-block {
  background: var(--bg);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.75rem;
  font-style: italic;
  color: var(--dark);
}
.quote-attr { margin-top: .75rem; font-style: normal; color: var(--muted); font-size: .88rem; font-weight: 600; }

/* ── PRICING ── */
.price-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
}
.price-mo     { font-size: 1rem; color: var(--muted); font-weight: 600; font-family: 'DM Sans', sans-serif; }
.price-strike { text-decoration: line-through; color: var(--muted); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 1.75rem 0; }

/* ── COMPETITOR BOX ── */
.competitor-box {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  color: var(--dark);
}
.competitor-box strong { color: var(--red); }
.competitor-box p { color: var(--dark); }

/* ── WARNING BADGE ── */
.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-bg);
  border: 1px solid var(--yellow-border);
  color: var(--yellow);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
}

/* ── BIG DARK TRUTH BLOCK ── */
.big-truth {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 1.5rem;
  text-align: center;
}
.big-truth p { font-size: 1.1rem; color: #F3F4F6; line-height: 1.7; }
.big-truth strong { color: var(--red-bright); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p  { margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── FORM ── */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.form-wrap label {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--mid);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  display: block;
  width: 100%;
  margin-top: .4rem;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22,163,74,.10);
}
.form-wrap input::placeholder { color: var(--muted); }
.form-wrap textarea { min-height: 110px; resize: vertical; }
.form-wrap .btn { width: 100%; margin-top: .5rem; }
.form-msg { margin-top: 1rem; font-size: .9rem; font-weight: 600; text-align: center; min-height: 1.2em; }
.form-consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--mid);
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--green);
}

/* ── HEATMAP ── */
.heatmap-mock {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--red-border);
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(220,38,38,.10);
}
.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-width: 340px;
  margin: 0 auto 1rem;
}
.heatmap-dot { aspect-ratio: 1; border-radius: 4px; }
.dot-green  { background: #16A34A; }
.dot-yellow { background: #F59E0B; }
.dot-red    { background: #DC2626; }
.dot-dark   { background: #E5E7EB; }

/* ── BEFORE / AFTER ── */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.ba-col { border-radius: var(--radius-sm); padding: 1.25rem; }
.ba-before { background: var(--red-bg);   border: 1px solid var(--red-border); }
.ba-after  { background: var(--green-bg); border: 1px solid var(--green-border); }
.ba-label  { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem; }
.ba-before .ba-label { color: var(--red); }
.ba-after  .ba-label { color: var(--green); }
.ba-col p { color: var(--dark); font-size: .92rem; }
@media (max-width: 600px) { .before-after { grid-template-columns: 1fr; } }

/* ── EXAMPLE CARDS ── */
.example-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.example-card-img { background: var(--bg); height: 200px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .9rem; border-bottom: 1px solid var(--border); }
.example-card-body { padding: 1.5rem; }
.example-card-body h4 { margin-bottom: .5rem; }

/* ── STORY BLOCK ── */
.story-block { max-width: 720px; margin: 0 auto; }
.story-block p { margin-bottom: 1.35rem; font-size: 1rem; }
.story-block h3 { margin: 2rem 0 .75rem; font-size: 1.5rem; }

/* ── FOOTER ── */
.site-footer {
  background: #1A1A1A;
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand .logo-main { color: #fff; font-size: 1.15rem; }
.footer-brand .logo-ai   { color: var(--red-bright); }
.footer-tagline { color: #9CA3AF; font-size: .88rem; margin-top: .5rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: #9CA3AF; font-size: .88rem; transition: color .15s; }
.footer-links a:hover { color: var(--red-bright); }
.footer-cta p { color: #9CA3AF; margin-bottom: 1rem; font-size: .9rem; }
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  color: #9CA3AF;
  font-size: .8rem;
  text-align: center;
  line-height: 1.8;
}
.footer-fine { margin-top: .35rem; opacity: .6; }
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { align-items: center; }
}

/* ── UTILITIES ── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── ORDER BOX ── */
.order-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--red);
  box-shadow: 0 8px 40px rgba(220,38,38,.14);
  overflow: hidden;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}
.order-box-header {
  background: var(--dark);
  padding: 1.5rem 2rem;
}
.order-box-body {
  padding: 2rem;
}
.order-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.order-price-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.order-price-label {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}
.order-checklist li { font-size: 1rem; }

/* ── HEADER TRUST BADGES ── */
.header-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  padding-left: 2rem;
}
.trust-badge {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 680px) {
  .header-trust { display: none; }
}

/* ── SCARCITY BAR ── */
.scarcity-bar {
  background: var(--red-bg);
  border-top: 1px solid var(--red-border);
  border-bottom: 1px solid var(--red-border);
  padding: .85rem 2rem;
}
.scarcity-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.scarcity-text { flex: 1; font-size: .9rem; color: var(--dark); line-height: 1.5; }
.scarcity-text strong { color: var(--red); }

/* ── HERO INNER (two-col hero) ── */
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.hero-sub { font-size: 1rem; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.7; }
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 2rem 1.25rem 3rem; }
}

/* ── MAP CONTAINER ── */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--red-border);
  box-shadow: 0 8px 40px rgba(220,38,38,.15);
}
.map-container img { width: 100%; display: block; }
