:root {
  color-scheme: light;
  --ink: #131c33;
  --muted: #5a6b85;
  --line: #e4e9f2;
  --bg: #f6f8fc;
  --panel: #ffffff;
  --navy: #14306b;
  --navy-2: #1d4ed8;
  --accent: #2563eb;
  --save: #15a34a;
  --save-soft: #e7f8ee;
  --cta: #f97316;
  --cta-dark: #ea580c;
  --warn: #e1493f;
  --shadow: 0 24px 60px rgba(19, 28, 51, 0.12);
  --shadow-soft: 0 12px 32px rgba(19, 28, 51, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-bottom: 84px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.wrap {
  width: min(1080px, calc(100vw - 40px));
  margin: 0 auto;
}

.wrap-narrow {
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
}

/* --- Promo bar --- */
.promo-bar {
  background: var(--navy);
  color: #eaf0ff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
}
.promo-bar strong { color: #ffd9a8; }
.promo-bar .save { color: #74e8a3; font-weight: 800; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px max(20px, calc((100vw - 1080px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(150%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 17px;
  text-decoration: none;
  color: var(--ink);
}
.brand-icon { width: 34px; height: 34px; border-radius: 9px; }
.header-cta { padding: 0 16px; min-height: 40px; font-size: 14px; }
@media (max-width: 560px) { .header-cta { display: none; } }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn-cta {
  background: linear-gradient(180deg, #fb923c, var(--cta));
  color: #fff;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(249, 115, 22, 0.42); background: linear-gradient(180deg, var(--cta), var(--cta-dark)); }
.btn-cta:active { transform: translateY(0); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--navy); }
.btn-ghost:hover { border-color: var(--navy-2); color: var(--navy-2); }
.btn-lg { min-height: 58px; padding: 0 34px; font-size: 18px; border-radius: 13px; }
.btn-block { width: 100%; }

/* --- Hero --- */
.hero {
  position: relative;
  padding: 64px 0 56px;
  background:
    radial-gradient(1100px 460px at 50% -120px, rgba(37, 99, 235, 0.12), transparent 70%),
    linear-gradient(180deg, #ffffff, var(--bg));
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero h1 {
  max-width: 18ch;
  margin: 0 auto 18px;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero h1 .hl { color: var(--save); white-space: nowrap; }
.hero h1 .strike { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--warn); }
.lede {
  max-width: 56ch;
  margin: 0 auto 30px;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--muted);
}
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-sub { display: block; font-size: 13px; color: var(--muted); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
}
.trust-row li { display: inline-flex; align-items: center; gap: 7px; }
.trust-row li::before { content: "✓"; color: var(--save); font-weight: 900; }

/* --- Section base --- */
.section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.section.alt { background: #fff; }
.section-head { max-width: 640px; margin: 0 auto 38px; text-align: center; }
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }
.section-head.one-line { max-width: none; }
.section-head.one-line h2 { white-space: nowrap; }
@media (max-width: 760px) { .section-head.one-line h2 { white-space: normal; } }

/* --- Pricing smackdown --- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.price-card.muted { opacity: 0.92; }
.price-card.highlight {
  border: 2px solid var(--save);
  box-shadow: 0 24px 56px rgba(21, 163, 74, 0.18);
  transform: translateY(-6px);
}
.price-name { font-weight: 800; font-size: 18px; margin-bottom: 6px; }
.price-amount { font-size: 44px; font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.price-card.muted .price-amount { color: var(--muted); }
.price-card.highlight .price-amount { color: var(--save); }
.price-cur { font-size: 22px; font-weight: 800; vertical-align: super; }
.price-per { color: var(--muted); font-size: 14px; margin: 6px 0 14px; }
.price-note { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--save);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(21, 163, 74, 0.3);
}
.price-card .btn { margin-top: auto; }
.price-strike { text-decoration: line-through; text-decoration-color: var(--warn); }

/* --- Problem list --- */
.problem-list, .check-list, .audience-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.problem-list li, .check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  font-size: 16px;
}
.problem-list li::before { content: "✕"; color: var(--warn); font-weight: 900; font-size: 17px; }
.check-list li { border: 0; background: transparent; padding: 8px 0; }
.check-list li::before { content: "✓"; color: var(--save); font-weight: 900; font-size: 17px; }
.problem-list strong, .check-list strong { color: var(--ink); }

/* --- Reveal card --- */
.reveal-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px 34px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f3f7ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.reveal-card .check-list { text-align: left; margin: 24px 0; }
.reveal-card .btn { margin-top: 8px; }

/* --- Features --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.feature-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  font-size: 22px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* --- Audience --- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.aud-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}
.aud-card h3 { display: flex; align-items: center; gap: 10px; font-size: 18px; }
.aud-ico { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: 14px; font-weight: 900; flex: none; }
.aud-ico.ok { background: var(--save); color: #fff; }
.aud-ico.no { background: var(--warn); color: #fff; }
.aud-card.pro { border-color: rgba(21, 163, 74, 0.3); background: var(--save-soft); }
.aud-card.con { background: #fbf3f2; border-color: rgba(225, 73, 63, 0.25); }
.aud-card ul { margin: 12px 0 0; padding-left: 20px; color: var(--muted); }
.aud-card li { margin-bottom: 6px; }

/* --- Proof --- */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
.stat {
  padding: 26px 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.stat strong { display: block; font-size: 34px; font-weight: 900; color: var(--navy-2); letter-spacing: -0.01em; }
.stat span { color: var(--muted); font-size: 14px; }

/* --- Guarantee --- */
.guarantee-card {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: var(--save-soft);
  border: 1px solid rgba(21, 163, 74, 0.28);
}
.guarantee-ico { font-size: 38px; }
.guarantee-card h3 { margin: 0 0 4px; font-size: 19px; }
.guarantee-card p { margin: 0; color: #2f5a40; font-size: 15px; }

/* --- FAQ --- */
.faq-list { display: grid; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
}
.faq-list details[open] { border-color: rgba(37, 99, 235, 0.3); }
.faq-list summary { cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--navy-2); font-weight: 900; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 12px 0 0; color: var(--muted); }

/* --- Final CTA --- */
.final-cta { text-align: center; background: linear-gradient(180deg, #0f234f, var(--navy)); color: #fff; }
.final-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 12px; }
.final-cta p { color: #c6d4f0; font-size: 18px; max-width: 52ch; margin: 0 auto 26px; }

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px max(16px, calc((100vw - 1080px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(19, 28, 51, 0.1);
  backdrop-filter: blur(14px);
  transform: translateY(120%);
  transition: transform 260ms ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .sticky-text { font-weight: 800; font-size: 15px; }
.sticky-cta .sticky-text span { display: block; font-weight: 600; font-size: 13px; color: var(--muted); }
.sticky-cta .btn { white-space: nowrap; }

/* --- Footer --- */
.site-footer { padding: 46px 0 34px; background: #fff; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 13px; text-align: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 850; font-size: 16px; color: var(--ink); text-decoration: none; }
.footer-brand img { width: 26px; height: 26px; border-radius: 7px; }
.footer-disc { max-width: 600px; margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.65; }
.footer-copy { margin: 0; color: #9aa7bd; font-size: 12px; letter-spacing: 0.02em; }

/* --- Responsive --- */
@media (max-width: 860px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card.highlight { transform: none; order: -1; }
  .proof-stats { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-card { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .hero { padding: 44px 0 40px; }
  .btn-lg { width: 100%; }
  .hero-cta .btn-lg { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .sticky-cta .sticky-text span { display: none; }
}

/* --- Product visuals (screenshots / logo) --- */
.hero-shot { max-width: 880px; margin: 44px auto 0; }
.browser-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #eef2f9;
  border-bottom: 1px solid var(--line);
}
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cdd6e6; }
.browser-bar i:nth-child(1) { background: #ff6058; }
.browser-bar i:nth-child(2) { background: #ffbe2e; }
.browser-bar i:nth-child(3) { background: #2aca44; }
.shot { display: block; width: 100%; }
.shot.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 260px;
  padding: 28px;
  background: repeating-linear-gradient(45deg, #f7f9fc, #f7f9fc 13px, #eef2f9 13px, #eef2f9 26px);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}
.shot.placeholder .ph-ico { font-size: 30px; }
.shot.placeholder small { font-weight: 600; font-size: 12px; opacity: 0.85; }
.shots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.shots-grid .shot.placeholder { min-height: 180px; }
.logo-slot { display: flex; align-items: center; justify-content: center; min-height: 44px; margin-bottom: 16px; }
.logo-slot .placeholder {
  border: 1px dashed #b9c4da;
  border-radius: 8px;
  padding: 9px 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.rating-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; }
.rating { text-align: center; }
.rating .stars { color: #f5b301; font-size: 18px; letter-spacing: 2px; }
.rating strong { display: block; font-size: 18px; }
.rating span { display: block; color: var(--muted); font-size: 13px; }
@media (max-width: 700px) { .shots-grid { grid-template-columns: 1fr; } }

/* --- Real screenshots, logo, tools list --- */
h1, h2 { text-wrap: balance; }
img.shot { height: auto; }
.brand-logo { height: 30px; width: auto; }
.tools-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 900px;
  margin: 30px auto 24px;
  padding: 0;
  list-style: none;
}
.tools-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: 16px; }
.tl-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--save-soft); color: var(--save);
  font-size: 13px; font-weight: 900; flex: none; margin-top: 1px;
}
.tools-list strong { font-weight: 800; }
@media (max-width: 640px) { .tools-list { grid-template-columns: 1fr; } }

/* --- Lightbox --- */
img.shot { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }

/* --- CTA focus + reassurance --- */
.btn:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.55); outline-offset: 3px; }
img.shot:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.55); outline-offset: 3px; }
.cta-sub-light { color: rgba(255, 255, 255, 0.72); margin-top: 12px; }
