:root {
  --navy-950: #03142f;
  --navy-900: #071f46;
  --navy-800: #0b3265;
  --blue-600: #1261b8;
  --blue-500: #2177d7;
  --red-600: #d91322;
  --red-500: #ed1b2f;
  --ink: #10213a;
  --muted: #607089;
  --line: #dce5f0;
  --surface: #f3f7fb;
  --white: #fff;
  --shadow-sm: 0 12px 32px rgba(7, 31, 70, .09);
  --shadow-lg: 0 28px 70px rgba(3, 20, 47, .19);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 92px;
  --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Lato", Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; fill: currentColor; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--navy-950); font-weight: 900; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(3.1rem, 6vw, 5.8rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.15rem, 4vw, 3.5rem); }
h3 { font-size: 1.35rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding-block: 110px; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--red-600); border-radius: 8px; transform: translateY(-150%); transition: transform var(--transition); }
.skip-link:focus { transform: translateY(0); }

.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; color: var(--red-600); font-size: .79rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 34px; height: 3px; background: currentColor; border-radius: 99px; }
.eyebrow--light { color: #ff5c67; }

.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 13px 24px; color: var(--white); background: var(--red-600); border: 2px solid var(--red-600); border-radius: 9px; box-shadow: 0 10px 25px rgba(217, 19, 34, .23); font-weight: 900; line-height: 1.2; cursor: pointer; transition: transform var(--transition), background var(--transition), box-shadow var(--transition); }
.button:hover { background: #bd0f1d; border-color: #bd0f1d; box-shadow: 0 14px 30px rgba(217, 19, 34, .3); transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--small { min-height: 50px; padding: 8px 17px; }
.button--small > span { display: flex; flex-direction: column; font-size: .68rem; line-height: 1.15; text-transform: uppercase; }
.button--small strong { margin-top: 2px; font-size: 1rem; }
.button--outline { color: var(--white); background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .56); box-shadow: none; }
.button--outline:hover { color: var(--navy-950); background: var(--white); border-color: var(--white); }
.button--full { width: 100%; }

.service-bar { position: relative; z-index: 25; color: rgba(255,255,255,.88); background: var(--navy-950); font-size: .79rem; }
.service-bar__inner { min-height: 37px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.service-bar p, .service-bar__links { margin: 0; display: flex; align-items: center; gap: 21px; }
.service-bar p { font-weight: 700; }
.service-bar svg { width: 15px; height: 15px; color: #ff4a58; }
.service-bar a { transition: color var(--transition); }
.service-bar a:hover { color: var(--white); }

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(7,31,70,.08); backdrop-filter: blur(14px); transition: box-shadow var(--transition); }
.site-header.is-scrolled { box-shadow: 0 12px 32px rgba(3,20,47,.11); }
.site-header__inner { height: var(--header-height); display: flex; align-items: center; gap: 35px; }
.brand { min-width: 270px; display: flex; align-items: center; gap: 13px; }
.brand img { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; }
.brand__copy { display: flex; flex-direction: column; line-height: 1; }
.brand__copy strong { color: var(--navy-900); font-size: 1.65rem; letter-spacing: .035em; }
.brand__copy > span { margin-top: 4px; color: var(--red-600); font-size: .65rem; font-weight: 900; letter-spacing: .075em; }
.brand__copy small { margin-top: 6px; color: var(--muted); font-size: .61rem; font-weight: 700; letter-spacing: .05em; }
.primary-nav { display: flex; align-items: stretch; justify-content: center; gap: 30px; margin-left: auto; height: 100%; }
.primary-nav a { position: relative; display: flex; align-items: center; color: #253850; font-size: .92rem; font-weight: 900; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; right: 50%; bottom: 21px; left: 50%; height: 3px; background: var(--red-600); border-radius: 99px; transition: right var(--transition), left var(--transition); }
.primary-nav a:hover, .primary-nav a.is-active { color: var(--red-600); }
.primary-nav a:hover::after, .primary-nav a.is-active::after { right: 0; left: 0; }
.header-cta { margin-left: 5px; flex: 0 0 auto; }
.menu-toggle { width: 48px; height: 48px; display: none; place-items: center; padding: 0; color: var(--navy-900); background: var(--surface); border: 0; border-radius: 10px; cursor: pointer; }
.menu-toggle svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.menu-toggle__close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: block; }

.hero { position: relative; min-height: 720px; padding: 112px 0 0; color: var(--white); background: var(--navy-950) url("assets/images/header-image.png") center right / cover no-repeat; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,20,47,.98) 0%, rgba(3,20,47,.94) 35%, rgba(3,20,47,.61) 61%, rgba(3,20,47,.1) 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 6px; background: linear-gradient(90deg, var(--red-600) 0 32%, var(--blue-500) 32% 100%); }
.hero__inner { position: relative; z-index: 2; }
.hero__content { width: min(650px, 58%); }
.hero h1 { max-width: 650px; margin-bottom: 22px; color: var(--white); }
.hero h1 em { display: block; color: #ff2639; font-style: normal; }
.hero__lead { max-width: 610px; margin-bottom: 32px; color: rgba(255,255,255,.83); font-size: 1.18rem; line-height: 1.7; }
.hero__actions, .hero__proof { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__proof { margin-top: 31px; gap: 25px; color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 900; }
.hero__proof span { display: flex; align-items: center; gap: 7px; }
.hero__proof svg { width: 18px; height: 18px; padding: 4px; color: var(--white); background: var(--blue-500); border-radius: 50%; fill: none; stroke: currentColor; stroke-width: 3; }
.hero-stats { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 87px; color: var(--navy-950); background: var(--white); border-radius: var(--radius) var(--radius) 0 0; box-shadow: var(--shadow-lg); }
.hero-stats article { min-height: 115px; display: flex; flex-direction: column; justify-content: center; padding: 24px 31px; border-right: 1px solid var(--line); }
.hero-stats article:last-child { border-right: 0; }
.hero-stats strong { color: var(--red-600); font-size: 1.85rem; font-weight: 900; line-height: 1.05; }
.hero-stats span { margin-top: 6px; color: var(--muted); font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }

.intro { background: var(--white); }
.intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.intro__visual { position: relative; min-height: 525px; display: grid; place-items: center; background: linear-gradient(145deg, #e8f2fc, #f9fbfe); border-radius: var(--radius-lg); overflow: hidden; }
.intro__visual::before { content: ""; position: absolute; width: 380px; aspect-ratio: 1; background: var(--blue-600); border-radius: 50%; opacity: .07; transform: translate(-35%, -42%); }
.intro__visual::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 290px; aspect-ratio: 1; background: var(--red-600); border-radius: 50%; opacity: .08; }
.intro__logo { position: relative; z-index: 1; width: min(77%, 380px); padding: 20px; background: var(--white); border: 1px solid rgba(7,31,70,.08); border-radius: 50%; box-shadow: var(--shadow-lg); }
.intro__logo img { border-radius: 50%; }
.intro__badge { position: absolute; z-index: 2; right: -20px; bottom: 43px; min-width: 175px; display: flex; align-items: center; gap: 12px; padding: 19px 22px; color: var(--white); background: var(--red-600); border: 6px solid var(--white); border-radius: 15px; box-shadow: var(--shadow-sm); }
.intro__badge strong { font-size: 1.8rem; line-height: 1; }
.intro__badge span { max-width: 75px; font-size: .7rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.intro__content > p:not(.eyebrow) { color: var(--muted); }
.intro__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 29px; }
.intro__features article { display: flex; gap: 13px; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.intro__features svg { flex: 0 0 auto; width: 29px; height: 29px; color: var(--blue-600); }
.intro__features strong, .intro__features span { display: block; }
.intro__features strong { margin-bottom: 4px; color: var(--navy-950); font-size: .94rem; }
.intro__features span { color: var(--muted); font-size: .79rem; line-height: 1.45; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 47px; }
.section-heading > div { max-width: 710px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 410px; margin-bottom: 6px; color: var(--muted); }
.section-heading--center { display: block; max-width: 720px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p { max-width: none; margin-inline: auto; }
.services { background: var(--surface); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 315px; padding: 30px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(7,31,70,.04); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { border-color: rgba(18,97,184,.32); box-shadow: var(--shadow-sm); transform: translateY(-6px); }
.service-card::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: var(--blue-600); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__number { position: absolute; top: 22px; right: 24px; color: #dfe8f2; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.service-card__icon { width: 57px; height: 57px; display: grid; place-items: center; margin-bottom: 25px; color: var(--blue-600); background: #eaf3fd; border-radius: 14px; }
.service-card__icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; margin-bottom: 12px; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .91rem; line-height: 1.6; }
.service-card--accent { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.service-card--accent h3 { color: var(--white); }
.service-card--accent p { color: rgba(255,255,255,.7); }
.service-card--accent .service-card__number { color: rgba(255,255,255,.11); }
.service-card--accent .service-card__icon { color: var(--white); background: var(--red-600); }
.service-card--accent a { display: inline-flex; align-items: center; gap: 8px; margin-top: 21px; color: #ff6e79; font-size: .85rem; font-weight: 900; }
.service-card--accent a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

.coverage { position: relative; padding-block: 90px; color: var(--white); background: var(--navy-950); overflow: hidden; }
.coverage::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 54px 54px; }
.coverage::after { content: ""; position: absolute; top: 0; right: 0; width: 31%; height: 100%; background: var(--red-600); clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%); opacity: .92; }
.coverage__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 80px; }
.coverage h2 { max-width: 650px; margin-bottom: 0; color: var(--white); }
.coverage__points { display: grid; gap: 14px; }
.coverage__points article { padding: 17px 21px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-sm); backdrop-filter: blur(7px); }
.coverage__points strong, .coverage__points span { display: block; }
.coverage__points strong { color: var(--white); font-size: 1rem; }
.coverage__points span { margin-top: 3px; color: rgba(255,255,255,.72); font-size: .82rem; }

.clients__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.client-card { min-height: 170px; display: grid; place-items: center; padding: 23px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.client-card img { width: 100%; height: 120px; object-fit: contain; }
.client-card--compact img { width: auto; max-width: 100%; height: 126px; }
.client-card--wide-logo img { width: min(100%, 245px); height: auto; max-height: 112px; }

.testimonials { background: var(--surface); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonials blockquote { margin: 0; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.testimonials blockquote > p { min-height: 145px; color: #3f5068; }
.stars { margin-bottom: 17px; color: #f2b300; font-size: 1rem; letter-spacing: .12em; }
.testimonials footer { display: flex; align-items: center; gap: 12px; padding-top: 19px; border-top: 1px solid var(--line); }
.testimonials footer span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.testimonials cite { color: var(--navy-950); font-style: normal; font-weight: 900; }

.contact { position: relative; background: var(--navy-950); overflow: hidden; }
.contact::before { content: ""; position: absolute; top: -220px; left: -220px; width: 520px; aspect-ratio: 1; border: 85px solid rgba(33,119,215,.13); border-radius: 50%; }
.contact__grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px, 8vw, 100px); }
.contact h2 { color: var(--white); }
.contact__content > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.contact-list { display: grid; gap: 13px; margin-top: 31px; }
.contact-list a, .contact-list > div { display: flex; align-items: center; gap: 14px; color: var(--white); }
.contact-list a:hover strong { color: #ff6b76; }
.contact-list__icon { flex: 0 0 auto; width: 43px; height: 43px; display: grid; place-items: center; color: #ff5d69; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 11px; }
.contact-list__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-list small, .contact-list strong { display: block; transition: color var(--transition); }
.contact-list small { color: rgba(255,255,255,.5); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-list strong { font-size: .92rem; overflow-wrap: anywhere; }
.form-card { padding: clamp(27px, 4vw, 46px); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-card h3 { margin-bottom: 25px; font-size: 1.9rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-grid label { display: block; }
.form-grid label > span { display: block; margin-bottom: 7px; color: #32445c; font-size: .78rem; font-weight: 900; }
.form-grid__full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 49px; padding: 11px 13px; color: var(--ink); background: #f8fafc; border: 1px solid #cdd8e6; border-radius: 8px; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(33,119,215,.14); }
.recaptcha-container { min-height: 77px; margin-block: 19px 4px; overflow: hidden; }
.recaptcha-note { margin: 0; padding: 12px; color: #7a5a00; background: #fff7d8; border: 1px solid #eed780; border-radius: 8px; font-size: .8rem; }
.form-status { min-height: 24px; margin: 5px 0 9px; color: var(--muted); font-size: .82rem; }
.form-status.is-error { color: #b10d1a; }
.form-status.is-success { color: #087342; }

.site-footer { padding: 65px 0 26px; color: rgba(255,255,255,.62); background: #020f24; }
.site-footer__grid { display: grid; grid-template-columns: 1fr 1.3fr .75fr; align-items: center; gap: 60px; padding-bottom: 43px; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: var(--white); }
.footer-brand img { width: 67px; height: 67px; object-fit: contain; background: var(--white); border-radius: 50%; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 1.55rem; line-height: 1; }
.footer-brand span { margin-top: 5px; color: #ff4f5d; font-size: .62rem; font-weight: 900; }
.site-footer__grid > p { margin: 0; font-size: .88rem; }
.site-footer nav { display: grid; gap: 7px; justify-content: end; }
.site-footer nav a { color: rgba(255,255,255,.76); font-size: .85rem; font-weight: 700; }
.site-footer nav a:hover { color: var(--white); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.78); font-weight: 900; }
.site-footer__powered { color: rgba(255, 255, 255, .78); font-weight: 600; font-size: .76rem; }
.footer-bottom-right { display: flex; align-items: center; gap: 16px; }
.site-footer__bottom svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.mobile-actions { display: none; }

/* Reusable inner-page template */
.page-hero { padding: 95px 0 85px; color: var(--white); background: linear-gradient(120deg, rgba(3,20,47,.98), rgba(11,50,101,.9)), url("assets/images/header-image.png") center / cover; }
.page-hero h1 { max-width: 820px; margin-bottom: 18px; color: var(--white); font-size: clamp(2.7rem, 5vw, 4.8rem); }
.page-hero__lead { max-width: 700px; margin: 0; color: rgba(255,255,255,.74); font-size: 1.1rem; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 28px; color: rgba(255,255,255,.65); font-size: .8rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--white); }
.page-content { padding-block: 95px; }
.page-content__grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 65px; }
.page-article h2 { margin: 45px 0 15px; font-size: 2rem; }
.page-article h2:first-child { margin-top: 0; }
.page-article h3 { margin: 28px 0 12px; }
.page-article p, .page-article li { color: var(--muted); }
.page-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 30px 0; }
.page-feature-grid article { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.page-feature-grid h3 { margin-top: 0; }
.page-sidebar { position: sticky; top: calc(var(--header-height) + 25px); padding: 30px; color: rgba(255,255,255,.75); background: var(--navy-900); border-radius: var(--radius); }
.page-sidebar h2 { color: var(--white); font-size: 1.8rem; }
.page-sidebar .button + .button { margin-top: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid #ffcc00; outline-offset: 3px; }

@media (max-width: 1120px) {
  :root { --header-height: 82px; }
  .site-header__inner { gap: 18px; }
  .brand { min-width: 220px; }
  .brand img { width: 61px; height: 61px; }
  .brand__copy small { display: none; }
  .primary-nav { gap: 21px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 270px; }
  .header-cta > span { display: none; }
  .header-cta { width: 50px; padding: 0; }
}

@media (max-width: 900px) {
  .section { padding-block: 85px; }
  .service-bar__links a:first-child { display: none; }
  .site-header__inner { justify-content: space-between; }
  .menu-toggle { display: grid; margin-left: auto; }
  .primary-nav { position: fixed; top: calc(37px + var(--header-height)); right: 0; left: 0; height: auto; display: grid; gap: 0; margin: 0; padding: 16px 20px 24px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 20px 30px rgba(3,20,47,.12); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity var(--transition), visibility var(--transition), transform var(--transition); }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav a { min-height: 52px; justify-content: center; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .header-cta { margin: 0; }
  .hero { min-height: 760px; padding-top: 100px; background-position: 66% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,20,47,.98), rgba(3,20,47,.82) 70%, rgba(3,20,47,.45)); }
  .hero__content { width: min(680px, 85%); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 95px; }
  .hero-stats article:nth-child(2) { border-right: 0; }
  .hero-stats article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro__grid, .contact__grid, .coverage__grid { grid-template-columns: 1fr; }
  .intro__visual { width: min(100%, 570px); min-height: 480px; }
  .coverage::after { width: 50%; opacity: .35; }
  .coverage__grid { gap: 45px; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials blockquote > p { min-height: 0; }
  .contact__content { max-width: 660px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer nav { grid-column: 1 / -1; grid-template-columns: repeat(4, auto); justify-content: start; }
  .page-content__grid { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}

@media (max-width: 680px) {
  :root { --header-height: 74px; }
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding-block: 70px; }
  .service-bar__inner { justify-content: center; }
  .service-bar p { font-size: .68rem; text-align: center; }
  .service-bar__links { display: none; }
  .brand { min-width: 0; }
  .brand img { width: 56px; height: 56px; }
  .brand__copy strong { font-size: 1.35rem; }
  .brand__copy > span { max-width: 145px; font-size: .54rem; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding-top: 80px; background-position: 70% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,20,47,.98) 0, rgba(3,20,47,.88) 100%); }
  .hero__content { width: 100%; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; gap: 10px; }
  .hero-stats { margin-top: 64px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .hero-stats article { min-height: 94px; padding: 17px; }
  .hero-stats strong { font-size: 1.4rem; }
  .hero-stats span { font-size: .65rem; }
  .intro__visual { min-height: 395px; }
  .intro__badge { right: -6px; bottom: 25px; }
  .intro__features, .services__grid, .clients__grid, .form-grid, .page-feature-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading > p { margin-top: 19px; }
  .service-card { min-height: auto; }
  .coverage { padding-block: 70px; }
  .coverage::after { display: none; }
  .client-card { min-height: 145px; }
  .form-grid__full { grid-column: auto; }
  .recaptcha-container { transform-origin: left top; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer nav { grid-column: auto; grid-template-columns: repeat(2, auto); }
  .site-footer__bottom { flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 40; right: 0; bottom: 0; left: 0; min-height: 66px; display: grid; grid-template-columns: repeat(2, 1fr); color: var(--white); box-shadow: 0 -7px 25px rgba(3,20,47,.19); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px; background: var(--red-600); font-size: .82rem; font-weight: 900; }
  .mobile-actions a + a { background: var(--navy-800); }
  .mobile-actions svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
  .page-hero { padding: 75px 0 65px; }
  .page-content { padding-block: 70px; }
}

@media (max-width: 380px) {
  .brand__copy > span { display: none; }
  .recaptcha-container { transform: scale(.88); margin-bottom: -4px; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
}
