@font-face {
  font-family: "SiteSans";
  src: local("Inter"), local("Arial");
  font-display: swap;
}

:root {
  --font-heading: "SiteSans", Arial, sans-serif;
  --font-body: "SiteSans", Arial, sans-serif;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 20px 55px rgba(7, 28, 46, 0.12);
  --shadow-card: 0 14px 35px rgba(7, 28, 46, 0.09);
  --border: rgba(11, 113, 185, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #ffffff;
  padding-bottom: 0;
}

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

a { text-decoration: none; }

p { font-size: 16px; margin: 0 0 1rem; }

h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.12; letter-spacing: -0.03em; color: #111827; }
h1 { font-size: clamp(35px, 5.2vw, 62px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3, h4 { font-size: clamp(20px, 2vw, 25px); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,113,185,0.12);
}

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

.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-heading); font-weight: 900; font-size: 24px; color: #111827; white-space: nowrap; }
.logo-mark { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 12px 24px rgba(11,113,185,0.24); flex: 0 0 auto; }
.logo-mark svg { width: 27px; height: 27px; }

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: #172033; font-size: 18px; font-weight: 700; }
.nav-links a:hover { color: var(--primary); }
.nav-toggle { display: none; border: 1px solid var(--border); background: #fff; border-radius: 12px; width: 46px; height: 42px; color: #111827; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: #111827; border-radius: 20px; }

.phone-btn, .primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.phone-btn { color: #ffffff; background: #071C2E; box-shadow: 0 12px 26px rgba(7,28,46,0.18); white-space: nowrap; }
.phone-btn:hover, .primary-btn:hover, .secondary-btn:hover { transform: translateY(-2px); }
.phone-btn svg, .primary-btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.primary-btn { color: #ffffff; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: 0 16px 28px rgba(11,113,185,0.25); }
.secondary-btn { color: #071C2E; background: #ffffff; border: 1px solid rgba(7,28,46,0.12); box-shadow: 0 10px 22px rgba(7,28,46,0.08); }

.hero { padding: 42px 0 56px; background: radial-gradient(circle at 12% 10%, rgba(0,195,106,0.17), transparent 35%), linear-gradient(135deg, #EAF6FF 0%, #FFFFFF 46%, #ECFFF6 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(330px, .94fr); gap: 34px; align-items: stretch; }
.hero-copy, .hero-media { min-height: 520px; border-radius: var(--radius-lg); }
.hero-copy { padding: clamp(26px, 4vw, 52px); background: rgba(255,255,255,0.74); border: 1px solid rgba(255,255,255,0.8); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; justify-content: center; }
.hero-media { position: relative; overflow: hidden; background: #dcecf7; box-shadow: var(--shadow-soft); }
.hero-media img.hero-img { height: 100%; width: 100%; object-fit: cover; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-bottom: 18px; padding: 8px 13px; border-radius: 999px; background: #071C2E; color: #fff; font-weight: 900; font-size: 16px; }
.stars { color: var(--accent); font-size: 23px; letter-spacing: 2px; margin: 12px 0 16px; }
.hero-icons { display: flex; gap: 12px; flex-wrap: wrap; margin: 2px 0 22px; }
.hero-icons img { width: 58px; height: 58px; object-fit: contain; border: 2px solid rgba(11,113,185,0.22); border-radius: 16px; background: #ffffff; padding: 6px; box-shadow: 0 10px 22px rgba(7,28,46,0.08); }
.hero-cta-text { font-size: 20px; font-weight: 900; color: #071C2E; margin-bottom: 15px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-proof { position: absolute; left: 22px; right: 22px; bottom: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.proof-pill { background: rgba(255,255,255,0.92); border-radius: 18px; padding: 12px; font-size: 16px; font-weight: 900; color: #071C2E; text-align: center; box-shadow: 0 10px 24px rgba(7,28,46,0.12); }

.section { padding: 78px 0; }
.section.alt { background: var(--surface-alt); }
.section.dark { background: #071C2E; color: #fff; }
.section.dark h2, .section.dark h3, .section.dark p, .section.dark li { color: #fff; }
.section-head { max-width: 880px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px; font-weight: 900; color: #07588F; text-transform: uppercase; letter-spacing: .08em; font-size: 14px; }
.section.dark .section-kicker { color: #C9FCE3; }
.sticker { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 10px 20px rgba(11,113,185,0.22); }
.sticker svg { width: 21px; height: 21px; }

.two-col { display: grid; grid-template-columns: minmax(0, 65%) minmax(280px, 35%); gap: 36px; align-items: center; }
.two-col.reverse { grid-template-columns: minmax(280px, 35%) minmax(0, 65%); }
.visual-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 360px; background: #e7f3fb; }
.visual-card img { height: 100%; width: 100%; min-height: 360px; object-fit: cover; }
.content-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 38px); box-shadow: var(--shadow-card); }
.dark .content-card { color: #172033; }
.dark .content-card h2, .dark .content-card h3, .dark .content-card p, .dark .content-card li { color: #111827; }

.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.line-icon { width: 58px; height: 58px; margin-bottom: 16px; border-radius: 18px; display: grid; place-items: center; color: var(--primary); background: #EAF6FF; border: 1px solid rgba(11,113,185,.16); }
.line-icon svg { width: 34px; height: 34px; stroke-width: 1.8; }

.check-list, .plain-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding-left: 30px; margin: 10px 0; font-size: 16px; }
.check-list li:before { content: ""; position: absolute; left: 0; top: .55em; width: 16px; height: 16px; border-radius: 50%; background: var(--secondary); box-shadow: inset 0 0 0 5px #fff; border: 2px solid var(--secondary); }
.plain-list li:before { content: ""; position: absolute; left: 4px; top: .62em; width: 9px; height: 9px; border-radius: 50%; background: var(--primary); }

.parts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.parts-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-card); }
.zip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.zip-box { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-md); padding: 26px; }

.reviews-shell { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform .45s ease; }
.review-slide { min-width: 33.333%; padding: 10px; }
.review-card { height: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-card); }
.review-stars { color: var(--accent); letter-spacing: 1px; font-size: 20px; margin-bottom: 11px; }
.review-card blockquote { margin: 0 0 16px; font-size: 16px; color: #374151; }
.review-card cite { font-style: normal; color: #111827; font-weight: 900; }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.carousel-controls button { width: 46px; height: 46px; border: 0; border-radius: 999px; background: #071C2E; color: #fff; font-size: 22px; cursor: pointer; }

.why-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-item { background: #fff; border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.process { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-card { position: relative; padding: 30px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.process-card:before { counter-increment: step; content: "0" counter(step); display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 17px; margin-bottom: 16px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-weight: 900; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card); }

.cta-band { background: linear-gradient(135deg, #071C2E, #0B71B9); color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 56px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; box-shadow: var(--shadow-soft); }
.cta-band h2, .cta-band p { color: #fff; }

.site-footer { background: #071C2E; color: #D8E8F3; padding: 56px 0 34px; font-size: 14px; }
.site-footer p, .site-footer a, .site-footer li { font-size: 14px; color: #D8E8F3; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; align-items: start; }
.footer-logo { color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.disclaimer { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.16); color: #BFD2E0; }

.mobile-call { display: none; }

.fade-up { animation: fadeUp .7s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-list, .process, .parts-grid, .zip-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-links.open { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); position: absolute; left: 18px; right: 18px; top: 82px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-card); }
  .nav-toggle { display: block; }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  h1 { font-size: clamp(25px, 9vw, 44px); }
  h2 { font-size: clamp(20px, 7vw, 31px); }
  .nav-wrap { min-height: 98px; flex-wrap: wrap; gap: 8px 12px; padding: 10px 0; }
  .logo { font-size: 24px; max-width: calc(100% - 58px); }
  .header-phone { order: 3; flex: 1 1 100%; width: 100%; min-height: 44px; }
  .nav-toggle { order: 2; }
  .nav-links.open { top: 104px; grid-template-columns: 1fr; }
  .hero { padding-top: 22px; }
  .hero-grid, .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .hero-copy, .hero-media { min-height: auto; }
  .hero-media { min-height: 360px; }
  .hero-proof { position: static; grid-template-columns: 1fr; padding: 14px; }
  .section { padding: 54px 0; }
  .service-grid, .why-list, .process, .parts-grid, .zip-grid, .faq-grid, .footer-grid, .cta-band { grid-template-columns: 1fr; }
  .review-slide { min-width: 100%; }
  .mobile-call { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; display: block; padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right)); background: rgba(7,28,46,0.96); box-shadow: 0 -12px 28px rgba(7,28,46,0.22); }
  .mobile-call a { display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px; min-height: 54px; border-radius: 18px; background: var(--secondary); color: #071C2E; font-weight: 900; font-size: 16px; white-space: nowrap; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1180px); }
  .logo { font-size: 22px; }
  .phone-btn, .primary-btn, .secondary-btn { width: 100%; padding-left: 14px; padding-right: 14px; }
  .hero-actions { gap: 10px; }
}
