:root {
  --navy: #05264b;
  --navy-2: #021831;
  --navy-3: #0a3766;
  --steel: #687076;
  --silver: #dce4ee;
  --mist: #f5f8fc;
  --ice: #edf4fb;
  --ink: #142033;
  --muted: #647083;
  --line: #d9e3ee;
  --white: #fff;
  --teal: #1d8a8a;
  --orange: #f36b2b;
  --orange-dark: #d9531d;
  --leaf: #52a447;
  --leaf-dark: #2f8b42;
  --gold: #b8a36f;
  --green: #128c7e;
  --shadow: 0 22px 60px rgba(5, 38, 75, 0.16);
}

* { 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(--ink);
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 16px;
  align-content: center;
  background: radial-gradient(circle at center, #5f6668 0%, #3c4245 46%, #22272b 100%);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
}
.loader.is-visible { opacity: 1; pointer-events: auto; }
.loader__mark {
  width: min(260px, 58vw);
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  animation: loaderBreath 1.5s ease-in-out infinite;
}
.loader__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(255,255,255,.75)) drop-shadow(0 18px 44px rgba(0,0,0,.32));
}
.loader span {
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}
@keyframes loaderBreath {
  0%, 100% { transform: scale(.98); opacity: .9; }
  50% { transform: scale(1.03); opacity: 1; }
}

.topbar { background: var(--navy); color: #fff; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.1); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 16px; }
.topbar__links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar__slogan { font-weight: 900; color: rgba(255,255,255,.92); }
.topbar a { opacity: .9; }
.topbar a:hover { opacity: 1; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand__mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
  border: 1px solid #d8e3ef;
  box-shadow: 0 12px 28px rgba(5,38,75,.16);
}
.brand__logo { width: 100%; height: 100%; object-fit: contain; }
.brand strong { display: block; color: var(--navy); font-size: 18px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 1px; }
.desktop-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px 9px;
  font-weight: 800;
  font-size: 14px;
}
.nav-link:hover, .nav-link.is-active { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
  background: #fff;
}
.portal-link--solid { background: var(--navy); color: #fff; border-color: var(--navy); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; width: 44px; height: 44px; border-radius: 10px; font-size: 22px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn--primary { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; box-shadow: 0 16px 30px rgba(243,107,43,.24); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(243,107,43,.32); }
.btn--ghost { color: var(--navy); border-color: var(--navy); background: #fff; }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-2); }
.btn--light { background: #fff; color: var(--navy); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.btn--light:hover { transform: translateY(-2px); }
.btn--estimate { background: linear-gradient(135deg, var(--leaf), var(--leaf-dark)); color: #fff; box-shadow: 0 16px 30px rgba(82,164,71,.24); }
.btn--estimate:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(82,164,71,.3); }

.mega-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 82px;
  width: min(1080px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 26px;
  z-index: 51;
}
.mega-menu.is-open { display: grid; grid-template-columns: 1.05fr 2fr; gap: 26px; animation: fadeUp .2s ease both; }
.mega-intro { background: linear-gradient(135deg, var(--ice), #fff); padding: 24px; border-radius: 12px; border-left: 5px solid var(--teal); }
.mega-intro h3 { margin: 0 0 8px; color: var(--navy); font-size: 24px; }
.mega-intro p { color: var(--muted); }
.mega-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.mega-card { padding: 14px; border: 1px solid var(--line); border-radius: 10px; transition: .18s ease; }
.mega-card:hover { border-color: var(--teal); box-shadow: 0 10px 30px rgba(29,138,138,.12); transform: translateY(-2px); }
.mega-card strong { display: block; color: var(--navy); }
.mega-card span { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 16px 18px;
  background: #fff;
}
.mobile-panel.is-open { display: block; }
.mobile-panel a {
  display: block;
  width: 100%;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

#app { opacity: 0; transform: translateY(10px); transition: opacity .32s ease, transform .32s ease; }
#app.is-ready { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.hero {
  position: relative;
  min-height: 700px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 20, 39, .96) 0%, rgba(5, 38, 75, .8) 50%, rgba(5, 38, 75, .25) 100%),
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1800&q=85") center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, #fff);
}
.hero__glow {
  position: absolute;
  inset: 12% auto auto 58%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(29,138,138,.28), transparent 68%);
}
.hero__stage { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr); gap: 36px; align-items: center; padding: 86px 0 132px; }
.hero__content { position: relative; z-index: 1; width: 100%; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0; font-weight: 950; font-size: 13px; }
h1, h2, h3 { line-height: 1.1; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6.4vw, 86px); margin: 12px 0 18px; }
h2 { font-size: clamp(30px, 4.3vw, 54px); margin: 0 0 18px; color: var(--navy); }
h3 { font-size: 22px; margin: 0 0 10px; color: var(--navy); }
.hero__content p { max-width: 780px; font-size: 21px; color: rgba(255,255,255,.9); margin: 0 0 30px; }
.hero__badges { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin: 26px 0 30px; max-width: 860px; }
.hero__badges span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 14px; border-radius: 12px; font-weight: 900; backdrop-filter: blur(8px); }
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero-stats { position: relative; z-index: 3; padding: 0; margin-top: -84px; }
.hero-stats__panel {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  align-items: center;
  gap: 22px;
  background: #24487e;
  color: #fff;
  border-radius: 18px;
  padding: 30px 34px;
  box-shadow: 0 24px 60px rgba(5,38,75,.28);
}
.hero-stat { display: grid; gap: 5px; text-align: center; }
.hero-stat strong { display: block; color: var(--orange); font-size: clamp(30px, 3.2vw, 46px); line-height: 1; }
.hero-stat span { display: block; color: rgba(255,255,255,.9); text-transform: uppercase; font-size: 13px; font-weight: 900; }
.hero-stat--google { display: flex; align-items: center; justify-content: center; gap: 14px; text-align: left; }
.hero-stat--google strong {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font-size: 38px;
  font-family: Georgia, serif;
}
.hero-stat--google b { display: block; color: var(--orange); font-size: 36px; line-height: 1; }
.hero-stat--google small { display: block; color: #ffc84c; font-size: 19px; letter-spacing: 0; }

.quick-check { margin-top: 34px; position: relative; z-index: 2; }
.quick-check__panel {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 420px;
  border: 1px solid var(--line);
}
.quick-copy { padding: 34px; }
.quick-copy p { color: var(--muted); margin: 0; }
.quick-form { background: linear-gradient(135deg, var(--ice), #fff); padding: 28px; display: grid; align-content: center; gap: 12px; }
.input-row { display: flex; gap: 10px; }
.input-row input, .field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cdd8e5;
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
}
.field textarea { resize: vertical; }
.result-box { display: none; background: #fff; border-left: 4px solid var(--teal); padding: 12px; border-radius: 10px; color: var(--ink); }
.result-box.is-visible { display: block; }

section { padding: 86px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 34px; }
.section-head p { max-width: 670px; color: var(--muted); margin: 0; font-size: 18px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.feature-image {
  min-height: 430px;
  border-radius: 16px;
  background: center/cover;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(5,38,75,.76)); }
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.stat { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: #fff; }
.stat strong { display: block; color: var(--teal); font-size: 30px; line-height: 1; }
.check-list { display: grid; gap: 12px; margin: 22px 0; padding: 0; list-style: none; }
.check-list li { padding-left: 30px; position: relative; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.soft-band { background: var(--mist); }
.leader-box {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ice), #fff);
}
.leader-box span { display: block; color: var(--teal); font-weight: 950; text-transform: uppercase; font-size: 12px; }
.leader-box strong { display: block; color: var(--navy); font-size: 24px; margin: 4px 0 8px; }
.leader-box p { margin: 0; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.service-card, .blog-card, .jurisdiction-card, .review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(24,39,75,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover, .blog-card:hover, .jurisdiction-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29,138,138,.45);
  box-shadow: 0 20px 42px rgba(5,38,75,.12);
}
.card-media { height: 190px; background: center/cover; }
.card-body { padding: 24px; }
.card-body p { color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.pill { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; color: var(--navy); font-size: 13px; font-weight: 800; background: #fff; }
.link-arrow { color: var(--teal); font-weight: 950; display: inline-flex; margin-top: 12px; }
.link-arrow::after { content: " →"; }

.process { display: grid; gap: 16px; }
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 16px;
}
.step-number { width: 58px; height: 58px; display: grid; place-items: center; background: var(--navy); color: #fff; border-radius: 50%; font-size: 24px; font-weight: 900; }

.calculator { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.calc-panel, .form-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(24,39,75,.06);
}
.calc-fields { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.field label { display: block; color: var(--navy); font-weight: 900; margin-bottom: 6px; }
.estimate {
  background: linear-gradient(145deg, var(--navy), #0b3a68);
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  min-height: 100%;
  box-shadow: var(--shadow);
}
.estimate h3 { color: #fff; }
.estimate__number { font-size: clamp(34px, 5vw, 54px); font-weight: 950; margin: 14px 0 6px; color: #fff; }
.estimate p { color: rgba(255,255,255,.82); }
.estimate-breakdown { display: grid; gap: 9px; margin: 18px 0 22px; }
.estimate-breakdown div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 8px; color: rgba(255,255,255,.84); }
.estimate-breakdown strong { color: #fff; white-space: nowrap; }

.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.review-card { padding: 24px; }
.review-card img { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; margin-bottom: 16px; }
.review-card strong { display: block; color: var(--navy); font-size: 18px; }
.review-card span { display: block; color: var(--muted); font-size: 14px; }
.review-card p { color: var(--ink); }
.review-card small { color: var(--gold); font-size: 16px; letter-spacing: 0; }

.cta-band { background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); color: #fff; padding: 66px 0; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0; max-width: 650px; }

.page-hero { background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); color: #fff; padding: 86px 0; }
.page-hero h1 { margin: 10px 0 14px; }
.page-hero p { max-width: 790px; color: rgba(255,255,255,.82); font-size: 20px; }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.tab-btn { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 999px; padding: 11px 16px; font-weight: 900; }
.tab-btn.is-active { background: var(--teal); color: #fff; border-color: var(--teal); }
.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.faq-question { width: 100%; border: 0; background: #fff; padding: 18px; text-align: left; font-weight: 950; color: var(--navy); display: flex; justify-content: space-between; gap: 14px; }
.faq-answer { display: none; padding: 0 18px 18px; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: start; }
.map-box {
  background: linear-gradient(135deg, var(--ice), #fff);
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  align-content: start;
  gap: 14px;
  box-shadow: 0 10px 28px rgba(24,39,75,.06);
}
.contact-chips { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 6px 0 8px; }
.contact-slogan { font-size: 22px; font-weight: 950; color: var(--navy); line-height: 1.2; }
.contact-chip { border: 1px solid var(--line); border-radius: 12px; padding: 11px; background: #fff; font-weight: 900; color: var(--navy); }
.contact-chip span { display: block; font-weight: 700; color: var(--muted); font-size: 12px; margin-top: 2px; overflow-wrap: anywhere; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.form-grid .wide { grid-column: 1 / -1; display: flex; gap: 12px; flex-wrap: wrap; }
.mailto-preview { display: inline-flex; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.blog-tools { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.blog-tools input { min-height: 46px; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; min-width: min(320px, 100%); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 4vw, 44px); box-shadow: 0 10px 28px rgba(24,39,75,.06); }
.article-card p { font-size: 19px; color: var(--ink); }
.source-note { margin-top: 24px; padding: 16px; border-radius: 12px; background: var(--mist); color: var(--muted); }

.legal-content { max-width: 840px; }
.legal-content p, .legal-content li { color: var(--muted); }

.footer { background: #071426; color: #fff; padding: 58px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1.45fr repeat(4,1fr); gap: 26px; }
.brand--footer .brand__mark { background: #fff; }
.brand--footer strong { color: #fff; }
.brand--footer small, .footer p { color: rgba(255,255,255,.68); }
.footer h3 { color: #fff; font-size: 16px; }
.footer a { display: block; color: rgba(255,255,255,.72); margin: 9px 0; overflow-wrap: anywhere; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.55); font-size: 14px; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: var(--green);
  color: #fff;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: var(--shadow);
}
.chatbot-launcher {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 61;
  min-height: 56px;
  padding: 0 18px 0 12px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #255ca8);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  box-shadow: var(--shadow);
}
.chatbot-launcher img { width: 34px; height: 34px; object-fit: contain; background: #fff; border-radius: 50%; padding: 4px; }
.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 150px;
  z-index: 70;
  padding: 0;
  width: min(390px, calc(100% - 32px));
  max-height: min(620px, calc(100vh - 180px));
  display: none;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
  border: 1px solid var(--line);
}
.chat-widget.is-open { display: grid; grid-template-rows: auto 1fr auto auto; }
.chat-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #255ca8);
}
.chat-widget__brand { display: flex; align-items: center; gap: 11px; }
.chat-widget__brand img { width: 38px; height: 38px; object-fit: contain; background: #fff; border-radius: 50%; padding: 5px; }
.chat-widget__brand strong,
.chat-widget__brand small { display: block; }
.chat-widget__brand small { color: rgba(255,255,255,.78); font-size: 12px; }
.chat-close { border: 0; background: rgba(255,255,255,.14); color: #fff; width: 34px; height: 34px; border-radius: 50%; font-size: 20px; }
.chat-messages { padding: 16px; display: grid; gap: 10px; overflow: auto; max-height: 330px; background: #fbfcfe; }
.chat-message { padding: 11px 13px; border-radius: 14px; font-size: 14px; }
.chat-message--bot { background: #eef3f9; color: var(--ink); justify-self: start; }
.chat-message--user { background: var(--navy); color: #fff; justify-self: end; max-width: 86%; }
.chat-quick { display: grid; gap: 8px; padding: 0 16px 12px; background: #fbfcfe; }
.chat-quick button { min-height: 40px; border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 12px; font-weight: 900; text-align: left; padding: 9px 12px; }
.chat-form { display: flex; gap: 8px; padding: 14px 16px 16px; border-top: 1px solid var(--line); background: #fff; }
.chat-form input { min-height: 42px; border: 1px solid var(--line); border-radius: 12px; padding: 9px 11px; width: 100%; }
.chat-form button { border: 0; border-radius: 12px; background: var(--orange); color: #fff; font-weight: 950; padding: 0 14px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  background: var(--navy);
  color: #fff;
  padding: 13px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: .2s ease;
  max-width: min(540px, calc(100% - 32px));
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .nav-actions .btn, .portal-link { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
}

@media (max-width: 980px) {
  .topbar__inner { flex-direction: column; align-items: flex-start; padding: 10px 0; }
  .topbar__links { gap: 10px 14px; }
  .quick-check__panel, .split, .calculator, .contact-grid, .article-layout, .hero__stage { grid-template-columns: 1fr; }
  .card-grid, .review-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-stats__panel { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-head { display: block; }
  .cta-band .container { display: block; }
  .cta-band .btn { margin-top: 22px; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand__mark { width: 50px; height: 50px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 11px; }
  .hero { min-height: 650px; align-items: flex-start; }
  .hero__stage { padding: 58px 0 118px; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  h2 { font-size: clamp(29px, 9vw, 42px); }
  .hero__content p { font-size: 18px; }
  .hero__badges, .card-grid, .review-grid, .calc-fields, .form-grid, .stat-strip, .footer__grid, .contact-chips, .hero-stats__panel { grid-template-columns: 1fr; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .hero-stats { margin-top: -64px; }
  .hero-stat--google { justify-content: center; text-align: center; }
  .input-row { flex-direction: column; }
  .quick-check { margin-top: 28px; }
  .quick-copy, .quick-form, .calc-panel, .form-card, .map-box { padding: 22px; }
  section { padding: 60px 0; }
  .process-step { grid-template-columns: 1fr; }
  .estimate-breakdown div { display: grid; gap: 2px; }
  .form-grid .wide { display: grid; }
  .footer__bottom { flex-direction: column; }
  .chatbot-launcher { right: 12px; bottom: 78px; }
  .chat-widget { right: 12px; bottom: 140px; width: calc(100% - 24px); }
  .whatsapp-float { right: 12px; left: 12px; justify-content: center; }
}
