:root {
  --bg: #0b050e;
  --bg-card: #150d1b;
  --bg-surf: #23162b;
  --bg-surf2: #34223f;
  --accent: #ff551f;
  --accent2: #ff7343;
  --accent-red: #ff334b;
  --neon: #ffa500;
  --success: #2ec167;
  --text: #ffffff;
  --text2: #9d8fa9;
  --border: rgba(255, 85, 31, 0.15);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 10% -10%, rgba(255, 85, 31, 0.12), transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(255, 51, 75, 0.08), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 165, 0, 0.06), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 5, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--bg-surf2); color: var(--accent2); }
.main-nav a.active { background: var(--bg-surf2); color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-red) 100%);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(255, 85, 31, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 85, 31, 0.5);
  color: var(--text);
}

.btn-secondary {
  background: var(--bg-surf);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-surf2); color: var(--accent2); }

.btn-cta-large {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 14px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

/* HERO */
.hero {
  padding: 56px 0 48px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 85, 31, 0.1);
  border: 1px solid var(--border);
  color: var(--accent2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

h1 .gradient {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 12px;
  text-align: center;
}
.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--neon);
  display: block;
}
.stat-label { font-size: 12px; color: var(--text2); margin-top: 2px; }

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 5, 14, 0.6) 100%);
  z-index: 1;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* CONTENT BLOCKS */
section { padding: 48px 0; }

h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 22px;
  color: var(--text);
}

.section-intro {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 28px;
  max-width: 780px;
}

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 20px 22px; }
ul li, ol li { margin-bottom: 10px; color: var(--text2); }
ul li strong, ol li strong { color: var(--text); font-weight: 600; }

article p { color: var(--text2); }
article p strong { color: var(--text); }

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 85, 31, 0.4);
  box-shadow: 0 12px 32px rgba(255, 85, 31, 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.card h3 { margin-top: 0; font-size: 19px; }
.card p { color: var(--text2); font-size: 15px; }

/* TABLE */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 14px; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  min-width: 520px;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: var(--bg-surf);
  color: var(--accent2);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
td { color: var(--text2); }
td strong { color: var(--text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255, 85, 31, 0.03); }

/* CONTENT SECTION GENERIC */
.content-section { padding: 32px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.two-col img { border-radius: 18px; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(135deg, rgba(255, 85, 31, 0.12), rgba(255, 51, 75, 0.08));
  border: 1px solid rgba(255, 85, 31, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.cta-block h2 { margin-bottom: 14px; }
.cta-block p { color: var(--text2); margin-bottom: 22px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* FAQ */
.faq-section { margin: 40px 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(255, 85, 31, 0.35); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  position: relative;
  padding-right: 50px;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--text2);
  font-size: 15px;
}

/* BREADCRUMBS */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text2);
}
.breadcrumbs a { color: var(--text2); }
.breadcrumbs a:hover { color: var(--accent2); }
.breadcrumbs span { margin: 0 8px; color: var(--border); }

/* PAGE HERO (smaller pages) */
.page-hero {
  padding: 40px 0 32px;
}
.page-hero .hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

/* FEATURED HIGHLIGHT */
.highlight-box {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 10px;
  margin: 22px 0;
}
.highlight-box p { margin: 0; color: var(--text); font-size: 15px; }
.highlight-box strong { color: var(--accent2); }

/* FOOTER */
.site-footer {
  background: #08040b;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent2);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text2); font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent2); }

.footer-about p { color: var(--text2); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.footer-about img { height: 36px; margin-bottom: 14px; }

.age-badge {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-red);
  color: var(--text);
  font-weight: 800;
  font-size: 15px;
  line-height: 42px;
  text-align: center;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text2);
  font-size: 13px;
}
.footer-bottom a { color: var(--text2); }

.disclaimer {
  background: rgba(255, 51, 75, 0.06);
  border: 1px solid rgba(255, 51, 75, 0.2);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text2);
}
.disclaimer strong { color: var(--accent-red); }

/* MOBILE NAV */
@media (max-width: 960px) {
  .hero-grid, .two-col, .page-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-img-wrap { order: -1; max-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    display: none;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; border-radius: 8px; }
  .header-cta { display: none; }
  .hero { padding: 36px 0 28px; }
  section { padding: 32px 0; }
  .cta-block { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
}

@media (max-width: 420px) {
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .btn { padding: 11px 18px; font-size: 14px; }
  .btn-cta-large { padding: 14px 24px; font-size: 15px; }
  .hero-stats { grid-template-columns: 1fr; }
}
