:root {
  --accent: #2E6DC9;
  --accent-dark: #174E9D;
  --accent-soft: #EAF2FF;
  --ink: #111827;
  --text: #334155;
  --muted: #64748B;
  --line: #E5E7EB;
  --panel: #FFFFFF;
  --bg: #F6F8FB;
  --dark: #0B1220;
  --radius: 24px;
  --shadow: 0 22px 55px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 40px)); }

h1, h2, h3, h4, .brand {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(45px, 6vw, 74px); margin: 16px 0 12px; }
h2 { font-size: clamp(30px, 4vw, 46px); margin: 0 0 22px; }
h3 { font-size: 22px; margin: 24px 0 12px; }
h4 { font-size: 20px; }
p { margin: 0 0 18px; font-size: 16px; }

h2::after, h3::after, h4::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--accent);
  transform-origin: left center;
  transition: width .9s ease;
}
.reveal.in-view h2::after,
.reveal.in-view h3::after,
.reveal.in-view h4::after,
.section-heading.in-view h2::after { width: min(190px, 100%); }
.site-footer h3::after, .hero h1::after, .footer-brand::after { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,232,240,.85);
}
.header-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; font-size: 24px; white-space: nowrap; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #75A7F2);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(46,109,201,.28);
}
.brand-mark svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.desktop-nav { display: flex; align-items: center; gap: 22px; font-size: 18px; font-weight: 700; color: #1F2937; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--accent); }
.header-call, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  font-weight: 850;
  min-height: 52px;
  padding: 14px 22px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.header-call { color: #fff; background: var(--accent); box-shadow: 0 12px 28px rgba(46,109,201,.28); }
.header-call svg { width: 20px; height: 20px; fill: currentColor; }
.header-call:hover, .btn:hover { transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: var(--ink); border-radius: 14px; padding: 10px; }
.menu-toggle span { display: block; height: 3px; background: #fff; border-radius: 999px; margin: 5px 0; }
.mobile-nav { display: none; border-top: 1px solid var(--line); padding: 10px 20px 18px; background: #fff; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 18px; font-weight: 800; color: var(--ink); }
.mobile-nav.open { display: block; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #F5F8FD 0%, #EAF2FF 55%, #FFFFFF 100%); }
.hero-bg { position: absolute; inset: auto -20% -35% auto; width: 620px; height: 620px; border-radius: 999px; background: rgba(46,109,201,.16); filter: blur(10px); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); gap: 44px; align-items: center; min-height: 720px; padding: 72px 0; }
.eyebrow { display: inline-flex; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(46,109,201,.18); border-radius: 999px; padding: 8px 14px; font-weight: 850; letter-spacing: .02em; }
.eyebrow.light { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.stars { color: var(--accent); font-size: 24px; letter-spacing: .12em; margin-bottom: 12px; }
.hero-icons { display: flex; align-items: center; gap: 12px; margin: 14px 0 24px; flex-wrap: wrap; }
.hero-icons img { width: 58px; height: 58px; object-fit: contain; border-radius: 16px; background: #fff; padding: 6px; box-shadow: 0 10px 25px rgba(15,23,42,.12); }
.hero-lead { font-size: 22px; color: var(--ink); font-weight: 850; margin-bottom: 12px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 18px 35px rgba(46,109,201,.28); }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(15,23,42,.08); }
.btn-light { background: #fff; color: var(--accent-dark); box-shadow: 0 18px 38px rgba(0,0,0,.2); }
.shine { position: relative; overflow: hidden; }
.shine::before { content: ""; position: absolute; top: -80%; left: -35%; width: 32%; height: 260%; transform: rotate(25deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.76), transparent); animation: shine 3.1s ease-in-out infinite; }
@keyframes shine { 0% { left: -45%; } 48%, 100% { left: 128%; } }
.hero-media { position: relative; }
.hero-media img, .split-image img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; }
.floating-card { position: absolute; left: -22px; bottom: 24px; background: #fff; border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow); display: grid; gap: 2px; }
.floating-card strong { color: var(--ink); font-size: 20px; }

.intro-section { padding: 34px 0; background: var(--dark); color: #E5E7EB; }
.intro-section p { font-size: 20px; margin: 0; }
.section { padding: 90px 0; }
.split-section { background: #fff; }
.split-section.alt, .services-grid-section, .faq-section { background: var(--bg); }
.split-grid { display: grid; grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr); gap: 46px; align-items: center; }
.split-section.alt .split-grid { grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr); }
.split-text.panel, .contact-card, .nearby-card, .trust-card, .service-card, .process-card, .review-card, .faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(15,23,42,.07); }
.section-heading { text-align: center; max-width: 800px; margin: 0 auto 46px; }
.section-heading h2::after { margin-left: auto; margin-right: auto; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card { padding: 26px; }
.service-card.wide { grid-column: span 2; }
.icon-line { width: 58px; height: 58px; display: inline-grid; place-items: center; border-radius: 18px; background: var(--accent-soft); color: var(--accent); }
.icon-line svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }

.cta-band { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); padding: 48px 0; color: #fff; }
.cta-band h2 { color: #fff; margin: 12px 0 0; }
.cta-band h2::after { background: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
.trust-card { padding: 28px; }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.process-card { padding: 26px; position: relative; overflow: hidden; }
.process-card span { color: rgba(46,109,201,.18); font-size: 54px; line-height: 1; font-weight: 950; }

.reviews-section { background: var(--dark); color: #D1D5DB; overflow: hidden; }
.reviews-section h2, .reviews-section h3 { color: #fff; }
.reviews-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.slider-controls { display: flex; gap: 10px; }
.slider-controls button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; border-radius: 16px; font-size: 34px; line-height: 1; cursor: pointer; }
.review-slider { display: grid; grid-auto-flow: column; grid-auto-columns: calc(50% - 11px); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; }
.review-slider::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; padding: 28px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.13); box-shadow: none; }
.review-card .stars { font-size: 18px; }

.contact-section { background: linear-gradient(180deg, #fff, var(--bg)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card, .nearby-card { padding: 34px; }
.nearby-card { background: var(--dark); color: #D1D5DB; }
.nearby-card h2 { color: #fff; }
.streets-section { background: #fff; }
.columns-text { columns: 2 360px; column-gap: 48px; }
.payment-about { background: var(--bg); }
.check-list { padding: 0; margin: 8px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 800; color: var(--ink); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 950; }
.panel { padding: 32px; }

.faq-grid { display: grid; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item { padding: 0 24px; }
.faq-item summary { cursor: pointer; padding: 22px 0; color: var(--ink); font-size: 20px; font-weight: 850; }
.faq-item p { padding-bottom: 20px; }

.site-footer { background: #080D18; color: #CBD5E1; padding: 58px 0 28px; font-size: 14px; }
.site-footer p, .site-footer a { font-size: 14px; }
.site-footer h3 { color: #fff; font-size: 20px; margin-top: 0; }
.footer-brand { color: #fff; margin-bottom: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-bottom { padding-top: 24px; color: #94A3B8; }

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 17px 18px calc(17px + env(safe-area-inset-bottom));
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 -12px 34px rgba(15,23,42,.25);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.mobile-sticky-call.visible { transform: translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 14px; font-size: 16px; }
  .header-call { padding: 12px 14px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  body { padding-bottom: 70px; }
  h1 { font-size: clamp(32px, 11vw, 45px); }
  h2 { font-size: clamp(24px, 8vw, 32px); }
  h3 { font-size: 20px; }
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .header-wrap { min-height: 72px; width: calc(100% - 24px); gap: 10px; }
  .brand { font-size: 24px; min-width: 0; }
  .brand span:last-child { overflow: hidden; text-overflow: ellipsis; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .desktop-nav, .header-call { display: none; }
  .menu-toggle { display: block; flex: 0 0 46px; }
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 46px 0 60px; gap: 32px; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; }
  .hero-icons img { width: auto; height: 48px; }
  .hero-actions .btn { width: 100%; }
  .floating-card { left: 12px; bottom: 12px; }
  .intro-section p { font-size: 17px; }
  .section { padding: 64px 0; }
  .service-grid, .trust-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: auto; }
  .cta-inner, .reviews-head { align-items: stretch; flex-direction: column; }
  .review-slider { grid-auto-columns: 88%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .mobile-sticky-call { display: block; }
}

@media (min-width: 768px) {
  .mobile-nav { display: none !important; }
  .mobile-sticky-call { display: none !important; }
}
