/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 26, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--color-text-muted);
}
.nav a:hover { color: var(--color-text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__mobile-cta { display: none; }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .25s var(--transition-smooth), opacity .25s var(--transition-smooth);
}

/* ===== Sections rhythm ===== */
section { padding: 96px 0; position: relative; }
.trust { padding: 32px 0; }
.steps { padding: 64px 0 96px; }

/* ===== Hero ===== */
.hero {
  padding: 88px 0 80px;
  overflow: clip;
}

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

.hero__title {
  font-size: clamp(36px, 5.2vw, 58px);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  margin-top: 20px;
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__price-hint {
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-text-faint);
}
.hero__price-hint strong { color: var(--color-accent-light); }

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero__glow--1 {
  width: 480px; height: 480px;
  top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.35), transparent 70%);
}
.hero__glow--2 {
  width: 380px; height: 380px;
  bottom: -180px; left: -100px;
  background: radial-gradient(circle, rgba(96,165,250,0.18), transparent 70%);
}

.hero__art { display: flex; justify-content: center; position: relative; z-index: 1; }

.hero-card {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card__logo {
  border-radius: 50%;
  box-shadow: var(--shadow-glow-lg);
  position: relative;
  z-index: 2;
}
.hero-card__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
}
.hero-card__ring--1 { inset: -20px; }
.hero-card__ring--2 { inset: -48px; border-color: var(--color-border); }
.hero-card__dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-accent-light);
  box-shadow: 0 0 12px rgba(var(--color-accent-rgb), 0.8);
}
.hero-card__dot--1 { top: 6%; left: 90%; }
.hero-card__dot--2 { top: 85%; left: 8%; }
.hero-card__dot--3 { top: 50%; left: -4%; }

/* ===== Trust strip ===== */
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px 24px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 15px;
}

/* ===== Steps ===== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ===== Bento features ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.bento-card--lg { grid-column: span 2; }

/* ===== Locations ===== */
.locations__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

/* ===== Pricing ===== */
.pricing-card {
  max-width: 420px;
  margin: 48px auto 0;
  position: relative;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== Footer CTA ===== */
.footer-cta { padding-top: 40px; }
.footer-cta__inner {
  text-align: center;
  max-width: 640px;
}
.footer-cta__inner h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 16px;
}
.footer-cta__inner p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
}
.footer-cta .hero__cta { justify-content: center; margin-top: 0; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-footer__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.site-footer__links a:hover { color: var(--color-text); }
.site-footer__copy {
  font-size: 13px;
  color: var(--color-text-faint);
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero-card { width: 200px; height: 200px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--lg { grid-column: span 2; }
  .steps__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--transition-smooth), transform .2s var(--transition-smooth), visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-toggle { display: flex; }
  .header-actions .btn--ghost,
  .header-actions .btn--primary { display: none; }
  .nav__mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }
  .nav__mobile-cta .btn { justify-content: center; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-card--lg { grid-column: span 1; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
}
