:root {
  --font-heading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #111827;
  --muted: #4B5563;
  --deep: #23243B;
  --violet: #7577A7;
  --gold: #F4B95F;
  --paper: #FFFFFF;
  --soft: #F7F7FB;
  --line: rgba(117, 119, 167, 0.22);
  --shadow: 0 24px 70px rgba(35, 36, 59, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--muted);
  background:
    radial-gradient(circle at 8% 4%, rgba(117, 119, 167, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 14%, rgba(244, 185, 95, 0.13), transparent 24rem),
    #FFFFFF;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, h4 { color: var(--ink); letter-spacing: -0.035em; line-height: 1.08; font-weight: 850; }
h1 { font-size: clamp(2.2rem, 8.4vw, 4.7rem); }
h2 { font-size: clamp(1.75rem, 5vw, 3.15rem); }
h3, h4 { font-size: clamp(1.25rem, 3vw, 1.55rem); }
p, li, a, button, input, textarea { font-size: 16px; }

@media (max-width: 767px) {
  h1 { font-size: clamp(2.2rem, 9.8vw, 3.3rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.2rem); }
}

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 82px 0; position: relative; }
.section-tight { padding: 58px 0; }
.eyebrow { color: var(--violet); font-weight: 850; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; }
.lead { color: #374151; font-size: clamp(1rem, 2vw, 1.18rem); max-width: 760px; }
.dark .lead, .dark p, .dark li { color: rgba(255,255,255,0.84); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #FFFFFF; }
.accent-stars { color: var(--gold); letter-spacing: 0.12em; font-size: 1.25rem; line-height: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(35,36,59,0.08);
}

.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-size: 24px; font-weight: 900; letter-spacing: -0.04em; white-space: nowrap; }
.logo img { width: 42px; height: 42px; border-radius: 14px; box-shadow: 0 12px 26px rgba(35,36,59,0.18); }
.footer-logo img { width: 38px; height: 38px; }

.desktop-nav { display: none; align-items: center; gap: 22px; }
.desktop-nav a { color: #23243B; text-decoration: none; font-size: 18px; font-weight: 760; }
.desktop-nav a:hover { color: var(--violet); }
.desktop-phone { display: none !important; }

.hamburger { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 16px; background: var(--deep); border: 0; color: #FFFFFF; }
.hamburger svg { width: 25px; height: 25px; }
.mobile-menu { display: none; position: fixed; inset: 82px 16px auto 16px; z-index: 60; background: #FFFFFF; border: 1px solid var(--line); border-radius: 28px; padding: 20px; box-shadow: var(--shadow); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: var(--ink); text-decoration: none; font-size: 18px; font-weight: 800; padding: 13px 8px; border-bottom: 1px solid rgba(35,36,59,0.08); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; white-space: nowrap; }

@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .hamburger, .mobile-menu { display: none !important; }
  .desktop-phone { display: inline-flex !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  min-height: 54px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}
.btn-primary { color: #FFFFFF; background: linear-gradient(135deg, var(--deep), #343659); box-shadow: 0 18px 38px rgba(35,36,59,0.24); }
.btn-primary:hover { color: #FFFFFF; transform: translateY(-3px); box-shadow: 0 26px 54px rgba(35,36,59,0.32); }
.btn-gold { color: #111827; background: linear-gradient(135deg, #F4B95F, #FFD990); box-shadow: 0 18px 38px rgba(244,185,95,0.28); }
.btn-gold:hover { color: #111827; transform: translateY(-3px); box-shadow: 0 26px 54px rgba(244,185,95,0.36); }
.btn-ghost { color: #FFFFFF; border: 1px solid rgba(255,255,255,0.32); background: rgba(255,255,255,0.1); }
.btn-ghost:hover { color: #FFFFFF; background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.phone-icon { width: 18px; height: 18px; flex: 0 0 auto; }

.hero { padding: 38px 0 70px; }
.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(135deg, #23243B 0%, #303254 55%, #7577A7 100%);
  box-shadow: var(--shadow);
}
.hero-shell::before, .hero-shell::after, .orb { content: ""; position: absolute; border-radius: 999px; pointer-events: none; }
.hero-shell::before { width: 380px; height: 380px; left: -130px; top: -140px; border: 1px solid rgba(255,255,255,0.18); box-shadow: inset 0 0 60px rgba(255,255,255,0.08); }
.hero-shell::after { width: 210px; height: 210px; right: -72px; bottom: -72px; background: rgba(244,185,95,0.18); }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 28px; padding: 28px; align-items: stretch; }
.hero-copy { padding: 10px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-copy h1 { margin: 14px 0 14px; }
.trust-icons { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.trust-icons img { width: auto; height: 48px; max-width: 100%; object-fit: contain; border: 1px solid rgba(255,255,255,0.28); border-radius: 16px; background: rgba(255,255,255,0.92); padding: 6px 10px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 18px; }
.hero-note { color: #FFFFFF; font-weight: 850; margin-top: 8px; }
.hero-media { min-height: 320px; border-radius: 30px; overflow: hidden; position: relative; background: #111827; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1 / 1; }
.hero-card { position: absolute; left: 18px; right: 18px; bottom: 18px; background: rgba(255,255,255,0.92); color: #111827; border-radius: 22px; padding: 16px; backdrop-filter: blur(12px); box-shadow: 0 18px 40px rgba(0,0,0,0.16); }
.hero-card strong { display: block; color: #111827; }
.hero-card span { color: #4B5563; font-size: 15px; }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr); padding: 46px; }
  .hero-copy { padding: 20px 0; }
}

.intro-card { margin-top: -34px; position: relative; z-index: 4; background: #FFFFFF; border: 1px solid var(--line); border-radius: 28px; padding: clamp(22px, 4vw, 34px); box-shadow: 0 18px 60px rgba(35,36,59,0.1); }
.feature-grid { display: grid; gap: 18px; margin-top: 34px; }
.feature-card, .service-card, .review-card, .payment-card, .faq-card {
  background: #FFFFFF;
  border: 1px solid rgba(117,119,167,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(35,36,59,0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.feature-card:hover, .service-card:hover, .payment-card:hover { transform: translateY(-5px); box-shadow: 0 24px 58px rgba(35,36,59,0.12); border-color: rgba(117,119,167,0.45); }
.feature-icon, .service-icon, .step-number { width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; background: linear-gradient(135deg, rgba(117,119,167,0.14), rgba(244,185,95,0.22)); color: var(--deep); margin-bottom: 16px; }
.feature-icon svg, .service-icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3, .service-card h3 { margin: 0 0 10px; }
.feature-card p, .service-card p { margin: 0; }

@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.dark-panel { background: var(--deep); color: #FFFFFF; border-radius: 36px; padding: clamp(28px, 5vw, 54px); position: relative; overflow: hidden; }
.dark-panel::before { content: ""; position: absolute; width: 360px; height: 360px; right: -150px; top: -130px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); }
.dark-panel > * { position: relative; z-index: 1; }

.reviews-wrap { overflow: hidden; margin-top: 30px; }
.reviews-track { display: flex; transition: transform 320ms ease; will-change: transform; }
.review-slide { flex: 0 0 100%; padding: 8px; }
.review-card { min-height: 230px; height: 100%; background: #FFFFFF78; color: #374151; }
.review-card .stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 12px; }
.review-card strong { color: #111827; display: block; margin-bottom: 8px; }
.slider-controls { display: flex; gap: 12px; justify-content: flex-end; margin-top: 18px; }
.slider-btn { width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--line); background: #FFFFFF; color: var(--deep); font-size: 22px; line-height: 1; box-shadow: 0 12px 28px rgba(35,36,59,0.1); }
@media (min-width: 900px) { .review-slide { flex-basis: 33.3333%; } }

.split-section { display: grid; gap: 26px; align-items: center; }
.split-section + .split-section { margin-top: 42px; }
.split-text { background: #FFFFFF; border: 1px solid var(--line); border-radius: 30px; padding: clamp(22px, 4vw, 38px); box-shadow: 0 16px 52px rgba(35,36,59,0.08); }
.split-media { border-radius: 30px; overflow: hidden; min-height: 270px; box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; display: block; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(244,185,95,0.16); }
@media (min-width: 900px) {
  .split-section { grid-template-columns: 65fr 35fr; }
  .split-section.media-left { grid-template-columns: 35fr 65fr; }
  .split-section.media-left .split-media { order: 1; }
  .split-section.media-left .split-text { order: 2; }
}

.services-grid { display: grid; gap: 18px; margin-top: 34px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1120px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.service-card ul { padding-left: 18px; margin: 14px 0 0; }
.service-card li { margin: 8px 0; }

.process-grid { display: grid; gap: 18px; margin-top: 30px; counter-reset: steps; }
.process-step { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 24px; padding: 24px; color: #FFFFFF; }
.process-step strong { display: block; color: #FFFFFF; font-size: 20px; margin-bottom: 8px; }
.process-step p { margin: 0; color: rgba(255,255,255,0.82); }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.area-grid { display: grid; gap: 24px; align-items: start; }
.area-card { background: #FFFFFF; border: 1px solid var(--line); border-radius: 28px; padding: 26px; box-shadow: 0 16px 50px rgba(35,36,59,0.08); }
.pill-list { display: flex; gap: 10px; flex-wrap: wrap; padding: 0; list-style: none; margin: 18px 0 0; }
.pill-list li { border: 1px solid rgba(117,119,167,0.28); background: #FFFFFF; color: #23243B; border-radius: 999px; padding: 9px 14px; font-weight: 800; }
@media (min-width: 900px) { .area-grid { grid-template-columns: 1.1fr 0.9fr; } }

.cta-band { background: linear-gradient(135deg, #23243B, #7577A7); color: #FFFFFF; border-radius: 34px; padding: clamp(28px, 5vw, 50px); display: grid; gap: 20px; align-items: center; overflow: hidden; position: relative; }
.cta-band::after { content: ""; position: absolute; width: 260px; height: 260px; right: -80px; bottom: -110px; border-radius: 999px; background: rgba(244,185,95,0.18); }
.cta-band h2, .cta-band p, .cta-band a { position: relative; z-index: 1; }
.cta-band h2 { color: #FFFFFF; margin: 0; }
.cta-band p { margin: 0; color: rgba(255,255,255,0.86); }
@media (min-width: 800px) { .cta-band { grid-template-columns: 1fr auto; } }

.payment-grid { display: grid; gap: 16px; margin-top: 28px; }
@media (min-width: 700px) { .payment-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.payment-card { text-align: center; font-weight: 850; color: #111827; }

.faq-grid { display: grid; gap: 16px; margin-top: 26px; }
.faq-card h3 { margin: 0 0 10px; }
.faq-card p { margin: 0; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.site-footer { background: #171829; color: rgba(255,255,255,0.78); padding: 56px 0 34px; }
.site-footer a { color: #FFFFFF; text-decoration: none; }
.site-footer p, .site-footer li, .site-footer a { font-size: 14px; }
.footer-grid { display: grid; gap: 28px; }
.footer-logo { color: #FFFFFF; }
.footer-title { color: #FFFFFF; font-weight: 900; margin-bottom: 10px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.disclaimer { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 34px; padding-top: 24px; font-size: 14px; color: rgba(255,255,255,0.68); }
@media (min-width: 850px) { .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr; } }

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(23,24,41,0.92);
  backdrop-filter: blur(14px);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
.mobile-sticky-call.visible { transform: translateY(0); opacity: 1; }
.mobile-sticky-call a { width: 100%; min-height: 54px; white-space: nowrap; color: #111827; }
@media (max-width: 767px) { .mobile-sticky-call { display: block !important; } body { padding-bottom: 78px; } }
@media (min-width: 768px) { .mobile-sticky-call { display: none !important; } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 1ms !important; animation-duration: 1ms !important; }
  .reveal { opacity: 1; transform: none; }
}
