:root {
  --ink: #10201c;
  --muted: #66736d;
  --paper: #f8f3e8;
  --panel: #fffdf7;
  --line: #dfd4bf;
  --green: #0b6b57;
  --deep: #0b2f2a;
  --gold: #f0c95a;
  --coral: #f56f46;
  --blue: #28516f;
  --shadow: 0 18px 44px rgba(16, 32, 28, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
body.locked { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 82px); line-height: .98; letter-spacing: 0; margin-bottom: 18px; }
h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.08; letter-spacing: 0; }
h3 { line-height: 1.16; }
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 18, 16, .86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.age-modal.show { opacity: 1; visibility: visible; pointer-events: auto; }
.age-card {
  width: min(560px, 100%);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(.96);
  transition: transform .24s ease;
}
.age-modal.show .age-card { transform: translateY(0) scale(1); }
.age-actions, .hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 243, 232, .96);
  backdrop-filter: blur(12px);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}
.logo img { width: 42px; height: 42px; }
.main-nav { display: flex; gap: 6px; }
.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 7px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.main-nav a:hover, .main-nav a.active { background: #e3efe4; color: var(--green); }
.menu-btn {
  display: none;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 12px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
}
.button, .brand-cta, .age-card button, .contact-form button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 18px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.secondary, .age-card .ghost { background: var(--panel); color: var(--green); border-color: var(--line); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, .9);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(350px, 1.04fr);
  gap: 44px;
  align-items: center;
  padding: 66px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(11,107,87,.14), transparent 43%),
    linear-gradient(315deg, rgba(240,201,90,.28), transparent 46%);
}
.hero p, .section-head p, .brand-card p, .info-card p, .legal-copy p, .page-hero p, dd, .table-row span, .fineprint { color: var(--muted); }
.hero-visual {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.trust-row, .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.trust-row span, .tag-row span, .pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.alert-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 72px);
  background: var(--deep);
  color: #fff8e7;
}
.alert-strip strong {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 24px;
}
.alert-strip p { margin: 0; }
.section, .page-hero { padding: 66px clamp(18px, 5vw, 72px); }
.section-head { max-width: 850px; margin-bottom: 30px; }
.tint { background: #eef0e5; }
.brand-stack { display: grid; gap: 18px; }
.brand-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(16, 32, 28, .08);
}
.brand-card.featured { border-color: rgba(11, 107, 87, .45); box-shadow: var(--shadow); }
.brand-logo-box {
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #f5ead5;
}
.brand-title { display: flex; gap: 12px; align-items: center; }
.brand-title span {
  display: grid;
  place-items: center;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-weight: 900;
}
.license-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}
.license-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}
dt { color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
dd { margin: 4px 0 0; font-weight: 700; overflow-wrap: anywhere; }
.brand-side { display: grid; gap: 12px; }
.score {
  padding: 18px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff8e7;
  font-size: 40px;
  font-weight: 900;
}
.score small { display: block; color: #d9e3dc; font-size: 12px; line-height: 1.35; }
.method-grid, .contact-grid, .legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card, .legal-copy, .contact-card, .contact-form, .not-found-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.info-card strong { color: var(--coral); font-size: 28px; }
.comparison-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}
.table-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr .9fr;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.table-row:last-child { border-bottom: 0; }
.table-row.head { background: var(--deep); color: #fff8e7; font-weight: 900; }
.responsible-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 54px clamp(18px, 5vw, 72px);
  background: var(--deep);
  color: #fff8e7;
}
.responsible-band p { color: #d8e2dc; }
.faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.faq summary { cursor: pointer; font-weight: 900; font-size: 19px; }
.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.site-footer {
  padding: 44px clamp(18px, 5vw, 72px) 24px;
  background: #0a1b18;
  color: #fff8e7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 28px;
}
.site-footer p { color: #cdd7d1; }
.site-footer a { display: block; color: #fff8e7; text-decoration: none; margin: 8px 0; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: #cdd7d1;
  font-size: 14px;
}
@media (max-width: 940px) {
  .menu-btn { display: inline-flex; align-items: center; }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero, .brand-card, .responsible-band, .contact-grid, .legal-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; }
  .brand-side { grid-template-columns: 1fr; }
  .license-list, .method-grid { grid-template-columns: 1fr; }
  .table-row { grid-template-columns: 1fr; gap: 6px; }
  .table-row.head { display: none; }
}
@media (max-width: 560px) {
  h1 { font-size: 39px; }
  .site-header { padding-inline: 14px; }
  .section, .page-hero, .hero, .responsible-band { padding-inline: 14px; }
  .alert-strip { grid-template-columns: 1fr; }
  .brand-card, .age-card { padding: 16px; }
  .brand-logo-box { min-height: 100px; }
}
