
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0d1120;
  --bg-card:      #161d31;
  --bg-dark:      #0a0e1a;
  --accent:       #f5a623;
  --accent-dim:   #c4831a;
  --accent-glow:  rgba(245,166,35,0.15);
  --text:         #e8eaf0;
  --text-muted:   #8a93b2;
  --border:       #252e4a;
  --radius:       12px;
  --radius-sm:    8px;
  --font:         'Segoe UI', system-ui, sans-serif;
  --tr:           0.22s ease;
  --max-w:        820px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
}
.btn--primary  { background: var(--accent); color: #000; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dim); border-color: var(--accent-dim); }
.btn--outline  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: #000; }
.btn--lg       { padding: 14px 34px; font-size: 16px; }
.btn--full     { width: 100%; }

.logo { display: inline-flex; align-items: center; }
.logo__img { height: 40px; width: auto; object-fit: contain; }

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,17,32,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav__link {
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--tr);
}
.nav__link:hover { color: var(--accent); background: var(--accent-glow); }
.header__actions { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 20px;
  position: relative;
  z-index: 190;
}
.mobile-menu.open { display: flex; }
.mobile-menu__link {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--tr);
}
.mobile-menu__link:hover { color: var(--accent); background: var(--accent-glow); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,14,26,0.96) 0%,
    rgba(10,14,26,0.82) 45%,
    rgba(10,14,26,0.4)  100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 16px;
  color: rgba(232,234,240,0.75);
  margin-bottom: 34px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}

.content-zone {
  padding: 72px 0;
}

.article {
  max-width: var(--max-w);
  margin: 0 auto;
}

.article h1 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.article h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #fff;
  margin-top: 52px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
  line-height: 1.3;
}

.article h3 {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: var(--accent);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.article p strong { color: var(--text); font-weight: 600; }
.article p em     { color: #c8cfe8; font-style: italic; }

.article ul,
.article ol {
  margin: 18px 0 22px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article ul li,
.article ol li {
  position: relative;
  padding: 14px 16px 14px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  transition: border-color var(--tr);
}
.article ul li:hover,
.article ol li:hover {
  border-color: rgba(245,166,35,0.35);
}

.article ul li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.article ol {
  counter-reset: ol-counter;
}
.article ol li {
  counter-increment: ol-counter;
}
.article ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 24px; height: 24px;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article li strong { color: var(--text); font-weight: 600; }

.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 14.5px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.article table thead tr {
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
}

.article table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.article table tbody tr:last-child { border-bottom: none; }
.article table tbody tr:nth-child(odd)  { background: var(--bg-card); }
.article table tbody tr:nth-child(even) { background: rgba(22,29,49,0.5); }
.article table tbody tr:hover { background: var(--accent-glow); }

.article table td {
  padding: 13px 18px;
  color: var(--text-muted);
  vertical-align: middle;
}
.article table td strong { color: var(--text); font-weight: 600; }
.article table td:first-child { color: var(--text); font-weight: 500; }

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.payment-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
  flex-shrink: 0;
}
.payment-icon-item img {
  width: 48px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter var(--tr);
}
.payment-icon-item:hover img { filter: brightness(1.15); }
.payment-icon-item span {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.payment-icon-item--text .pay-text-icon {
  width: 48px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: border-color var(--tr);
}
.payment-icon-item--text:hover .pay-text-icon { border-color: var(--accent); color: var(--accent); }

.faq-section {
  padding: 72px 0;
  background: var(--bg-dark);
}

.section-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.faq {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: color var(--tr);
}
.faq__question:hover,
.faq__question[aria-expanded="true"] { color: var(--accent); }

.faq__icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--tr);
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__answer {
  display: none;
  padding: 0 4px 20px;
}
.faq__answer.open { display: block; }
.faq__answer p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 52px 0 32px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__col   { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--tr);
}
.footer__col a:hover { color: var(--accent); }
.footer__divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.footer__bottom  { display: flex; flex-direction: column; gap: 20px; }
.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.75;
}
.footer__copy strong { color: var(--text); }
.footer__warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.age-badge {
  background: #c0392b;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__warning p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer__warning strong { color: var(--text); }

@media (max-width: 900px) {
  .hero          { min-height: auto; }
  .hero__content { padding: 52px 0 48px; }
  .hero__overlay {
    background: linear-gradient(
      105deg,
      rgba(10,14,26,0.97) 0%,
      rgba(10,14,26,0.85) 55%,
      rgba(10,14,26,0.45) 100%
    );
  }
}

@media (max-width: 768px) {
  .header__nav     { display: none; }
  .header__actions { display: none; }
  .nav-toggle      { display: flex; }

  
  .hero            { min-height: auto; }
  .hero__bg-img    { object-position: 65% top; }
  .hero__overlay   {
    background: linear-gradient(
      180deg,
      rgba(10,14,26,0.88) 0%,
      rgba(10,14,26,0.72) 60%,
      rgba(10,14,26,0.9) 100%
    );
  }
  .hero__content   { padding: 40px 0 36px; max-width: 100%; text-align: center; }
  .hero__eyebrow   { font-size: 11px; margin-bottom: 8px; }
  .hero__title     { font-size: 36px; margin-bottom: 12px; }
  .hero__sub       { font-size: 14px; margin-bottom: 22px; }

  
  .hero__cta       { flex-direction: row; gap: 10px; margin-bottom: 24px; justify-content: center; }
  .hero__cta .btn--lg { width: auto; flex: 1; padding: 12px 16px; font-size: 14px; }

  
  .hero__trust     { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; justify-items: center; }
  .trust-badge     { font-size: 12px; padding: 6px 10px; text-align: center; width: 100%; }

  .content-zone    { padding: 48px 0; }
  .faq-section     { padding: 48px 0; }

  .article h2      { margin-top: 40px; }

  .payment-icons   { gap: 10px; padding: 20px 16px; }
  .payment-icon-item { width: 68px; }

  .footer__top     { flex-direction: column; gap: 24px; }
  .footer__links   { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .hero__title     { font-size: 30px; }
  .hero__cta       { flex-direction: column; gap: 10px; }
  .hero__cta .btn--lg { width: 100%; flex: none; }
  .hero__trust     { grid-template-columns: 1fr 1fr; }

  .article ul li,
  .article ol li   { padding-left: 44px; font-size: 14px; }

  .article table   { font-size: 13px; }
  .article table th,
  .article table td { padding: 10px 12px; }

  .payment-icons   { justify-content: center; }

  .section-heading { font-size: 18px; }
  .faq__question   { font-size: 14px; }
}
