@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-header: #000000;
  --bg-footer: #000000;
  --bg-card: #f8f9fa;
  --bg-surf: #eedd82;
  --bg-surf2: #e9ecef;
  --accent: #ffcc00;
  --accent2: #ff9900;
  --accent-red: #dc3545;
  --neon: #ffd700;
  --success: #28a745;
  --text: #000000;
  --text-light: #ffffff;
  --text2: #6c757d;
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.logo-img { height: 40px; width: auto; }
.logo-link { display: inline-flex; align-items: center; }
.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active { background: var(--accent2); color: #000; }
.main-nav a.nav-cta {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-left: 6px;
  white-space: nowrap;
}
.main-nav a.nav-cta:hover { transform: translateY(-1px); color: #000; }
.nav-cta-desktop {
  padding: 9px 20px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta-desktop:hover { transform: translateY(-1px); color: #000; }
.main-nav a.nav-cta-mobile { display: none; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--accent); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, background .2s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  box-shadow: 0 6px 20px rgba(255,153,0,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,153,0,.5); text-decoration: none; }
.btn-ghost {
  background: #000; color: var(--accent); border: 2px solid var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: #000; text-decoration: none; }
.btn-lg { font-size: 18px; padding: 16px 40px; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 80% 20%, rgba(255,204,0,.18), transparent 55%), #000;
  color: var(--text-light);
  padding: 64px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1; font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 .hl { color: var(--accent); }
.hero p { color: #d7d7d7; font-size: 18px; margin-bottom: 28px; }
.hero-img img { border-radius: 18px; box-shadow: 0 18px 50px rgba(255,153,0,.25); border: 1px solid rgba(255,204,0,.3); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-badges div { font-family: var(--font-display); }
.hero-badges b { display: block; color: var(--accent); font-size: 24px; }
.hero-badges span { color: #aaa; font-size: 13px; }

/* ---------- Sections ---------- */
section.block { padding: 52px 0; }
.block-alt { background: var(--bg-card); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}
h2::after { content: ''; display: block; width: 56px; height: 4px; background: var(--accent); border-radius: 3px; margin-top: 10px; }
h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 24px 0 10px; }
p { margin-bottom: 16px; }
ul, ol { margin: 0 0 18px 22px; }
li { margin-bottom: 8px; }

.lead { font-size: 19px; color: #333; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 26px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 14px;
  background: var(--bg-surf); color: #000;
}
.card h3 { margin-top: 0; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; margin: 22px 0; border-radius: 14px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: #fff; min-width: 460px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: #000; color: var(--accent); font-family: var(--font-display); font-size: 14px; letter-spacing: .3px; }
tbody tr:nth-child(even) { background: var(--bg-card); }
tbody tr:hover { background: #fff7d6; }

/* ---------- Callouts ---------- */
.callout {
  border-left: 5px solid var(--accent2);
  background: #fffbe8;
  padding: 18px 22px; border-radius: 0 12px 12px 0; margin: 22px 0;
}
.callout.warn { border-color: var(--accent-red); background: #fdecee; }
.callout.ok { border-color: var(--success); background: #eaf7ee; }

.bonus-box {
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff; border-radius: 18px; padding: 34px; text-align: center;
  border: 1px solid rgba(255,204,0,.4); margin: 28px 0;
  box-shadow: 0 0 0 4px rgba(255,215,0,.08);
}
.bonus-box .amt { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--neon); }
.bonus-box p { color: #ccc; }

.page-hero { background: #000; color: #fff; padding: 48px 0; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; }
.page-hero h1 .hl { color: var(--accent); }
.page-hero p { color: #ccc; margin-top: 10px; max-width: 720px; }
.breadcrumb { font-size: 13px; color: #999; margin-bottom: 14px; }
.breadcrumb a { color: var(--accent); }
.feat-img { border-radius: 16px; box-shadow: var(--shadow); margin: 6px 0 26px; }

/* ---------- FAQ ---------- */
.faq { margin-top: 28px; }
.faq details {
  border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; background: #fff; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-family: var(--font-display);
  font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent2); font-size: 24px; font-weight: 700; }
.faq details[open] summary::after { content: '–'; }
.faq details[open] summary { background: var(--bg-card); }
.faq .ans { padding: 0 22px 18px; color: #444; }

.cta-final { text-align: center; padding: 56px 0; background: radial-gradient(circle at 50% 0%, rgba(255,204,0,.15), transparent 60%), #000; color: #fff; }
.cta-final h2 { display: inline-block; }
.cta-final h2::after { margin: 10px auto 0; }
.cta-final p { color: #ccc; max-width: 600px; margin: 0 auto 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-footer); color: #cfcfcf; padding: 48px 0 26px; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h4 { font-family: var(--font-display); color: var(--accent); margin-bottom: 14px; font-size: 16px; }
.site-footer a { color: #cfcfcf; font-size: 14px; }
.site-footer a:hover { color: var(--accent); }
.footer-links { list-style: none; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-logo { height: 40px; margin-bottom: 14px; }
.foot-disc { font-size: 13px; color: #888; }
.foot-disc .badges { display: flex; gap: 10px; margin: 12px 0; }
.foot-disc .badges span { border: 1px solid #444; border-radius: 6px; padding: 4px 10px; font-size: 12px; }
.foot-bottom { border-top: 1px solid #333; margin-top: 32px; padding-top: 20px; font-size: 13px; color: #888; text-align: center; }

@media (max-width: 1024px) {
  .main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #000; flex-direction: column; padding: 12px 20px; gap: 2px;
    border-bottom: 2px solid var(--accent2);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .main-nav a.nav-cta-mobile { display: block; margin: 6px 0 0; text-align: center; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
}
