/* ═══════════════════════════════════════
   LP AUDIT — Styles
   ═══════════════════════════════════════ */

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

:root {
  --navy: #09090b;
  /* Zinc 950 */
  --navy-deep: #000000;
  /* True Black */
  --navy-surface: #18181b;
  /* Zinc 900 */
  --orange: #ff6b35;
  /* Keep vibrant orange */
  --orange-hover: #ff8555;
  --orange-glow: rgba(255, 107, 53, 0.15);
  --green: #34d399;
  /* Emerald 400 */
  --red: #ef4444;
  /* Red 500 */
  --white: #ffffff;
  --cream: #e4e4e7;
  /* Zinc 200 */
  --gray-mid: #a1a1aa;
  /* Zinc 400 */
  --gray-dim: #71717a;
  /* Zinc 500 */
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--navy-deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

/* ── Film grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.028;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Speed bar ── */
.speed-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffad85);
  z-index: 10001;
  animation: speed-load 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes speed-load {
  from {
    width: 0;
  }

  to {
    width: 100%;
    opacity: 0;
  }
}

/* ── Typography ── */
.serif {
  font-family: var(--serif);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-subtitle {
  color: var(--gray-mid);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.65;
}

/* ── Layout ── */
section {
  padding: 5.5rem 1.5rem;
}

.wrap {
  max-width: 1060px;
  margin: 0 auto;
}

.bg-navy {
  background: var(--navy);
}

.bg-deep {
  background: var(--navy-deep);
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.logo span {
  color: var(--orange);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: var(--orange);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 2.4rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.3s;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
}

.btn:active {
  transform: translateY(0) scale(0.96) !important;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1.05rem 2.8rem;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 107, 53, 0.5);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-breathe 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orb-breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0.5;
  }
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subtitle strong {
  color: var(--white);
  font-weight: 600;
}

/* #6 — Availability indicator */
.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

.availability .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-proof {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-proof .stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 0.6rem;
}

.hero-proof blockquote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.hero-proof cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--gray-dim);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* #5 — Speed flex banner */
.speed-flex {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 107, 53, 0.04);
  border-top: 1px solid rgba(255, 107, 53, 0.08);
  border-bottom: 1px solid rgba(255, 107, 53, 0.08);
  font-size: 0.88rem;
  color: var(--gray-mid);
}

.speed-flex strong {
  color: var(--orange);
  font-weight: 700;
}

.speed-flex .score {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: var(--green);
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin: 0 0.15rem;
}

/* ═══════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════ */
.stat-grid {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
}

.stat-card {
  background: var(--navy);
  padding: 2.25rem 1.75rem;
}

.stat-card .num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-card p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.55;
}

.stat-card p strong {
  color: var(--white);
  font-weight: 600;
}

.leak-callout {
  margin-top: 2rem;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--orange);
  background: rgba(255, 107, 53, 0.05);
  border-radius: 0 10px 10px 0;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 500;
}

/* #2 — Before / After speed visual */
.speed-compare {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

.speed-bar-visual {
  padding: 1.5rem 1.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.speed-bar-visual .bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.speed-bar-visual .bar-label .tag {
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.speed-bar-visual.before .tag {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.speed-bar-visual.after .tag {
  background: rgba(52, 211, 153, 0.15);
  color: var(--green);
}

.bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  width: 0;
}

.speed-bar-visual.before .bar-fill {
  background: var(--red);
}

.speed-bar-visual.after .bar-fill {
  background: var(--green);
}

.speed-bar-visual .bar-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-dim);
}

.speed-bar-visual .bar-meta .value {
  font-weight: 700;
  font-size: 0.85rem;
}

.speed-bar-visual.before .bar-meta .value {
  color: var(--red);
}

.speed-bar-visual.after .bar-meta .value {
  color: var(--green);
}

/* ═══════════════════════════════════════
   #7 — COST CALCULATOR
   ═══════════════════════════════════════ */
.calculator {
  margin-top: 3rem;
  padding: 2.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.calculator h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.calculator .calc-desc {
  color: var(--gray-mid);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.calc-row label {
  font-size: 0.9rem;
  color: var(--gray-mid);
  flex-shrink: 0;
}

.calc-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) var(--range-progress, 0%), rgba(255, 255, 255, 0.08) var(--range-progress, 0%));
  border-radius: 6px;
  outline: none;
}

.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 2px solid var(--navy-deep);
}

.calc-row .calc-val {
  font-weight: 700;
  color: var(--white);
  min-width: 60px;
  text-align: right;
  font-size: 0.95rem;
}

.calc-result {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 10px;
  text-align: center;
}

.calc-result .loss-amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.calc-result p {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

/* ═══════════════════════════════════════
   SOLUTION
   ═══════════════════════════════════════ */
.fix-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.fix-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: border-color 0.3s, transform 0.2s;
}

.fix-card:hover {
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateX(4px);
}

.fix-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.fix-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.fix-card p {
  color: var(--gray-mid);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* #17 — Tool logos / credibility bar */
.tools-bar {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--navy-deep);
}

.tools-bar p {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-dim);
  margin-bottom: 1.25rem;
}

.tools-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.tools-list span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════ */
.steps {
  margin-top: 3rem;
  display: grid;
  gap: 0;
  position: relative;
}

.step {
  display: flex;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: flex-start;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(255, 107, 53, 0.2);
  line-height: 1;
  min-width: 50px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.step p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   #8 — COMPARISON TABLE
   ═══════════════════════════════════════ */
.compare-section {
  text-align: center;
}

.compare-table {
  width: 100%;
  margin-top: 2.5rem;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table thead th {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-dim);
  padding-bottom: 0.75rem;
}

.compare-table thead th:last-child {
  color: var(--orange);
}

.compare-table td {
  color: var(--gray-mid);
}

.compare-table td:first-child {
  color: var(--white);
  font-weight: 600;
}

.compare-table td:last-child {
  color: var(--white);
}

.compare-table .highlight-col {
  background: rgba(255, 107, 53, 0.03);
}

.compare-table .check {
  color: var(--green);
}

.compare-table .cross {
  color: var(--red);
  opacity: 0.6;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.price-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.price-card.pop {
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.03);
  box-shadow: 0 0 60px rgba(255, 107, 53, 0.06);
}

.price-card.pop:hover {
  border-color: var(--orange-hover);
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card .tier {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-dim);
  margin-bottom: 1rem;
}

.price-card .amount {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.price-card .amount small {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-dim);
}

.price-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 1.5rem 0;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.price-list li {
  font-size: 0.88rem;
  color: var(--gray-mid);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.45;
}

.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}

.price-card .btn {
  width: 100%;
  text-align: center;
  padding: 0.85rem;
  font-size: 0.92rem;
}

.price-footer {
  text-align: center;
  margin-top: 2.25rem;
  color: var(--gray-dim);
  font-size: 0.85rem;
}

/* #4 — Guarantee badge */
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.75rem;
  border: 1px dashed rgba(52, 211, 153, 0.3);
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.04);
}

.guarantee-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 2px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.guarantee-text strong {
  display: block;
  color: var(--green);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.guarantee-text span {
  font-size: 0.82rem;
  color: var(--gray-mid);
}

/* ═══════════════════════════════════════
   #3 — TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}

.testimonial-card .t-stars {
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-card .t-author {
  font-size: 0.82rem;
  color: var(--gray-dim);
  font-weight: 500;
}

.testimonial-card .t-author strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 0.1rem;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about-text {
  max-width: 560px;
}

.about-text p {
  color: var(--gray-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.about-text p strong {
  color: var(--white);
  font-weight: 600;
}

.about-text .sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
  margin-top: 0.5rem;
}

/* About visual */
.about-visual {
  text-align: center;
}

.about-visual img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* #19 — Video placeholder */
.video-placeholder {
  margin-top: 2.5rem;
  max-width: 560px;
  aspect-ratio: 16/9;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-dim);
  font-size: 0.85rem;
}

.video-placeholder .play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
}

/* ═══════════════════════════════════════
   #9 — FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-list {
  margin-top: 2.5rem;
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--orange);
}

.faq-q .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-mid);
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  padding-bottom: 1.25rem;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta .section-title {
  margin-bottom: 0.5rem;
}

.final-cta .section-subtitle {
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* #10 — Risk reversal copy */
.risk-reversal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-dim);
}

.risk-reversal span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.risk-reversal .ri {
  color: var(--green);
  font-size: 0.9rem;
}

.email-alt {
  display: block;
  margin-top: 1.25rem;
  color: var(--gray-dim);
  font-size: 0.9rem;
}

.email-alt a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  transition: border-color 0.2s;
}

.email-alt a:hover {
  border-color: var(--orange);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--gray-dim);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

footer a {
  color: var(--gray-dim);
  text-decoration: none;
}

footer a:hover {
  color: var(--orange);
}

/* ═══════════════════════════════════════
   #15 — MOBILE STICKY CTA
   ═══════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 199;
  padding: 0.75rem 1rem;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
  text-align: center;
  padding: 0.85rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }

  footer {
    padding-bottom: 5rem;
  }
}

/* ═══════════════════════════════════════
   #20 — EXIT INTENT POPUP
   ═══════════════════════════════════════ */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.exit-overlay.active {
  display: flex;
}

.exit-modal {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modal-in 0.3s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.exit-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gray-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.exit-close:hover {
  color: var(--white);
}

.exit-modal h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.exit-modal p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.exit-modal .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.exit-modal .exit-dismiss {
  background: none;
  border: none;
  color: var(--gray-dim);
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.2s;
}

.exit-modal .exit-dismiss:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.vis {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-d1 {
    transition-delay: 0.08s;
  }

  .reveal-d2 {
    transition-delay: 0.16s;
  }

  .reveal-d3 {
    transition-delay: 0.24s;
  }

  .reveal-d4 {
    transition-delay: 0.32s;
  }

  .hero-inner {
    animation: hero-up 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
  }

  @keyframes hero-up {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ═══════════════════════════════════════
   IMAGES
   ═══════════════════════════════════════ */

/* Hero image */
.hero-img {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  width: 600px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Shared section visual container */
.section-visual {
  margin-top: 2.5rem;
  text-align: center;
}

.section-visual img {
  max-width: 100%;
  width: 700px;
  height: auto;
  border-radius: 16px;
}

/* Dashboard visual override */
.dashboard-visual {
  margin-top: 2rem;
}

.dashboard-visual img {
  width: 550px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Fix card image icons */
.fix-icon--img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: transparent;
  border: none;
  padding: 0;
  overflow: hidden;
}

.fix-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Process visual */
.process-visual {
  margin: 2rem auto 1rem;
  text-align: center;
}

.process-visual img {
  max-width: 100%;
  width: 650px;
  height: auto;
  border-radius: 12px;
}

/* Testimonials stars background */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 107, 53, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section .wrap {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (min-width: 640px) {
  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fix-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .speed-compare {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  section {
    padding: 5.5rem 2.5rem;
  }

  nav {
    padding: 1.1rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .price-card.pop {
    transform: scale(1.03);
  }

  .price-card.pop:hover {
    transform: scale(1.03) translateY(-3px);
  }
}

@media (max-width: 639px) {

  .hero-img img,
  .section-visual img,
  .dashboard-visual img,
  .process-visual img,
  .about-visual img {
    width: 100%;
    border-radius: 12px;
  }

  .fix-icon--img {
    width: 52px;
    height: 52px;
  }
}
/* ======================== */
/* MULTI-STEP AUDIT FORM    */
/* ======================== */
.audit-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}
.audit-overlay.active { display: flex; }

.audit-modal {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f1729 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,107,53,0.08);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.audit-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-mid);
  font-size: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.audit-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Step Indicator */
.audit-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}
.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-dim);
  transition: all 0.3s;
}
.step-dot.active {
  border-color: var(--orange);
  background: rgba(255,107,53,0.15);
  color: var(--orange);
  box-shadow: 0 0 15px rgba(255,107,53,0.3);
}
.step-dot.done {
  border-color: var(--green);
  background: rgba(52,211,153,0.15);
  color: var(--green);
}
.step-line {
  width: 40px; height: 2px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.step-line.active { background: var(--orange); }
.step-line.done { background: var(--green); }

/* Step Content */
.audit-step { text-align: center; }
.audit-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.audit-icon.analyzing { animation: pulse 1s infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.audit-step h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.audit-step p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Form Fields */
.audit-field {
  text-align: left;
  margin-bottom: 1rem;
}
.audit-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light, #ccc);
  margin-bottom: 0.4rem;
}
.audit-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s;
  box-sizing: border-box;
}
.audit-field input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,107,53,0.05);
  box-shadow: 0 0 20px rgba(255,107,53,0.1);
}
.audit-field input::placeholder { color: rgba(255,255,255,0.25); }
.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-dim);
  margin-top: 0.35rem;
}
.audit-field input.error {
  border-color: #ff4444;
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Buttons */
.audit-next {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.05rem;
}
.audit-back {
  background: none;
  border: none;
  color: var(--gray-mid);
  cursor: pointer;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  padding: 0.5rem;
  transition: color 0.2s;
}
.audit-back:hover { color: #fff; }

.audit-trust {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-dim);
}

/* Analysis Animation */
.analyze-progress {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 1.5rem 0;
}
.analyze-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 3px;
  transition: width 0.5s ease;
}

.analyze-checks {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-dim);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.check-item.done { color: var(--green); }
.check-item .check-icon { font-size: 1.1rem; min-width: 1.3rem; }

/* Done State */
.analyze-done {
  animation: fadeIn 0.5s ease;
}
.done-icon { font-size: 3.5rem; margin-bottom: 0.5rem; }
.analyze-done h3 {
  color: var(--green) !important;
  margin-bottom: 0.75rem;
}
.analyze-done p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .audit-modal { padding: 2rem 1.25rem; border-radius: 16px; }
  .audit-step h3 { font-size: 1.35rem; }
  .step-line { width: 25px; }
}

/* Field Errors */
.field-error {
  display: block;
  font-size: 0.8rem;
  color: #ff4444;
  margin-top: 0.35rem;
  min-height: 0;
  transition: all 0.2s;
}
.field-error:not(:empty) {
  min-height: 1.2em;
}
