* { box-sizing: border-box; }
:root {
  --bg: #071120;
  --bg-soft: #0d1f36;
  --card: #122b49;
  --line: #2e4e73;
  --text: #e7f1ff;
  --muted: #aac3df;
  --accent: #2aa6ff;
  --accent-2: #1f7ed6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  background: #ffffff;
  color: #08182b;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus {
  left: 10px;
}
*:focus-visible {
  outline: 2px solid #8ad2ff;
  outline-offset: 2px;
}
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
a { color: var(--accent); text-decoration: none; }
.header { background: rgba(7,17,32,.95); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.header-inner { display: flex; gap: 20px; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { color: #fff; font-weight: 700; letter-spacing: .04em; }
.nav { display: flex; gap: 18px; }
.nav a { color: var(--text); font-size: 14px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(129, 194, 255, 0.28);
  background: rgba(42, 166, 255, 0.12);
  cursor: pointer;
  position: relative;
}
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #dff2ff;
}
.nav-toggle::before { top: 15px; box-shadow: 0 6px 0 #dff2ff; }
.nav-toggle::after { top: 27px; }
.btn { border: 0; border-radius: 10px; font-weight: 700; padding: 11px 16px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #fff; }
.btn-secondary { border: 1px solid #85c8ff; color: #c7e7ff; background: transparent; }
.btn-lg { padding: 14px 20px; }
.hero {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: url("../images/hero/hero-bg.jpg") center center / cover no-repeat;
}
.hero-small { padding: 52px 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 20, 0.74), rgba(4, 11, 20, 0.86));
}
.contact-hero {
  background: linear-gradient(135deg, #0b2743 0%, #164a79 45%, #0f3155 75%, #0a1f37 100%);
}
.contact-hero .hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(42, 166, 255, 0.28), transparent 42%),
    radial-gradient(circle at 82% 80%, rgba(255, 138, 0, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(6, 15, 28, 0.68), rgba(6, 15, 28, 0.78));
}
.hero-inner { position: relative; z-index: 2; }
.hero-top { color: #9bd8ff; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.hero-title { margin: 8px 0 10px; font-size: clamp(34px, 5vw, 58px); }
.hero-subtitle { margin: 0 auto; max-width: 900px; color: var(--muted); }
.hero-cta { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.section { padding: 54px 0; }
.block-info { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 20px; }
.section-head h2, .cta h2, .legal-page h1, .card h2, .card h3 { margin-top: 0; color: #d8eeff; }
.section-head p, .card p, .legal-page p { color: var(--muted); }
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: rgba(18,43,73,.95); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.highlight-card {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(42, 166, 255, 0.32), transparent 55%),
    linear-gradient(135deg, #143a62 0%, #1a4a7d 48%, #113258 100%);
  border: 1px solid rgba(140, 208, 255, 0.55);
  box-shadow: 0 16px 36px rgba(10, 35, 58, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.highlight-card h2,
.highlight-card p {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}
.faq-card {
  background:
    radial-gradient(circle at 12% 18%, rgba(42, 166, 255, 0.2), transparent 40%),
    linear-gradient(135deg, #123357 0%, #173f6a 55%, #102c4a 100%);
  border: 1px solid rgba(143, 208, 255, 0.45);
  box-shadow: 0 14px 34px rgba(7, 23, 40, 0.42);
}
.faq-card h2 {
  text-align: center;
  margin-bottom: 16px;
}
.faq-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(8, 25, 43, 0.45);
  border: 1px solid rgba(129, 194, 255, 0.18);
}
.faq-card p:last-child { margin-bottom: 0; }
.faq-card p span {
  min-width: 34px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #2aa6ff, #1f7ed6);
}
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step { background: rgba(18,43,73,.95); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.step span { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; justify-content: center; align-items: center; font-weight: 700; }
.cta {
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(42, 166, 255, 0.28), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 138, 0, 0.2), transparent 42%),
    linear-gradient(135deg, #0b2743 0%, #123a64 42%, #0a2139 72%, #08182b 100%);
  border-top: 1px solid rgba(120, 194, 255, 0.35);
  border-bottom: 1px solid rgba(120, 194, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form { display: grid; gap: 8px; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px; background: #0a1c31; color: var(--text); }
.checkbox { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.checkbox input { width: auto; }
.footer { border-top: 1px solid var(--line); background: #050d19; padding: 28px 0; }
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.footer-intro, .footer-legal p { color: var(--muted); }
.footer-legal p {
  margin: 0 0 4px;
  line-height: 1.35;
}
.footer-nav {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #d8efff;
  font-size: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(129, 194, 255, 0.28);
  background: rgba(42, 166, 255, 0.09);
  transition: all 0.2s ease;
}
.footer-nav a:hover {
  color: #ffffff;
  border-color: rgba(151, 212, 255, 0.6);
  background: rgba(42, 166, 255, 0.2);
  box-shadow: 0 6px 16px rgba(42, 166, 255, 0.25);
}
.footer-bottom {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(129, 194, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a00, #ff6a00);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.legal-page {
  padding: 56px 0 70px;
  background:
    radial-gradient(circle at 12% 8%, rgba(42, 166, 255, 0.12), transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(255, 138, 0, 0.1), transparent 40%),
    linear-gradient(180deg, #08182b 0%, #071425 100%);
}
.legal-page .container {
  max-width: 920px;
  background: rgba(15, 39, 67, 0.78);
  border: 1px solid rgba(129, 194, 255, 0.28);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 18px 40px rgba(5, 16, 30, 0.45);
  backdrop-filter: blur(2px);
}
.legal-page h1 {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e9f5ff;
  text-shadow: 0 0 16px rgba(42, 166, 255, 0.3);
}
.legal-page h1 + p {
  text-align: center;
  margin-bottom: 20px;
  color: #b9d8f3;
}
.legal-page p {
  margin: 0 0 12px;
  color: #c2dbf2;
  line-height: 1.65;
  font-size: 15px;
}
.legal-page p strong {
  color: #e8f6ff;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.legal-page p strong::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 7px;
  background: linear-gradient(90deg, #2aa6ff, transparent);
  border-radius: 999px;
}
.modal { position: fixed; inset: 0; background: rgba(3,8,15,.82); display: flex; align-items: center; justify-content: center; z-index: 90; padding: 16px; }
.modal[hidden] { display: none; }
.modal-content { width: min(460px, 100%); background: #0f2743; border: 1px solid var(--line); border-radius: 14px; padding: 20px; position: relative; }
.modal-content { text-align: center; }
.modal-content h2 {
  margin: 0 0 14px;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  word-break: break-all;
  color: #d9eeff;
  text-shadow: 0 0 12px rgba(42, 166, 255, 0.35);
}
.modal-form form { display: grid; gap: 8px; }
.modal-close { position: absolute; top: 6px; right: 8px; border: 0; background: transparent; color: #fff; font-size: 26px; cursor: pointer; }
.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: linear-gradient(90deg, #ff8a00, #ff6a00);
  border: 1px solid #ffb266;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  z-index: 80;
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.38);
}
.cookie-banner p,
.cookie-banner a { color: #1f1200; font-weight: 700; }
.cookie-banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
  background: rgba(255, 255, 255, 0.35);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(31, 18, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.cookie-banner a:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}
.cookie-banner .btn-primary {
  background: #1f1200;
  color: #ffd9a8;
}
.cookie-banner[hidden] { display: none; }
@media (max-width: 991px) {
  .header-inner { position: relative; gap: 10px; }
  .nav-toggle { display: inline-flex; }
  .header-inner > .btn[data-modal="buy"] { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #0b1f36;
    border: 1px solid rgba(129, 194, 255, 0.24);
    border-radius: 12px;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    z-index: 30;
  }
  .nav a { padding: 10px 8px; border-radius: 8px; }
  .nav a:hover { background: rgba(42, 166, 255, 0.15); }
  .header.menu-open .nav { display: flex; }
  .header.menu-open .header-inner > .btn[data-modal="buy"] {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 220px);
    left: 10px;
    right: 10px;
    justify-content: center;
    z-index: 31;
  }
  .grid-3, .grid-2, .steps, .footer-main, .contact-layout { grid-template-columns: 1fr; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
