:root {
  --bg: #f4f2f6;
  --bg-soft: #fbf9fc;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #17151c;
  --muted: #6f6a79;
  --primary: #8379cc;
  --primary-deep: #7368c2;
  --secondary: #efb2c9;
  --secondary-deep: #e59db8;
  --mint: #bdebd6;
  --dark: #24212b;
  --dark-soft: #2e2a37;
  --line: rgba(23, 21, 28, 0.08);
  --shadow: 0 24px 60px rgba(58, 49, 88, 0.13);
  --shadow-soft: 0 12px 28px rgba(58, 49, 88, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(131,121,204,0.15), transparent 24%),
    radial-gradient(circle at 95% 8%, rgba(239,178,201,0.18), transparent 18%),
    linear-gradient(180deg, #f6f4f8 0%, #f3f1f5 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin: 0; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section-space { padding: 100px 0; }

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  opacity: .45;
}
.orb-left { top: 40px; left: -120px; background: rgba(189, 235, 214, 0.7); }
.orb-right { top: 200px; right: -120px; background: rgba(239, 178, 201, 0.65); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(131,121,204,0.11);
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.eyebrow.light {
  background: rgba(255,255,255,0.08);
  color: #d7d1ff;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: .96;
  letter-spacing: -0.055em;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: .98;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

p {
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
}

strong { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(244, 242, 246, 0.7);
  border-bottom: 1px solid rgba(23,21,28,0.05);
}

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

.brand img {
  width: 230px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.desktop-nav,
.nav-actions,
.hero-actions,
.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.desktop-nav {
  gap: 28px;
}
.desktop-nav a {
  color: #4f495d;
  font-size: .95rem;
  font-weight: 600;
}
.phone-link {
  font-weight: 800;
  color: var(--primary-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.button-primary {
  background: linear-gradient(135deg, var(--primary-deep), var(--secondary-deep));
  color: white;
}
.button-secondary {
  background: rgba(255,255,255,0.76);
  border-color: rgba(23,21,28,0.08);
}
.button.full { width: 100%; }

.menu-toggle,
.mobile-menu { display: none; }

.hero-section {
  padding: 54px 0 54px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  align-items: center;
}
.hero-lead {
  max-width: 720px;
  margin-top: 24px;
}
.hero-actions { margin: 34px 0 30px; flex-wrap: wrap; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-row div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
}
.trust-row strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.trust-row span { font-size: .92rem; color: var(--muted); }

.hero-visual { position: relative; }
.visual-shell {
  position: relative;
  min-height: 640px;
  border-radius: 40px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.1)),
    radial-gradient(circle at top left, rgba(189,235,214,.62), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(239,178,201,.58), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.5), rgba(255,255,255,.18));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.glass-card {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
}
.hero-top-card {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 110px;
  padding: 30px;
  border-radius: 30px;
}
.small-tag {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(131,121,204,0.12);
  color: var(--primary-deep);
  font-size: .77rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero-top-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}
.score-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.score-strip div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.74);
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-deep);
}
.hero-bottom-row {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 1.45fr .8fr;
  gap: 16px;
}
.route-card,
.callout-card {
  border-radius: 28px;
  padding: 24px;
}
.route-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  margin-bottom: 12px;
}
.route-header strong { color: var(--text); }
.route-line {
  width: 100%;
  height: 48px;
  border-bottom: 3px dashed rgba(131,121,204,0.55);
  border-radius: 30px;
  position: relative;
}
.route-line::before,
.route-line::after,
.route-line:only-child::marker { content: ''; }
.route-line::before,
.route-line::after {
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-deep), var(--secondary-deep));
}
.route-line::before { left: 8px; }
.route-line::after { right: 8px; }
.route-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}
.callout-title {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-deep);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}
.callout-card strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.hero-logo-mark {
  position: absolute;
  right: -26px;
  top: 120px;
  width: 230px;
  opacity: .17;
  transform: rotate(-6deg);
}

.brand-strip { padding: 10px 0 22px; }
.brand-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.brand-strip-grid span {
  text-align: center;
  padding: 16px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: #504a5c;
}

.intro-grid,
.reviews-grid,
.faq-grid,
.quote-grid,
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.intro-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.intro-panel {
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
}
.intro-panel.tall { grid-row: span 2; }
.intro-panel.wide { grid-column: span 1; }
.intro-panel.accent {
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(239,178,201,.34));
}
.intro-panel.accent-soft {
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(189,235,214,.38));
}
.panel-kicker {
  display: inline-block;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--primary-deep);
  font-weight: 800;
  margin-bottom: 14px;
}

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

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card,
.process-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(131,121,204,.18), rgba(239,178,201,.22));
  color: var(--primary-deep);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary-deep);
  font-weight: 800;
}

.signature-band {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: white;
}
.signature-band p { color: rgba(255,255,255,0.74); }
.band-head { margin-bottom: 34px; }
.process-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.process-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  font-weight: 900;
  margin-bottom: 18px;
}
.process-card h3 { color: white; }

.estimator-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
}
.estimator-card {
  padding: 28px;
  border-radius: 30px;
}
.estimator-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #534d62;
}
input,
textarea,
select {
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(23,21,28,0.08);
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(115,104,194,0.5);
  box-shadow: 0 0 0 4px rgba(115,104,194,0.08);
}
.estimator-result {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(131,121,204,.12), rgba(239,178,201,.16));
}
.estimator-result span {
  display: block;
  color: var(--primary-deep);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 8px;
}
.estimator-result strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.review-showcase {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.52)),
    radial-gradient(circle at top left, rgba(189,235,214,.5), transparent 35%),
    radial-gradient(circle at bottom right, rgba(239,178,201,.42), transparent 35%);
}
.review-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(131,121,204,.12);
  color: var(--primary-deep);
  font-size: .78rem;
  font-weight: 800;
}
.mini-proof {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.mini-proof div {
  min-width: 150px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
}
.mini-proof strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.testimonial-slider {
  position: relative;
  min-height: 190px;
  margin-top: 24px;
}
.testimonial {
  display: none;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
}
.testimonial.active { display: block; }
.testimonial strong { display: block; margin-top: 16px; }
.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.slider-dots button {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(115,104,194,0.22);
  cursor: pointer;
}
.slider-dots button.active { background: var(--primary-deep); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.area-grid span {
  padding: 18px 16px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.keyword-cloud {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
  color: #4e4860;
  font-weight: 700;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p { margin-top: 12px; }

.quote-grid { align-items: stretch; }
.quote-copy,
.quote-form {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23,21,28,0.06);
  box-shadow: var(--shadow-soft);
}
.quote-meta {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.quote-meta span,
.footer-grid span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 4px;
}
.quote-meta strong { font-size: 1.06rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.single { grid-template-columns: 1fr; }
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 18px;
}
.check-row input { width: auto; margin: 0; }
.form-note {
  margin-top: 14px;
  font-size: .92rem;
}

.site-footer {
  padding: 28px 0 36px;
  background: #24212b;
  color: white;
}
.site-footer p,
.site-footer span,
.site-footer a { color: rgba(255,255,255,0.76); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 30px;
}
.footer-grid h3 {
  color: white;
  margin-bottom: 14px;
}
.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
}
.footer-logo {
  width: 220px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-deep), var(--secondary-deep));
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-actions { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(23,21,28,0.08);
    background: rgba(255,255,255,0.8);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  .mobile-menu {
    display: none;
    padding: 0 16px 18px;
  }
  .mobile-menu.open {
    display: grid;
    gap: 10px;
  }
  .hero-grid,
  .intro-grid,
  .reviews-grid,
  .faq-grid,
  .quote-grid,
  .seo-grid,
  .estimator-layout {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .process-grid,
  .area-grid,
  .brand-strip-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-top-card {
    right: 26px;
  }
}

@media (max-width: 760px) {
  .section-space { padding: 76px 0; }
  .brand img { width: 180px; }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  .visual-shell { min-height: 560px; }
  .hero-bottom-row,
  .intro-panels,
  .footer-grid,
  .score-strip,
  .form-row,
  .estimator-fields,
  .service-grid,
  .process-grid,
  .area-grid,
  .brand-strip-grid,
  .trust-row { grid-template-columns: 1fr; }
  .hero-bottom-row { position: absolute; }
  .hero-logo-mark { width: 160px; top: 180px; }
  .hero-top-card { position: absolute; padding: 24px; }
  .route-card, .callout-card, .quote-copy, .quote-form, .review-showcase { padding: 24px; }
  .floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
