:root {
  --red: #e30613;
  --red-dark: #9d0007;
  --red-soft: #fff1f1;
  --amber: #ff8a1f;
  --green: #2fc45f;
  --text: #111827;
  --muted: #667085;
  --bg: #f6f7fb;
  --card: #ffffff;
  --line: #e6e8f0;
  --shadow: 0 16px 40px rgba(227, 6, 19, 0.10);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(17,17,17,0.06); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; font-size: 1.8rem; letter-spacing: -0.03em; }
.brand img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
.nav { display: flex; align-items: center; gap: 24px; font-weight: 600; }
.nav a { color: #1f2937; }
.nav a:hover, .nav a.active { color: var(--red); }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 25%, rgba(227,6,19,0.12), transparent 26%), radial-gradient(circle at 85% 80%, rgba(227,6,19,0.10), transparent 22%), linear-gradient(180deg, #ffffff 0%, #fff7f7 100%); padding: 76px 0 58px; }
.hero::after { content:""; position:absolute; right:-10%; bottom:8%; width:55%; height:160px; border-radius:999px; background:linear-gradient(90deg, rgba(227,6,19,.06), rgba(227,6,19,.18)); filter: blur(10px); transform: rotate(-8deg); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; font-weight:700; color:var(--red); background:rgba(227,6,19,.08); border:1px solid rgba(227,6,19,.14); padding:8px 14px; border-radius:999px; margin-bottom:18px; }
.hero h1, .page-hero h1 { margin: 0 0 18px; font-size: clamp(2.6rem,5vw,5rem); line-height:.98; letter-spacing:-.05em; }
.hero h1 .accent, .page-hero h1 .accent { color: var(--red); }
.lead { font-size:1.2rem; color:#344054; max-width:650px; margin:0 0 24px; }
.warning-card { background: #fff1f1; border: 1px solid rgba(227,6,19,.20); color: #7a1116; border-radius: 18px; padding: 16px 18px; margin: 0 0 24px; font-weight: 600; }
.feature-list { display:grid; grid-template-columns:repeat(2,minmax(180px,1fr)); gap:12px 20px; margin:0 0 30px; padding:0; list-style:none; }
.feature-list li { display:flex; align-items:center; gap:10px; color:#1f2937; font-weight:600; }
.check { width:24px; height:24px; display:inline-grid; place-items:center; border-radius:999px; background:rgba(227,6,19,.12); color:var(--red); font-size:.9rem; }
.cta-row { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:10px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:56px; padding:0 22px; border-radius:16px; font-weight:800; border:1px solid transparent; }
.button-secondary { background:#fff; color:#111; border-color:var(--line); }
.button-disabled { background:#eff1f8; color:#667085; border-color:#e2e5f1; cursor:default; }
.helper, .muted-note { color: var(--muted); font-size:.95rem; }
.phone-stack { display:flex; justify-content:center; align-items:end; gap:16px; }
.phone-stack img { width:30%; min-width:170px; max-width:250px; border-radius:28px; box-shadow:var(--shadow); border:1px solid rgba(17,24,39,.06); }
.phone-stack img:nth-child(2) { transform: translateY(-18px); }
.section { padding:68px 0; }
.section.alt { background: var(--bg); }
.section h2 { margin:0 0 16px; font-size:clamp(2rem,4vw,3rem); line-height:1.05; letter-spacing:-.04em; text-align:center; }
.section-intro { max-width:760px; margin:0 auto 36px; color:var(--muted); font-size:1.125rem; text-align:center; }
.section-intro.left { text-align:left; margin-left:0; }
.card-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.card { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow); }
.card .icon { width:58px; height:58px; display:grid; place-items:center; border-radius:18px; background:rgba(227,6,19,.08); color:var(--red); font-size:1.4rem; margin-bottom:18px; }
.card h3 { margin:0 0 8px; font-size:1.3rem; letter-spacing:-.02em; }
.card p { margin:0; color:var(--muted); }
.screenshot-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.screenshot-card { background:#fff; border:1px solid var(--line); border-radius:28px; padding:18px; box-shadow:var(--shadow); text-align:center; }
.screenshot-card img { border-radius:24px; margin:0 auto 14px; width:100%; max-height:720px; object-fit:contain; }
.screenshot-card h3 { margin:0 0 6px; font-size:1.1rem; }
.screenshot-card p { margin:0; color:var(--muted); }
.page-hero { padding:64px 0 34px; background: linear-gradient(180deg,#fff 0%,#fff7f7 100%); }
.page-hero .lead { margin-bottom:0; }
.steps { display:grid; gap:20px; }
.step { display:grid; grid-template-columns:72px 1fr 220px; gap:20px; align-items:center; background:#fff; border:1px solid var(--line); border-radius:24px; padding:22px; box-shadow:var(--shadow); }
.step-number { width:48px; height:48px; border-radius:999px; display:grid; place-items:center; font-weight:800; color:#fff; background:var(--red); margin-inline:auto; }
.step h3 { margin:0 0 8px; font-size:1.45rem; letter-spacing:-.03em; }
.step p { margin:0; color:var(--muted); }
.step img { border-radius:18px; box-shadow:var(--shadow); width:100%; max-height:360px; object-fit:contain; }
.text-card { background:#fff; border:1px solid var(--line); border-radius:24px; padding:28px; box-shadow:var(--shadow); }
.text-card h2, .text-card h3 { text-align:left; margin-top:0; }
.text-card h3 { font-size:1.2rem; margin-bottom:8px; }
.text-card p, .text-card li { color:#344054; }
.text-card a { color: var(--red); font-weight: 700; }
.prose { max-width: 920px; margin: 0 auto; }
.about-company { margin:18px 0 24px; }
.about-company-logo { max-width:240px; height:auto; }
.note-box { margin-top: 32px; background: #fff7f7; border: 1px solid rgba(227,6,19,.16); }
.contact-box { max-width:760px; margin:0 auto; text-align:center; }
.contact-email { display:inline-flex; margin-top:14px; padding:16px 22px; border-radius:18px; background:rgba(227,6,19,.08); color:var(--red); font-size:1.2rem; font-weight:800; border:1px solid rgba(227,6,19,.14); }
.split-section { display:grid; grid-template-columns:1fr 360px; gap:48px; align-items:center; }
.feature-shot { border-radius:30px; box-shadow:var(--shadow); border:1px solid var(--line); }
.status-list { display:grid; gap:16px; max-width:620px; }
.status-list div { background:#fff; border:1px solid var(--line); border-radius:18px; padding:18px; box-shadow:var(--shadow); }
.status-list p { margin:4px 0 0; color:var(--muted); }
.dot { width:14px; height:14px; border-radius:50%; display:inline-block; margin-right:10px; }
.dot.red { background:#ff3542; } .dot.amber { background:var(--amber); } .dot.green { background:var(--green); }
.site-footer { border-top:1px solid var(--line); background:#fff; padding:28px 0 50px; }
.footer-inner { display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; }
.footer-nav { display:flex; flex-wrap:wrap; gap:18px; color:var(--muted); font-weight:600; justify-content:center; }
.footer-copy { color:var(--muted); font-size:.95rem; }
.cookie-banner { position:fixed; left:1rem; right:1rem; bottom:1rem; z-index:70; max-width:780px; margin:auto; background:rgba(17,24,39,.96); color:#fff; border-radius:24px; padding:1rem 1.1rem; box-shadow:0 22px 60px rgba(0,0,0,.28); display:none; }
.cookie-banner.show { display:block; }
.cookie-banner p { color:rgba(255,255,255,.9); margin-top:.5rem; }
.cookie-actions { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1rem; }
.cookie-actions button, .cookie-actions a { min-height:46px; padding:0 1rem; border-radius:14px; border:none; font-weight:800; cursor:pointer; }
.cookie-actions .accept { background:var(--red); color:#fff; }
.cookie-actions .decline { background:#fff; color:#111827; }
.cookie-actions .learn { display:inline-flex; align-items:center; background:transparent; color:#fff; border:1px solid rgba(255,255,255,.28); }
@media (max-width: 980px) { .hero-grid, .card-grid, .screenshot-grid, .split-section { grid-template-columns:1fr; } .step { grid-template-columns:1fr; } .phone-stack { flex-wrap:wrap; } .phone-stack img:nth-child(2) { transform:none; } .nav { gap:16px; font-size:.95rem; } }
@media (max-width: 720px) { .header-inner { flex-direction:column; justify-content:center; padding:12px 0; } .brand { font-size:1.45rem; } .nav { flex-wrap:wrap; justify-content:center; } .hero,.section,.page-hero { padding-top:44px; padding-bottom:44px; } .feature-list { grid-template-columns:1fr; } .cta-row { flex-direction:column; } .button { width:100%; } .cookie-actions button,.cookie-actions a { width:100%; justify-content:center; } }
