:root {
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --blue: #1125a1;
  --blue-dark: #07125f;
  --purple: #742df7;
  --gold: #ffbe18;
  --ink: #111827;
  --body: #374151;
  --muted: #5b6475;
  --line: rgba(17, 37, 161, 0.14);
  --light: #f6f7ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 76px 0; position: relative; overflow: hidden; }
.section-tight { padding: 54px 0; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 { font-size: clamp(39px, 8vw, 74px); }
h2 { font-size: clamp(31px, 5vw, 48px); }
h3, h4 { font-size: clamp(22px, 3vw, 28px); }
p { margin: 0; font-size: 16px; }
.lead { font-size: clamp(17px, 2vw, 20px); color: #e7ecff; max-width: 850px; margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 190, 24, 0.18);
  color: #513900;
  border: 1px solid rgba(255, 190, 24, 0.48);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-dark .eyebrow, .hero .eyebrow, .cta-band .eyebrow { color: #ffffff; background: rgba(255, 190, 24, 0.18); }
.accent-line { width: 84px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--purple)); margin: 18px 0 0; }
.center .accent-line { margin-left: auto; margin-right: auto; }
.section-head { max-width: 790px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 18px; color: var(--muted); }
.section-dark, .cta-band { background: radial-gradient(circle at 20% 0%, rgba(116, 45, 247, 0.42), transparent 34%), linear-gradient(135deg, #07125f, #1125a1 58%, #25116e); color: #eef2ff; }
.section-dark h2, .section-dark h3, .section-dark h4, .cta-band h2, .cta-band h3 { color: #ffffff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--font-heading); font-size: 24px; font-weight: 900; white-space: nowrap; }
.logo-mark { width: 42px; height: 42px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--purple)); color: var(--gold); font-weight: 900; clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%); }
.desktop-nav { display: none; align-items: center; gap: 20px; }
.desktop-nav a { color: #20293a; font-size: 16px; font-weight: 700; }
.desktop-nav a:hover { color: var(--blue); }
.header-phone { display: none !important; }
.menu-toggle { width: 48px; height: 48px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; color: var(--ink); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 22px; height: 2px; background: currentColor; position: relative; content: ""; }
.menu-toggle span::before { position: absolute; top: -7px; }
.menu-toggle span::after { position: absolute; top: 7px; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 49;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 20px 16px 24px;
  box-shadow: 0 20px 50px rgba(17,37,161,0.18);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: var(--ink); font-size: 18px; font-weight: 800; padding: 13px 8px; border-bottom: 1px solid #edf0ff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 22px;
  border: 0;
  background: linear-gradient(135deg, var(--gold), #ffd86e);
  color: #111827 !important;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 16px 38px rgba(255, 190, 24, 0.28);
  position: relative;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn::after { content: ""; position: absolute; inset: -9px; border: 1px solid rgba(255,255,255,0.52); opacity: .85; animation: pulseGlow 2s infinite; z-index: -1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(255,190,24,.38); filter: saturate(1.08); }
.btn-blue { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff !important; box-shadow: 0 16px 38px rgba(17,37,161,.25); }
.btn-blue::after { border-color: rgba(17,37,161,.22); }

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(rgba(5, 9, 36, .78), rgba(5, 9, 36, .72)), url('../images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; left: -240px; top: 10%; border-radius: 999px; background: radial-gradient(circle, rgba(116,45,247,.48), transparent 62%); filter: blur(14px); }
.hero::after { content: ""; position: absolute; inset: auto -10% -28% 30%; height: 320px; background: rgba(255,255,255,.09); transform: rotate(-5deg); border: 1px solid rgba(255,255,255,.13); }
.hero .container { position: relative; z-index: 2; padding: 94px 0 78px; }
.hero h1 { color: #ffffff; max-width: 1050px; margin: 0 auto 18px; }
.stars { color: var(--gold); font-size: 25px; letter-spacing: 4px; margin: 12px 0 14px; }
.trust-badges { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 12px 0 24px; }
.trust-badges img { width: auto; height: 48px; object-fit: contain; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.7); padding: 5px; }
.hero-actions { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-cta-text { color: #ffffff; font-weight: 900; font-size: 18px; }
.hero-stats { margin-top: 42px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.stat { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 18px; backdrop-filter: blur(14px); }
.stat strong { display: block; color: #ffffff; font-size: 26px; line-height: 1; }
.stat span { color: #dfe6ff; font-weight: 700; font-size: 14px; }

.intro-card { margin-top: -42px; position: relative; z-index: 3; background: #ffffff; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(17,37,161,.15); padding: clamp(24px, 5vw, 46px); }
.split { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 280px; object-fit: cover; }
.media-label { position: absolute; left: 18px; bottom: 18px; background: #fff; color: var(--ink); padding: 12px 14px; font-weight: 900; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.wave-bg { background: radial-gradient(circle at 82% 16%, rgba(116,45,247,.12), transparent 31%), linear-gradient(180deg, #fff, #f7f8ff); }

.reviews-shell { position: relative; }
.review-track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; background: #ffffff; border: 1px solid rgba(255,255,255,.18); color: #374151; padding: 24px; min-height: 268px; box-shadow: 0 20px 45px rgba(0,0,0,.12); }
.review-card p { color: #374151; }
.review-card strong { display: block; margin-top: 18px; color: var(--ink); }
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.carousel-controls { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.carousel-controls button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.12); font-size: 22px; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.service-card { background: #ffffff; border: 1px solid var(--line); padding: 24px; position: relative; overflow: hidden; min-height: 285px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 5px; height: 100%; background: linear-gradient(var(--blue), var(--purple)); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(17,37,161,.14); }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 18px; background: #eef1ff; color: var(--blue); }
.icon-box svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: square; stroke-linejoin: miter; }
.service-card p { margin-top: 14px; color: #4b5563; }
.service-card h3::after, .process-card h3::after, .faq-item h3::after, .area-box h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
}

.reasons { display: grid; grid-template-columns: 1fr; gap: 18px; counter-reset: reason; }
.reason { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); padding: 24px; position: relative; }
.reason::before { counter-increment: reason; content: counter(reason, decimal-leading-zero); display: block; color: var(--gold); font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.reason p { color: #eef2ff; }

.process-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.process-card { padding: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(17,37,161,.06); }
.process-card .num { color: var(--purple); font-weight: 900; font-size: 14px; letter-spacing: .12em; margin-bottom: 10px; }
.process-card p { color: #4b5563; margin-top: 12px; }

.area-box { background: #fff; border: 1px solid var(--line); padding: 28px; box-shadow: 0 20px 55px rgba(17,37,161,.1); }
.zip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.zip-list span { background: #eef1ff; color: var(--blue); padding: 8px 10px; font-weight: 900; }
.payment-list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.payment-list li { padding: 14px 16px; background: #fff; color: var(--ink); border-left: 4px solid var(--gold); font-weight: 800; }

.faq-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.faq-item { background: #ffffff; border: 1px solid var(--line); padding: 20px; }
.faq-item h3 { font-size: 22px; }
.faq-item p { margin-top: 10px; color: #4b5563; }

.cta-band { padding: 64px 0; text-align: center; }
.cta-band p { color: #eef2ff; max-width: 760px; margin: 16px auto 24px; }

.footer { background: #050a2b; color: #dbe3ff; padding: 54px 0 92px; font-size: 14px; }
.footer .logo { color: #ffffff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.footer h3 { color: #ffffff; font-size: 22px; margin-bottom: 12px; }
.footer p, .footer a { color: #dbe3ff; font-size: 14px; }
.footer a:hover { color: var(--gold); }
.footer-links { display: grid; gap: 8px; }
.disclaimer { border-top: 1px solid rgba(255,255,255,.13); margin-top: 34px; padding-top: 24px; color: #c9d4ff; }

.mobile-sticky-call {
  display: flex !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 10px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, var(--gold), #ffd86e);
  color: #111827 !important;
  font-weight: 950;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 -12px 35px rgba(0,0,0,.22);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-sticky-call.show { transform: translateY(0); opacity: 1; pointer-events: auto; }

.animate-in { animation: rise .65s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { 0%, 100% { transform: scale(.96); opacity: .35; } 50% { transform: scale(1.04); opacity: .9; } }

@media (max-width: 767px) {
  h1 { font-size: clamp(39px, 11vw, 52px); }
  h2 { font-size: clamp(31px, 9vw, 38px); }
  .section { padding: 56px 0; }
  .hero { min-height: 720px; }
  .trust-badges img { height: 42px; max-width: 30%; }
  .btn { width: 100%; max-width: 360px; }
}

@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .header-phone { display: inline-flex !important; }
  .menu-toggle, .mobile-menu { display: none !important; }
  .mobile-sticky-call { display: none !important; }
  .split { grid-template-columns: 7fr 3fr; }
  .split.reverse { grid-template-columns: 3fr 7fr; }
  .review-track { grid-auto-columns: calc((100% - 36px) / 3); }
  .reasons { grid-template-columns: repeat(5, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .9fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}
