:root {
  --red: #e21b22;
  --red-dark: #b61015;
  --ink: #151515;
  --muted: #666;
  --line: #e9e9e9;
  --soft: #f7f7f5;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.topbar {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.nav-wrap { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.93); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.06); }
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { display: inline-grid; place-items: center; width: 28px; height: 28px; background: var(--red); color: white; border-radius: 4px; font-size: 22px; line-height: 1; }
.nav-links { display: flex; gap: 28px; color: #494949; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 13px 20px;
  background: var(--red);
  color: white;
  font-weight: 800;
  border: 1px solid var(--red);
  box-shadow: 0 10px 24px rgba(226,27,34,.16);
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--red-dark); border-color: var(--red-dark); }
.btn-sm { padding: 10px 15px; font-size: 14px; }
.btn-lg { padding: 15px 22px; }
.btn-light { background: white; color: var(--red); border-color: white; box-shadow: none; }
.btn-light:hover { background: #f4f4f4; border-color: #f4f4f4; }
.text-link { font-weight: 800; }
.text-link:hover { color: var(--red); }

.hero { min-height: 690px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; padding-block: 80px; }
.eyebrow { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .15em; margin-bottom: 16px; }
.eyebrow.light { color: #ffd9da; }
h1,h2,h3 { font-family: Manrope, Inter, sans-serif; margin-top: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { font-size: clamp(52px, 7vw, 88px); margin-bottom: 22px; max-width: 770px; }
h1 span { color: var(--red); }
h2 { font-size: clamp(38px, 4.6vw, 60px); margin-bottom: 18px; }
h3 { font-size: 24px; margin-bottom: 12px; }
.hero-sub, .lead { color: var(--muted); font-size: 19px; max-width: 650px; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: #555; font-size: 13px; font-weight: 700; }

.hero-card-wrap { position: relative; }
.hero-card { position: relative; z-index: 2; background: #111; color: white; border-radius: 28px; padding: 38px; box-shadow: 0 35px 80px rgba(0,0,0,.18); overflow: hidden; }
.hero-card:before { content: ""; position: absolute; inset: auto -100px -120px auto; width: 330px; height: 330px; background: var(--red); border-radius: 50%; opacity: .16; }
.hero-card h3 { font-size: 34px; max-width: 440px; }
.hero-card ul { padding-left: 20px; color: #ddd; margin: 22px 0 28px; }
.hero-card li { margin: 8px 0; }
.mini-label { display: inline-block; background: var(--red); padding: 7px 10px; border-radius: 7px; font-size: 11px; font-weight: 800; letter-spacing: .12em; margin-bottom: 20px; }
.qr-block { position: relative; z-index: 2; background: white; color: var(--ink); border-radius: 18px; display: flex; align-items: center; gap: 18px; padding: 14px; }
.qr-block img { width: 92px; border-radius: 12px; }
.qr-block strong, .qr-block span { display: block; }
.qr-block span { color: var(--muted); font-size: 12px; margin-top: 4px; word-break: break-all; }
.red-square { position: absolute; background: var(--red); border-radius: 18px; }
.red-square.one { width: 120px; height: 120px; right: -34px; top: -30px; transform: rotate(14deg); }
.red-square.two { width: 88px; height: 88px; left: -30px; bottom: 35px; opacity: .2; transform: rotate(-15deg); }

.stats-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-grid div { padding: 30px 22px; border-right: 1px solid var(--line); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { font-size: 31px; font-family: Manrope, sans-serif; }
.stats-grid span { color: var(--muted); font-size: 13px; font-weight: 600; }

.section { padding-block: 100px; }
.section.alt { background: var(--soft); }
.section-head.narrow { max-width: 760px; margin-bottom: 46px; }
.section-head p { color: var(--muted); font-size: 18px; }
.cards.three { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { border: 1px solid var(--line); border-radius: 18px; padding: 28px; min-height: 250px; background: white; }
.feature-card .icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: #fff0f0; color: var(--red); font-weight: 800; margin-bottom: 34px; }
.feature-card p { color: var(--muted); margin-bottom: 0; }

.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; align-items: start; }
.checklist { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 16px 28px; }
.check-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.check-item:last-child { border-bottom: 0; }
.check-item > span { flex: 0 0 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: white; font-weight: 800; }
.check-item strong { display: block; font-size: 17px; margin-bottom: 3px; }
.check-item p { margin: 0; color: var(--muted); font-size: 14px; }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.problem-card { border-radius: 22px; padding: 34px; min-height: 260px; }
.problem-card.bad { background: #f3f3f1; }
.problem-card.good { background: #151515; color: white; }
.problem-card p { color: #666; max-width: 520px; }
.problem-card.good p { color: #cfcfcf; }
.tag { display: inline-block; font-size: 11px; letter-spacing: .12em; font-weight: 800; margin-bottom: 48px; }
.problem-card.good .tag { color: #ffaaaa; }

.cta-section { background: var(--red); color: white; }
.cta-card { display: grid; grid-template-columns: 1fr 250px; gap: 60px; align-items: center; }
.cta-card p { color: #ffe6e6; max-width: 650px; font-size: 18px; margin-bottom: 28px; }
.cta-card img { width: 250px; border-radius: 24px; background: white; padding: 8px; }

.faq-list { max-width: 850px; }
details { border-top: 1px solid var(--line); padding: 22px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 800; font-size: 18px; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--red); font-size: 24px; font-weight: 500; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); max-width: 720px; margin-bottom: 0; }

footer { background: #111; color: white; padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.footer-inner p { color: #aaa; font-size: 12px; margin: 0; }
.footer-inner a { color: #ff8d90; font-weight: 700; font-size: 13px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-block: 60px; }
  .hero-card-wrap { max-width: 650px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid div:nth-child(2) { border-right: 0; }
  .stats-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards.three, .split, .problem-grid, .cta-card { grid-template-columns: 1fr; }
  .cta-card img { width: 200px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav { height: 66px; }
  .nav .btn { display: none; }
  .brand { font-size: 14px; }
  h1 { font-size: 52px; }
  h2 { font-size: 40px; }
  .hero { padding-block: 44px 58px; }
  .hero-sub { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .text-link { text-align: center; }
  .trust-row { display: grid; gap: 8px; }
  .hero-card { padding: 26px; border-radius: 22px; }
  .hero-card h3 { font-size: 28px; }
  .qr-block { align-items: flex-start; }
  .qr-block img { width: 78px; }
  .section { padding-block: 72px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-grid div:last-child { border-bottom: 0; }
  .cards.three { gap: 14px; }
  .feature-card { min-height: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}


/* Trust & legal */
.trust-section { padding-top: 92px; padding-bottom: 92px; }
.trust-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.trust-card { border:1px solid var(--line); border-radius:18px; padding:28px; background:#fff; }
.trust-card p { color:var(--muted); margin-bottom:0; }
.trust-icon { width:46px; height:46px; display:grid; place-items:center; border-radius:12px; background:#fff0f0; margin-bottom:22px; font-size:22px; }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr auto; gap:32px; align-items:start; }
.footer-note { color:#aaa; font-size:12px; margin:12px 0 0; max-width:420px; }
.footer-links { display:grid; gap:8px; }
.footer-links a { color:#ddd; font-size:13px; font-weight:700; }
.footer-links a:hover { color:#fff; }
.footer-secure { color:#cfcfcf; font-size:12px; font-weight:700; white-space:nowrap; }
.footer-bottom { border-top:1px solid #2a2a2a; margin-top:28px; padding-top:20px; color:#888; font-size:11px; }
.legal-page { min-height:70vh; padding-block:72px 100px; }
.legal-page .legal-wrap { max-width:820px; }
.legal-page h1 { font-size:48px; }
.legal-page h2 { font-size:24px; margin-top:34px; }
.legal-page p, .legal-page li { color:var(--muted); }
.legal-page a { color:var(--red); font-weight:700; }
@media (max-width:900px){ .trust-cards{grid-template-columns:1fr;} .footer-grid{grid-template-columns:1fr 1fr;} .footer-secure{grid-column:1/-1;} }
@media (max-width:600px){ .footer-grid{grid-template-columns:1fr;} .footer-secure{grid-column:auto;} .legal-page h1{font-size:40px;} }
