:root {
  --navy: #071923;
  --navy-2: #0d2a38;
  --ink: #102631;
  --muted: #61717a;
  --orange: #f25a1c;
  --orange-dark: #d9430a;
  --gold: #f2b632;
  --cream: #fff8f1;
  --surface: #f4f7f8;
  --line: #dfe7ea;
  --white: #fff;
  --shadow-sm: 0 8px 25px rgba(7, 25, 35, .08);
  --shadow-lg: 0 28px 65px rgba(7, 25, 35, .16);
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-weight: 850; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.35rem); }
h3 { font-size: 1.3rem; }
svg { display: block; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 105px 0; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  padding: 10px 16px; color: var(--white); background: var(--navy); border-radius: 8px;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid rgba(242, 90, 28, .45); outline-offset: 3px; }

.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  color: var(--orange-dark); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow > span { display: inline-block; width: 30px; height: 3px; border-radius: 2px; background: var(--orange); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #ffbc9c; }
.eyebrow--light > span { background: #ffbc9c; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 22px; border: 2px solid var(--orange); border-radius: 12px;
  color: var(--white); background: var(--orange); box-shadow: 0 10px 24px rgba(242, 90, 28, .24);
  font-weight: 800; line-height: 1.2; cursor: pointer; transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.button:hover { color: var(--white); background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 13px 29px rgba(242, 90, 28, .3); }
.button svg { width: 20px; height: 20px; fill: currentColor; stroke: currentColor; stroke-width: 2; }
.button--small { min-height: 44px; padding: 10px 17px; border-radius: 10px; font-size: .9rem; }
.button--outline { color: var(--navy); background: transparent; border-color: var(--line); box-shadow: none; }
.button--outline:hover { color: var(--orange-dark); background: var(--cream); border-color: #f6b293; box-shadow: none; }
.button--light { color: var(--navy); background: var(--white); border-color: var(--white); box-shadow: none; }
.button--light:hover { color: var(--navy); background: var(--cream); border-color: var(--cream); }

.site-header {
  position: sticky; top: 0; z-index: 1000; height: 82px;
  background: var(--white); border-bottom: 1px solid rgba(223, 231, 234, .7);
  transition: height .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { height: 72px; box-shadow: 0 10px 35px rgba(7, 25, 35, .08); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; color: var(--navy); }
.brand__mark { width: 53px; height: 42px; }
.brand__mark svg { width: 100%; height: 100%; fill: var(--navy); }
.brand__mark svg .brand__mark-accent { fill: none; stroke: var(--orange); stroke-width: 5; stroke-linecap: round; }
.brand__photo-mark { position: relative; flex: 0 0 72px; width: 72px; height: 48px; overflow: hidden; border-radius: 7px; background: var(--white); }
.brand__photo-mark img { position: absolute; top: -9px; left: -18px; width: 108px; max-width: none; height: auto; }
.brand__copy { display: grid; gap: 1px; line-height: 1.1; }
.brand__copy strong { font-size: 1rem; font-weight: 900; letter-spacing: -.03em; text-transform: uppercase; }
.brand__copy small { color: var(--orange-dark); font-size: .68rem; font-weight: 750; letter-spacing: .04em; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: auto; max-width: 220px; max-height: 58px; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.site-nav__list a { position: relative; display: block; padding: 12px 0; color: #334852; font-size: .9rem; font-weight: 750; }
.site-nav__list a::after {
  position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px;
  content: ""; background: var(--orange); transition: right .2s ease;
}
.site-nav__list a:hover { color: var(--navy); }
.site-nav__list a:hover::after, .site-nav__list .current-menu-item a::after { right: 0; }
.site-nav__call svg { width: 18px; }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; }
.menu-toggle__lines { display: grid; gap: 5px; }
.menu-toggle__lines span { display: block; width: 25px; height: 2px; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; padding: 70px 0 0; overflow: hidden; background: linear-gradient(135deg, #fff 0%, #fffaf6 54%, #edf4f6 100%); }
.hero::before { position: absolute; top: -210px; left: -200px; width: 470px; height: 470px; border: 1px solid rgba(242, 90, 28, .16); border-radius: 50%; content: ""; }
.hero::after { position: absolute; top: -100px; left: -90px; width: 250px; height: 250px; border: 1px solid rgba(242, 90, 28, .16); border-radius: 50%; content: ""; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 55px; }
.hero__content { padding: 28px 0 85px; }
.hero h1 { max-width: 700px; margin-bottom: 25px; }
.hero h1 em { display: block; color: var(--orange); font-style: normal; }
.hero__lead { max-width: 650px; margin-bottom: 24px; color: var(--muted); font-size: 1.12rem; }
.hero__benefits { display: flex; flex-wrap: wrap; gap: 14px 23px; margin: 0 0 30px; padding: 0; list-style: none; }
.hero__benefits li { display: flex; align-items: center; gap: 7px; color: #2b3e48; font-size: .9rem; font-weight: 750; }
.hero__benefits svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; fill: none; stroke: var(--orange); stroke-width: 3; background: #fff0e8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__microcopy { margin: 13px 0 0 4px; color: #7b888f; font-size: .78rem; }
.hero__visual { position: relative; min-width: 0; align-self: stretch; display: flex; align-items: flex-end; padding-bottom: 30px; }
.hero__image-wrap { position: relative; width: 100%; }
.hero__image-wrap::before { position: absolute; inset: -16px 20px 16px -16px; z-index: -1; content: ""; border: 1px solid rgba(242, 90, 28, .27); border-radius: var(--radius-lg); }
.hero__image { width: 100%; aspect-ratio: 1.08 / 1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__image--illustration { background: #e4ecef; }
.hero__rating {
  position: absolute; right: -15px; bottom: 6px; display: grid; min-width: 245px;
  padding: 16px 20px 17px; border: 1px solid rgba(255,255,255,.7); border-radius: 15px;
  background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px);
}
.hero__stars { color: var(--gold); font-size: .82rem; letter-spacing: .1em; }
.hero__rating strong { color: var(--navy); font-size: .95rem; }
.hero__rating small { color: var(--muted); font-size: .7rem; }

.trust-bar {
  position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0; padding: 22px 18px; color: var(--white); background: var(--navy); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.trust-bar > div { display: flex; align-items: center; gap: 13px; min-width: 0; padding: 3px 20px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-bar > div:last-child { border-right: 0; }
.trust-bar__icon { display: grid; flex: 0 0 auto; place-items: center; width: 43px; height: 43px; border-radius: 12px; color: var(--gold); background: rgba(242,182,50,.1); }
.trust-bar__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-bar p { display: grid; min-width: 0; margin: 0; line-height: 1.25; }
.trust-bar strong { font-size: .82rem; }
.trust-bar small { overflow: hidden; color: #9fb0b9; font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }

.services { padding-top: 103px; background: var(--white); }
.section-heading { max-width: 700px; margin: 0 auto 55px; text-align: center; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading > p:last-child { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  position: relative; min-width: 0; padding: 29px 25px 27px; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 35px rgba(7,25,35,.05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::after { position: absolute; top: 0; left: 0; width: 100%; height: 4px; content: ""; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.service-card:hover { border-color: #f2c8b6; box-shadow: var(--shadow-sm); transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 23px; color: var(--orange); border-radius: 17px; background: var(--cream); }
.service-card__icon svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { min-height: 2.6em; margin-bottom: 13px; }
.service-card p { min-height: 7.8em; margin-bottom: 19px; color: var(--muted); font-size: .9rem; }
.service-card a { display: inline-flex; align-items: center; gap: 7px; color: var(--orange-dark); font-size: .83rem; font-weight: 800; }
.service-card a svg, .text-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

.reasons { overflow: hidden; background: var(--surface); }
.reasons__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 85px; }
.reasons__visual { position: relative; min-height: 500px; }
.reasons__visual::before {
  position: absolute; inset: 45px 65px; content: ""; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0 18%, #e0eaed 19% 100%); box-shadow: inset 0 0 0 1px #d8e3e6;
}
.reasons__visual::after { position: absolute; top: 50%; left: 50%; width: 2px; height: 285px; content: ""; background: repeating-linear-gradient(to bottom, var(--orange), var(--orange) 5px, transparent 5px, transparent 12px); transform: translate(-50%, -50%) rotate(32deg); }
.reasons__box {
  position: absolute; z-index: 2; display: grid; width: 230px; padding: 21px 23px; border: 1px solid var(--line); border-radius: 16px;
  background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); line-height: 1.35;
}
.reasons__box span { display: grid; place-items: center; width: 37px; height: 37px; margin-bottom: 13px; color: var(--white); border-radius: 10px; background: var(--orange); font-size: .75rem; font-weight: 900; }
.reasons__box strong { margin-bottom: 5px; color: var(--navy); font-size: .95rem; }
.reasons__box small { color: var(--muted); font-size: .76rem; }
.reasons__box--one { top: 0; left: 0; }
.reasons__box--two { top: 155px; right: 0; }
.reasons__box--three { bottom: 0; left: 30px; }
.reasons__content h2 { margin-bottom: 22px; }
.reasons__content > p:not(.eyebrow) { margin-bottom: 25px; color: var(--muted); font-size: 1.02rem; }
.check-list { display: grid; gap: 12px; margin: 0 0 28px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.check-list span { display: grid; place-items: center; width: 26px; height: 26px; color: var(--orange); border-radius: 50%; background: #ffece2; font-size: .85rem; font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--orange-dark); font-weight: 850; }

.section--cta { padding: 80px 0; }
.cta-panel {
  position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 55px;
  padding: 55px 65px; overflow: hidden; color: #c7d4da; border-radius: var(--radius-lg); background: var(--navy);
}
.cta-panel::before, .cta-panel::after { position: absolute; content: ""; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-panel::before { width: 330px; height: 330px; right: -80px; top: -160px; }
.cta-panel::after { width: 220px; height: 220px; right: -35px; top: -105px; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 700px; margin-bottom: 13px; color: var(--white); }
.cta-panel p:last-child { max-width: 700px; margin: 0; }
.cta-panel__actions { display: grid; gap: 12px; min-width: 240px; }

.page-hero { padding: 72px 0; color: #bccbd2; background: var(--navy); }
.page-hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.page-hero h1 { margin-bottom: 18px; color: var(--white); font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p:last-child { max-width: 730px; margin-bottom: 0; }
.page-hero--compact { padding: 55px 0; }
.page-hero--compact h1 { margin-bottom: 0; }

.contact-section { background: linear-gradient(90deg, var(--surface) 0 43%, var(--white) 43% 100%); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-details { padding-top: 20px; }
.contact-details h2 { margin-bottom: 20px; }
.contact-details > p:not(.eyebrow) { margin-bottom: 30px; color: var(--muted); }
.contact-card-list { display: grid; gap: 12px; }
.contact-card { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; column-gap: 13px; padding: 15px; border-radius: 13px; background: var(--white); box-shadow: 0 8px 23px rgba(7,25,35,.05); }
a.contact-card { transition: transform .2s ease, box-shadow .2s ease; }
a.contact-card:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.contact-card > span { grid-row: 1 / 3; display: grid; place-items: center; width: 48px; height: 48px; color: var(--orange); border-radius: 12px; background: var(--cream); }
.contact-card svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card small { align-self: end; color: var(--muted); font-size: .7rem; }
.contact-card strong { min-width: 0; overflow: hidden; color: var(--navy); font-size: .91rem; text-overflow: ellipsis; white-space: nowrap; }
.contact-form-card { padding: 45px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); scroll-margin-top: 100px; }
.contact-form-card h2 { margin-bottom: 28px; }
.contact-form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-size: .82rem; font-weight: 750; }
.contact-form .form-label { display: flex; align-items: baseline; gap: 4px; min-height: 20px; color: var(--navy); }
.contact-form .form-label b { color: var(--orange-dark); }
.contact-form .form-label small { color: var(--muted); font-size: .75rem; font-weight: 550; }
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"] {
  width: 100%; height: 48px; min-height: 48px; padding: 0 14px; color: var(--ink); border: 1px solid #cedade; border-radius: 9px; background: #fbfcfc; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { width: 100%; min-height: 145px; padding: 13px 14px; resize: vertical; color: var(--ink); border: 1px solid #cedade; border-radius: 9px; background: #fbfcfc; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus, .contact-form input[type="email"]:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,90,28,.1); background: var(--white); }
.contact-form input[type="file"] { width: 100%; min-height: 52px; padding: 8px; color: var(--muted); border: 1px dashed #bdccd2; border-radius: 10px; background: #fbfcfc; font-size: .78rem; font-weight: 550; cursor: pointer; }
.contact-form input[type="file"]::file-selector-button { min-height: 34px; margin-right: 10px; padding: 7px 12px; color: var(--navy); border: 0; border-radius: 7px; background: #edf2f4; font: inherit; font-weight: 750; cursor: pointer; }
.contact-form input[type="file"]:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,90,28,.1); outline: none; }
.contact-form .form-file__help { color: var(--muted); font-size: .7rem; font-weight: 500; line-height: 1.45; }
.contact-form .form-consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 550; }
.form-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--orange); }
.contact-form .form-consent span { color: inherit; }
.contact-form .button { justify-self: start; min-width: 205px; border: 0; }
.form-note { margin: -8px 0 0; color: #829098; font-size: .72rem; }
.form-honeypot { position: absolute; left: -9999px; }
.form-notice { margin: 0 0 22px; padding: 14px 16px; border-radius: 10px; font-size: .88rem; font-weight: 650; }
.form-notice--success { color: #155c38; background: #e4f7ed; border: 1px solid #bce8d0; }
.form-notice--warning { color: #75530b; background: #fff8df; border: 1px solid #ecd68d; }
.form-notice--error { color: #8a2716; background: #fff0ec; border: 1px solid #f2c8bc; }

.prose { max-width: 820px; }
.prose > * + * { margin-top: 1.4em; }
.prose a { color: var(--orange-dark); text-decoration: underline; }
.post-list { display: grid; gap: 25px; }
.post-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.post-card__meta { margin-bottom: 6px; color: var(--muted); font-size: .8rem; }
.post-card h2 { margin-bottom: 12px; font-size: 1.8rem; }

.site-footer { padding: 70px 0 0; color: #9fb0b9; background: #04131b; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 80px; padding-bottom: 55px; }
.brand--footer { color: var(--white); }
.brand--footer .brand__mark svg { fill: var(--white); }
.site-footer__logo { display: block; width: 166px; overflow: hidden; border-radius: 18px; background: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.site-footer__logo img { width: 100%; }
.site-footer__intro { max-width: 400px; margin: 20px 0 0; font-size: .88rem; }
.site-footer__title { margin-bottom: 20px; color: var(--white); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: .87rem; }
.site-footer__links a:hover { color: var(--orange); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .72rem; }
.site-footer__bottom p { margin: 0; }
.mobile-call { display: none; }

@media (max-width: 1050px) {
  .site-nav, .site-nav__list { gap: 18px; }
  .site-nav__list a { font-size: .83rem; }
  .hero__grid { gap: 35px; }
  .trust-bar > div { padding-inline: 13px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card h3, .service-card p { min-height: 0; }
  .reasons__grid { gap: 45px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 860px) {
  .site-header, .site-header.is-scrolled { height: 70px; }
  .brand__mark { width: 46px; height: 36px; }
  .brand__photo-mark { flex-basis: 64px; width: 64px; height: 44px; }
  .brand__photo-mark img { top: -7px; left: -16px; width: 96px; }
  .brand__copy strong { font-size: .9rem; }
  .menu-toggle { display: block; z-index: 3; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 70px 0 auto; display: none; max-height: calc(100vh - 70px); padding: 18px 20px 25px;
    overflow-y: auto; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 25px 40px rgba(7,25,35,.15);
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { display: grid; gap: 0; }
  .site-nav__list li { border-bottom: 1px solid var(--line); }
  .site-nav__list a { padding: 14px 4px; font-size: 1rem; }
  .site-nav__list a::after { display: none; }
  .site-nav__call { width: 100%; margin-top: 18px; }

  .hero { padding-top: 45px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 10px 0 0; }
  .hero__lead { max-width: 700px; }
  .hero__visual { max-width: 680px; width: 100%; margin: 0 auto; padding-bottom: 44px; }
  .hero__image { aspect-ratio: 1.45 / 1; }
  .trust-bar { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
  .trust-bar > div { border-right: 0; }
  .trust-bar > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .trust-bar > div:nth-child(-n+2) { padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-bar > div:nth-child(n+3) { padding-top: 13px; }
  .services { padding-top: 105px; }
  .reasons__grid { grid-template-columns: 1fr; }
  .reasons__visual { width: min(100%, 540px); margin-inline: auto; }
  .cta-panel { grid-template-columns: 1fr; gap: 30px; padding: 45px; }
  .cta-panel__actions { display: flex; flex-wrap: wrap; }
  .page-hero__inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .contact-section { background: var(--surface); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { max-width: 650px; padding-top: 0; }
  .contact-form-card { max-width: 760px; width: 100%; }
  .site-footer__grid { grid-template-columns: 1.3fr .7fr; gap: 50px; }
  .site-footer__grid > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  body { padding-bottom: 68px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 72px 0; }
  .brand__copy small { display: none; }
  .brand__copy strong { max-width: 175px; overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
  .brand__photo-mark { flex-basis: 58px; width: 58px; height: 40px; }
  .brand__photo-mark img { top: -6px; left: -14px; width: 87px; }
  .custom-logo { max-width: 180px; max-height: 48px; }
  .hero { padding-top: 32px; }
  .hero::before, .hero::after { display: none; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .hero__lead { font-size: 1rem; }
  .hero__benefits { gap: 10px 14px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__microcopy { text-align: center; }
  .hero__visual { padding: 0 4px 42px; }
  .hero__image-wrap::before { inset: -8px 10px 10px -8px; }
  .hero__image { aspect-ratio: 1.15 / 1; border-radius: 22px; }
  .hero__rating { right: -4px; bottom: 17px; min-width: 205px; padding: 12px 15px; }
  .trust-bar { grid-template-columns: 1fr; padding: 11px 17px; margin-bottom: 0; }
  .trust-bar > div { padding: 12px 3px !important; border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-bar > div:last-child { border-bottom: 0; }
  .trust-bar strong { font-size: .86rem; }
  .trust-bar small { font-size: .72rem; }
  .services { padding-top: 100px; }
  .section-heading { margin-bottom: 38px; }
  .eyebrow--center { justify-content: flex-start; }
  .section-heading { text-align: left; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 25px; }
  .reasons__visual { min-height: 445px; }
  .reasons__visual::before { inset: 48px 35px; }
  .reasons__box { width: 200px; padding: 16px; }
  .reasons__box--two { top: 142px; }
  .reasons__box--three { left: 12px; }
  .cta-panel { width: min(calc(100% - 20px), var(--container)); padding: 37px 25px; border-radius: 22px; }
  .cta-panel__actions { display: grid; min-width: 0; }
  .page-hero { padding: 52px 0; }
  .page-hero h1 { font-size: 2.5rem; }
  .contact-grid { gap: 45px; }
  .contact-form-card { padding: 28px 20px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .button { width: 100%; }
  .site-footer { padding-top: 55px; }
  .site-footer__logo { width: 142px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .site-footer__bottom { display: grid; gap: 8px; padding-bottom: 22px; }
  .mobile-call {
    position: fixed; left: 10px; right: 10px; bottom: 8px; z-index: 999; display: grid; grid-template-columns: 37px 1fr; grid-template-rows: auto auto; column-gap: 10px;
    min-height: 58px; padding: 9px 15px; color: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: 14px;
    background: var(--orange); box-shadow: 0 10px 30px rgba(7,25,35,.3);
  }
  .mobile-call svg { grid-row: 1 / 3; align-self: center; width: 28px; height: 28px; fill: currentColor; }
  .mobile-call span { align-self: end; font-size: .7rem; font-weight: 650; line-height: 1.2; }
  .mobile-call strong { align-self: start; font-size: .95rem; line-height: 1.25; }
}

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