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

:root {
  --black: #0a0a0a;
  --dark: #111;
  --card: #171717;
  --card-raised: #1c1c1c;
  --border: #252525;
  --border-light: #333;
  --muted: #666;
  --text: #aaa;
  --light: #d4d4d4;
  --white: #f0f0f0;
  --accent: #e63926;
  --accent-glow: #ff4d3a;
  --green: #34d399;
  --yellow: #fbbf24;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.hdg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white); letter-spacing: 1px; line-height: 1; margin-bottom: 16px;
}
.sub-p { font-size: 1.05rem; color: var(--muted); max-width: 620px; line-height: 1.72; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 14px 28px; border-radius: 7px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Barlow', sans-serif; transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-glow); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,57,38,0.25); }
.btn-ghost { background: transparent; color: var(--light); border: 1.5px solid var(--border-light); }
.btn-ghost:hover { border-color: var(--muted); background: rgba(255,255,255,0.02); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 3px;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--accent); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: #fff; font-weight: 700;
}
nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.3px; transition: color 0.2s; }
nav a:hover { color: var(--white); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 9px 22px; border-radius: 6px; font-weight: 600; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: var(--accent-glow); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 65% 45%, rgba(230,57,38,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6.5vw, 4.8rem); line-height: 0.95; color: var(--white); letter-spacing: 1px; margin-bottom: 24px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero .sub { font-size: 1.15rem; color: var(--text); max-width: 560px; margin-bottom: 20px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 20px; font-size: 1rem; color: var(--white); font-weight: 600; }
.hero-note span { color: var(--accent); font-weight: 700; }
.hero-proof { margin-top: 16px; font-size: 0.92rem; color: var(--muted); max-width: 560px; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup { width: 320px; background: var(--card); border-radius: 24px; border: 1.5px solid var(--border); padding: 16px; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.phone-notch { width: 100px; height: 24px; background: var(--black); border-radius: 0 0 14px 14px; margin: -16px auto 12px; border: 1.5px solid var(--border); border-top: none; }
.phone-screen { background: var(--dark); border-radius: 12px; padding: 20px 14px; min-height: 400px; }
.email-preview { background: var(--card-raised); border: 1px solid var(--border); border-radius: 10px; padding: 16px; font-size: 0.82rem; line-height: 1.6; animation: fadeUp 0.6s 0.3s ease-out both; }
.email-header { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }
.email-dot { width: 32px; height: 32px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.email-from { color: var(--light); font-weight: 600; font-size: 0.8rem; }
.email-time { color: var(--muted); font-size: 0.72rem; }
.email-subject { font-weight: 700; color: var(--white); margin-bottom: 10px; font-size: 0.88rem; }
.email-body { color: var(--text); }
.email-body strong { color: var(--light); font-weight: 600; }
.email-field { margin-bottom: 6px; }
.highlight-field { background: rgba(230,57,38,0.1); padding: 2px 6px; border-radius: 4px; border: 1px solid rgba(230,57,38,0.3); color: var(--white); }
.email-badge { display: inline-block; background: rgba(230,57,38,0.15); color: var(--accent-glow); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 4px; margin-top: 10px; text-transform: uppercase; }

/* ── PAIN STRIP ── */
.pain-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--dark); padding: 44px 0; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.pain-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4.5vw, 3rem); color: var(--accent); line-height: 1; margin-bottom: 4px; }
.pain-label { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.pain-icon { width: 28px; height: 28px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; opacity: 0.4; }

/* ── PROBLEM ── */
.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.problem-text p { font-size: 1.02rem; line-height: 1.8; margin-bottom: 18px; }
.problem-text strong { color: var(--white); }
.qualifier-box { background: rgba(230,57,38,0.05); border: 1px solid var(--accent); border-radius: 12px; padding: 24px; margin-top: 32px; }
.qualifier-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.qualifier-box ul { list-style: none; }
.qualifier-box li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; margin-bottom: 10px; color: var(--light); }
.qualifier-box li:last-child { margin-bottom: 0; }

.cost-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 32px; position: relative; overflow: hidden; }
.cost-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-glow)); }
.cost-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--light); margin-bottom: 20px; }
.cost-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.cost-row:last-of-type { border-bottom: none; }
.cost-row span:last-child { color: var(--white); font-weight: 600; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; }
.cost-total { margin-top: 20px; padding-top: 16px; border-top: 2px solid var(--accent); display: flex; justify-content: space-between; align-items: baseline; }
.cost-total span:first-child { font-weight: 600; color: var(--light); }
.cost-total span:last-child { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--accent); }

/* ── HOW IT WORKS ── */
.how { background: var(--dark); }
.steps { display: flex; flex-direction: column; gap: 20px; max-width: 820px; margin: 48px auto 0; }
.step { display: flex; align-items: center; gap: 32px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 32px 40px; transition: border-color 0.3s, transform 0.3s; }
.step:hover { border-color: var(--accent); transform: translateY(-3px); }
.step-left { display: flex; align-items: center; gap: 24px; flex-shrink: 0; width: 160px; }
.step-n { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--accent); line-height: 1; margin: 0; opacity: 0.4; }
.step-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(230,57,38,0.08); border: 1px dashed rgba(230,57,38,0.2); flex-shrink: 0; }
.step h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.step p { color: var(--text); font-size: 0.95rem; line-height: 1.7; }

/* ── ANATOMY BOX ── */
.anatomy-box { margin-top: 80px; background: var(--black); border: 1px solid var(--border); border-radius: 16px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.anatomy-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--white); margin-bottom: 16px; letter-spacing: 1px; }
.anatomy-text p { color: var(--muted); margin-bottom: 24px; line-height: 1.75; }
.anatomy-list { list-style: none; }
.anatomy-list li { margin-bottom: 16px; display: flex; align-items: flex-start; gap: 12px; }
.anatomy-icon-main { background: rgba(230,57,38,0.1); color: var(--accent); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: bold; flex-shrink: 0; margin-top: 2px; }
.anatomy-list strong { color: var(--light); display: block; font-size: 0.95rem; }
.anatomy-list span { color: var(--text); font-size: 0.85rem; }

/* ── SCOPE ── */
.scope { background: var(--black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.scope-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.scope-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.scope-card ul { list-style: none; }
.scope-card li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; }
.scope-note { margin-top: 20px; font-size: 0.85rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 16px; }

/* Utility colors */
.ck { color: var(--green); font-weight: 700; flex-shrink: 0; }
.cx { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.cw { color: var(--yellow); font-weight: 700; flex-shrink: 0; }

/* ── DEMO CTA ── */
.demo-cta { background: var(--dark); text-align: center; position: relative; overflow: hidden; }
.demo-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(230,57,38,0.05), transparent 70%); }
.demo-inner { position: relative; max-width: 680px; margin: 0 auto; }
.demo-phone { display: block; font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3rem); color: var(--white); letter-spacing: 3px; text-decoration: none; margin: 24px auto; transition: color 0.2s; }
.demo-phone:hover { color: var(--accent); }
.demo-inner .sub-p { margin: 0 auto 28px; text-align: center; max-width: 560px; }

/* ── PRICING ── */
.pricing { background: var(--black); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(230,57,38,0.08); position: relative; background: var(--card-raised); }
.price-card.featured::before { content: 'YOUR BEST OPTION'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--light); margin-bottom: 6px; }
.price-amt { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--white); margin-bottom: 2px; }
.price-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.price-list { list-style: none; text-align: left; }
.price-list li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; display: flex; align-items: flex-start; gap: 8px; }
.price-list li:last-child { border-bottom: none; }
.price-icon { width: 40px; height: 40px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; opacity: 0.5; }

/* ── ABOUT ── */
.about { background: var(--dark); }
.about-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: center; }
.about-badge { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 40px 28px; text-align: center; }
.about-icon { width: 60px; height: 60px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: #fff; }
.about-badge h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.about-badge p { color: var(--muted); font-size: 0.9rem; }
.about-text p { font-size: 1.02rem; line-height: 1.8; margin-bottom: 18px; }
.about-text strong { color: var(--white); }

/* ── FAQ ── */
.faq { background: var(--black); }
.faq-list { max-width: 760px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 600; text-align: left; padding: 18px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.faq-q:hover { color: var(--accent); }
.faq-q .arr { transition: transform 0.3s; font-size: 1.1rem; color: var(--muted); }
.faq-q.open .arr { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: var(--text); font-size: 0.9rem; line-height: 1.7; }
.faq-a.open { max-height: 320px; padding-bottom: 18px; }

/* ── FINAL CTA ── */
.final-cta { background: var(--dark); text-align: center; padding: 80px 0; position: relative; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(230,57,38,0.04), transparent 70%); }
.final-inner { position: relative; max-width: 600px; margin: 0 auto; }
.final-inner .sub-p { margin: 0 auto 28px; text-align: center; }
.contact-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 40px 0; }
.foot-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.foot-brand .logo { margin-bottom: 10px; }
.foot-brand p { font-size: 0.85rem; color: var(--muted); max-width: 280px; }
.foot-links h4 { font-family: 'Barlow Condensed', sans-serif; color: var(--white); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; margin-bottom: 10px; }
.foot-links a { display: block; color: var(--muted); text-decoration: none; font-size: 0.85rem; padding: 3px 0; transition: color 0.2s; }
.foot-links a:hover { color: var(--white); }
.foot-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.75rem; color: var(--muted); }
.foot-legal { display: flex; gap: 16px; }
.foot-legal a { color: var(--muted); text-decoration: none; font-size: 0.75rem; }
.foot-legal a:hover { color: var(--white); }

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta { display: none; }

/* ── SCROLL REVEAL ── */
.rv { transition: opacity 0.55s ease, transform 0.55s ease; }
html.rv-ready .rv { opacity: 0; transform: translateY(20px); }
html.rv-ready .rv.vis { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ── INNER PAGES ── */
.page-hero {
  padding: 140px 0 80px; text-align: center; position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(230,57,38,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .hdg { font-size: clamp(2.5rem, 6vw, 4rem); }
.page-hero .sub-p { margin: 0 auto; text-align: center; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  margin-bottom: 20px; transition: color 0.2s;
}
.back-link:hover { color: var(--white); }

/* ── FACT BLOCK ── */
.fact-block {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 32px; margin-top: 48px;
}
.fact-block h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 3px; color: var(--accent);
  margin-bottom: 20px;
}
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.fact-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.fact-item span { color: var(--muted); font-size: 0.85rem; }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; margin-top: 40px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.compare-table th {
  background: var(--card); padding: 16px 20px; text-align: left;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 1px; font-size: 0.85rem; color: var(--light);
  border-bottom: 2px solid var(--border);
}
.compare-table th.col-pv { color: var(--accent); border-bottom-color: var(--accent); }
.compare-table td {
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; vertical-align: middle; color: var(--text);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .col-pv { background: rgba(230,57,38,0.03); color: var(--light); }
.compare-table .col-feat { color: var(--muted); font-weight: 500; }
.cmp-yes { color: var(--green); font-weight: 700; }
.cmp-no { color: var(--accent); font-weight: 700; }
.cmp-partial { color: var(--yellow); font-weight: 700; }

/* ── CONTENT PROSE ── */
.content-prose p { font-size: 1rem; line-height: 1.82; margin-bottom: 20px; }
.content-prose strong { color: var(--white); }
.content-prose h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white);
  margin: 32px 0 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .problem-layout, .about-layout, .anatomy-box { grid-template-columns: 1fr; }
  .hero-grid { text-align: center; }
  .hero .sub, .hero-proof { margin-left: auto; margin-right: auto; }
  .hero-actions, .contact-row { justify-content: center; }
  .hero-visual { margin-top: 16px; }
  .about-badge { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  nav ul {
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 28px 24px; gap: 20px;
    transform: translateY(-120%); transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border);
  }
  nav ul.open { transform: translateY(0); }
  .pain-grid, .scope-grid, .price-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px; }
  .step-left { width: auto; }
  .anatomy-box { padding: 32px 20px; }
  body { padding-bottom: 76px; }
  .mobile-sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(17,17,17,0.95); backdrop-filter: blur(10px);
    border-top: 1px solid var(--border); padding: 12px 16px;
    z-index: 999; justify-content: center;
  }
  .mobile-sticky-cta .btn { width: 100%; font-size: 1rem; padding: 14px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 64px 0; }
  .hero { min-height: auto; padding: 100px 0 48px; }
  .hero h1 { font-size: 2.4rem; margin-bottom: 16px; }
  .hero .sub { font-size: 1rem; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.95rem; }
  .hero-note { font-size: 0.9rem; }
  .phone-mockup { width: 100%; max-width: 320px; }
  .pain-strip { padding: 32px 0; }
  .pain-num { font-size: 2rem; }
  .pain-label { font-size: 0.8rem; }
  .hdg { font-size: 1.8rem; }
  .sub-p { font-size: 0.95rem; }
  .problem-text p, .about-text p { font-size: 0.95rem; }
  .cost-card { padding: 24px 20px; }
  .cost-row { font-size: 0.82rem; }
  .cost-total span:last-child { font-size: 1.6rem; }
  .demo-phone { font-size: 1.8rem; letter-spacing: 2px; }
  .price-card { padding: 24px 20px; }
  .price-amt { font-size: 1.8rem; }
  .faq-q { font-size: 0.9rem; padding: 14px 0; }
  .faq-a { font-size: 0.85rem; }
  .contact-row { flex-direction: column; width: 100%; }
  .contact-row .btn { width: 100%; }
  .foot-inner, .foot-bottom { flex-direction: column; }
  .foot-bottom { text-align: center; }
  .foot-legal { justify-content: center; }
  .fact-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 56px; }
}
