:root {
  --navy-950: #031a39;
  --navy-900: #06234b;
  --navy-800: #0a376a;
  --blue: #0877d1;
  --cyan: #19baf3;
  --gold: #e7b423;
  --gold-soft: #f7d46d;
  --ink: #0a1a2f;
  --muted: #5d6875;
  --cloud: #f4f7fb;
  --white: #ffffff;
  --wa: #20c776;
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy-950);
  transition: opacity .55s ease, visibility .55s ease;
}
.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(231,180,35,.22);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}
.preloader::before { width: 330px; height: 330px; }
.preloader::after { width: 480px; height: 480px; animation-delay: .5s; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner { position: relative; z-index: 2; width: min(290px, 66vw); text-align: center; }
.preloader__inner img { padding: .45rem .8rem; opacity: 1; background: var(--white); border-radius: 16px; box-shadow: 0 24px 70px rgba(0,0,0,.22); animation: preloaderFloat 1s ease-in-out infinite alternate; }
.preloader__line { width: 100%; height: 2px; margin: 1rem 0; overflow: hidden; background: rgba(255,255,255,.12); }
.preloader__line span { display: block; width: 100%; height: 100%; background: var(--gold); transform: translateX(-100%); animation: loadLine 1.4s .25s cubic-bezier(.22,1,.36,1) forwards; }
.preloader p { margin: 0; color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 84px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(6,35,75,.09);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 92px; height: auto; }
.brand span { padding-left: .8rem; border-left: 1px solid #d7dde5; color: var(--navy-800); font-size: .77rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
nav { display: flex; gap: 2rem; }
nav a { position: relative; text-decoration: none; color: #344154; font-size: .92rem; font-weight: 600; }
nav a::after { content: ""; position: absolute; left: 0; bottom: -.45rem; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }
.header-cta { display: inline-flex; align-items: center; gap: .6rem; padding: .78rem 1rem; border-radius: 999px; color: var(--white); background: var(--navy-900); font-size: .9rem; font-weight: 700; text-decoration: none; }
.header-cta span { color: var(--gold); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .15; background-image: radial-gradient(rgba(255,255,255,.85) .55px, transparent .55px); background-size: 18px 18px; mask-image: linear-gradient(90deg,#000,transparent 80%); }
.hero__glow { position: absolute; width: 620px; height: 620px; left: -190px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(8,119,209,.3), transparent 70%); }
.hero__copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 5.5rem 4vw 5rem max(24px, calc((100vw - var(--max)) / 2)); }
.eyebrow, .kicker { color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .7rem; color: var(--gold-soft); }
.eyebrow span { width: 34px; height: 2px; background: var(--gold); }
.hero h1, h2 { font-family: "Manrope", system-ui, sans-serif; letter-spacing: -.045em; }
.hero h1 { max-width: 720px; margin: 1.25rem 0 1.3rem; font-size: clamp(3.2rem, 5.3vw, 5.8rem); line-height: .98; }
.hero h1 em { display: block; color: var(--cyan); font-style: normal; }
.hero__lead { max-width: 640px; margin: 0; color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 1.35vw, 1.28rem); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: .75rem; padding: .95rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-weight: 800; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--navy-950); background: var(--gold); box-shadow: 0 12px 32px rgba(231,180,35,.2); }
.button--primary:hover { background: var(--gold-soft); box-shadow: 0 16px 36px rgba(231,180,35,.28); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); }
.button--ghost:hover { background: rgba(255,255,255,.1); }
.hero__proof { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 2.7rem 0 0; padding: 1.35rem 0 0; border-top: 1px solid rgba(255,255,255,.13); list-style: none; }
.hero__proof li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.74); font-size: .86rem; font-weight: 600; }
.hero__proof span { color: var(--gold); font-size: .7rem; letter-spacing: .1em; }

.hero__visual { position: relative; min-width: 0; background: var(--navy-800); }
.hero__photo-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero__photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-950) 0%, rgba(3,26,57,.88) 18%, transparent 46%), linear-gradient(0deg, rgba(3,26,57,.55), transparent 40%); }
.hero__photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 45% center; filter: saturate(.9) contrast(1.04); }
.hero__seal { position: absolute; z-index: 2; top: 3rem; right: 2rem; display: grid; grid-template-columns: auto auto; align-items: center; gap: .7rem; padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(3,26,57,.58); backdrop-filter: blur(12px); }
.hero__seal strong { color: var(--gold); font-size: 1.2rem; }
.hero__seal span { color: rgba(255,255,255,.84); font-size: .66rem; font-weight: 700; line-height: 1.3; letter-spacing: .08em; text-transform: uppercase; }
.hero__card { position: absolute; z-index: 3; right: 0; bottom: 2.8rem; width: min(410px, 88%); padding: 1.5rem 2.2rem; color: var(--ink); background: var(--white); border-left: 5px solid var(--gold); box-shadow: 0 24px 60px rgba(3,26,57,.28); }
.hero__card-label { display: block; margin-bottom: .35rem; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero__card strong { display: block; font-family: "Manrope", sans-serif; font-size: 1.35rem; line-height: 1.25; }
.hero__card p { margin: .55rem 0 0; color: var(--muted); font-size: .93rem; line-height: 1.5; }

.quick-band { display: grid; grid-template-columns: 1.1fr 1fr auto; align-items: center; gap: 2rem; padding: 1.5rem max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: var(--navy-800); }
.quick-band p, .quick-band span { margin: 0; }
.quick-band p { font-family: "Manrope", sans-serif; font-size: 1.15rem; font-weight: 800; }
.quick-band > span { color: rgba(255,255,255,.65); font-size: .9rem; }
.quick-band a { color: var(--gold-soft); font-weight: 800; text-decoration: none; white-space: nowrap; }

.section { padding: 7.5rem max(24px, calc((100vw - var(--max)) / 2)); }
.section-heading { display: grid; grid-template-columns: .7fr 1.25fr 1fr; gap: 2rem; align-items: start; margin-bottom: 3.5rem; }
.section-heading > * { margin: 0; }
.section-heading h2, .quote-section h2, .process h2, .trust h2, .final-cta h2 { font-size: clamp(2.4rem, 4vw, 4.6rem); line-height: 1.04; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }

.services { background: var(--cloud); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { position: relative; display: flex; min-height: 390px; flex-direction: column; padding: 2rem; overflow: hidden; background: var(--white); border: 1px solid #e2e7ed; border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(8,119,209,.28); box-shadow: 0 24px 52px rgba(6,35,75,.1); }
.service-card--feature { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.service-card--feature::before { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; bottom: -100px; border: 32px solid rgba(25,186,243,.12); border-radius: 50%; }
.service-card__top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.service-number { color: var(--blue); font-size: .8rem; font-weight: 800; letter-spacing: .1em; }
.service-card--feature .service-number { color: var(--gold); }
.service-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid #dce3eb; border-radius: 50%; color: var(--blue); font-size: 1.25rem; }
.service-card--feature .service-icon { color: var(--gold); border-color: rgba(255,255,255,.2); }
.service-card h3 { position: relative; z-index: 2; margin: auto 0 .7rem; font-family: "Manrope", sans-serif; font-size: 1.65rem; line-height: 1.15; letter-spacing: -.025em; }
.service-card p { position: relative; z-index: 2; margin: 0 0 1.7rem; color: var(--muted); line-height: 1.55; }
.service-card--feature p { color: rgba(255,255,255,.67); }
.service-card a { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid #e0e5eb; color: var(--navy-800); font-weight: 800; text-decoration: none; }
.service-card--feature a { color: var(--gold-soft); border-color: rgba(255,255,255,.15); }

.quote-section {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-800);
}
.quote-section::before { content: ""; position: absolute; width: 620px; height: 620px; left: -300px; bottom: -360px; border: 90px solid rgba(25,186,243,.08); border-radius: 50%; }
.quote-section__intro { position: relative; z-index: 2; align-self: center; }
.quote-section h2 { margin: 1rem 0 1.4rem; }
.quote-section__intro > p:not(.kicker) { max-width: 470px; margin: 0; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.quote-section__contact { display: flex; flex-direction: column; margin-top: 2.2rem; }
.quote-section__contact span { color: rgba(255,255,255,.5); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quote-section__contact a { color: var(--gold-soft); font-family: "Manrope", sans-serif; font-size: 1.65rem; font-weight: 800; text-decoration: none; }
.quote-form { position: relative; z-index: 2; padding: clamp(1.5rem, 3vw, 2.5rem); color: var(--ink); background: var(--white); border-radius: 28px; box-shadow: 0 30px 80px rgba(3,26,57,.3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1rem; }
.form-field { display: flex; flex-direction: column; min-width: 0; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { margin-bottom: .45rem; color: var(--navy-900); font-size: .87rem; font-weight: 800; }
.form-field input,
.form-field select { width: 100%; min-height: 52px; padding: .78rem .9rem; color: var(--ink); background: #f7f9fc; border: 1px solid #d7dee7; border-radius: 12px; font: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-field input::placeholder { color: #8a95a3; }
.form-field input:focus,
.form-field select:focus { background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,119,209,.12); }
.form-field small { margin-top: .32rem; color: #788492; font-size: .75rem; line-height: 1.35; }
.quote-form.was-validated input:invalid,
.quote-form.was-validated select:invalid { border-color: #c94141; box-shadow: 0 0 0 3px rgba(201,65,65,.1); }
.form-consent { display: grid; grid-template-columns: 1.15rem 1fr; gap: .7rem; align-items: start; margin: 1.35rem 0; color: #5c6876; font-size: .8rem; line-height: 1.45; cursor: pointer; }
.form-consent input { width: 1.05rem; height: 1.05rem; margin: .15rem 0 0; accent-color: var(--blue); }
.quote-form.was-validated .form-consent input:invalid { outline: 2px solid #c94141; outline-offset: 2px; }
.quote-form__submit { display: flex; width: 100%; min-height: 58px; align-items: center; justify-content: space-between; gap: 1rem; padding: .95rem 1.2rem; color: var(--navy-950); background: var(--gold); border: 0; border-radius: 14px; font: inherit; font-weight: 800; cursor: pointer; box-shadow: 0 12px 28px rgba(231,180,35,.22); transition: transform .2s ease, background .2s ease; }
.quote-form__submit:hover { background: var(--gold-soft); transform: translateY(-2px); }
.quote-form__submit:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.quote-form__privacy { display: flex; gap: .55rem; align-items: flex-start; margin: 1rem 0 0; color: #75808c; font-size: .76rem; line-height: 1.45; }
.quote-form__privacy svg { flex: 0 0 auto; width: 1rem; height: 1rem; margin-top: .05rem; color: var(--blue); }
.quote-form__status { min-height: 1.3rem; margin: .55rem 0 0; color: var(--navy-800); font-size: .82rem; font-weight: 700; }

.process { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; color: var(--white); background: var(--navy-950); }
.process__intro { align-self: center; }
.kicker--gold { color: var(--gold); }
.process h2 { margin: 1rem 0 1.3rem; }
.process__intro > p:not(.kicker) { max-width: 480px; color: rgba(255,255,255,.66); font-size: 1.05rem; }
.text-link { display: inline-flex; gap: .8rem; margin-top: 1.1rem; color: var(--gold-soft); font-weight: 800; text-decoration: none; }
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 2.1rem; bottom: 2.1rem; left: 1.85rem; width: 1px; background: rgba(255,255,255,.18); }
.timeline li { position: relative; display: grid; grid-template-columns: 3.7rem 1fr; gap: 1.4rem; padding: 1.7rem 0; }
.timeline li > span { z-index: 2; display: grid; width: 3.7rem; height: 3.7rem; place-items: center; color: var(--gold); background: var(--navy-950); border: 1px solid rgba(231,180,35,.5); border-radius: 50%; font-family: "Manrope", sans-serif; font-weight: 800; }
.timeline h3 { margin: .15rem 0 .4rem; font-family: "Manrope", sans-serif; font-size: 1.25rem; }
.timeline p { margin: 0; color: rgba(255,255,255,.61); }

.trust { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; background: var(--white); }
.trust__statement img { width: 120px; }
.quote-mark { height: 3rem; margin: 2.6rem 0 0; color: var(--gold); font-family: Georgia, serif; font-size: 5rem; line-height: 1; }
.trust__statement h2 { margin: .7rem 0 1.2rem; }
.trust__statement > p:last-child { color: var(--muted); font-size: 1.05rem; }
.trust__grid article { display: grid; grid-template-columns: 3rem 1fr; gap: 0 1.2rem; padding: 1.6rem 0; border-bottom: 1px solid #dfe5eb; }
.trust__grid article > span { grid-row: span 2; color: var(--blue); font-weight: 800; }
.trust__grid h3 { margin: 0 0 .35rem; font-family: "Manrope", sans-serif; font-size: 1.2rem; }
.trust__grid p { margin: 0; color: var(--muted); }

.faq { background: var(--cloud); }
.faq .section-heading { grid-template-columns: .7fr 2.3fr; }
.faq__list { max-width: 920px; margin-left: auto; }
.faq details { border-top: 1px solid #ced6df; }
.faq details:last-child { border-bottom: 1px solid #ced6df; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.55rem 0; cursor: pointer; font-family: "Manrope", sans-serif; font-size: 1.08rem; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; color: var(--white); background: var(--navy-900); border-radius: 50%; font-size: 1.15rem; transition: transform .25s ease; }
.faq details[open] summary span { transform: rotate(45deg); background: var(--blue); }
.faq details div { max-width: 760px; padding: 0 0 1.6rem; color: var(--muted); }
.faq details div p { margin: 0; }
.source-note { max-width: 920px; margin: 1.5rem 0 0 auto; color: #697584; font-size: .85rem; }
.source-note a { color: var(--blue); font-weight: 700; }

.final-cta { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 3rem; align-items: end; min-height: 520px; padding: 7rem max(24px, calc((100vw - var(--max)) / 2)); overflow: hidden; color: var(--white); background: var(--navy-900); }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .13; background: radial-gradient(circle at 72% 10%, var(--cyan), transparent 32%), linear-gradient(120deg, transparent 40%, rgba(255,255,255,.08)); }
.final-cta__mark { position: absolute; right: -1.5rem; top: -4.3rem; color: rgba(255,255,255,.035); font-family: "Manrope", sans-serif; font-size: clamp(12rem, 28vw, 30rem); font-weight: 800; letter-spacing: -.09em; line-height: 1; }
.final-cta__copy, .final-cta__actions { position: relative; z-index: 2; }
.final-cta h2 { max-width: 760px; margin: 1rem 0; }
.final-cta__copy > p:last-child { color: rgba(255,255,255,.68); font-size: 1.1rem; }
.final-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.final-phone { display: flex; flex-direction: column; text-decoration: none; }
.final-phone small { color: rgba(255,255,255,.58); }
.final-phone strong { color: var(--white); font-family: "Manrope", sans-serif; font-size: 1.5rem; }

footer { display: grid; grid-template-columns: auto 1fr 2fr; gap: 2rem; align-items: center; padding: 2.2rem max(24px, calc((100vw - var(--max)) / 2)) 6rem; color: rgba(255,255,255,.57); background: var(--navy-950); font-size: .82rem; }
.brand--footer img { width: 88px; padding: 2px 5px; background: var(--white); border-radius: 6px; }
footer p { margin: 0; }
.copyright { grid-column: 2 / -1; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.1); }

.floating-actions { position: fixed; right: 1.2rem; top: 50%; z-index: 90; display: flex; flex-direction: column; gap: .7rem; transform: translateY(-50%); }
.floating-action { display: flex; width: 52px; min-width: 52px; height: 52px; align-items: center; justify-content: center; gap: .55rem; padding: 0; color: var(--white); border-radius: 50%; box-shadow: 0 12px 30px rgba(3,26,57,.24); font-size: .88rem; font-weight: 800; text-decoration: none; transition: transform .2s ease; }
.floating-action span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.floating-action:hover { transform: translateY(-3px); }
.floating-action--call { background: var(--navy-800); }
.floating-action--wa { background: var(--wa); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse { 0% { transform: scale(.72); opacity: 0; } 35% { opacity: 1; } 100% { transform: scale(1.12); opacity: 0; } }
@keyframes preloaderFloat { to { transform: translateY(-5px); } }
@keyframes loadLine { to { transform: none; } }

@media (max-width: 980px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { min-height: 680px; padding-top: 5rem; padding-bottom: 5rem; }
  .hero__visual { min-height: 600px; }
  .hero__photo-wrap::after { background: linear-gradient(90deg, rgba(3,26,57,.9), transparent 48%), linear-gradient(0deg, rgba(3,26,57,.6), transparent 45%); }
  .quick-band { grid-template-columns: 1fr auto; }
  .quick-band > span { display: none; }
  .section-heading { grid-template-columns: 1fr 2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .quote-section, .process, .trust { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; }
  footer { grid-template-columns: auto 1fr; }
  .legal { grid-column: 1 / -1; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .site-header { min-height: 70px; padding: 0 18px; }
  .brand img { width: 72px; }
  .brand span { display: none; }
  .header-cta { min-height: 42px; padding: .65rem .85rem; font-size: .78rem; }
  .header-cta span { display: none; }
  .hero { display: flex; flex-direction: column; }
  .hero__copy { min-height: calc(100svh - 70px); padding: 3.6rem 20px 4.5rem; }
  .eyebrow { font-size: .68rem; }
  .hero h1 { margin-top: 1rem; font-size: clamp(2.85rem, 14vw, 4.35rem); line-height: .95; }
  .hero__lead { max-width: 92%; font-size: 1rem; line-height: 1.55; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero__proof { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1rem; margin-top: 2rem; }
  .hero__proof li:last-child { grid-column: 1 / -1; }
  .hero__visual { min-height: 76svh; }
  .hero__photo-wrap img { object-position: 47% center; }
  .hero__seal { top: 1.2rem; right: 1rem; }
  .hero__card { bottom: 1.2rem; width: calc(100% - 1rem); padding: 1.25rem 1.4rem; }
  .quick-band { grid-template-columns: 1fr; gap: .3rem; padding: 1.2rem 20px; }
  .quick-band a { margin-top: .4rem; }
  .section { padding: 5rem 20px; }
  .section-heading, .faq .section-heading { grid-template-columns: 1fr; gap: .7rem; }
  .section-heading > p:last-child { grid-column: 1; }
  .section-heading h2, .quote-section h2, .process h2, .trust h2, .final-cta h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .service-card { min-height: 330px; padding: 1.5rem; }
  .quote-section { gap: 2.5rem; }
  .quote-form { padding: 1.3rem; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .process { gap: 3rem; }
  .timeline li { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .timeline li > span { width: 3rem; height: 3rem; }
  .timeline::before { left: 1.5rem; }
  .trust { gap: 2rem; }
  .faq summary { gap: 1rem; font-size: 1rem; line-height: 1.35; }
  .final-cta { min-height: 580px; padding: 5rem 20px; }
  footer { grid-template-columns: 1fr; padding: 2.5rem 20px 3rem; }
  footer .legal, footer .copyright { grid-column: 1; }
  .floating-actions { right: 0; bottom: 0; left: 0; top: auto; flex-direction: row; gap: 0; padding: .65rem 12px calc(.65rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); border-top: 1px solid #dce3eb; backdrop-filter: blur(14px); transform: none; }
  .floating-action { flex: 1; min-width: 0; height: 50px; border-radius: 12px; box-shadow: none; }
  .floating-action span { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; }
  .floating-action--call { border-radius: 12px 0 0 12px; }
  .floating-action--wa { border-radius: 0 12px 12px 0; }
}

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