/* WARP — unique theme */
:root {
  --primary: #dc2626;
  --accent: #facc15;
  --bg: #fafafa;
  --bg-alt: #f5f5f5;
  --text: #0a0a0a;
  --muted: #525252;
  --card: #ffffff;
  --border: #e5e5e5;
  --radius: 0px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.2;
  color: var(--text);
}
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.header { background: #0a0a0a; position: sticky; top:0; z-index:100; border-bottom: 3px solid var(--primary); }
.nav { display:flex; align-items:center; justify-content:space-between; padding: 18px 0; }
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 28px; font-weight: 400; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display:flex; gap:32px; align-items:center; list-style:none; }
.nav-links a { color: #fafafa; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.nav-cta { background: var(--primary); color: #000000 !important; font-weight: 800; padding: 12px 24px; border-radius: var(--radius); }

.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:8px; }
.burger span { width:26px; height:3px; background: var(--text); transition: .2s; }
.mobile-nav { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:#fff; z-index:200; padding:80px 30px; }
.mobile-nav.active { display:block; }
.mobile-nav a { display:block; padding: 14px 0; font-size:18px; font-weight:600; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-close { position:absolute; top:24px; right:24px; background:none; border:none; font-size:32px; cursor:pointer; color: var(--text); }
@media (max-width: 768px) {
  .nav-links { display:none; }
  .burger { display:flex; }
}

.btn { display:inline-flex; align-items:center; gap:10px; padding: 16px 32px; border-radius: 0; font-weight:700; text-transform: uppercase; letter-spacing: 1px; cursor:pointer; transition:.2s; border:none; font-family: inherit; font-size:14px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--text); }
.btn-secondary { background: var(--accent); color: var(--text); }
.btn-secondary:hover { background: var(--text); color: #fff; }

.hero { position: relative; padding: 130px 0 140px; background: var(--text); color: #fff; overflow: hidden; }
.hero::after { content:''; position:absolute; bottom:-40px; left:0; right:0; height: 120px; background: var(--bg); transform: skewY(-3deg); }
.hero-grid { position: relative; z-index: 1; max-width: 800px; text-align: center; margin: 0 auto; }
.hero h1 { font-size: clamp(48px, 7vw, 80px); color: #fff; margin-bottom: 24px; line-height: 1.1; letter-spacing: 2px; }
.hero h1 span { color: var(--primary); }
.hero-desc { font-size: 19px; color: #d4d4d4; margin-bottom: 32px; max-width: 600px; margin-left:auto; margin-right:auto; }
.hero-badge { display:inline-block; background: var(--primary); color: #fff; padding: 8px 18px; border-radius: 0; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 22px; }
.hero-actions { display:flex; gap: 14px; flex-wrap:wrap; justify-content: center; margin-bottom: 30px; }
.trust-row { display:flex; gap: 24px; flex-wrap:wrap; justify-content: center; }
.trust-row span { color: var(--accent); font-size: 14px; font-weight: 600; }

section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.section-title p { color: var(--muted); font-size: 17px; max-width: 600px; margin: 0 auto; }

.features { background: #111; color: #f5f5f5; }
.features h2, .features h3 { color: #fff; }
.features p { color: #d4d4d4; }
.download { background: #1a1a1a; color: #fff; }
.download h2 { color: #fff; }
.download p { color: #d4d4d4; }
.faq-sec { background: #0a0a0a; color: #fff; }
.faq-sec h2 { color: #fff; }
.faq-item { background: #1a1a1a; border-color: #333; color: #f5f5f5; }
.faq-q { color: #fff; }
.faq-a { color: #d4d4d4; }

.features-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card { padding: 30px; border-radius: var(--radius); background: var(--card); transition: .25s; }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--bg-alt); display:flex; align-items:center; justify-content:center; font-size: 28px; margin-bottom: 18px; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

.feature-card { background: var(--primary); color: #fff; }
.feature-card:nth-child(2n) { background: var(--accent); color: var(--text); }
.feature-card h3 { color: inherit; }
.feature-card p { color: inherit; opacity: .9; }
.feature-card .feature-icon { background: rgba(255,255,255,.2); }

.stats { background: var(--primary); color: #fff; padding: 30px 0; }
.stats-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align:center; }
.stat-num { font-size: 36px; font-weight: 800; font-family: 'Bebas Neue', sans-serif; }
.stat-lbl { font-size: 14px; opacity: .9; margin-top: 4px; }

.platforms-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.platform-card { background: var(--card); padding: 24px; border-radius: var(--radius); text-align:center; border: 1px solid var(--border); cursor:pointer; transition: .2s; display:block; color: var(--text); }
.platform-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.platform-icon { font-size: 36px; margin-bottom: 10px; }
.platform-name { font-weight: 700; }

.cta-banner { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; padding: 60px 0; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.cta-banner p { font-size: 18px; opacity: .95; margin-bottom: 28px; max-width: 560px; margin-left:auto; margin-right:auto; }
.cta-banner .btn-primary { background: #fff; color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--text); color: #fff; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #1a1a1a; border: 1px solid #333; border-radius: var(--radius); margin-bottom: 14px; padding: 22px 26px; }
.faq-q { font-weight: 700; color: #fff; margin-bottom: 10px; }
.faq-a { color: #c4c4c4; font-size: 15px; }

.footer { background: #0a0a0a; color: #d4d4d4; padding: 50px 0 24px; }
.footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer h4 { color:#fff; margin-bottom: 14px; font-size: 16px; }
.footer ul { list-style:none; }
.footer li { padding: 6px 0; }
.footer a { color: #a3a3a3; font-size: 14px; }
.footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #1f1f1f; padding-top: 22px; text-align: center; color: #737373; font-size: 13px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.instr-hero { padding: 80px 0; background: var(--bg-alt); text-align:center; }
.instr-hero h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
.instr-hero p { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto; }
.steps { padding: 60px 0; }
.step { background: var(--card); padding: 36px; border-radius: var(--radius); margin-bottom: 26px; display:grid; grid-template-columns: 80px 1fr; gap: 26px; align-items: start; border: 1px solid var(--border); }
.step-num { font-size: 48px; font-weight: 800; color: var(--primary); font-family: 'Bebas Neue', sans-serif; line-height: 1; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--muted); margin-bottom: 14px; }
.after-pay { background: var(--bg); padding: 60px 0; }
.after-pay h2 { text-align:center; margin-bottom: 24px; }
.after-pay > .container > p { text-align:center; color: var(--muted); max-width:700px; margin: 0 auto 40px; font-size: 17px; }
@media (max-width: 600px) { .step { grid-template-columns: 1fr; } .step-num { font-size: 38px; } }

.reveal { opacity: 0; transform: translateX(-30px); transition: .6s; }
.reveal.visible { opacity: 1; transform: translateX(0); }
