:root {
  --ink: #151515;
  --ink-soft: #252525;
  --paper: #f3f6fb;
  --paper-dark: #dfe6ef;
  --red: #087cff;
  --red-dark: #0058d7;
  --lime: #33a0ff;
  --white: #ffffff;
  --muted: #77746e;
  --line: rgba(21, 21, 21, 0.14);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 4px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 82px;
  padding: 0 clamp(22px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.25s, height 0.25s, box-shadow 0.25s;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font: 800 30px/1 var(--display);
  transform: skew(-8deg);
}
.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1787ff;
  box-shadow: 0 0 16px rgba(8, 124, 255, .56);
}
.brand strong { display: block; font: 800 19px/0.95 var(--display); letter-spacing: 0.035em; }
.brand small { display: block; margin-top: 5px; font-size: 8px; font-weight: 700; letter-spacing: 0.18em; opacity: 0.68; }
.site-header nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 600; }
.site-header nav a:not(.nav-cta) { opacity: 0.8; transition: opacity 0.2s; }
.site-header nav a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { background: var(--red); padding: 12px 18px; border-radius: 3px; }
.menu-button { display: none; background: none; border: 0; padding: 8px; color: white; }
.menu-button span { display: block; width: 23px; height: 2px; margin: 5px 0; background: currentColor; transition: transform 0.2s, opacity 0.2s; }

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  padding: 130px clamp(24px, 7vw, 110px) 170px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 70vw;
  aspect-ratio: 1;
  right: -26vw;
  top: -24vw;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 170px rgba(255,255,255,.014);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.eyebrow { margin: 0 0 23px; display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: .19em; opacity: .72; }
.eyebrow span { display: inline-block; width: 28px; height: 2px; background: var(--red); }
.hero h1, .services h2, .quote-section h2, .modal-card h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(64px, 8vw, 118px); }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-copy { max-width: 600px; margin: 30px 0 0; color: rgba(255,255,255,.66); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s, background .18s, color .18s, box-shadow .18s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .service-card:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.button-primary { background: linear-gradient(135deg, #087cff, #0057d9); color: var(--white); box-shadow: 0 9px 25px rgba(8, 124, 255, .28); }
.button-primary:hover { background: linear-gradient(135deg, #2494ff, #0668ee); box-shadow: 0 12px 30px rgba(8, 124, 255, .42); }
.button svg { width: 16px; height: 16px; }
.text-link { font-size: 13px; font-weight: 600; padding-block: 12px; border-bottom: 1px solid rgba(255,255,255,.3); }
.text-link span { margin-left: 8px; color: var(--red); }

.hero-visual { position: relative; z-index: 1; display: grid; place-items: center; min-height: 470px; }
.gauge { width: min(36vw, 450px); aspect-ratio: 1; position: relative; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle, #222 0 42%, #191919 43% 64%, transparent 65%); }
.gauge::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: repeating-conic-gradient(from -120deg, rgba(255,255,255,.42) 0deg 1deg, transparent 1deg 7deg);
  mask: radial-gradient(transparent 0 62%, #000 63% 68%, transparent 69%);
}
.gauge-ring { position: absolute; inset: 1%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.gauge-ring-inner { inset: 23%; border-color: rgba(229,56,40,.5); }
.gauge-needle { position: absolute; width: 38%; height: 3px; background: var(--red); right: 50%; top: 50%; transform-origin: right center; transform: rotate(35deg); box-shadow: 0 0 14px rgba(229,56,40,.7); }
.gauge-needle::after { content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%; background: var(--red); right: -8px; top: -6px; }
.gauge strong { z-index: 2; margin-top: 35px; font: 800 clamp(48px, 6vw, 78px)/1 var(--display); font-style: italic; letter-spacing: -0.05em; }
.gauge small { z-index: 2; font-size: 8px; letter-spacing: .28em; color: var(--red); font-weight: 700; }
.hero-badge { position: absolute; left: 2%; bottom: 8%; padding: 15px 18px; background: rgba(255,255,255,.07); border-left: 3px solid var(--red); backdrop-filter: blur(10px); }
.hero-badge span, .hero-badge strong { display: block; }
.hero-badge span { font-size: 8px; letter-spacing: .18em; opacity: .55; }
.hero-badge strong { font: 700 19px/1.2 var(--display); margin-top: 4px; }

.trust-strip { position: absolute; z-index: 2; inset: auto 0 0; min-height: 120px; padding: 0 clamp(24px,7vw,110px); display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; border-top: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.16); }
.trust-strip > div { display: flex; align-items: center; gap: 18px; min-height: 70px; padding-right: 30px; }
.trust-strip > div + div { padding-left: 36px; border-left: 1px solid rgba(255,255,255,.1); }
.trust-strip > div > span { color: var(--red); font: 700 12px var(--display); }
.trust-strip p { margin: 0; font-size: 11px; line-height: 1.6; color: rgba(255,255,255,.45); }
.trust-strip strong { display: block; color: var(--white); font-size: 13px; }

.services { padding: 120px clamp(24px,7vw,110px) 130px; background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 80px; margin-bottom: 62px; }
.eyebrow-dark { color: var(--muted); opacity: 1; }
.services h2, .quote-section h2 { font-size: clamp(50px, 6.4vw, 88px); }
.section-heading > p { max-width: 430px; margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { appearance: none; position: relative; min-height: 325px; padding: 30px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; cursor: pointer; display: flex; flex-direction: column; align-items: flex-start; transition: background .25s, color .25s, transform .25s; }
.service-card:hover, .service-card.selected { z-index: 1; background: var(--ink); color: var(--white); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.13); }
.service-number { position: absolute; top: 26px; right: 26px; color: var(--muted); font: 700 11px var(--display); }
.service-icon { width: 55px; height: 55px; display: grid; place-items: center; margin-bottom: auto; color: var(--red); }
.service-icon svg { width: 48px; height: 48px; stroke-width: 1.4; }
.service-card strong { display: block; font: 700 25px/1 var(--display); text-transform: uppercase; }
.service-card small { display: block; min-height: 54px; margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.service-card:hover small, .service-card.selected small { color: rgba(255,255,255,.55); }
.add-service { width: 100%; margin-top: 20px; padding-top: 18px; border-top: 1px solid currentColor; font-size: 10px; font-weight: 700; letter-spacing: .04em; display: flex; justify-content: space-between; opacity: .7; }
.add-service b { color: var(--red); font-size: 18px; line-height: .5; }
.service-card.selected .add-service b { color: var(--lime); }

.quote-section { position: relative; overflow: hidden; padding: 120px clamp(24px,7vw,110px); background: var(--ink); color: var(--white); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px,8vw,125px); }
.quote-section::before { content: "ORÇAMENTO"; position: absolute; left: -20px; bottom: -35px; font: 800 clamp(100px,18vw,260px)/1 var(--display); color: rgba(255,255,255,.018); letter-spacing: -.05em; pointer-events: none; }
.quote-intro { position: relative; z-index: 1; }
.quote-intro > p:not(.eyebrow) { max-width: 440px; margin: 30px 0 45px; color: rgba(255,255,255,.56); font-size: 15px; line-height: 1.75; }
.contact-card { display: flex; align-items: center; gap: 15px; max-width: 390px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; background: rgba(255,255,255,.06); color: var(--red); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { font-size: 8px; letter-spacing: .18em; opacity: .45; }
.contact-card strong { margin-top: 4px; font-size: 13px; }
.pending-contact strong { color: var(--white); font-weight: 600; }

.form-shell { position: relative; z-index: 2; align-self: start; background: var(--paper); color: var(--ink); border-radius: 4px; padding: clamp(25px,4vw,48px); box-shadow: 0 26px 70px rgba(0,0,0,.25); }
.form-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 10px; margin-bottom: 42px; }
.form-progress span { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 9px; font-weight: 700; white-space: nowrap; }
.form-progress span b { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-size: 9px; }
.form-progress span.done, .form-progress span.active { color: var(--ink); }
.form-progress span.done b { background: var(--ink); color: var(--white); }
.form-progress span.active b { background: var(--red); color: var(--white); border-color: var(--red); }
.form-progress i { height: 1px; background: var(--line); overflow: hidden; }
.form-progress i em { display: block; width: 0; height: 100%; background: var(--red); transition: width .3s; }
.form-progress i.done em { width: 100%; }
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn .28s ease-out; }
@keyframes stepIn { from { opacity: 0; transform: translateX(8px); } }
.step-title { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 30px; }
.step-title > span { color: var(--red); font: 700 12px var(--display); margin-top: 6px; }
.step-title h3 { margin: 0; font: 700 clamp(25px,3vw,34px)/1.1 var(--display); text-transform: uppercase; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: block; min-width: 0; margin-bottom: 21px; }
.field.full { grid-column: 1 / -1; }
.field > span, fieldset.field legend { display: block; margin-bottom: 9px; color: #5c5954; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.field > span small { font-size: 9px; text-transform: none; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d8d2c8; border-radius: 3px; background: #fffdfa; color: var(--ink); padding: 14px 15px; font-size: 13px; outline: none; transition: border .2s, box-shadow .2s; }
.field input, .field select { height: 49px; }
.field textarea { resize: vertical; min-height: 100px; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(21,21,21,.06); }
.field.invalid input, .field.invalid textarea { border-color: var(--red); }
.error { min-height: 14px; display: block; margin-top: 5px; color: var(--red); font-size: 9px; }
fieldset.field { border: 0; padding: 0; margin: 0 0 17px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-list input { position: absolute; opacity: 0; pointer-events: none; }
.chip-list span { display: block; padding: 10px 12px; border: 1px solid #d8d2c8; border-radius: 40px; background: #fffdfa; color: #595650; font-size: 10px; font-weight: 600; cursor: pointer; transition: .18s; }
.chip-list input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); }
.chip-list input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 2px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 10px; color: var(--muted); cursor: pointer; }
.consent input { accent-color: var(--red); }
.consent-error { margin-left: 24px; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.form-step > .form-next { margin-left: auto; }
.button-secondary { background: transparent; color: var(--ink); border: 1px solid #cbc5bb; box-shadow: none; }
.button-secondary:hover { background: var(--paper-dark); }

footer { padding: 34px clamp(24px,7vw,110px); background: #0b0b0b; color: var(--white); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 38px; }
.brand-footer .brand-mark { width: 35px; height: 35px; font-size: 25px; }
.brand-footer strong { font-size: 16px; }
footer p, footer > small { margin: 0; color: rgba(255,255,255,.4); font-size: 10px; }
.social-links { display: flex; align-items: center; gap: 22px; }
.social-links a { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; transition: color .2s; }
.social-links a:hover { color: #55adff; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 18px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.74); backdrop-filter: blur(5px); }
.modal-card { position: relative; z-index: 1; width: min(620px, 100%); max-height: calc(100vh - 36px); overflow: auto; background: var(--paper); color: var(--ink); border-radius: 5px; padding: clamp(26px,5vw,50px); box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; color: var(--muted); font-size: 30px; cursor: pointer; }
.modal-check { float: right; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-size: 23px; font-weight: 700; }
.modal-card h2 { font-size: clamp(44px,8vw,68px); }
.modal-card pre { margin: 25px 0; padding: 18px; background: #fffdfa; border: 1px solid var(--line); border-radius: 3px; color: #4e4b46; font: 11px/1.65 var(--body); white-space: pre-wrap; max-height: 260px; overflow: auto; }
.modal-actions { display: grid; grid-template-columns: 1fr 1.25fr; gap: 10px; }
.button-whatsapp { background: #1f9d55; color: white; }
.button-whatsapp:hover { background: #168546; }
.modal-note { margin: 15px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; text-align: center; }
.toast { position: fixed; z-index: 600; left: 50%; bottom: 24px; transform: translate(-50%, 25px); padding: 12px 18px; border-radius: 3px; background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; transition: .25s; box-shadow: 0 8px 30px rgba(0,0,0,.22); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
body.modal-open { overflow: hidden; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; }
  .hero-content { max-width: 760px; }
  .hero-visual { position: absolute; right: -140px; top: 110px; opacity: .4; }
  .gauge { width: 520px; }
  .hero-badge { display: none; }
  .trust-strip { position: relative; margin: 95px calc(clamp(24px,7vw,110px) * -1) -170px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-section { grid-template-columns: 1fr; }
  .quote-intro { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; }
  .quote-intro .eyebrow, .quote-intro h2, .quote-intro > p { grid-column: 1 / -1; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
}

@media (max-width: 680px) {
  .site-header { height: 70px; padding-inline: 20px; }
  .site-header nav { position: absolute; inset: 70px 0 auto; padding: 24px; background: #151515; display: none; flex-direction: column; align-items: stretch; gap: 8px; border-top: 1px solid rgba(255,255,255,.12); }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 13px; }
  .menu-button { display: block; }
  .menu-button.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.open span:nth-child(2) { opacity: 0; }
  .menu-button.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 125px 22px 0; }
  .hero h1 { font-size: clamp(58px, 18vw, 82px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-visual { right: -180px; top: 150px; }
  .gauge { width: 430px; }
  .trust-strip { grid-template-columns: 1fr; margin: 85px -22px 0; padding: 20px 22px; }
  .trust-strip > div { padding: 12px 0; }
  .trust-strip > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .services { padding: 82px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .services h2, .quote-section h2 { font-size: clamp(49px, 15vw, 68px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 255px; padding: 25px; }
  .quote-section { padding: 82px 20px; gap: 48px; }
  .quote-intro { display: block; }
  .form-shell { margin-inline: -5px; padding: 24px 18px; }
  .form-progress { gap: 5px; }
  .form-progress span { font-size: 0; }
  .form-progress span b { font-size: 9px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .field.full { grid-column: 1; }
  .form-actions { align-items: stretch; }
  .form-actions .button { flex: 1; padding-inline: 12px; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 15px; }
  .modal-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Identidade visual Mecânica do Dinho */
.site-header {
  border-color: rgba(52, 151, 255, .22);
  background: linear-gradient(180deg, rgba(2, 7, 16, .92), rgba(2, 7, 16, .12));
}
.site-header.scrolled {
  background: rgba(3, 8, 18, .96);
  border-bottom-color: rgba(48, 145, 255, .3);
  box-shadow: 0 10px 35px rgba(0, 36, 100, .3);
}
.nav-cta {
  background: linear-gradient(135deg, #1088ff, #0054cf);
  box-shadow: 0 0 22px rgba(0, 116, 255, .28);
}
.hero {
  background:
    radial-gradient(circle at 79% 37%, rgba(0, 111, 255, .18), transparent 30%),
    linear-gradient(120deg, #02050b 0%, #07101f 58%, #02050a 100%);
}
.hero::before {
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(90deg, #030711 0%, rgba(3,7,17,.91) 38%, rgba(3,7,17,.58) 72%, #030711 100%), url("assets/brand-banner.jpg") center/cover no-repeat;
  opacity: .3;
}
.hero::after {
  content: "";
  position: absolute;
  width: min(48vw, 650px);
  aspect-ratio: 1;
  right: -8vw;
  top: 5vh;
  border-radius: 50%;
  border: 1px solid rgba(28, 137, 255, .28);
  box-shadow: 0 0 0 40px rgba(19, 124, 255, .025), 0 0 120px rgba(0, 101, 255, .12);
}
.hero-noise {
  background-image: linear-gradient(rgba(43,142,255,.034) 1px, transparent 1px), linear-gradient(90deg, rgba(43,142,255,.034) 1px, transparent 1px);
}
.hero h1 em {
  color: #198bff;
  text-shadow: 0 0 28px rgba(0, 119, 255, .25);
}
.hero-copy { color: rgba(235, 244, 255, .72); }
.brand-portrait {
  position: relative;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(145deg, #46adff, #004ac9 55%, #13223d);
  box-shadow: 0 0 35px rgba(0, 120, 255, .5), 0 0 95px rgba(0, 87, 255, .25), inset 0 0 25px rgba(255,255,255,.26);
}
.brand-portrait::before {
  content: "";
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(65, 164, 255, .42);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(13, 124, 255, .24);
}
.brand-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.portrait-ring {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  pointer-events: none;
}
.hero-badge {
  z-index: 3;
  left: -2%;
  bottom: 4%;
  border-left-color: #1d91ff;
  background: rgba(2, 8, 18, .84);
  box-shadow: 0 12px 36px rgba(0,0,0,.34), 0 0 24px rgba(0, 96, 255, .16);
}
.hero-badge span { color: #43a6ff; opacity: 1; }
.trust-strip {
  background: linear-gradient(90deg, rgba(2,7,17,.95), rgba(5,18,39,.94), rgba(2,7,17,.95));
  border-top-color: rgba(38, 142, 255, .24);
}
.trust-strip > div + div { border-left-color: rgba(48, 144, 255, .17); }
.trust-strip > div > span { color: #2495ff; }

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #050a13;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(0, 116, 255, .11), transparent 30%), linear-gradient(rgba(35,126,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(35,126,255,.025) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  pointer-events: none;
}
.services > * { position: relative; z-index: 1; }
.services .eyebrow-dark { color: #5eabff; }
.section-heading > p { color: rgba(225,238,255,.56); }
.service-grid { border-color: rgba(89, 159, 255, .18); }
.service-card {
  border-color: rgba(89, 159, 255, .18);
  color: var(--white);
  background: linear-gradient(145deg, rgba(15, 31, 54, .45), rgba(4, 10, 20, .78));
}
.service-card:hover, .service-card.selected {
  background: linear-gradient(145deg, rgba(0, 101, 225, .88), rgba(1, 51, 130, .9));
  box-shadow: 0 18px 50px rgba(0, 89, 255, .22), inset 0 0 0 1px rgba(75, 164, 255, .35);
}
.service-card small { color: rgba(222,235,255,.48); }
.service-card:hover small, .service-card.selected small { color: rgba(255,255,255,.7); }
.service-icon { color: #2698ff; filter: drop-shadow(0 0 10px rgba(0, 120, 255, .34)); }
.add-service { border-top-color: rgba(134,188,255,.24); }
.service-number { color: rgba(125,183,255,.5); }
.service-card.selected .add-service b { color: #a7dbff; }

.quote-section {
  background: radial-gradient(circle at 8% 40%, rgba(0, 106, 255, .15), transparent 29%), linear-gradient(135deg, #030711, #091425 55%, #030710);
}
.contact-card { transition: background .2s, transform .2s, padding .2s; }
.contact-card:hover { padding-left: 10px; background: rgba(19, 116, 255, .08); transform: translateX(2px); }
.contact-icon { color: #299aff; background: rgba(25, 132, 255, .1); }
.contact-instagram { color: #6eb9ff; }
.contact-facebook { color: #3297ff; }
.form-shell { border: 1px solid rgba(42, 139, 255, .2); box-shadow: 0 28px 85px rgba(0,0,0,.42), 0 0 50px rgba(0, 91, 255, .08); }
.form-progress span.active b { box-shadow: 0 0 14px rgba(0, 114, 255, .34); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #087cff; box-shadow: 0 0 0 3px rgba(8, 124, 255, .1); }
.chip-list input:checked + span { background: #075ecf; border-color: #075ecf; }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .service-card:focus-visible { outline-color: #52b1ff; }
footer { background: #02050a; border-top: 1px solid rgba(34, 132, 255, .18); }
.brand-footer .brand-logo { width: 39px; height: 39px; }
.toast { background: #1b8dff; color: white; }
.location-panel {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 430px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(52, 148, 255, .24);
  border-radius: 5px;
  background: linear-gradient(145deg, #071426, #030812);
  box-shadow: 0 25px 70px rgba(0,0,0,.34), 0 0 45px rgba(0, 98, 255, .08);
}
.location-copy {
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-copy h3 {
  margin: 0;
  font: 800 clamp(40px, 5vw, 66px)/.95 var(--display);
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.location-copy > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: rgba(226, 238, 255, .6);
  font-size: 13px;
  line-height: 1.75;
}
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button-google { background: #fff; color: #151515; }
.button-google:hover { background: #eaf3ff; }
.review-cta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(71, 154, 255, .18);
}
.review-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: white;
  color: #1678ee;
  font: 800 19px var(--body);
}
.review-cta small, .review-cta strong { display: block; }
.review-cta small { color: #56adff; font-size: 8px; letter-spacing: .16em; }
.review-cta strong { margin-top: 5px; color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.45; }
.review-stars { margin-right: 5px; color: #ffc83d; letter-spacing: .08em; text-shadow: 0 0 12px rgba(255, 185, 25, .2); }
.map-frame { position: relative; min-height: 430px; background: #d8e0ea; }
.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 20px 0 45px rgba(0, 15, 40, .18);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 430px; display: block; border: 0; filter: saturate(.85) contrast(1.03); }

@media (max-width: 960px) {
  .brand-portrait { width: 520px; }
  .hero-visual { opacity: .42; }
  .hero-badge { display: none; }
  .location-panel { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 360px; }
}

@media (max-width: 680px) {
  .site-header nav { background: #030914; }
  .brand-logo { width: 42px; height: 42px; }
  .hero-visual { right: -185px; top: 138px; opacity: .28; }
  .brand-portrait { width: 440px; }
  .hero::after { width: 520px; right: -310px; top: 90px; }
  .trust-strip > div + div { border-top-color: rgba(48, 144, 255, .17); }
  .location-panel { margin-inline: -5px; }
  .location-actions { flex-direction: column; }
  .location-actions .button { width: 100%; }
  .map-frame, .map-frame iframe { min-height: 310px; }
}
