﻿
@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  /* Light theme — aligned with betterthink.in tone: cool grays, white cards, slate text */
  --bg: #eef2f7;
  --surface: #ffffff;
  --surface2: #f4f7fb;
  --accent: #1F67AE;
  --accent2: #ff6b2c;
  --text: #1a2332;
  --muted: #5c6b7a;
  --border: rgba(31, 103, 174, 0.14);
  --glow: rgba(31, 103, 174, 0.06);
  --on-accent: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);

  /* Vertical rhythm — equal top/bottom per section block */
  --section-pad-y: clamp(3rem, 6.5vw, 4rem);
  --section-pad-y-tight: clamp(2.75rem, 5vw, 4rem);
  --footer-pad-y: clamp(1.5rem, 3.5vw, 1.875rem);
  --space-after-tag: 1rem;
  --space-after-headline: 1.25rem;
  --space-after-lead: 0;
  --space-before-content: clamp(1.75rem, 4vw, 2.5rem);
  --container-px: clamp(0.875rem, 3vw, 1rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SUBTLE TEXTURE (light) ─── */
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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

/* ─── TYPOGRAPHY ─── */
.display { font-family: 'Roboto', sans-serif; font-weight: 800; }
.serif { font-family: 'Roboto', sans-serif;  }

/* ─── LAYOUT ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--container-px); position: relative; z-index: 1; width: 100%; }
section { position: relative; z-index: 1; }

/* ─── ANNOUNCEMENT BAR ─── */
.topbar {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 0.75rem clamp(0.75rem, 2vw, 1.25rem);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.topbar span { display: flex; align-items: center; gap: 7px; }
.topbar span img { position: relative; top: -3px; }
.topbar .topbar-logo {
  width: min(240px, 52vw);
  height: auto;
  flex-shrink: 0;
}

/* ─── HERO ─── */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: var(--section-pad-y) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(31,103,174,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255,107,44,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,103,174,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,103,174,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,103,174,0.1);
  border: 1px solid rgba(31,103,174,0.3);
  color: var(--accent);
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.badge::before { content: '●'; font-size: 8px; animation: pulse 1.5s infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.hero-headline {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 37px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-headline .accent { color: var(--accent); position: relative; display: inline-block; }
.hero-headline .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineIn 0.5s 0.8s ease forwards;
}
@keyframes lineIn { to { transform: scaleX(1); } }

.hero-sub {
  font-size: clamp(16px, 2.1vw, 20px);
  color: var(--muted);
  margin-bottom: var(--space-before-content);
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-sub strong { color: var(--accent); font-weight: 700; }
.hero-sub-note {
  margin-top: 0.625rem;
  display: inline-block;
  font-size: 80%;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-before-content);
  animation: fadeUp 0.7s 0.3s ease both;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.trust-pill .icon { color: var(--accent); font-size: 14px; }

/* ─── CTA BUTTON ─── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent2);
  color: var(--on-accent);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,107,44,0.3);
  animation: fadeUp 0.7s 0.4s ease both;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 50px rgba(255,107,44,0.5); }
.cta-btn:hover::after { transform: translateX(200%) skewX(-15deg); }

.topbar a.cta-btn.display {
  padding: 10px 25px;
}

.cta-btn.secondary {
  background: transparent;
  color: var(--accent2);
  border: 2px solid var(--accent2);
  box-shadow: none;
}
.cta-btn.secondary:hover { background: rgba(255,107,44,0.08); box-shadow: none; }
.cta-btn.urgent {
  background: var(--accent2);
  color: var(--on-accent);
  box-shadow: 0 0 48px rgba(255,107,44,0.35);
}
.cta-btn.urgent:hover { box-shadow: 0 8px 55px rgba(255,107,44,0.55); }

/* ─── SECTION BASICS ─── */
.section {
  padding: var(--section-pad-y) 0;
}
.section--surface {
  background: var(--surface);
}
.section-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 42rem;
  margin-top: 0;
  margin-bottom: var(--space-before-content);
}
.section-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-after-tag);
  display: none;
  align-items: center;
  gap: 10px;
}
.section-tag::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--accent); opacity: 0.4; }

.section-headline {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-after-headline);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ─── PROBLEM SECTION ─── */
.problem { background: var(--surface); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
}
.problem-card {
  /* background: var(--surface);
  border: 1px solid rgba(255,107,44,0.15);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
  box-shadow: var(--shadow-sm); */
  background: var(--surface);
    border: 1px solid rgb(158 158 158 / 15%);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
    box-shadow: var(--shadow-sm);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  /* background: linear-gradient(90deg, var(--accent2), transparent); */
  background: linear-gradient(90deg, #1f67ae, transparent);
}
.problem-card:hover { 
  /* border-color: rgba(255,107,44,0.4);  */
  border-color: rgb(31 103 174 / 40%);
}
.problem-card .num {
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 800;
  /* color: rgba(255,107,44,0.12); */
  color: rgb(31 103 174 / 40%);
  line-height: 1;
  margin-bottom: 8px;
}
.problem-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.problem-card strong { color: var(--text); }
.stuck-line {
  margin-top: var(--space-before-content);
  padding: 0.9375rem 1.25rem;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

/* ─── OFFER SECTION ─── */
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: var(--space-before-content);
  position: relative;
  box-shadow: var(--shadow-md);
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.offer-header {
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.price-cross {
  font-size: 22px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.offer-items { padding: 32px 36px; }
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}
.offer-item:last-child { border-bottom: none; }
.offer-icon {
  width: 36px; height: 36px;
  background: rgba(31,103,174,0.1);
  border: 1px solid rgba(31,103,174,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.offer-item-text strong { display: block; font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.offer-item-text span { font-size: 12px; color: var(--muted); }

.offer-clarity {
  margin-top: var(--space-after-headline);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 35, 50, 0.1);
  box-shadow: var(--shadow-sm);
}
.offer-clarity__inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.offer-clarity__note {
  flex: 1;
  min-width: min(100%, 240px);
  text-align: center;
  padding: clamp(0.875rem, 3vw, 1rem) clamp(1rem, 4vw, 1.75rem);
  background: rgb(255 255 255 / 88%);
  border-right: 1px solid rgba(26, 35, 50, 0.08);
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.9;
}

/* Optional second column (uncomment markup in pte_landing_final.html) */
.offer-clarity__panel--secondary {
  flex: 1;
  min-width: min(100%, 240px);
  padding: 24px 28px;
  background: var(--surface2);
}
.offer-clarity__panel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.offer-clarity__panel-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.offer-clarity__emphasis {
  color: var(--text);
  font-weight: 700;
}
.offer-clarity__panel-footnote {
  font-size: 12px;
}

/* ─── MECHANISM ─── */
.mech { background: var(--surface); }
.mech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 0;
}
.mech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.mech-card:hover { transform: translateY(-3px); border-color: rgba(31,103,174,0.35); }
.mech-card .mech-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.mech-card h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text);
}
.mech-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── SOCIAL PROOF ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: var(--space-before-content) 0;
  text-align: center;
}
.stat-block {
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: 'Roboto', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--muted); }

/* Optional dev hint under carousel (uncomment markup in pte_landing_final.html) */
.results__dev-hint {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.results__dev-hint-title {
  color: var(--text);
  font-weight: 700;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonials.slick-initialized {
  display: block;
}
.testimonials .slick-list {
  margin: 0 -8px;
  padding: 8px 0;
}
.testimonials .slick-slide {
  /* padding: 0 8px; */
  height: auto;
}
.testimonials .slick-slide > div {
  height: 100%;
}
.testimonials .slick-dots li button:before {
  color: var(--accent);
  opacity: 0.35;
}
.testimonials .slick-dots li.slick-active button:before {
  color: var(--accent);
  opacity: 1;
}
.testimonials .slick-prev:before,
.testimonials .slick-next:before {
  color: var(--accent);
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(0.875rem, 2vw, 1.5rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin: 0 10px;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 80px;
  color: rgba(31,103,174,0.1);
  line-height: 1;
}
.testi-score {
  display: inline-block;
  background: rgba(31,103,174,0.12);
  border: 1px solid rgba(31,103,174,0.25);
  /* color: var(--accent);
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px; */
  border-radius: 100px;
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}
.testi-score img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
}
.testi-text { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.testi-name { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 18px; color: var(--accent); }
.testi-meta { font-size: 14px; color: var(--muted); }
.stars { color: var(--accent); font-size: 15px; margin-bottom: 8px; letter-spacing: 2px; }

/* ─── URGENCY ─── */
.urgency {
  background: linear-gradient(135deg, #fff8f4 0%, #f0f5fb 50%, #fff9f5 100%);
  border-top: 1px solid rgba(255,107,44,0.2);
  border-bottom: 1px solid rgba(255,107,44,0.2);
  text-align: center;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--space-after-headline) 0 var(--space-before-content);
}
.count-block {
  background: var(--surface2);
  border: 1px solid rgb(31 103 174 / 25%);
  border-radius: 8px;
  padding: 14px 18px;
  text-align: center;
  min-width: 72px;
}
.count-num {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.count-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.count-sep { font-family: 'Roboto', sans-serif; font-size: 28px; font-weight: 800; color: var(--muted); }
.spots-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: rgba(255,107,44,0.1);
  border: 1px solid rgba(255,107,44,0.3); */
      background: rgba(31, 103, 174, 0.07);
    border: 1px solid rgba(31, 103, 174, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-before-content);
}
.dot-red { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1s infinite; }

.text-accent { color: var(--accent); }

.urgency .container {
  text-align: center;
}
.urgency .section-tag {
  justify-content: center;
}
.urgency-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 32.5rem;
  margin: 0 auto var(--space-before-content);
}
.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(31, 103, 174, 0.07);
  border: 1px solid rgba(31, 103, 174, 0.25);
  border-radius: 12px;
  padding: clamp(0.875rem, 3vw, 1.125rem) clamp(1rem, 4vw, 1.75rem);
  margin-bottom: var(--space-after-headline);
  text-align: left;
  max-width: 32.5rem;
  width: 100%;
  box-sizing: border-box;
  margin-right: 10px;
}
.urgency-banner__icon {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1;
  flex-shrink: 0;
}
.urgency-banner__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.urgency-banner__text {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}
.countdown-label {
  color: var(--muted);
  font-size: 0.8125rem;
  margin-bottom: var(--space-after-headline);
}

/* ─── BONUS ─── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.bonus-card:hover { transform: translateY(-3px); }
.bonus-card::after {
  content: 'FREE';
  position: absolute;
  top: 16px; right: -20px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 28px;
  transform: rotate(45deg);
}
.bonus-emoji { font-size: 32px; margin-bottom: 16px; display: block; }
.bonus-card h4 { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.bonus-card p { font-size: 13px; color: var(--muted); }

/* ─── FAQ ─── */
.faq { background: var(--surface); }
.faq-list { margin-top: var(--space-before-content); display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(31,103,174,0.35); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-arrow { font-size: 18px; transition: transform 0.3s; flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ─── FOR-WHO ─── */
.forwho-list { display: flex; flex-direction: column; gap: 12px; margin-top: var(--space-before-content); }
.forwho-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.forwho-item:hover { border-color: rgba(31,103,174,0.35); }
.forwho-item .check {
  width: 32px; height: 32px;
  background: rgba(31,103,174,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

/* ─── FINAL CTA ─── */
.final-cta {
  text-align: center;
  padding: var(--section-pad-y) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.final-cta .section-tag {
  justify-content: center;
}
.final-cta .section-headline {
  /* text-align: center; */
  font-size: 30px;
}
.final-cta .price-highlight {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(60px, 10vw, 80px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin: var(--space-after-headline) 0;
  text-shadow: 0 2px 24px rgba(31,103,174,0.2);
}
.final-cta-lead {
  color: var(--muted);
  margin-bottom: var(--space-before-content);
  font-size: 0.9375rem;
}
.final-cta .cta-btn--large {
  font-size: 1.0625rem;
  padding:1.1rem 2rem;
}
.final-cta-footnote {
  margin-top: var(--space-after-headline);
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ─── FOOTER ─── */
footer {
  background: var(--accent);
  /* padding: var(--footer-pad-y) 0; */
  padding: 20px 0 16px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
/* footer a { color: var(--muted); text-decoration: underline; } */

/* ─── LEAD POPUP ─── */
body.popup-open {
  overflow: hidden;
}
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  visibility: hidden;
  pointer-events: none;
}
.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 500px);
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 34px 36px 36px;
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.24);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.lead-popup__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d3d7de;
  background: #fff;
  color: #111827;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.lead-popup__title {
  text-align: center;
  color: #173469;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}
.lead-popup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-popup__form input {
  width: 100%;
  padding: 0 15px;
  color: #212529;
  height: 50px;
  border-radius: 10px;
  background: #f3f3f3;
  border: 1px solid #dcdcdc;
  outline-color: var(--accent);
  font-size: 15px;
}
.lead-popup__form input:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}
.lead-popup__form input::placeholder {
  color: #8b95a4;
}
.lead-popup__form button {
  height: 50px;
  line-height: 50px;
  border: none;
  border-radius: 10px;
  background: var(--accent2);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 2px;
}
.lead-popup__form button:hover {
  filter: brightness(0.97);
}
.lead-popup.is-open {
  visibility: visible;
  pointer-events: auto;
}
.lead-popup.is-open .lead-popup__backdrop {
  opacity: 1;
}
.lead-popup.is-open .lead-popup__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.lead-popup.is-closing .lead-popup__backdrop {
  opacity: 0;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.lead-popup.is-closing .lead-popup__dialog {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.testimonials.slick-initialized .slick-prev, 
.testimonials.slick-initialized .slick-next{
  border-radius: 50%;
  font-weight: 700;
}
.testimonials.slick-initialized .slick-prev:before, 
.testimonials.slick-initialized .slick-next:before{
  font-size: 25px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .offer-header {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .topbar .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    row-gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad-y: clamp(3.25rem, 6.5vw, 5.625rem);
  }
  .problem-grid, .mech-grid, .testimonials, .bonus-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .offer-header { flex-direction: column; align-items: stretch; }
  .offer-header .cta-btn {
    width: 100%;
    justify-content: center;
    padding:15px 30px;
  }
  .forwho-item {
    align-items: flex-start;
  }
  .trust-pill {
    font-size: 12px;
    padding: 8px 12px;
  }
  .countdown { gap: 6px; }
  .count-block { min-width: 58px; padding: 10px 12px; }
  .count-num { font-size: 24px; }
  .hero { min-height: auto; padding: var(--section-pad-y) 0; }
  .section { padding: var(--section-pad-y) 0; }
  .final-cta { padding: var(--section-pad-y) 0; }
  .final-cta .cta-btn--large {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 1.5rem;
  }
  .urgency-banner {
    flex-direction: row;
    align-items: flex-start;
  }
  .offer-clarity__note {
    border-right: none;
  }
  .offer-clarity__panel--secondary {
    border-top: 1px solid rgba(26, 35, 50, 0.08);
  }
  .lead-popup__dialog {
    width: min(90vw, 640px);
    padding: 26px 20px 24px;
    margin-left: 4%;
  }
  .lead-popup__close {
    /* top: -12px;
    right: -6px;
    width: 36px;
    height: 36px;
    font-size: 28px; */
    top: -15px;
    right: -10px;
    width: 36px;
    height: 36px;
    font-size: 28px;
    text-align: center;
    line-height: 36px;
  }
  .lead-popup__title {
    font-size: clamp(18px, 5vw, 26px);
    /* margin-bottom: 18px; */
  }
  .lead-popup__form input {
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }
  .lead-popup__form button {
    height: 46px;
    font-size: 18px;
    border-radius: 10px;
  }
.hero-headline {
    font-size: 30px;
    line-height: 1.15;
}
.hero-sub-note{
  width: 100%;
}
.hero-headline br{
  display: none;
}
.section-headline br,
.hero-sub br{
  display: none;
}
.section-headline,
.final-cta .section-headline{
  font-size: 22px;
}
  .hero-sub { font-size: 16px; line-height: 1.6; }
  .section-lead { font-size: 14px; line-height: 1.6; }
  .problem-card p,
  .mech-card p,
  .testi-text,
  .faq-a,
  .forwho-item,
  .final-cta-lead { font-size: 13px; line-height: 1.6; }
  .offer-item-text strong,
  .faq-q { font-size: 14px; }
  .offer-item-text span,
  .offer-clarity__panel-body,
  .urgency-banner__text { font-size: 12px; }
  .stuck-line,
  .offer-clarity__note,
  .urgency-lead { font-size: 14px; line-height: 1.6; }

.testimonials.slick-initialized {
    width: 90%;
    margin: 0 auto;
}
.problem-card,
.mech-card{
  padding: 15px;
}
.mech-card .mech-icon {
    font-size: 25px;
    margin-bottom: 2px;
}
.stuck-line {
    padding: 10px 15px;
    text-align: left;
}
.offer-header{
  padding: 20px;
}
.price-tag {
    font-size: 36px;
}
.price-cross {
    font-size: 18px;
}


}


