:root {
  --bg: #0b1020;
  --bg-soft: #121936;
  --surface: #f7f3e8;
  --surface-2: #fffaf0;
  --ink: #151724;
  --muted: #666b7d;
  --line: rgba(21, 23, 36, .12);
  --gold: #d8a84d;
  --gold-2: #f4d68a;
  --violet: #6e39ff;
  --violet-deep: #2a1557;
  --emerald: #1bd19a;
  --shadow: 0 24px 80px rgba(9, 10, 24, .22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(110, 57, 255, .16), transparent 28rem),
    radial-gradient(circle at 84% 10%, rgba(216, 168, 77, .14), transparent 26rem),
    linear-gradient(180deg, #fbf7ed 0%, #f4efe4 58%, #ebe5da 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.72; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 36px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 50; padding: 10px 14px; background: var(--surface); border-radius: 10px; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(11, 16, 32, .76);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; color: #fff; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; color: #0b1020; background: linear-gradient(135deg, var(--gold-2), var(--emerald)); box-shadow: 0 12px 36px rgba(27,209,154,.25); }
.top-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; color: rgba(255,255,255,.76); }
.top-nav a { transition: color .2s ease; }
.top-nav a:hover, .top-nav a:focus { color: #fff; }
.header-cta { padding: 11px 16px; border: 1px solid rgba(244,214,138,.35); border-radius: 999px; color: #fff; font-weight: 700; background: rgba(255,255,255,.06); transition: transform .2s ease, background .2s ease; }
.header-cta:hover, .header-cta:focus { transform: translateY(-1px); background: rgba(255,255,255,.12); }

.hero { position: relative; padding: 72px 0 54px; background: var(--bg); color: #fff; isolation: isolate; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(120deg, rgba(110,57,255,.28), transparent 36%),
  radial-gradient(circle at 78% 20%, rgba(27,209,154,.28), transparent 24rem),
  radial-gradient(circle at 55% 64%, rgba(216,168,77,.18), transparent 18rem); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000, transparent 88%); }
.hero-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 46px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
.eyebrow.dark { color: var(--violet); }
h1, h2, h3 { letter-spacing: -.04em; line-height: 1.06; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); max-width: 820px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 21px; }
.hero-lead { max-width: 650px; color: rgba(255,255,255,.78); font-size: 18px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; min-height: 52px; padding: 0 22px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover, .btn:focus { transform: translateY(-2px); }
.btn.primary { color: #121936; background: linear-gradient(135deg, var(--gold-2), var(--emerald)); box-shadow: 0 16px 48px rgba(27, 209, 154, .24); }
.btn.ghost { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); }
.btn.secondary { background: var(--ink); color: #fff; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.84); font-size: 13px; border: 1px solid rgba(255,255,255,.1); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: var(--radius-xl); object-fit: contain; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.16); }
.rating-card { position: absolute; z-index: 2; left: -24px; bottom: 34px; max-width: 250px; padding: 18px; border-radius: 22px; background: rgba(255, 250, 240, .9); color: var(--ink); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.rating-card strong, .rating-card small { display: block; }
.rating-card small { color: var(--muted); line-height: 1.5; margin-top: 6px; }
.rating-kicker { display: inline-block; font-size: 12px; color: var(--violet); font-weight: 900; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .12em; }

.quick-strip { margin-top: -24px; position: relative; z-index: 3; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 16px; border-radius: 24px; background: rgba(255,250,240,.82); backdrop-filter: blur(16px); border: 1px solid rgba(21,23,36,.1); box-shadow: 0 18px 56px rgba(21,23,36,.12); }
.strip-grid div { padding: 14px 16px; border-radius: 18px; background: #fff; }
.strip-grid strong, .strip-grid span { display: block; }
.strip-grid strong { font-size: 13px; color: var(--violet); }
.strip-grid span { margin-top: 5px; color: var(--muted); font-size: 14px; }

.content-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 34px; padding: 72px 0; align-items: start; }
.sidebar { position: sticky; top: 102px; display: grid; gap: 16px; }
.side-card { border-radius: 24px; padding: 20px; background: rgba(255,255,255,.78); border: 1px solid var(--line); box-shadow: 0 16px 46px rgba(21,23,36,.08); }
.side-title { margin: 0 0 14px; font-weight: 900; }
.toc { display: grid; gap: 8px; }
.toc a { padding: 10px 12px; border-radius: 14px; color: var(--muted); font-weight: 700; font-size: 14px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.toc a:hover, .toc a:focus, .toc a.is-active { background: rgba(110,57,255,.1); color: var(--violet-deep); transform: translateX(2px); }
.cta-mini { background: linear-gradient(145deg, var(--violet-deep), #14152c); color: #fff; }
.cta-mini p { color: rgba(255,255,255,.74); margin: 8px 0 14px; }
.cta-mini a { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: var(--gold-2); color: var(--ink); font-weight: 900; font-size: 14px; }

.article-flow { display: grid; gap: 28px; }
.section-block { border-radius: var(--radius-xl); background: rgba(255,255,255,.82); border: 1px solid var(--line); padding: clamp(26px, 4vw, 44px); box-shadow: 0 18px 52px rgba(21,23,36,.08); }
.intro-panel { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: center; }
.intro-panel p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }
.note-card { padding: 22px; border-radius: 24px; background: linear-gradient(145deg, #fff8df, #f7edff); border: 1px solid rgba(216,168,77,.28); }
.note-label { display: inline-flex; margin-bottom: 10px; color: var(--violet); font-weight: 900; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card { padding: 26px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 46px rgba(21,23,36,.06); }
.benefit-card.highlight { background: linear-gradient(145deg, #151724, #2a1557); color: #fff; }
.benefit-card.highlight p { color: rgba(255,255,255,.72); }
.benefit-card span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 20px; border-radius: 14px; background: rgba(110,57,255,.1); color: var(--violet); font-weight: 900; }
.benefit-card.highlight span { background: rgba(244,214,138,.14); color: var(--gold-2); }
.benefit-card p { color: var(--muted); margin-bottom: 0; }

.split-feature, .image-cta { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.image-cta { grid-template-columns: 1fr .92fr; background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(248,238,255,.86)); }
.feature-image { border-radius: 28px; overflow: hidden; }
.feature-image img { width: 100%; object-fit: contain; border-radius: 28px; }
.framed { padding: 10px; background: linear-gradient(135deg, var(--gold-2), var(--violet)); box-shadow: var(--shadow); }
.floating-frame { padding: 10px; background: #121936; box-shadow: var(--shadow); transform: rotate(1.6deg); }
.feature-copy p { color: var(--muted); }
.check-list { padding: 0; margin: 22px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li { padding: 13px 14px 13px 42px; border-radius: 16px; background: rgba(110,57,255,.07); position: relative; color: var(--ink); font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 14px; top: 13px; color: var(--emerald); font-weight: 900; }

.section-head { margin-bottom: 24px; }
.section-head p:not(.eyebrow) { color: var(--muted); max-width: 760px; }
.row-head { display: grid; grid-template-columns: 1fr .9fr; gap: 26px; align-items: end; }
.table-wrap { overflow-x: auto; border-radius: 22px; border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #151724; color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
tbody tr:nth-child(even) { background: #fbf8f1; }
tbody tr:hover { background: rgba(110,57,255,.06); }
.badge { display: inline-flex; padding: 5px 8px; margin-right: 8px; border-radius: 999px; background: rgba(27,209,154,.12); color: #087a5a; font-size: 12px; font-weight: 900; }

.checklist-panel { background: #151724; color: #fff; position: relative; overflow: hidden; }
.checklist-panel::before { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; top: -90px; background: radial-gradient(circle, rgba(244,214,138,.34), transparent 64%); }
.steps { position: relative; padding: 0; margin: 26px 0 0; list-style: none; display: grid; gap: 12px; }
.steps li { display: grid; grid-template-columns: 62px 1fr; gap: 16px; align-items: start; padding: 16px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); }
.steps span { display: grid; place-items: center; min-height: 44px; border-radius: 16px; background: linear-gradient(135deg, var(--gold-2), var(--emerald)); color: var(--ink); font-weight: 950; }
.steps p { margin: 8px 0 0; color: rgba(255,255,255,.78); }

.cta-copy p { color: var(--muted); }
.payment-cards .mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mini-grid div { padding: 20px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.mini-grid strong, .mini-grid span { display: block; }
.mini-grid strong { margin-bottom: 8px; }
.mini-grid span { color: var(--muted); line-height: 1.55; }

.floating-note { position: fixed; right: 22px; bottom: 22px; z-index: 15; width: min(330px, calc(100% - 44px)); padding: 18px 44px 18px 18px; border-radius: 22px; background: rgba(21,23,36,.92); color: #fff; box-shadow: var(--shadow); border: 1px solid rgba(244,214,138,.24); backdrop-filter: blur(18px); transition: opacity .25s ease, transform .25s ease; }
.floating-note.is-hidden { opacity: 0; transform: translateY(14px); pointer-events: none; }
.floating-note p { margin: 8px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }
.note-close { position: absolute; right: 12px; top: 10px; width: 28px; height: 28px; border: 0; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; }
.responsible { background: linear-gradient(145deg, #fffaf0, #f0f7ff); }
.responsible p { color: var(--muted); margin-bottom: 0; }

.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; padding: 20px 54px 20px 20px; text-align: left; border: 0; background: transparent; color: var(--ink); font: inherit; font-weight: 900; cursor: pointer; position: relative; }
.faq-item button::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(110,57,255,.1); color: var(--violet); transition: transform .2s ease; }
.faq-item.is-open button::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-panel p { padding: 0 20px 20px; margin: 0; color: var(--muted); }

.site-footer { padding: 34px 0; background: #0b1020; color: #fff; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-grid p { color: rgba(255,255,255,.62); margin: 8px 0 0; }
.footer-grid div:last-child { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.footer-grid span { padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); font-size: 13px; }

:focus-visible { outline: 3px solid rgba(27,209,154,.65); outline-offset: 3px; }

@media (max-width: 1060px) {
  .hero-grid, .content-layout, .intro-panel, .split-feature, .image-cta, .row-head { grid-template-columns: 1fr; }
  .sidebar { position: static; order: -1; }
  .content-layout { padding-top: 48px; }
  .benefits-grid, .payment-cards .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-card { left: 16px; bottom: 18px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, var(--container)); }
  .header-inner { min-height: 66px; }
  .top-nav, .header-cta { display: none; }
  .hero { padding: 48px 0 44px; }
  h1 { font-size: clamp(36px, 12vw, 52px); }
  h2 { font-size: 30px; }
  .hero-lead { font-size: 16px; }
  .hero-actions, .btn { width: 100%; }
  .strip-grid, .benefits-grid, .payment-cards .mini-grid { grid-template-columns: 1fr; }
  .content-layout { gap: 22px; padding-bottom: 44px; }
  .section-block { border-radius: 24px; padding: 24px; }
  .rating-card { position: static; margin: 0 0 14px; max-width: none; }
  .floating-frame { transform: none; }
  .steps li { grid-template-columns: 1fr; }
  .floating-note { position: static; width: auto; margin-top: 0; }
  .footer-grid { display: grid; }
  .footer-grid div:last-child { justify-content: flex-start; }
  table { min-width: 660px; }
}

/* Content expansion helpers */
.inline-media { margin-top: 22px; }
.article-flow > .benefits-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 760px) {
  .article-flow > .benefits-grid { grid-template-columns: 1fr; }
}
.section-block > .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) {
  .section-block > .benefits-grid { grid-template-columns: 1fr; }
}
