:root {
  --bg: #0e0e0e;
  --surface: #131313;
  --surface-soft: #1a1919;
  --surface-strong: #202020;
  --surface-high: #262626;
  --outline: #484848;
  --text: #e7e5e4;
  --text-muted: #acabaa;
  --text-soft: #c9c4c1;
  --primary: #adc6ff;
  --primary-dim: #98b8ff;
  --primary-container: #004395;
  --success: #34d399;
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.24);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.18);
  --radius-lg: 8px;
  --radius-md: 6px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(14, 14, 14, 0.6);
  backdrop-filter: blur(24px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.mobile-menu a,
.footer-column a,
.notice-strip a {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.footer-column a:hover,
.notice-strip a:hover,
.profile-link:hover {
  color: var(--text);
}

.nav-links a.is-active {
  color: var(--text);
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 16px 26px;
  min-height: 56px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #003d88;
  background: linear-gradient(135deg, #adc6ff 0%, #004395 100%);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--text);
  letter-spacing: 0.12em;
}

.btn-small {
  min-height: 40px;
  padding: 10px 18px;
}

.btn-hero {
  padding-inline: 32px;
  min-height: 60px;
}

.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.burger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  display: none;
  padding: 0 32px 20px;
  background: rgba(14, 14, 14, 0.98);
}

.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
}
.mobile-menu__cta {
  margin-top: 8px;
  padding: 14px 16px !important;
  background: linear-gradient(135deg, #adc6ff 0%, #004395 100%);
  color: #003d88 !important;
  border-radius: var(--radius-md);
  text-align: center;
}

.hero-section,
.content-section,
.metrics-section,
.notice-section {
  position: relative;
}

.hero-section {
  padding: 160px 0 88px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-glow {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow--left {
  top: -96px;
  left: -96px;
  background: rgba(173, 198, 255, 0.06);
}

.hero-glow--right {
  right: -96px;
  bottom: -96px;
  background: rgba(0, 67, 149, 0.16);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.eyebrow--subtle {
  margin-bottom: 18px;
}

h1,
.section-title,
.review-card__person h3,
.trust-card h3,
.contact-aside h3,
.footer-column h3 {
  font-family: "Manrope", Arial, sans-serif;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.055em;
}

h1 span { color: var(--primary-dim); }

.hero-description {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions { margin-top: 40px; }

.metrics-section {
  padding: 0 0 56px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.metric-item__value {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.metric-item__label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.content-section { padding: 72px 0; }
.notice-section { padding: 0 0 32px; }

.section-title {
  margin: 0 0 56px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
}

.section-title--left {
  text-align: left;
}

.section-title--center {
  text-align: center;
  margin-bottom: 48px;
}

.trust-grid,
.reviews-grid,
.footer-grid {
  display: grid;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}

.trust-card__icon {
  font-size: 32px;
}

.trust-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.trust-card p,
.review-card__text,
.notice-strip p,
.faq-answer p,
.contact-main p,
.contact-aside p,
.footer-brand p,
.footer-bottom,
.contact-schedule span {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.review-card {
  min-height: 100%;
  padding: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
}

.review-card__identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.review-avatar--photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
}

.review-card__person h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.profile-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

.profile-link--muted {
  color: var(--text-muted);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.08);
}

.review-card__text {
  font-size: 14px;
}

.empty-state {
  padding: 48px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.empty-state h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.empty-state p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.72;
}

.empty-state .btn { margin-top: 28px; }

.notice-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(72, 72, 72, 0.25);
  box-shadow: var(--shadow-card);
}

.notice-strip__icon {
  color: var(--primary);
}

.notice-strip p {
  font-size: 14px;
  font-weight: 500;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 56px 60px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.cta-panel__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-panel .section-title {
  margin-bottom: 30px;
  max-width: 760px;
}

.cta-list {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 18px;
}

.cta-list .material-symbols-outlined {
  color: var(--primary);
  font-size: 22px;
}

.cta-panel__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(173, 198, 255, 0.06);
  filter: blur(100px);
  pointer-events: none;
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 4px;
}

.faq-item {
  border-bottom: 1px solid rgba(72, 72, 72, 0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-question__icon {
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-question__icon {
  color: var(--primary);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: start;
}

.contact-main p {
  max-width: 680px;
  margin-bottom: 40px;
  font-size: 18px;
}

.contact-aside {
  padding: 40px;
  background: var(--surface);
  border-left: 2px solid var(--primary);
  box-shadow: var(--shadow-soft);
}

.contact-aside h3 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
}

.contact-aside p {
  margin-bottom: 28px;
  font-size: 16px;
}

.contact-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.contact-schedule span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-schedule strong {
  color: var(--text);
  font-weight: 500;
}

.site-footer {
  padding: 64px 0 32px;
  background: var(--bg);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 32px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 16px;
  font-size: 14px;
}

.footer-column h3 {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-column a {
  display: block;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(72, 72, 72, 0.25);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .trust-grid,
  .reviews-grid,
  .metrics-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .container { width: min(var(--container), calc(100% - 32px)); }
  .nav-links,
  .nav-actions {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero-section {
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .metrics-grid,
  .trust-grid,
  .reviews-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .section-title--center,
  .section-title--left {
    margin-bottom: 36px;
  }

  .cta-panel,
  .contact-aside,
  .empty-state {
    padding: 32px;
  }

  .faq-question span:first-child {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 84px; }
  .logo { font-size: 18px; }
  .btn,
  .btn-small,
  .btn-hero,
  .btn-secondary {
    width: 100%;
  }

  .hero-description,
  .contact-main p,
  .empty-state p,
  .cta-list li {
    font-size: 16px;
  }

  .review-card,
  .notice-strip,
  .cta-panel,
  .contact-aside,
  .empty-state {
    padding: 24px;
  }

  .review-card__identity {
    align-items: flex-start;
  }

  .notice-strip {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


.site-header { background: rgba(14,14,14,.48); backdrop-filter: blur(12px); }
.nav-shell { padding: 12px 0; }
.nav-links { gap: 24px; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a.is-active { border-bottom: none; }
.nav-links a::after { content:''; position:absolute; left:0; right:0; bottom:-6px; height:2px; border-radius:999px; background: linear-gradient(90deg, rgba(173,198,255,.25), #3b82f6); transform:scaleX(0); opacity:0; transition: transform .25s ease, opacity .25s ease; }
.nav-links a:hover::after, .nav-links a.is-active::after { transform:scaleX(1); opacity:1; }
.footer-grid--simple { display:flex; justify-content:space-between; align-items:center; gap:24px; }
.footer-column--simple { display:flex; gap:18px; }
.footer-column--simple a { font-family:"Manrope", Arial, sans-serif; font-weight:700; color: var(--text-muted); }
.footer-column--simple a:hover { color: var(--text); }
@media (max-width: 700px) { .footer-grid--simple, .footer-column--simple { flex-direction:column; align-items:flex-start; } }
