:root {
  --bg: #020b16;
  --bg-2: #06172a;
  --card: rgba(5, 24, 42, 0.82);
  --card-2: rgba(3, 17, 31, 0.94);
  --line: rgba(77, 174, 234, 0.38);
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f6fbff;
  --muted: #aebdd0;
  --gold: #f5bd37;
  --gold-2: #c98b12;
  --cyan: #16bdf4;
  --green: #52dd75;
  --emerald: #32b765;
  --violet: #9a7cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --container: 1210px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(23, 148, 226, 0.2), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(245, 189, 55, 0.08), transparent 25%),
    linear-gradient(180deg, #020812 0%, #04101f 48%, #020812 100%);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.scrolled {
  background: rgba(2, 10, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  line-height: 1.04;
}
.brand-logo, .footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.brand-text { font-size: 21.5px; max-width: 152px; }
.brand-text strong, .footer-brand strong { color: var(--gold); display: block; }
.nav-panel { display: flex; align-items: center; gap: 34px; font-weight: 700; }
.nav-link {
  position: relative;
  color: #f5f7fb;
  font-size: 15px;
  padding: 12px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #171103;
  background: linear-gradient(180deg, #ffd768 0%, var(--gold) 45%, var(--gold-2) 100%);
  box-shadow: 0 14px 32px rgba(245, 189, 55, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-gold:hover { box-shadow: 0 18px 42px rgba(245, 189, 55, 0.33), inset 0 1px 0 rgba(255, 255, 255, 0.55); }
.btn-outline {
  color: var(--text);
  border-color: rgba(245, 189, 55, 0.7);
  background: rgba(3, 13, 25, 0.58);
}
.btn-large { min-width: 235px; min-height: 58px; font-size: 18px; }
.play-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 20, 36, 0.9);
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--text); }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 92px 0 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 8, 16, 0.1), rgba(2, 8, 16, 0.05)),
    url("../assets/images/hero-header-bg.png") center top / cover no-repeat,
    linear-gradient(135deg, #04111f, #020812);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(22, 189, 244, 0.17);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 420px; height: 420px; right: -110px; top: 120px; box-shadow: inset 0 0 0 34px rgba(22, 189, 244, 0.025), 0 0 70px rgba(22, 189, 244, 0.14); }
.hero::after { width: 320px; height: 320px; left: -180px; bottom: 120px; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 16, 0.1) 0%, rgba(2, 8, 16, 0.34) 68%, var(--bg) 100%),
    linear-gradient(90deg, rgba(2, 8, 16, 0.08) 0%, rgba(2, 8, 16, 0.12) 48%, rgba(2, 8, 16, 0.08) 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  align-items: start;
  gap: 42px;
  padding-top: 26px;
}
.eyebrow { color: var(--gold); font-weight: 900; letter-spacing: 0.1em; margin: 0 0 16px; font-size: 13px; }
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 4.65vw, 60px);
  line-height: 1.02;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.hero h1 .hero-line {
  display: block;
  color: var(--text);
  font-size: 1em;
}
.hero h1 span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.76em;
  white-space: nowrap;
}
.hero-lead { max-width: 590px; margin: 18px 0 46px; color: #edf5ff; font-size: 18px; }
.hero-actions, .hero-points { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-points {
  width: min(100%, 610px);
  margin-top: 44px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 24, 42, 0.64);
  backdrop-filter: blur(8px);
}
.point { display: flex; align-items: center; gap: 12px; flex: 1 1 160px; }
.point-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(245, 189, 55, 0.6);
  border-radius: 7px;
}
.point-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(22, 189, 244, 0.42));
}
.point strong { display: block; font-size: 14px; }
.point small { display: block; color: var(--muted); font-size: 11px; white-space: nowrap; }
.hero-phone { position: relative; align-self: start; padding-top: 6px; }
.phone-glow { position: absolute; inset: 8% 2% 4% 8%; background: radial-gradient(circle, rgba(22, 189, 244, 0.28), transparent 62%); filter: blur(26px); }
.hero-phone img { position: relative; width: min(100%, 390px); margin-inline: auto; filter: drop-shadow(0 42px 46px rgba(0, 0, 0, 0.58)); }

.section { position: relative; padding: 70px 0; }
.compact { padding: 42px 0; }
.section-title { display: flex; align-items: center; justify-content: center; gap: 28px; margin-bottom: 26px; text-align: center; }
.section-title span { width: 150px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-title span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.section-title h2 { margin: 0; font-size: clamp(30px, 3vw, 40px); line-height: 1.1; }

.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.feature-card, .benefit-card, .testimonial-card, .faq-item, .overview-shell, .value-card {
  background: linear-gradient(180deg, rgba(8, 34, 57, 0.84), rgba(3, 16, 30, 0.9));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 45px rgba(0, 0, 0, 0.18);
  border-radius: 8px;
}
.feature-card { min-height: 220px; padding: 24px 16px 20px; text-align: center; }
.icon, .benefit-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid currentColor;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 24px color-mix(in srgb, currentColor 26%, transparent);
}
.icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px color-mix(in srgb, currentColor 48%, transparent));
}
.benefit-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px color-mix(in srgb, currentColor 42%, transparent));
}
.icon::before, .icon::after, .benefit-icon::before, .benefit-icon::after, .point-icon::before, .point-icon::after { content: none; }
.cyan { color: #24d8ff; }
.green { color: var(--green); }
.violet { color: var(--violet); }
.gold { color: var(--gold); }
.lime { color: #69db6e; }
.teal { color: #59e6d3; }
.feature-card h3, .benefit-card h3 { margin: 0 0 8px; font-size: 18px; }
.feature-card p, .benefit-card p, .testimonial-card p, .footer p, .faq-item p, .legal-card p { margin: 0; color: var(--muted); }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 18px; min-height: 126px; }
.benefit-icon { flex: 0 0 58px; margin: 0; border-radius: 8px; }
.benefit-card h3 { color: var(--gold); font-size: 17px; line-height: 1.2; }

.overview-section { padding-top: 50px; }
.overview-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.95fr);
  grid-template-rows: auto 54px;
  gap: 28px;
  padding: 18px;
  align-items: stretch;
  overflow: hidden;
}
.overview-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 30%, rgba(22, 189, 244, 0.18), transparent 35%), radial-gradient(circle at 86% 25%, rgba(245, 189, 55, 0.1), transparent 30%);
  pointer-events: none;
}
.showcase-media, .showcase-copy { position: relative; z-index: 1; }
.showcase-media {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 16 / 9;
  min-height: 0;
  align-self: start;
  border: 1px solid rgba(22, 189, 244, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(22, 189, 244, 0.12), transparent 45%), #020812;
}
.showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  transition: opacity 0.28s ease, transform 0.42s ease;
}
.showcase-media img.switching { opacity: 0; transform: scale(0.985); }
.showcase-controls {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  padding: 0 24px;
}
.showcase-nav {
  position: static;
  display: flex;
  gap: 10px;
}
.showcase-nav button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 189, 55, 0.7);
  border-radius: 10px;
  background: rgba(3, 13, 25, 0.76);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}
.showcase-nav button::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: auto;
  border-left: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
  transform: rotate(-45deg);
}
.showcase-nav button:last-child::before { transform: rotate(135deg); }
.feature-count {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 13, 25, 0.72);
  font-weight: 900;
}
.feature-count small { color: var(--muted); }
.showcase-copy {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 0;
  height: 100%;
  max-height: 485px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(245, 189, 55, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(3, 17, 31, 0.88), rgba(3, 13, 25, 0.96));
  transition: opacity 0.24s ease, transform 0.32s ease;
}
.showcase-copy.switching { opacity: 0; transform: translateX(28px); }
.showcase-copy h3 { margin: 0; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.04; }
.showcase-copy h4 { margin: 12px 0 18px; color: var(--gold); font-size: 18px; line-height: 1.35; }
.showcase-copy ul {
  flex: 1;
  min-height: 0;
  margin: 0;
  padding: 0 8px 0 0;
  list-style: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 189, 55, 0.6) rgba(255, 255, 255, 0.08);
}
.showcase-copy ul::-webkit-scrollbar { width: 6px; }
.showcase-copy ul::-webkit-scrollbar-thumb { background: rgba(245, 189, 55, 0.65); border-radius: 999px; }
.showcase-copy ul::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.08); border-radius: 999px; }
.showcase-copy li { position: relative; margin: 10px 0; padding-left: 26px; color: #dbe8f6; }
.showcase-copy li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px rgba(22, 189, 244, 0.75); }
.showcase-dots {
  position: static;
  display: flex;
  gap: 10px;
}
.showcase-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}
.showcase-dots button.active { background: var(--gold); }

.testimonial-wrap { position: relative; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.38s ease; }
.testimonial-slide { min-width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { min-height: 215px; padding: 22px 26px; }
.stars { color: var(--gold); letter-spacing: 0.12em; margin-bottom: 10px; }
.person { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.person span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07121e;
  background: linear-gradient(135deg, #f8d775, #16bdf4);
  font-weight: 900;
}
.person strong, .person small { display: block; }
.person small { color: var(--muted); }
.slider-btn {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  color: #dce8f6;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 3;
}
.prev { left: -34px; }
.next { right: -34px; }
.dots { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.dots button, .dots span {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}
.dots .active { background: var(--gold); }

.cta-section { padding-top: 36px; }
.cta-banner {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 34px 70px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.96) 0%, rgba(3, 13, 25, 0.72) 42%, rgba(3, 13, 25, 0.2) 100%),
    url("../assets/images/cta-lower-bg.png") center / cover no-repeat,
    linear-gradient(135deg, #06182b, #020812);
  box-shadow: var(--shadow);
}
.cta-content { position: relative; z-index: 2; max-width: 590px; }
.cta-content h2 { margin: 0 0 8px; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.12; }
.cta-content h2 span { color: var(--gold); }
.cta-content p { color: #d6e4f1; margin: 0 0 24px; max-width: 520px; }

.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.faq-item {
  min-height: 86px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(22, 189, 244, 0.65);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22), 0 0 28px rgba(22, 189, 244, 0.08);
}
.faq-item summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 800;
  line-height: 1.28;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(225deg); }
.faq-item p { padding: 0 20px 20px; margin-top: -4px; }

.footer { padding: 34px 0 24px; background: linear-gradient(180deg, rgba(3, 13, 25, 0.2), rgba(1, 7, 13, 0.94)); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.72fr 0.95fr 1.2fr; gap: 36px; padding-bottom: 28px; }
.footer-grid > div:not(:first-child) { border-left: 1px solid rgba(255, 255, 255, 0.12); padding-left: 42px; }
.footer-brand { margin-bottom: 12px; }
.footer-brand img { width: 70px; height: 70px; }
.footer h3 { margin: 0 0 12px; font-size: 16px; }
.footer a:not(.brand) { display: block; color: var(--muted); margin: 8px 0; font-size: 14px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 32px;
  height: 32px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #f7fbff !important;
  font-weight: 900;
}
.socials img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.contact-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.footer .contact-actions a.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(245, 189, 55, 0.45);
  border-radius: 8px;
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
.footer .contact-actions a.contact-btn img {
  display: inline-block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 20px;
}
.office-hours {
  font-size: 14px;
}
.office-hours strong,
.office-hours span {
  display: block;
}
.office-hours span {
  white-space: nowrap;
}
.copyright { text-align: center; color: #8796a8; font-size: 13px; }

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.download-modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 7, 13, 0.78);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(100%, 980px);
  max-height: min(92vh, 760px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(77, 174, 234, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(22, 189, 244, 0.17), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(245, 189, 55, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(8, 34, 57, 0.98), rgba(2, 11, 22, 0.98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.7), 0 0 42px rgba(22, 189, 244, 0.14);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.modal-copy p {
  max-width: 500px;
  margin: 0;
  color: #d6e4f1;
}

.download-box {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(245, 189, 55, 0.28);
  border-radius: 12px;
  background: rgba(3, 13, 25, 0.58);
}

.qr-dummy {
  width: 160px;
  height: 160px;
  padding: 10px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #f7fbff 10px, transparent 10px) 0 0 / 40px 40px,
    linear-gradient(#f7fbff 10px, transparent 10px) 0 0 / 40px 40px,
    radial-gradient(circle at 25% 25%, #07121e 0 18px, transparent 19px),
    radial-gradient(circle at 75% 25%, #07121e 0 18px, transparent 19px),
    radial-gradient(circle at 25% 75%, #07121e 0 18px, transparent 19px),
    repeating-linear-gradient(45deg, #07121e 0 8px, #f7fbff 8px 16px);
  border: 8px solid #f7fbff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.download-meta strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 18px;
}

.play-badge {
  width: 230px;
  max-width: 100%;
  height: auto;
}

.modal-note {
  color: var(--muted);
  font-size: 13px;
}

.modal-phone {
  display: grid;
  place-items: end center;
  min-height: 420px;
}

.modal-phone img {
  width: min(100%, 360px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.58));
}

body.modal-open { overflow: hidden; }

.page-hero {
  min-height: 330px;
  padding: 136px 0 58px;
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.96), rgba(3, 13, 25, 0.56)),
    url("../assets/images/cta-lower-bg.png") center / cover no-repeat;
}
.page-hero h1 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.08; }
.page-hero p { margin: 14px 0 0; max-width: 760px; color: #d6e4f1; font-size: 18px; }
.legal-content { padding: 56px 0 70px; }
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.legal-card { padding: 24px; }
.legal-card h2, .legal-card h3 { margin: 0 0 10px; color: var(--gold); }
.legal-card li { color: #d6e4f1; margin: 8px 0; }
.about-intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; align-items: start; }
.about-panel { padding: 30px; }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 22px; }
.value-card { padding: 18px; text-align: center; color: var(--gold); font-weight: 900; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .brand-text { font-size: 19px; }
  .nav-panel { gap: 22px; }
  .hero-grid { grid-template-columns: 1fr 0.72fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-shell { grid-template-columns: 1fr; grid-template-rows: auto; }
  .showcase-copy, .showcase-media, .showcase-media img { min-height: 0; }
  .showcase-media, .showcase-copy, .showcase-controls { grid-column: 1; grid-row: auto; }
  .showcase-copy { max-height: none; }
  .showcase-controls { padding: 0 12px; }
  .showcase-media { aspect-ratio: 16 / 9; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 32px, var(--container)); }
  .nav { min-height: 68px; }
  .brand-logo { width: 50px; height: 50px; }
  .brand-text { font-size: 16px; }
  .menu-toggle { display: block; }
  .nav-panel {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: rgba(3, 13, 25, 0.97);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  .nav-panel.open { display: flex; }
  .nav-link { padding: 12px; }
  .hero { min-height: auto; padding: 92px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 18px; }
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero h1 span { white-space: normal; }
  .hero-lead { margin-bottom: 30px; font-size: 18px; }
  .hero-phone img { width: min(80vw, 390px); }
  .section-title { gap: 16px; }
  .section-title span { width: 70px; }
  .feature-grid, .testimonial-slide, .faq-grid, .legal-grid, .about-intro { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; }
  .slider-btn { display: none; }
  .cta-banner {
    padding: 30px 24px;
    background:
      linear-gradient(90deg, rgba(3, 13, 25, 0.96) 0%, rgba(3, 13, 25, 0.8) 100%),
      url("../assets/images/cta-lower-bg.png") center / cover no-repeat;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid > div:first-child,
  .footer-grid > .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-grid > div:not(:first-child) { border-left: 0; padding-left: 0; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .office-hours span { white-space: normal; }
  .modal-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .download-box { grid-template-columns: 1fr; }
  .modal-phone { min-height: 320px; place-items: center; }
}

@media (max-width: 560px) {
  .btn-large, .hero-actions .btn { width: 100%; }
  .hero-points { margin-top: 30px; padding: 14px; }
  .point { flex-basis: 100%; }
  .feature-grid, .benefit-grid, .faq-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .section { padding: 52px 0; }
  .compact { padding: 30px 0; }
  .section-title span { display: none; }
  .overview-shell { padding: 12px; }
  .showcase-copy { padding: 24px 18px; }
  .showcase-copy h3 { font-size: 34px; }
  .showcase-controls { flex-direction: column; gap: 14px; padding: 0; }
  .showcase-dots { justify-content: center; }
  .showcase-nav { justify-content: center; }
  .cta-banner { align-items: flex-start; flex-direction: column; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child,
  .footer-grid > .footer-contact {
    grid-column: 1 / -1;
  }
  .modal-panel { padding: 24px 18px; }
  .qr-dummy { width: 132px; height: 132px; }
}
