:root {
  --bg: #f8fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.10);
  --blue: #1877f2;
  --blue-dark: #0b5bd3;
  --mint: #42d392;
  --silver: #eef4fb;
  --navy: #0b1220;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);
  --container: 1160px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(66, 211, 146, 0.20), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(24, 119, 242, 0.14), transparent 30rem),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 46%, #fff 100%);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 105px 0; }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(24px) saturate(1.35);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
}

.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-emblem {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(24,119,242,.12), 0 8px 22px rgba(24,119,242,.14);
}
.brand-emblem img { width: 100%; height: 100%; object-fit: cover; }
.brand-wordmark {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.055em;
  line-height: 1;
  background: linear-gradient(90deg, #0b2d7a 0%, #12bff3 45%, #0b2d7a 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  text-shadow: 0 10px 26px rgba(24,119,242,.12);
}
.brand-wordmark span { font-size: .74em; letter-spacing: -0.04em; }
.brand-logo {
  width: 178px;
  height: 54px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  mix-blend-mode: multiply;
}
.footer-brand .footer-logo { width: 230px; height: 78px; mix-blend-mode: normal; background: #fff; padding: 5px 10px; }
.desktop-nav { display: flex; justify-content: center; gap: 26px; color: #475467; font-size: 14px; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--ink); }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta, .button.primary { background: var(--ink); color: #fff; box-shadow: 0 12px 30px rgba(16,24,40,.18); }
.button.secondary { background: rgba(255,255,255,.72); border-color: var(--line); color: var(--ink); }
.button.light { background: #fff; color: var(--navy); }
.button.full { width: 100%; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(16,24,40,.18); }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 24, 40, 0.10);
  background: #fff;
  border-radius: 999px;
  padding: 0;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
}
.hamburger-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-button[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { width: min(520px, calc(100% - 32px)); margin: 10px auto; padding: 18px; border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-soft); backdrop-filter: blur(20px); position: sticky; top: 86px; z-index: 19; border: 1px solid rgba(16,24,40,.08); }
.mobile-nav a { display: block; padding: 14px; color: #344054; font-weight: 750; }

.hero { padding-top: 96px; min-height: 760px; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr); gap: 72px; align-items: center; }
.eyebrow { color: var(--blue); text-transform: uppercase; font-weight: 800; letter-spacing: .12em; font-size: 12px; margin: 0 0 16px; }
.eyebrow.light { color: #93c5fd; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(56px, 8.2vw, 112px); line-height: .88; letter-spacing: -0.075em; margin-bottom: 22px; }
h2 { font-size: clamp(34px, 5vw, 64px); line-height: .98; letter-spacing: -0.055em; margin-bottom: 20px; }
h3 { font-size: 22px; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 12px; }
p { color: var(--muted); font-size: 17px; }
.hero-lede { font-size: clamp(19px, 2vw, 24px); line-height: 1.38; max-width: 780px; }
.offer-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1877f2, #42d392);
  color: #fff;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 950;
  letter-spacing: -0.035em;
  box-shadow: 0 16px 36px rgba(24,119,242,.24);
}
.hero-actions { display: flex; gap: 14px; margin: 34px 0 28px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span, .city-cloud span {
  border: 1px solid var(--line); background: rgba(255,255,255,.72); color: #475467;
  border-radius: 999px; padding: 10px 14px; font-size: 14px; font-weight: 650;
}
.hero-card { position: relative; min-height: 540px; }
.glass-card {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.58));
  border: 1px solid rgba(255,255,255,.88);
  backdrop-filter: blur(28px);
  box-shadow: var(--shadow);
}
.schedule-card { position: relative; overflow: hidden; padding: 30px; border-radius: var(--radius-xl); min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.card-topline { position: absolute; top: 22px; left: 22px; right: 22px; display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 12px 14px; border-radius: 18px; background: rgba(255,255,255,.65); color: #667085; font-size: 14px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 7px rgba(66,211,146,.14); }
.shine-orb { position: absolute; width: 340px; height: 340px; border-radius: 50%; top: 94px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle at 35% 28%, #fff 0 10%, #caf7e0 11% 28%, #78c7ff 29% 52%, #1877f2 53% 72%, #0b1220 73%); filter: saturate(1.12); box-shadow: inset -30px -30px 80px rgba(0,0,0,.22), 0 24px 80px rgba(24,119,242,.26); }
.hero-illustration { position: relative; width: 100%; margin: 58px 0 20px; border-radius: 28px; box-shadow: 0 18px 50px rgba(24,119,242,.14); }
.schedule-card h2 { position: relative; font-size: 54px; margin-bottom: 10px; }
.schedule-card p { position: relative; color: #475467; }
.mini-metrics { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.mini-metrics div { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 18px; padding: 14px; }
.mini-metrics strong, .mini-metrics span { display: block; }
.mini-metrics strong { font-size: 22px; }
.mini-metrics span { font-size: 12px; color: #667085; }
.floating-note { position: absolute; padding: 13px 16px; border-radius: 999px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-soft); font-weight: 750; color: #344054; }
.note-one { top: 116px; left: -24px; }
.note-two { right: -8px; bottom: 154px; }

.soft-section { background: linear-gradient(180deg, rgba(238,244,251,.72), rgba(255,255,255,.92)); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.split p:last-child { font-size: 20px; }
.section-heading { max-width: 760px; text-align: center; margin-bottom: 48px; }
.section-heading p:last-child { font-size: 20px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .process-step, .quote-form, .proof-panel, .faq-list details {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.service-card { min-height: 248px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.service-card.with-image { min-height: 390px; }
.service-card.with-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 20px; margin-bottom: 20px; background: #f7fbff; }
.gallery-section { background: linear-gradient(180deg, #fff, #f7fbff); }
.people-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.people-gallery figure { margin: 0; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.86); box-shadow: var(--shadow-soft); }
.people-gallery img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: 20px; background: #f7fbff; }
.people-gallery figcaption { padding: 14px 6px 2px; font-weight: 850; color: #344054; letter-spacing: -0.02em; }
.service-card span { color: var(--blue); font-weight: 850; font-size: 13px; letter-spacing: .14em; }
.service-card p { margin: 0; }
.dark-section { background: #07111f; color: #fff; position: relative; overflow: hidden; }
.dark-section::before { content: ""; position: absolute; inset: -20% -10% auto auto; width: 680px; height: 680px; background: radial-gradient(circle, rgba(24,119,242,.44), transparent 60%); }
.dark-section p { color: #b8c4d6; }
.areas-layout { position: relative; display: grid; grid-template-columns: .8fr 1.1fr; gap: 64px; align-items: center; }
.city-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.city-cloud span { background: rgba(255,255,255,.08); color: #eef6ff; border-color: rgba(255,255,255,.14); padding: 12px 16px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-step { padding: 30px; }
.process-step span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 16px; background: var(--silver); color: var(--blue); font-weight: 900; margin-bottom: 30px; }
.proof-panel { display: grid; grid-template-columns: .82fr 1fr; gap: 46px; padding: 42px; align-items: center; }
.proof-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.proof-grid div { padding: 18px; border-radius: 20px; background: #f8fbff; border: 1px solid var(--line); }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid span { color: var(--muted); margin-top: 5px; }
.estimate-section { background: linear-gradient(135deg, #f7fbff, #ffffff); }
.estimate-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 62px; align-items: start; }
.check-list { color: #344054; padding-left: 0; list-style: none; display: grid; gap: 12px; margin: 26px 0 0; }
.check-list li::before { content: "✓"; color: var(--blue); font-weight: 900; margin-right: 10px; }
.quote-form { padding: 26px; display: grid; gap: 16px; }
.quote-form label { display: grid; gap: 8px; font-weight: 750; color: #344054; font-size: 14px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; min-height: 50px; padding: 13px 14px; font: inherit; background: #fbfdff; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(24,119,242,.55); box-shadow: 0 0 0 5px rgba(24,119,242,.10); }
.form-note { font-size: 13px; margin: 0; text-align: center; }
.faq-list { display: grid; gap: 12px; max-width: 840px; }
.faq-list details { padding: 22px 24px; }
.faq-list summary { cursor: pointer; font-weight: 850; font-size: 18px; }
.faq-list p { margin: 12px 0 0; }
.site-footer { background: #07111f; color: #fff; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 30px; }
.site-footer p, .site-footer span, .site-footer a { color: #b8c4d6; }
.site-footer strong { display: block; color: #fff; margin-bottom: 12px; }
.site-footer a, .site-footer span { display: block; margin: 9px 0; }
.footer-brand { margin-bottom: 16px; }
.copyright { text-align: center; margin: 44px 0 0; font-size: 14px; }
.reveal { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) { *, html { scroll-behavior: auto !important; transition: none !important; animation: none !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 920px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { display: inline-flex; justify-self: end; }
  .hero-grid, .split, .areas-layout, .proof-panel, .estimate-grid { grid-template-columns: 1fr; gap: 34px; }
  .card-grid, .process-grid, .footer-grid, .people-gallery { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-card { min-height: 500px; }
  .section-pad { padding: 76px 0; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { width: min(100% - 20px, 1180px); gap: 10px; padding: 9px 10px 9px 11px; }
  .brand-emblem { width: 40px; height: 40px; border-radius: 14px; }
  .brand-wordmark { font-size: clamp(14px, 4.1vw, 16px); letter-spacing: -0.06em; }
  .menu-button { width: 44px; height: 44px; flex: 0 0 44px; }
  .brand-logo { width: 126px; height: 44px; }
  .footer-brand .footer-logo { width: 210px; height: 68px; }
  h1 { font-size: 58px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .card-grid, .process-grid, .proof-grid, .footer-grid, .people-gallery { grid-template-columns: 1fr; }
  .schedule-card { min-height: 470px; padding: 22px; }
  .shine-orb { width: 270px; height: 270px; }
  .schedule-card h2 { font-size: 42px; }
  .mini-metrics { grid-template-columns: 1fr; }
  .floating-note { display: none; }
}


.seo-section { background: linear-gradient(180deg, #ffffff, #f7fbff); }
.seo-copy { max-width: 1040px; }
.seo-copy strong { color: var(--ink); }
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.seo-grid article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 24px; }
.seo-grid h3 { font-size: 21px; margin-bottom: 10px; }
.seo-grid p { margin: 0; font-size: 16px; }
@media (max-width: 920px) { .seo-grid { grid-template-columns: 1fr; } }
