:root {
  --electric: #0032ff;
  --electric-deep: #0021a6;
  --ink: #071124;
  --ink-2: #0d1d42;
  --panel: rgba(255, 255, 255, 0.09);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(106, 170, 255, 0.28);
  --text: #eef5ff;
  --muted: #c7d5ec;
  --light: #f6f9ff;
  --dark-heading: #111827;
  --accent: #57d5ff;
  --gold: #ffd25a;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 22px 70px rgba(0, 30, 110, 0.32);
  --heading-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(0, 50, 255, 0.42), transparent 30rem), linear-gradient(145deg, #030817 0%, #08183b 50%, #020712 100%);
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

p, li, a, button, input, textarea { font-size: 16px; }

h1, h2, h3, h4, .logo-text {
  font-family: var(--heading-font);
  line-height: 1.12;
  margin: 0 0 18px;
}

h1 { font-size: clamp(35px, 5.3vw, 72px); color: #ffffff; letter-spacing: -0.055em; }
h2 { font-size: clamp(28px, 3.4vw, 48px); color: #ffffff; letter-spacing: -0.035em; }
h3 { font-size: clamp(20px, 2vw, 26px); color: #ffffff; }
h4 { font-size: 20px; color: #ffffff; }

.light-section h2, .light-section h3, .light-section h4 { color: var(--dark-heading); }
.light-section { color: #243047; background: var(--light); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: rgba(3, 8, 23, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--electric), #57d5ff);
  box-shadow: 0 0 32px rgba(0, 50, 255, 0.56);
}

.logo-mark svg { width: 30px; height: 30px; }

.logo-text { font-size: 24px; font-weight: 850; color: #ffffff; letter-spacing: -0.03em; margin: 0; }

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

.nav-links a {
  color: #eef5ff;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.9;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover { color: var(--accent); opacity: 1; }

.phone-button, .primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.phone-button, .primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--electric), var(--electric-deep));
  box-shadow: 0 0 34px rgba(0, 50, 255, 0.5);
}

.secondary-button { color: #ffffff; background: rgba(255, 255, 255, 0.09); }

.phone-button:hover, .primary-button:hover, .secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(87, 213, 255, 0.9);
  box-shadow: 0 0 46px rgba(0, 50, 255, 0.72);
}

.phone-button svg, .primary-button svg { width: 19px; height: 19px; }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  min-width: 52px;
  height: 48px;
}

.hero { padding: 58px 0 78px; position: relative; overflow: hidden; }

.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--electric);
  filter: blur(80px);
  opacity: 0.28;
  pointer-events: none;
}

.hero::before { width: 360px; height: 360px; left: -120px; top: 40px; }
.hero::after { width: 420px; height: 420px; right: -130px; bottom: -90px; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: stretch;
}

.hero-copy, .hero-media {
  min-height: 530px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.hero-copy { padding: clamp(28px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  color: #ffffff;
  background: rgba(0, 50, 255, 0.2);
  border: 1px solid rgba(87, 213, 255, 0.34);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 850;
  margin-bottom: 20px;
}

.stars { color: var(--gold); font-size: 24px; letter-spacing: 4px; margin: 2px 0 16px; }

.hero p { color: var(--muted); font-size: 19px; margin: 0 0 20px; }

.cta-line { color: #ffffff; font-size: 21px; font-weight: 850; margin: 10px 0 16px; }

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

.trust-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.trust-badges img {
  width: 76px;
  height: 52px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: #ffffff;
  padding: 7px;
}

.mini-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }

.mini-feature {
  display: grid;
  gap: 8px;
  justify-items: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-weight: 800;
}

.mini-feature svg, .section-icon svg, .service-icon svg, .process-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-media { padding: 14px; position: relative; overflow: hidden; aspect-ratio: 1 / 1; }

.hero-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }

.media-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: min(82%, 360px);
  padding: 18px;
  border-radius: 22px;
  background: rgba(3, 8, 23, 0.76);
  border: 1px solid rgba(87, 213, 255, 0.42);
  backdrop-filter: blur(18px);
}

.media-card strong { display: block; color: #ffffff; font-size: 20px; margin-bottom: 6px; }
.media-card span { color: var(--muted); }

.section { padding: 92px 0; position: relative; }

.section-heading { max-width: 820px; margin: 0 auto 42px; text-align: center; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 900;
}

.light-section .section-kicker { color: var(--electric-deep); }

.section-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--electric), var(--electric-deep));
  box-shadow: 0 0 26px rgba(0, 50, 255, 0.48);
}

.lead { font-size: 19px; color: var(--muted); margin: 0; }
.light-section .lead, .light-section p, .light-section li { color: #344059; }

.glass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.glass-card, .service-card, .review-card, .faq-item, .payment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.glass-card { padding: 24px; }
.glass-card p { color: var(--muted); margin-bottom: 0; }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 18px; height: 18px; border-radius: 50%; background: var(--electric); box-shadow: 0 0 18px rgba(0, 50, 255, 0.68); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: 11px; width: 5px; height: 9px; border: solid #ffffff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.split-section { display: grid; grid-template-columns: 65fr 35fr; gap: 28px; align-items: center; }
.split-section.reverse { grid-template-columns: 35fr 65fr; }
.split-copy, .split-media { border-radius: var(--radius-xl); }
.split-copy { padding: clamp(26px, 4vw, 46px); border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); }
.light-section .split-copy { background: #ffffff; border-color: #dce6ff; box-shadow: 0 18px 46px rgba(12, 30, 80, 0.08); }
.split-copy p:last-child { margin-bottom: 0; }
.split-media { overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 420px; object-fit: cover; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 24px; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(87, 213, 255, 0.8); background: var(--panel-strong); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; color: #ffffff; border-radius: 18px; background: linear-gradient(145deg, var(--electric), #214dff); margin-bottom: 16px; box-shadow: 0 0 28px rgba(0, 50, 255, 0.42); }
.service-card p, .service-card li { color: var(--muted); }
.service-card ul { padding-left: 20px; margin-bottom: 0; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process-card { padding: 20px; border-radius: 22px; background: #ffffff; border: 1px solid #dce6ff; color: #344059; box-shadow: 0 16px 34px rgba(12, 30, 80, 0.08); }
.process-card h3 { color: var(--dark-heading); font-size: 20px; }
.process-icon { width: 48px; height: 48px; color: #ffffff; background: linear-gradient(145deg, var(--electric), var(--electric-deep)); border-radius: 16px; display: grid; place-items: center; margin-bottom: 14px; }

.reviews-shell { position: relative; }
.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 36px) / 3); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 12px; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; padding: 24px; min-height: 290px; background: rgba(255, 255, 255, 0.08); }
.review-card .stars { font-size: 18px; letter-spacing: 2px; margin: 0 0 10px; }
.review-card p { color: var(--muted); }
.review-card strong { color: #ffffff; }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.carousel-controls button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); color: #ffffff; background: rgba(255, 255, 255, 0.1); cursor: pointer; }

.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.pill-list li { padding: 9px 13px; border-radius: 999px; background: rgba(0, 50, 255, 0.1); color: #17233c; font-weight: 800; }

.cta-band {
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 58px);
  background: radial-gradient(circle at 20% 20%, rgba(87, 213, 255, 0.3), transparent 28rem), linear-gradient(135deg, #06122f, #0021a6 56%, #0032ff);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { padding: 22px; background: #ffffff; border-color: #dce6ff; }
.faq-item h3 { color: var(--dark-heading); }
.faq-item p { margin-bottom: 0; }

.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.payment-card { padding: 24px; text-align: center; background: rgba(255, 255, 255, 0.08); font-weight: 900; font-size: 20px; }

.site-footer { padding: 54px 0 118px; border-top: 1px solid var(--line); background: rgba(2, 7, 18, 0.94); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 1.4fr; gap: 28px; align-items: start; }
.footer-grid p, .footer-grid a, .footer-grid li { font-size: 14px; color: #c7d5ec; }
.footer-grid h3 { font-size: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.disclaimer { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); color: #b9c9e4; font-size: 14px; }

.mobile-call { display: none; }

.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .nav-links { position: fixed; left: 20px; right: 20px; top: 96px; display: none; flex-direction: column; align-items: stretch; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: rgba(3, 8, 23, 0.96); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .hero-grid, .split-section, .split-section.reverse { grid-template-columns: 1fr; }
  .hero-copy, .hero-media { min-height: auto; }
  .hero-media img { min-height: 360px; }
  .glass-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-track { grid-auto-columns: calc((100% - 18px) / 2); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 96px; flex-wrap: wrap; gap: 10px; padding: 10px 0; }
  .logo { flex: 1 1 calc(100% - 68px); }
  .logo-text { font-size: 24px; white-space: normal; }
  .header-phone { flex: 1 1 calc(100% - 64px); min-height: 46px; font-size: 16px; padding: 10px 14px; }
  .menu-toggle { order: 2; }
  .nav-links { top: 112px; }
  h1 { font-size: clamp(35px, 10vw, 50px); }
  h2 { font-size: clamp(28px, 8vw, 34px); }
  .hero { padding: 28px 0 54px; }
  .hero-copy { padding: 24px; }
  .hero p, .lead { font-size: 17px; }
  .mini-features, .glass-grid, .services-grid, .area-grid, .faq-grid, .payment-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .split-media img { height: 300px; }
  .process-grid { grid-template-columns: 1fr; }
  .reviews-track { grid-auto-columns: 88%; }
  .trust-badges img { width: 64px; height: 46px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .primary-button, .secondary-button, .phone-button { width: 100%; }
  .site-footer { padding-bottom: 104px; }
  .mobile-call {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: env(safe-area-inset-left);
    right: env(safe-area-inset-right);
    bottom: env(safe-area-inset-bottom);
    z-index: 100;
    min-height: 62px;
    padding: 13px 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--electric), var(--electric-deep));
    box-shadow: 0 -10px 32px rgba(0, 50, 255, 0.38);
    font-weight: 950;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }
}
