:root {
  --bg: #FDF8F3;
  --bg-alt: #F5EDE2;
  --bg-warm: #FFF1E6;
  --primary: #EC5800;
  --primary-dark: #B83F00;
  --primary-light: #FF7A2D;
  --accent: #2D1810;
  --accent-soft: #6B4226;
  --text: #2D1810;
  --text-muted: #8B6C5A;
  --card-bg: #FFFFFF;
  --border: #E8D9C8;
  --border-strong: #D9C2A8;
  --radius: 4px;
  --radius-lg: 16px;
  --max: 1180px;
}

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

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

h1,h2,h3,h4 { font-family: 'Newsreader', 'Times New Roman', serif; font-weight: 500; line-height: 1.18; letter-spacing: -0.005em; margin: 0 0 .55em; font-style: italic; }
h1 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.18rem; font-weight: 500; font-style: normal; font-family: 'DM Sans', sans-serif; }

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: 92px 0; position: relative; }
section.alt { background: var(--bg-alt); }
section.warm { background: var(--bg-warm); }

.accent { color: var(--primary); font-style: italic; }
.accent-dark { color: var(--accent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif; font-size: .75rem;
  letter-spacing: .25em; text-transform: uppercase; font-weight: 600;
  color: var(--primary); margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--primary); }

.section-head { text-align: center; max-width: 740px; margin: 0 auto 52px; }
.section-head p { font-size: 1.02rem; }

/* HEADER B — transparent → solid */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253,248,243,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: var(--max); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Newsreader', serif; font-style: italic;
  font-weight: 500; font-size: 1.4rem; color: var(--text);
}
.brand img { width: 36px; height: 36px; }
.brand span em { color: var(--primary); font-style: italic; }

.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: .94rem;
  padding: 10px 16px; transition: color .2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: 4px; left: 50%; width: 0; height: 1px; background: var(--primary); transition: width .25s, left .25s; }
.nav-links a:not(.nav-cta):hover { color: var(--primary); }
.nav-links a:not(.nav-cta):hover::after { width: 70%; left: 15%; }
.nav-links a.nav-cta {
  color: #000000 !important; font-weight: 800;
  background: #FBBF24; padding: 11px 22px; margin-left: 12px;
  border-radius: var(--radius);
}
.nav-links a.nav-cta:hover { background: #F59E0B; }

.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); }
.mobile-menu a.nav-cta { background: #FBBF24; color: #000; font-weight: 800; text-align: center; margin-top: 8px; border-radius: var(--radius); }
.mobile-menu.is-open { display: flex; }

/* HERO C — split-screen */
.hero {
  padding: 100px 0 110px; position: relative; overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; top: 80px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: var(--primary-light); opacity: .12; filter: blur(80px);
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-text { text-align: left; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 600;
  padding: 8px 18px; background: var(--bg-warm);
  border: 1px solid var(--border); color: var(--text);
  margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; color: var(--primary); }

.hero h1 { color: var(--text); margin-bottom: 22px; }
.hero-desc { font-size: 1.1rem; margin: 0 0 32px; max-width: 520px; line-height: 1.65; }
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; font-size: .9rem; color: var(--text-muted); }
.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; }

/* Hero visual side — illustration with circles */
.hero-visual {
  position: relative;
  height: 420px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hv-circle { position: absolute; border-radius: 50%; }
.hv-c1 { top: 20%; left: 15%; width: 220px; height: 220px; background: var(--primary); opacity: .15; }
.hv-c2 { bottom: 15%; right: 10%; width: 180px; height: 180px; background: #FBBF24; opacity: .25; }
.hv-c3 { top: 50%; left: 55%; width: 100px; height: 100px; background: var(--primary-light); opacity: .35; }
.hv-text {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  font-family: 'Newsreader', serif; font-style: italic;
  font-size: 1.4rem; color: var(--text); line-height: 1.3;
}
.hv-text small {
  display: block; font-family: 'DM Sans', sans-serif; font-style: normal;
  font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary); margin-top: 12px; font-weight: 600;
}

/* Buttons C — sharp corners */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .92rem; padding: 14px 28px; cursor: pointer; border: 0; border-radius: var(--radius); transition: transform .2s, background .2s; letter-spacing: .02em; }
.btn-primary { color: #fff; background: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-yellow { color: var(--text); background: #FBBF24; }
.btn-yellow:hover { background: #F59E0B; transform: translateY(-2px); }
.btn-ghost { color: var(--text); background: transparent; border: 1.5px solid var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-block { width: 100%; }

/* FEATURES — Cards C dashed border */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--card-bg);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: border-color .25s, transform .25s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-3px); border-style: solid; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-warm); border: 1.5px dashed var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary);
  margin-bottom: 18px;
}
.feature-card:hover .feature-icon { border-style: solid; }
.feature-card h3 { color: var(--text); margin-bottom: 8px; font-size: 1.12rem; font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 700; }
.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: 50%; background: var(--bg-warm); display: inline-flex; align-items: center; justify-content: center; font-family: 'Newsreader', serif; font-style: italic; font-size: 1.4rem; font-weight: 500; color: var(--primary); margin-bottom: 14px; }
.platform-card h3 { color: var(--text); font-size: 1.02rem; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 600; }
.platform-card p { font-size: .85rem; margin: 0; color: var(--text-muted); }

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

/* FAQ D — cards all open */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1080px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; transition: border-color .25s; }
.faq-item:hover { border-color: var(--primary); }
.faq-item h3 { font-family: 'Newsreader', serif; font-style: italic; font-size: 1.18rem; color: var(--text); margin-bottom: 10px; font-weight: 400; display: flex; align-items: baseline; gap: 14px; }
.faq-item h3::before { content: counter(faq); counter-increment: faq; font-family: 'DM Sans', sans-serif; font-style: normal; font-size: .82rem; font-weight: 700; letter-spacing: .15em; color: var(--primary); min-width: 24px; }
.faq-grid { counter-reset: faq; }
.faq-item p { margin: 0 0 0 38px; font-size: .94rem; color: var(--text-muted); }

/* FOOTER B — single row */
.site-footer { background: var(--text); color: rgba(253,248,243,0.78); padding: 48px 0; border-top: 4px solid var(--primary); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--bg); font-size: 1.3rem; }
.footer-brand img { width: 36px; height: 36px; }
.footer-nav { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px 22px; flex-wrap: wrap; }
.footer-nav a { color: rgba(253,248,243,0.7); font-size: .92rem; transition: color .2s; }
.footer-nav a:hover { color: var(--primary-light); }
.footer-copy { font-size: .84rem; color: rgba(253,248,243,0.5); font-family: 'Newsreader', serif; font-style: italic; }

.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: 36px; display: grid; grid-template-columns: auto 1fr; gap: 28px; transition: border-color .25s; }
.step-card:hover { border-color: var(--primary); }
.step-num { font-family: 'Newsreader', serif; font-style: italic; font-size: 3.2rem; font-weight: 400; color: var(--primary); line-height: 1; width: 70px; }
.step-card h2 { font-size: 1.5rem; margin-bottom: 12px; color: var(--text); }
.step-card p { font-size: .98rem; }

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

@media (max-width: 980px) {
  section { padding: 68px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 280px; order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .step-card { grid-template-columns: 1fr; padding: 26px; }
  .footer-row { justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  section { padding: 56px 0; }
}
