:root {
  --navy: #071f42;
  --navy-2: #0a2d5e;
  --burgundy: #7a111b;
  --gold: #d4a22e;
  --gold-light: #f2d883;
  --ivory: #f8f5ee;
  --white: #ffffff;
  --ink: #0a1930;
  --muted: #647086;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: "DM Sans", sans-serif; }
.js body:not(.is-ready) { overflow: hidden; }
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -50px; z-index: 100; padding: 12px 16px; background: white; color: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 12px; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: white; background: linear-gradient(180deg, rgba(4,20,45,.93), rgba(4,20,45,.78)); border-bottom: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; gap: 36px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 278px; }
.brand-mark { width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(215,163,40,.72); border-radius: 50%; }
.brand-mark svg { width: 30px; fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-photo { position: relative; overflow: hidden; background: #711019; box-shadow: inset 0 0 0 2px rgba(3,18,39,.7), 0 0 0 2px rgba(215,163,40,.15); }
.brand-photo img { position: absolute; left: -9%; top: -10%; width: 230%; max-width: none; height: auto; }
.brand strong, .brand small { display: block; text-transform: uppercase; }
.brand strong { font-family: "Playfair Display", serif; font-size: 1.08rem; letter-spacing: .06em; }
.brand small { margin-top: 2px; color: #e6c979; font-size: .68rem; letter-spacing: .16em; }
nav { display: flex; gap: 28px; margin-left: auto; }
nav a { position: relative; font-size: .9rem; color: rgba(255,255,255,.8); }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s ease; }
nav a:hover::after, nav a:focus-visible::after { right: 0; }
.urgent-button { display: inline-flex; align-items: center; gap: 9px; padding: 13px 17px; border: 1px solid rgba(243,216,131,.55); border-radius: 99px; color: var(--gold-light); font-weight: 700; font-size: .85rem; transition: .25s ease; }
.urgent-button:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.pulse { width: 7px; height: 7px; background: #f1bd3b; border-radius: 50%; box-shadow: 0 0 0 5px rgba(241,189,59,.16); }
.preloader { display: none; }
.js .preloader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; color: white; background: radial-gradient(circle at 50% 45%, #10335f 0, var(--navy) 42%, #031329 100%); transition: opacity .55s ease, visibility .55s ease; }
.js .preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader::before, .preloader::after { content: ""; position: absolute; width: min(78vw, 720px); aspect-ratio: 1; border: 1px solid rgba(212,162,46,.11); border-radius: 50%; }
.preloader::after { width: min(54vw, 480px); border-color: rgba(212,162,46,.17); }
.preloader-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.preloader-emblem { position: relative; width: 164px; height: 164px; margin-bottom: 27px; overflow: hidden; border: 1px solid rgba(242,216,131,.8); border-radius: 50%; background: #711019; box-shadow: 0 24px 60px rgba(0,0,0,.38), 0 0 0 7px rgba(212,162,46,.09); }
.preloader-emblem img { position: absolute; left: -9%; top: -10%; width: 230%; max-width: none; height: auto; }
.preloader-ring { position: absolute; inset: 5px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; }
.preloader-inner p { margin: 0; font-family: "Playfair Display", serif; font-size: 1.85rem; letter-spacing: .06em; text-transform: uppercase; }
.preloader-inner > span:not(.preloader-ring) { margin-top: 6px; color: var(--gold-light); font-size: .7rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.preloader-progress { width: 210px; height: 1px; margin-top: 29px; overflow: hidden; background: rgba(255,255,255,.16); }
.preloader-progress i { display: block; width: 45%; height: 100%; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); animation: preloader-scan 1s ease-in-out infinite; }
@keyframes preloader-scan { from { transform: translateX(-110%); } to { transform: translateX(250%); } }
.hero { position: relative; min-height: 780px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; color: white; background: var(--navy); }
.hero-photo { position: absolute; inset: 0; background: url("hero-editorial-v1.png") center/cover no-repeat; transform: scale(1.008); animation: hero-settle 1.4s cubic-bezier(.16,1,.3,1) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,17,38,.42) 0%, rgba(3,17,38,.12) 47%, rgba(3,17,38,.02) 74%), linear-gradient(0deg, rgba(3,17,38,.78) 0%, transparent 34%); }
.hero-grid { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 128px; display: block; }
.hero-copy { width: min(690px, 60vw); }
@keyframes hero-settle { from { transform: scale(1.045); filter: brightness(.72); } to { transform: scale(1.008); filter: brightness(1); } }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; color: var(--gold-light); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
h1 { max-width: 760px; margin: 0; font-family: "Playfair Display", serif; font-size: clamp(3.2rem, 6vw, 5.9rem); line-height: .98; letter-spacing: -.045em; }
h1 em { display: inline-block; margin-top: 6px; color: var(--gold-light); font-weight: 600; }
.hero-lead { max-width: 650px; margin: 28px 0 34px; color: rgba(255,255,255,.78); font-size: 1.15rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 55px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; border-radius: 7px; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--navy); background: linear-gradient(135deg, #f1d680, var(--gold)); box-shadow: 0 12px 30px rgba(7,15,28,.32); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); }
.response-note { margin-top: 21px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.66); font-size: .84rem; }
.response-note span { width: 7px; height: 7px; border-radius: 50%; background: #53d18b; box-shadow: 0 0 0 5px rgba(83,209,139,.13); }
.hero-credentials { max-width: 570px; display: flex; align-items: center; gap: 17px; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(215,163,40,.5); }
.credential-monogram { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; color: var(--navy); border-radius: 50%; background: var(--gold-light); font-family: "Playfair Display", serif; font-size: 1.15rem; font-weight: 700; }
.hero-credentials strong, .hero-credentials div > span { display: block; }
.hero-credentials strong { color: white; font-family: "Playfair Display", serif; font-size: .98rem; font-weight: 600; }
.hero-credentials div > span { margin-top: 4px; color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.hero-foot { position: absolute; z-index: 2; left: 50%; bottom: 31px; transform: translateX(-50%); display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.56); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-foot i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.section { padding: 118px 0; }
.kicker { display: block; margin-bottom: 15px; color: #aa7611; font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.kicker-light { color: var(--gold-light); }
.section h2, .process-section h2, .nationwide h2, .final-cta h2 { margin: 0; font-family: "Playfair Display", serif; font-size: clamp(2.5rem, 4.6vw, 4.65rem); line-height: 1.04; letter-spacing: -.035em; }
.trust-strip { background: var(--ivory); border-bottom: 1px solid #ded8ca; }
.trust-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); }
.trust-grid > div { min-height: 186px; padding: 35px 30px; border-right: 1px solid #ded8ca; display: flex; flex-direction: column; justify-content: center; }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; padding-right: 0; }
.trust-intro h2 { max-width: 390px; font-family: "Playfair Display", serif; font-size: 1.85rem; line-height: 1.18; margin: 0; }
.trust-number { color: var(--navy); font-family: "Playfair Display", serif; font-size: 2.6rem; line-height: 1; }
.trust-number span { color: var(--gold); }
.trust-item p { max-width: 180px; margin: 12px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.services { background: #fff; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.section-heading p { max-width: 460px; margin: 0 0 6px; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 1fr 1fr; border-top: 1px solid #dfe2e7; border-left: 1px solid #dfe2e7; }
.service-card { position: relative; min-height: 255px; padding: 34px; overflow: hidden; border-right: 1px solid #dfe2e7; border-bottom: 1px solid #dfe2e7; background: #fff; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.service-card:hover { z-index: 3; transform: translateY(-4px); background: #fbfaf6; box-shadow: 0 22px 45px rgba(9,31,65,.09); }
.feature-card { grid-row: span 2; padding: 44px; background: var(--navy); color: white; }
.feature-card:hover { background: #0a2d5e; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 50px; color: var(--gold); border: 1px solid rgba(196,139,24,.35); border-radius: 50%; }
.service-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card:not(.feature-card) .service-icon { margin-bottom: 31px; }
.card-index { position: absolute; top: 27px; right: 28px; color: #9ca5b3; font-family: "Playfair Display", serif; font-size: .76rem; }
.feature-card .card-index { color: rgba(255,255,255,.38); }
.service-card h3 { margin: 0 0 13px; font-family: "Playfair Display", serif; font-size: 1.65rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .9rem; }
.feature-card p { color: rgba(255,255,255,.66); font-size: 1rem; }
.service-card ul { margin: 33px 0 0; padding: 25px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.service-card li { position: relative; padding: 7px 0 7px 20px; color: rgba(255,255,255,.78); font-size: .82rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 13px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.service-note { display: flex; align-items: center; gap: 16px; margin-top: 24px; padding: 20px 24px; background: #f4f1e9; }
.service-note > span { color: var(--gold); }
.service-note p { margin: 0; font-size: .88rem; }
.service-note a { margin-left: auto; color: var(--navy); font-size: .82rem; font-weight: 700; }
.service-note a span { color: var(--gold); margin-left: 8px; }
.process-section { padding: 120px 0; color: white; background: var(--navy); }
.process-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 105px; align-items: start; }
.process-copy { position: sticky; top: 130px; }
.process-copy p { max-width: 430px; margin: 27px 0 33px; color: rgba(255,255,255,.64); line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 7px; color: var(--gold-light); border-bottom: 1px solid rgba(242,216,131,.45); font-weight: 700; font-size: .9rem; }
.text-link span { font-size: 1.1rem; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.17); }
.steps li { display: grid; grid-template-columns: 86px 1fr; gap: 18px; padding: 31px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.step-number { padding-top: 5px; color: var(--gold); font-family: "Playfair Display", serif; font-size: 1.05rem; }
.steps h3 { margin: 0 0 7px; font-family: "Playfair Display", serif; font-size: 1.35rem; }
.steps p { margin: 0; color: rgba(255,255,255,.57); font-size: .88rem; line-height: 1.6; }
.expertise { background: #f3efe6; }
.expertise-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: center; }
.seal-panel { position: relative; min-height: 520px; overflow: hidden; background: white; box-shadow: 0 25px 70px rgba(10,25,48,.16); }
.seal-panel img { width: 100%; height: calc(100% - 78px); position: absolute; inset: 0 0 auto; padding: 24px 28px; object-fit: contain; object-position: center; }
.seal-panel::after { content: none; }
.seal-caption { position: absolute; z-index: 2; inset: auto 0 0; min-height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; color: white; background: var(--navy); }
.seal-caption span { color: var(--gold-light); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.seal-caption strong { font-family: "Playfair Display", serif; font-size: 1.4rem; }
.expertise-copy .large-copy { margin: 30px 0; color: #4f5d70; font-family: "Playfair Display", serif; font-size: 1.25rem; line-height: 1.65; }
.quality-list { margin: 33px 0 38px; border-top: 1px solid #d9d3c7; }
.quality-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid #d9d3c7; }
.check { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #c5962e; border-radius: 50%; color: #9f7114; font-size: .76rem; }
.quality-list p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.quality-list strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: .92rem; }
.button-navy { color: white; background: var(--navy); }
.button-navy:hover { background: var(--burgundy); }
.nationwide { padding: 77px 0; color: white; background: var(--burgundy); }
.nationwide-inner { display: grid; grid-template-columns: 1.1fr .7fr auto; gap: 60px; align-items: center; }
.nationwide h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.nationwide p { margin: 0; color: rgba(255,255,255,.67); line-height: 1.65; }
.clients { background: #fff; overflow: hidden; }
.clients-heading { max-width: 720px; margin-bottom: 54px; }
.clients-heading p { max-width: 590px; color: var(--muted); line-height: 1.7; }
.client-marquee { margin-inline: calc((100vw - min(1180px, calc(100vw - 40px))) / -2); padding: 23px 0; overflow: hidden; background: var(--navy); }
.client-row { width: max-content; display: flex; align-items: center; gap: 0; animation: marquee 35s linear infinite; }
.client-row span { padding: 0 42px; color: rgba(255,255,255,.72); border-right: 1px solid rgba(255,255,255,.2); font-family: "Playfair Display", serif; font-size: 1.1rem; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-45%); } }
.client-list { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 42px; border-top: 1px solid #dfe2e7; border-left: 1px solid #dfe2e7; }
.client-list span { min-height: 84px; display: flex; align-items: center; padding: 19px; color: #4f5d70; border-right: 1px solid #dfe2e7; border-bottom: 1px solid #dfe2e7; font-size: .78rem; line-height: 1.4; }
.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 105px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro p { max-width: 400px; color: var(--muted); line-height: 1.65; }
.dark-link { margin-top: 15px; color: var(--navy); border-color: rgba(7,31,66,.28); }
.faq-list { border-top: 1px solid #d4cdbf; }
details { border-bottom: 1px solid #d4cdbf; }
summary { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: "Playfair Display", serif; font-size: 1.25rem; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--gold); font-family: "DM Sans", sans-serif; font-size: 1.35rem; font-weight: 400; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 650px; margin: -4px 45px 24px 0; color: var(--muted); line-height: 1.7; font-size: .9rem; }
.final-cta { position: relative; overflow: hidden; padding: 125px 0; text-align: center; color: white; background: var(--navy); }
.cta-pattern { position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(circle at center, transparent 0 23%, rgba(212,162,46,.22) 23.2% 23.4%, transparent 23.6% 33%, rgba(212,162,46,.12) 33.2% 33.4%, transparent 33.6%), linear-gradient(120deg, transparent 48%, rgba(255,255,255,.04) 48% 52%, transparent 52%); background-size: 900px 900px, 100% 100%; background-position: center; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 em { color: var(--gold-light); font-weight: 600; }
.final-cta p { max-width: 600px; margin: 26px auto 36px; color: rgba(255,255,255,.65); font-size: 1.05rem; }
.cta-actions { justify-content: center; }
footer { padding: 65px 0 24px; color: white; background: #04162f; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 70px; padding-bottom: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-brand { margin-bottom: 8px; }
.footer-brand .brand-mark { width: 62px; height: 62px; }
.footer-grid p, .footer-grid a, .footer-grid span { color: rgba(255,255,255,.56); font-size: .8rem; line-height: 1.55; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid .footer-title { margin-bottom: 9px; color: var(--gold-light); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.floating-actions { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.float-button { min-width: 128px; height: 48px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 0 16px; border-radius: 99px; color: white; box-shadow: 0 12px 28px rgba(3,20,43,.24); font-size: .78rem; font-weight: 700; transition: transform .2s ease, filter .2s ease; }
.float-button:hover { transform: translateY(-3px); filter: brightness(1.08); }
.float-button svg { width: 20px; height: 20px; fill: currentColor; }
.float-call { background: var(--burgundy); }
.float-wa { background: #1ca868; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@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; }
  .preloader-progress i { animation: none; width: 100%; }
}
@media (max-width: 980px) {
  nav { display: none; }
  .nav-wrap { justify-content: space-between; }
  .hero-copy { width: min(670px, 78vw); }
  .hero { min-height: 100vh; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid #ded8ca; }
  .trust-grid > div:first-child { padding-left: 30px; }
  .trust-grid > div:last-child { padding-right: 30px; }
  .section-heading, .expertise-grid, .faq-grid { grid-template-columns: 1fr; gap: 52px; }
  .services-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .feature-card { grid-row: span 2; }
  .process-layout { grid-template-columns: .8fr 1.2fr; gap: 55px; }
  .expertise-grid { max-width: 750px; }
  .seal-panel { min-height: 500px; }
  .nationwide-inner { grid-template-columns: 1fr; gap: 25px; }
  .nationwide-inner .button { justify-self: start; }
  .client-list { grid-template-columns: repeat(2, 1fr); }
  .faq-intro { position: static; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 74px; gap: 12px; }
  .brand { min-width: auto; }
  .brand-mark { width: 38px; height: 38px; }
  .brand small { display: none; }
  .brand strong { font-size: .82rem; }
  .urgent-button { padding: 11px 13px; font-size: .72rem; }
  .hero-grid { padding-top: 126px; padding-bottom: 116px; }
  .hero-photo { background-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,17,38,.97) 0%, rgba(3,17,38,.88) 60%, rgba(3,17,38,.46) 100%), linear-gradient(0deg, rgba(3,17,38,.82), transparent 45%); }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .hero-lead { font-size: 1rem; line-height: 1.6; }
  .hero-actions { display: grid; }
  .hero-credentials { align-items: flex-start; }
  .hero-credentials div > span { font-size: .64rem; line-height: 1.5; }
  .hero-foot { gap: 8px; font-size: .6rem; white-space: nowrap; }
  .section { padding: 82px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { min-height: 155px; padding: 25px 18px; }
  .trust-grid > div:first-child { padding-left: 18px; grid-column: 1 / -1; border-right: 0; }
  .trust-grid > div:nth-child(2) { border-right: 1px solid #ded8ca; }
  .trust-grid > div:nth-child(3) { border-right: 0; }
  .trust-grid > div:nth-child(-n+3) { border-bottom: 1px solid #ded8ca; }
  .trust-grid > div:last-child { grid-column: 1 / -1; min-height: 130px; padding-right: 18px; }
  .trust-intro h2 { font-size: 1.5rem; }
  .trust-item p { font-size: .72rem; }
  .trust-number { font-size: 2.2rem; }
  .section-heading { gap: 25px; margin-bottom: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-card { grid-row: auto; padding: 32px; }
  .service-card { min-height: 240px; padding: 30px; }
  .service-note { align-items: flex-start; flex-wrap: wrap; }
  .service-note a { width: 100%; margin: 0; }
  .process-section { padding: 82px 0; }
  .process-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-copy { position: static; }
  .steps li { grid-template-columns: 50px 1fr; }
  .expertise-grid { gap: 45px; }
  .seal-panel { min-height: 430px; }
  .seal-panel img { height: calc(100% - 86px); padding: 18px; }
  .seal-caption { inset: auto 0 0; padding: 18px 20px; }
  .seal-caption { align-items: flex-start; flex-direction: column; gap: 6px; }
  .nationwide { padding: 67px 0; }
  .client-list { grid-template-columns: 1fr; }
  .client-list span { min-height: 68px; }
  .faq-grid { gap: 40px; }
  summary { min-height: 76px; font-size: 1.08rem; }
  .final-cta { padding: 92px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-actions { right: 14px; bottom: 14px; flex-direction: row; }
  .float-button { min-width: 52px; width: 52px; height: 52px; padding: 0; }
  .float-button span { display: none; }
  .preloader-emblem { width: 132px; height: 132px; }
  .preloader-inner p { font-size: 1.45rem; }
  .preloader-inner > span:not(.preloader-ring) { font-size: .6rem; }
}
