:root {
  --bg: #FFFFFF;
  --bg-alt: #F1F5F9;
  --bg-deep: #0F172A;
  --primary: #0B6FE8;
  --primary-dark: #0950AA;
  --primary-light: #3B82F6;
  --accent: #10B981;
  --text: #0F172A;
  --text-muted: #64748B;
  --card-bg: #FFFFFF;
  --border: #E2E8F0;
  --radius: 10px;
  --radius-lg: 18px;
  --max: 1180px;
  --shadow: 0 14px 36px -16px rgba(11,111,232,0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Manrope', sans-serif; font-weight: 700; line-height: 1.2; letter-spacing: -0.012em; margin: 0 0 .55em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; position: relative; }
section.alt { background: var(--bg-alt); }

.accent { color: var(--primary); }
.accent-green { color: var(--accent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: var(--primary); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { font-size: 1rem; }

/* HEADER C — sidebar... no, A sticky white shadow */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--max); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 1.18rem; color: var(--text);
}
.brand img { width: 38px; height: 38px; }
.brand span em { color: var(--accent); font-style: normal; }

.nav-links { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--text-muted); font-weight: 500; font-size: .95rem;
  padding: 10px 16px; border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--primary); background: var(--bg-alt); }
.nav-links a.nav-cta {
  color: #000000 !important; font-weight: 800;
  background: var(--accent); padding: 11px 22px; margin-left: 12px;
  box-shadow: 0 8px 22px -8px rgba(16,185,129,0.5);
}
.nav-links a.nav-cta:hover { background: #0E9F71; }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); }

.mobile-menu { display: none; background: var(--bg); border-bottom: 1px solid var(--border); padding: 14px 24px; flex-direction: column; gap: 4px; }
.mobile-menu a { padding: 12px 8px; color: var(--text); border-radius: var(--radius); }
.mobile-menu a.nav-cta { background: var(--accent); color: #000; font-weight: 800; text-align: center; margin-top: 8px; }
.mobile-menu.is-open { display: flex; }

/* HERO E — minimal big typography */
.hero {
  padding: 100px 0 110px; background: var(--bg); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 60px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: var(--primary-light); opacity: .15; filter: blur(80px);
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--accent); opacity: .12; filter: blur(60px);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 880px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-size: .85rem; font-weight: 600;
  padding: 8px 18px; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 999px; color: var(--text); margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }

.hero h1 { color: var(--text); margin-bottom: 22px; }
.hero-desc { font-size: 1.12rem; margin: 0 auto 32px; max-width: 700px; color: var(--text-muted); }
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; font-size: .92rem; color: var(--text-muted); padding-top: 28px; border-top: 1px solid var(--border); }
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.trust-item .check { width: 22px; height: 22px; border-radius: 50%; background: var(--primary); color: #fff; font-size: .75rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }

/* Buttons D — with arrow */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .96rem; padding: 14px 26px; border-radius: var(--radius); cursor: pointer; border: 0; transition: transform .2s, background .2s, box-shadow .2s; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { color: #fff; background: var(--primary); box-shadow: 0 12px 28px -10px rgba(11,111,232,0.45); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-green { color: #000; background: var(--accent); }
.btn-green:hover { background: #0E9F71; transform: translateY(-2px); }
.btn-ghost { color: var(--text); background: transparent; border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-alt); }
.btn-block { width: 100%; }

/* FEATURES — Cards F large icon top */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; text-align: left; transition: transform .25s, border-color .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--bg-alt);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary);
  font-family: 'Manrope', sans-serif; font-weight: 800; margin-bottom: 18px;
}
.feature-card:nth-child(2) .feature-icon { background: rgba(16,185,129,0.12); color: var(--accent); }
.feature-card:nth-child(4) .feature-icon { background: rgba(16,185,129,0.12); color: var(--accent); }
.feature-card h3 { color: var(--text); margin-bottom: 8px; font-size: 1.12rem; }
.feature-card p { font-size: .94rem; margin: 0; }

/* PLATFORMS */
.platforms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.platform-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; display: block; cursor: pointer; transition: transform .25s, border-color .25s; }
.platform-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.platform-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--bg-alt); display: inline-flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 14px; }
.platform-card h3 { color: var(--text); font-size: 1.02rem; margin-bottom: 4px; }
.platform-card p { font-size: .85rem; margin: 0; color: var(--text-muted); }

/* CTA — flat on dark */
.cta-banner { background: var(--bg-deep); border-radius: var(--radius-lg); padding: 56px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -80px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: var(--primary); opacity: .35; filter: blur(70px); }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto 24px; font-size: 1rem; }

/* FAQ A — accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.is-open { border-color: var(--primary); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 24px; font-family: 'Manrope', sans-serif; font-weight: 600; color: var(--text); font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ic { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-alt); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: transform .25s, background .25s, color .25s; flex-shrink: 0; }
.faq-item.is-open .faq-q .ic { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: .95rem; color: var(--text-muted); }

/* FOOTER C — 3 cols + CTA */
.site-footer { background: var(--bg-deep); color: rgba(255,255,255,0.78); padding: 56px 0 28px; }
.footer-cta { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin-bottom: 44px; }
.footer-cta h3 { margin: 0; font-size: 1.2rem; color: #fff; font-family: 'Manrope', sans-serif; }
.footer-cta p { margin: 4px 0 0; color: rgba(255,255,255,0.65); font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; margin-bottom: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'Manrope', sans-serif; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-about { color: rgba(255,255,255,0.55); font-size: .92rem; max-width: 360px; margin: 0; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .84rem; color: rgba(255,255,255,0.5); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }

.steps-wrap { display: flex; flex-direction: column; gap: 22px; max-width: 920px; margin: 0 auto; }
.step-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: grid; grid-template-columns: auto 1fr; gap: 26px; transition: border-color .25s; }
.step-card:hover { border-color: var(--primary); }
.step-num { font-family: 'Manrope', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; width: 60px; }
.step-card:nth-child(2) .step-num { color: var(--accent); }
.step-card h2 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: .96rem; }

.after-pay { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 38px 32px; max-width: 880px; margin: 0 auto; }
.after-pay h2 { margin-bottom: 12px; color: var(--text); }
.after-pay p { font-size: 1rem; }

@media (max-width: 980px) {
  section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .step-card { grid-template-columns: 1fr; padding: 26px; }
}
@media (max-width: 600px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  section { padding: 52px 0; }
}
