:root {
  --honey: #f5b301;
  --honey-dark: #e0a200;
  --ink: #1a1a2e;
  --ink-soft: #3d3d55;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #fff9e9;
  --card: #ffffff;
  --border: #ece7d8;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
  --shadow-sm: 0 4px 14px rgba(26, 26, 46, 0.06);
  --maxw: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { color: var(--ink-soft); }
a { color: var(--honey-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 780px; }
.center { text-align: center; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { font-size: 1.5rem; }
.main-nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.main-nav a { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  font-weight: 700;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.85rem;
}
.lang-switch:hover { text-decoration: none; border-color: var(--honey); color: var(--honey-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--honey); color: var(--ink); box-shadow: 0 8px 20px rgba(245, 179, 1, 0.35); }
.btn-primary:hover { background: var(--honey-dark); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-ghost:hover { border-color: var(--honey); color: var(--honey-dark); }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 80% -10%, #fff2cc 0%, transparent 60%), var(--bg);
  padding: 64px 0 72px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--honey-dark);
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.lead { font-size: 1.15rem; max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 20px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: 0.95rem; font-weight: 600; }

.hero-card {
  position: relative;
  background: linear-gradient(160deg, #fff 0%, #fff9e9 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.bonus-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--honey);
  color: var(--ink);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.bonus-amount { font-size: 2.4rem; font-weight: 800; }
.bonus-label { font-weight: 600; font-size: 0.9rem; }
.earnings-preview { display: grid; gap: 10px; }
.earnings-row {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--ink-soft);
}
.earnings-row.total { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { text-align: center; }
.section-lead { text-align: center; max-width: 52ch; margin: 12px auto 40px; font-size: 1.1rem; color: var(--muted); }

/* Grid + cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0 auto 40px; max-width: 760px; display: grid; gap: 18px; }
.step { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.step-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--honey);
  color: var(--ink);
  font-weight: 800;
  border-radius: 50%;
}
.step h3 { margin: 0 0 4px; }
.step p { margin: 0; }

/* Price cards */
.price-card { text-align: center; position: relative; }
.price-card.featured { border-color: var(--honey); box-shadow: 0 12px 30px rgba(245, 179, 1, 0.2); }
.price { font-size: 2.2rem; font-weight: 800; color: var(--ink); margin: 8px 0 16px; }
.price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; text-align: left; }
.feature-list li { padding-left: 26px; position: relative; color: var(--ink-soft); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--honey-dark); font-weight: 800; }
.tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.disclaimer { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 28px; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 20px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--honey-dark); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 16px; }

/* CTA final */
.cta-final { background: linear-gradient(160deg, #fff9e9, #fff2cc); }
.fine-print { color: var(--muted); font-size: 0.9rem; margin-top: 16px; }

/* Footer */
.site-footer { background: var(--ink); color: #cfd0dc; padding: 48px 0; }
.footer-inner { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; text-align: center; }
.footer-brand { font-weight: 800; color: #fff; font-size: 1.1rem; margin: 0; }
.footer-note { font-size: 0.85rem; color: #9a9bb0; margin: 0; }
.footer-copy { font-size: 0.85rem; margin: 0; }
.site-footer a { color: var(--honey); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; max-width: 420px; }
  .grid-3 { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

