:root {
  --theme: #ac0b0b;
  --theme-dark: #7f0808;
  --theme-deep: #4f0505;
  --theme-light: #fff1f1;
  --theme-soft: #fffafa;
  --theme-hover: #910909;
  --theme-border: rgba(172,11,11,0.18);
  --text-main: #102033;
  --text-muted: #596a7a;
  --on-theme: #ffffff;
  --on-dark: #f7f9ff;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(79,5,5,0.16);
}
* { box-sizing: border-box; }
html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}
body {
  background: var(--theme-light);
  color: var(--text-main);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}
a { text-decoration: none; }
img {
  max-width: 100%;
  height: auto;
}
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: var(--theme-dark);
  color: var(--on-dark);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}
.logo {
  display: inline-flex;
  justify-self: center;
  align-items: center;
}
.logo img,
.footer-brand img,
.drawer-logo img {
  display: block;
  height: auto;
  max-width: 180px;
}
.logo img { max-width: 132px; }
.main-nav { display: none; }
.main-nav a {
  color: var(--on-dark);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: .2s ease;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--on-dark);
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 -2px 0 var(--theme-light);
}
.header-actions { justify-self: end; }
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme);
  color: var(--on-theme);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 10px 18px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: .2s ease;
  border: 1px solid rgba(255,255,255,0.18);
}
.main-btn:hover {
  background: var(--theme-hover);
  transform: translateY(-1px);
}
.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--on-dark);
}
.mobile-menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: var(--on-dark);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform .28s ease;
  z-index: 10001;
  background: var(--theme-dark);
  color: var(--on-dark);
  box-shadow: 22px 0 48px rgba(0,0,0,0.25);
  padding: 18px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  background: rgba(0,0,0,0.52);
  transition: .25s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
body.menu-open { overflow: hidden; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--on-dark);
  background: rgba(255,255,255,0.08);
  font-size: 28px;
  line-height: 1;
}
.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 18px 0;
}
.mobile-nav a {
  color: var(--on-dark);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}
.mobile-nav a.active,
.mobile-nav a:hover { background: rgba(255,255,255,0.14); }
.drawer-note {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(247,249,255,0.86);
  font-size: 14px;
}
.site-main { background: var(--theme-light); }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 64px 0; }
.section.compact { padding: 42px 0; }
.section-title,
h1,
h2,
h3,
.category-number,
.highlight { color: var(--theme-dark); }
h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.08; margin: 0 0 22px; }
h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.2; margin: 0 0 18px; }
h3 { margin: 0 0 10px; font-size: 21px; }
p { margin: 0 0 16px; }
.lead { font-size: 18px; color: var(--text-main); }
.muted { color: var(--text-muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme);
  background: rgba(0,105,203,0.08);
  border: 1px solid var(--theme-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero,
.hero-section,
.banner {
  position: relative;
  overflow: hidden;
}
.hero-section { padding: 76px 0 42px; }
.hero-section:before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  top: -220px;
  background: radial-gradient(circle, rgba(0,105,203,0.22), rgba(0,105,203,0));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-tags span,
.tag-row span,
.small-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--theme-dark);
  background: var(--white);
  border: 1px solid var(--theme-border);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0,58,112,0.06);
}
.hero-visual,
.visual-panel {
  background: linear-gradient(145deg, var(--white), var(--theme-soft));
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-soft);
  border-radius: 32px;
  padding: 24px;
}
.visual-card {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--theme-dark), var(--theme));
  color: var(--on-dark);
  padding: 26px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}
.visual-card h2,
.visual-card h3 { color: var(--on-dark); }
.visual-card p { color: rgba(247,249,255,0.86); }
.visual-card:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -44px;
  bottom: -52px;
  background: rgba(255,255,255,0.16);
}
.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.visual-stat,
.mini-card,
.card,
.info-card,
.zone-card,
.faq-item,
.notice {
  background: var(--white);
  color: var(--text-main);
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
}
.visual-stat { padding: 14px; color: var(--theme-dark); font-weight: 800; }
.mini-grid,
.grid,
.info-board,
.feature-grid,
.category-grid,
.zone-grid,
.faq-grid,
.link-grid {
  display: grid;
  gap: 18px;
}
.mini-grid { margin-top: 26px; }
.mini-card,
.card,
.info-card,
.zone-card,
.faq-item,
.notice { padding: 24px; }
.card:hover,
.info-card:hover,
.zone-card:hover,
.category-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(0,105,203,0.36);
}
.card,
.info-card,
.zone-card,
.category-pill { transition: .22s ease; }
.category-pill {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 999px 26px 26px 999px;
  background: linear-gradient(135deg, var(--white), var(--theme-soft));
  color: var(--text-main);
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-soft);
}
.category-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,105,203,0.1);
  font-weight: 900;
}
.service-strip {
  background: linear-gradient(135deg, rgba(0,105,203,0.09), rgba(255,255,255,0.82));
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-soft);
  border-radius: 28px;
  padding: 28px;
}
.text-link {
  color: var(--theme);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link:hover { color: var(--theme-hover); }
ul.clean-list,
ul.check-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
ul.clean-list li,
ul.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text-main);
}
ul.clean-list li:before,
ul.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--theme);
  box-shadow: 0 0 0 5px rgba(0,105,203,0.08);
}
.content-split { display: grid; gap: 26px; }
.split-row {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-bottom: 30px;
}
.split-row.reverse .split-text { order: -1; }
.visual-panel {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 14px;
}
.visual-chip {
  display: inline-flex;
  width: max-content;
  background: rgba(0,105,203,0.1);
  color: var(--theme-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
}
.app-section,
.security-section {
  background: linear-gradient(135deg, var(--white), var(--theme-soft));
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-soft);
  border-radius: 34px;
  padding: 28px;
  display: grid;
  gap: 26px;
  align-items: center;
}
.content-img,
.app-section img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.app-visual { display: grid; place-items: center; }
.app-visual img { max-height: 390px; }
.security-cards { display: grid; gap: 16px; }
.faq { display: grid; gap: 18px; }
.faq-item h3 { font-size: 19px; }
.notice {
  background: linear-gradient(135deg, rgba(0,105,203,0.08), var(--white));
  border-left: 5px solid var(--theme);
}
.notice strong { color: var(--theme-dark); }
.page-hero {
  padding: 70px 0 34px;
  background: linear-gradient(135deg, rgba(0,105,203,0.09), rgba(255,255,255,0));
}
.page-layout { display: grid; gap: 22px; }
.content-block {
  background: var(--white);
  border: 1px solid var(--theme-border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.content-block + .content-block { margin-top: 22px; }
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.related-links a {
  background: var(--white);
  color: var(--theme);
  border: 1px solid var(--theme-border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}
.related-links a:hover { color: var(--theme-hover); }
.footer {
  background: var(--theme-deep);
  color: var(--on-dark);
  padding: 56px 0 26px;
}
.footer-grid { display: grid; gap: 28px; }
.footer-brand p,
.footer-legal p { color: rgba(247,249,255,0.82); }
.footer-age { font-weight: 900; color: var(--on-dark) !important; }
.footer-links h2 {
  color: var(--on-dark);
  font-size: 18px;
  margin-bottom: 14px;
}
.footer a {
  color: var(--on-dark);
  display: block;
  margin: 7px 0;
}
.footer a:hover { color: var(--theme-light); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 32px;
  padding-top: 22px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .hero-grid,
  .split-row,
  .app-section,
  .security-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-grid,
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .info-board,
  .category-grid,
  .zone-grid,
  .faq-grid,
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .split-row.reverse .split-text { order: 0; }
}
@media (min-width: 1024px) {
  .header-inner {
    display: flex;
    min-height: 78px;
    padding: 0 22px;
  }
  .logo { justify-self: auto; flex: 0 0 auto; }
  .logo img { max-width: 150px; }
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1 1 auto;
  }
  .mobile-menu-toggle { display: none; }
  .header-actions { flex: 0 0 auto; }
  .info-board { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .zone-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .page-layout.two-col { grid-template-columns: 1.3fr .7fr; align-items: start; }
}
@media (max-width: 420px) {
  .header-inner { padding: 0 10px; gap: 8px; }
  .logo img { max-width: 112px; }
  .main-btn { padding: 9px 13px; font-size: 14px; }
  .section { padding: 48px 0; }
  .hero-section { padding-top: 56px; }
  .category-pill { border-radius: 24px; }
}
