:root {
  --ink: #08131b;
  --ink-2: #102431;
  --steel: #526a79;
  --sky: #7fc6e5;
  --sky-deep: #4d9ec4;
  --ice: #edf5f8;
  --paper: #f6f8f8;
  --white: #ffffff;
  --line: rgba(8, 19, 27, .13);
  --light-line: rgba(255,255,255,.14);
  --shadow: 0 28px 80px rgba(2, 14, 23, .16);
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { fill: currentColor; }
.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.hidden { 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: 14px; top: -70px; z-index: 999; background: white; color: var(--ink); padding: 10px 14px; box-shadow: var(--shadow); }
.skip-link:focus { top: 14px; }

.topbar { background: #050d13; color: rgba(255,255,255,.68); border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.topbar-links { display: flex; align-items: center; gap: 11px; }
.topbar a:hover { color: var(--sky); }

.site-header { position: absolute; z-index: 50; inset: 34px 0 auto; color: white; border-bottom: 1px solid rgba(255,255,255,.14); }
.nav-wrap { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand img { width: 59px; height: 59px; }
.brand-copy { display: flex; flex-direction: column; line-height: .95; text-transform: uppercase; letter-spacing: .085em; }
.brand-copy strong { font-size: 17px; font-weight: 850; }
.brand-copy span { margin-top: 7px; color: var(--sky); font-size: 11px; font-weight: 900; letter-spacing: .29em; }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 750; }
.site-nav > a:not(.nav-cta) { opacity: .78; transition: opacity .2s ease, color .2s ease; }
.site-nav > a:not(.nav-cta):hover { opacity: 1; color: var(--sky); }
.nav-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; background: var(--sky); color: #061018; font-weight: 850; }
.nav-cta:hover { background: white; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 6px 0; background: white; }

.hero { position: relative; min-height: 820px; height: 92vh; overflow: hidden; color: white; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 57%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,13,20,.96) 0%, rgba(4,13,20,.84) 40%, rgba(4,13,20,.38) 70%, rgba(4,13,20,.16) 100%), linear-gradient(0deg, rgba(4,13,20,.52), transparent 56%); }
.hero-inner { position: relative; z-index: 2; min-height: 100%; display: flex; align-items: center; padding-top: 130px; padding-bottom: 80px; }
.hero-copy { max-width: 880px; }
.eyebrow { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 20px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .17em; }
.eyebrow > span { width: 36px; height: 2px; background: var(--sky); flex: 0 0 auto; }
.eyebrow.dark { color: var(--steel); }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(52px, 6.6vw, 94px); line-height: .96; letter-spacing: -.055em; font-weight: 790; }
.hero h1 em { color: var(--sky); font-style: normal; font-weight: inherit; }
.hero-copy > p { max-width: 690px; margin: 29px 0 0; color: rgba(255,255,255,.77); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.btn { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; border: 1px solid transparent; font-weight: 850; font-size: 13px; letter-spacing: .015em; cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #061018; background: var(--sky); }
.btn-primary:hover { background: white; }
.btn-secondary { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: white; color: var(--ink); border-color: white; }
.btn svg { width: 18px; height: 18px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 48px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); max-width: 760px; }
.hero-points span { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; }
.hero-points b { color: var(--sky); font-size: 10px; letter-spacing: .08em; }

.intro-strip { background: var(--ink); color: white; }
.intro-grid { min-height: 190px; display: grid; grid-template-columns: .8fr 1.4fr auto; align-items: center; gap: 60px; }
.small-label { display: block; margin-bottom: 8px; color: var(--sky); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.intro-lead strong { display: block; font-size: 22px; line-height: 1.2; letter-spacing: -.02em; }
.intro-copy p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.34); color: white; font-size: 12px; font-weight: 850; white-space: nowrap; }
.text-link span { color: var(--sky); }
.text-link:hover { border-color: var(--sky); }
.dark-link { color: var(--ink); border-color: rgba(8,19,27,.28); }

.section { padding: 118px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: end; margin-bottom: 56px; }
.section-heading h2, .about-copy h2, .process-head h2, .faq-intro h2, .contact-copy h2, .feature-copy h2, .quote-banner h2 { margin: 0; font-size: clamp(39px, 5vw, 66px); line-height: 1.02; letter-spacing: -.045em; font-weight: 780; }
.section-heading > p { margin: 0 0 5px; color: #657681; font-size: 15px; line-height: 1.8; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { background: white; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 12px 40px rgba(9,24,33,.05); }
.service-image { position: relative; height: 330px; overflow: hidden; background: #dce5e8; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-image img { transform: scale(1.025); }
.service-index { position: absolute; top: 18px; left: 18px; width: 43px; height: 43px; display: grid; place-items: center; background: rgba(8,19,27,.9); color: var(--sky); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.service-body { padding: 32px 34px 34px; }
.service-body h3 { margin: 0 0 12px; font-size: 26px; letter-spacing: -.025em; }
.service-body p { margin: 0; color: #667680; font-size: 14px; line-height: 1.75; }
.service-body ul { display: grid; gap: 8px; margin: 22px 0 25px; padding: 0; list-style: none; }
.service-body li { position: relative; padding-left: 19px; color: #41525d; font-size: 13px; font-weight: 700; }
.service-body li::before { content: ""; position: absolute; left: 0; top: .66em; width: 7px; height: 2px; background: var(--sky-deep); }
.service-body a { display: inline-flex; align-items: center; gap: 12px; color: #1f607f; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.service-body a span { transition: transform .2s ease; }
.service-body a:hover span { transform: translateX(4px); }

.feature-band { padding: 110px 0; color: white; background: #0b1c27; }
.feature-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 90px; align-items: center; }
.feature-copy p { max-width: 540px; margin: 24px 0 30px; color: rgba(255,255,255,.63); font-size: 15px; line-height: 1.8; }
.feature-image { position: relative; min-height: 580px; box-shadow: var(--shadow); }
.feature-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 20px 22px; background: rgba(5,16,24,.88); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); }
.image-caption span, .image-caption strong { display: block; }
.image-caption span { color: var(--sky); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.image-caption strong { margin-top: 3px; font-size: 16px; }

.work { background: white; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 10px; }
.gallery-item { position: relative; padding: 0; border: 0; overflow: hidden; cursor: pointer; background: #d8e1e5; text-align: left; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,11,16,.78), transparent 58%); opacity: .78; transition: opacity .25s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1.04); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item > span { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 17px; color: white; font-size: 14px; font-weight: 800; }
.gallery-item small { display: block; margin-bottom: 2px; color: var(--sky); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 92px; align-items: center; }
.about-visual { position: relative; min-height: 650px; }
.about-main { position: absolute; left: 0; top: 0; width: 76%; height: 78%; object-fit: cover; box-shadow: var(--shadow); }
.about-inset { position: absolute; right: 0; bottom: 0; width: 53%; height: 49%; object-fit: cover; border: 10px solid var(--paper); box-shadow: 0 20px 55px rgba(5,18,27,.16); }
.wolf-seal { position: absolute; left: 56%; top: 58%; transform: translate(-50%,-50%); width: 180px; height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: var(--ink); color: white; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); text-align: center; }
.wolf-seal img { width: 74px; height: 74px; }
.wolf-seal span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; line-height: 1.35; }
.about-copy > p { margin: 22px 0 0; color: #657681; font-size: 15px; line-height: 1.82; }
.benefit-list { margin-top: 34px; border-top: 1px solid var(--line); }
.benefit-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.benefit-list > div > span { color: var(--sky-deep); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.benefit-list strong { display: block; font-size: 15px; }
.benefit-list p { margin: 3px 0 0; color: #71808a; font-size: 13px; line-height: 1.65; }

.process-section { padding: 112px 0; background: white; }
.process-head { max-width: 780px; margin-bottom: 46px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid li { min-height: 292px; padding: 30px 27px 28px; border-right: 1px solid var(--line); }
.process-grid li:first-child { padding-left: 0; }
.process-grid li:last-child { border-right: 0; }
.process-grid li > span { display: block; margin-bottom: 66px; color: var(--sky-deep); font-size: 11px; font-weight: 900; letter-spacing: .09em; }
.process-grid h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.process-grid p { margin: 0; color: #71808a; font-size: 13px; line-height: 1.65; }

.quote-banner { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; color: white; background: var(--ink); }
.quote-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.quote-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,14,21,.96), rgba(5,14,21,.72) 58%, rgba(5,14,21,.28)); }
.quote-banner-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: end; }
.quote-banner h2 { max-width: 760px; }
.quote-banner-actions { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; min-width: 220px; }
.text-phone { display: inline-flex; gap: 18px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: 15px; font-weight: 850; }
.text-phone span { color: var(--sky); }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 35px; }
.faq-intro > p { max-width: 460px; margin: 22px 0 26px; color: #687983; font-size: 14px; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 23px 0; cursor: pointer; font-size: 16px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--sky-deep); font-size: 26px; line-height: 1; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 50px 24px 0; color: #6c7c86; font-size: 14px; line-height: 1.75; }

.contact { background: var(--ink); color: white; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.contact-copy > p { max-width: 520px; margin: 22px 0 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.75; }
.contact-cards { display: grid; gap: 10px; margin-top: 34px; }
.contact-cards a { display: flex; align-items: center; gap: 15px; padding: 16px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.025); transition: background .2s ease, border-color .2s ease; }
.contact-cards a:hover { background: rgba(255,255,255,.06); border-color: rgba(127,198,229,.45); }
.contact-icon { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(127,198,229,.12); color: var(--sky); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.contact-cards strong { margin-top: 1px; font-size: 14px; word-break: break-word; }
.quote-form { padding: 38px; color: var(--ink); background: white; box-shadow: var(--shadow); }
.quote-form label { display: grid; gap: 8px; margin-bottom: 15px; color: #394c58; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: #fbfcfc; border: 1px solid #d4dde1; border-radius: 0; outline: none; text-transform: none; letter-spacing: normal; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9aa6ad; }
.quote-form textarea { min-height: 142px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--sky-deep); box-shadow: 0 0 0 3px rgba(77,158,196,.12); }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 14px 0 0; color: #849199; font-size: 11px; text-align: center; }

.site-footer { background: #040a0e; color: white; }
.footer-main { min-height: 265px; display: grid; grid-template-columns: 1.35fr .7fr .9fr; gap: 70px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-brand img { width: 66px; height: 66px; }
.footer-brand-block p { max-width: 420px; margin: 22px 0 0; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 7px; align-self: center; }
.footer-col > span { margin-bottom: 7px; color: var(--sky); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; font-weight: 900; }
.footer-col a { color: rgba(255,255,255,.62); font-size: 13px; }
.footer-col a:hover { color: white; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.38); font-size: 11px; }
.footer-bottom a:hover { color: white; }

.mobile-actions { display: none; }
.lightbox { width: min(92vw, 1220px); max-width: 1220px; border: 0; padding: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(2,8,12,.92); backdrop-filter: blur(6px); }
.lightbox figure { margin: 0; }
.lightbox img { max-width: 100%; max-height: 84vh; margin: auto; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.lightbox figcaption { margin-top: 12px; color: rgba(255,255,255,.76); text-align: center; font-size: 12px; font-weight: 700; }
.lightbox-close { position: fixed; top: 18px; right: 24px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); background: rgba(8,18,26,.72); color: white; font-size: 29px; line-height: 1; cursor: pointer; }

@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .nav-cta { display: none; }
  .intro-grid { grid-template-columns: .8fr 1.2fr; }
  .intro-grid .text-link { grid-column: 2; justify-self: start; margin-top: -28px; }
  .feature-grid, .about-grid { gap: 60px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-wide { grid-column: span 2; }
  .faq-grid, .contact-grid { gap: 60px; }
}

@media (max-width: 840px) {
  .topbar-inner > span { display: none; }
  .topbar-inner { justify-content: center; }
  .site-header { inset: 34px 0 auto; }
  .nav-wrap { min-height: 80px; }
  .brand img { width: 50px; height: 50px; }
  .nav-toggle { display: block; position: relative; z-index: 3; }
  .site-nav { position: absolute; top: 80px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; background: rgba(4,14,21,.98); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav .nav-cta { display: flex; margin-top: 7px; border-bottom: 0; }
  .hero { min-height: 770px; height: auto; }
  .hero-inner { min-height: 770px; padding-top: 155px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,13,20,.96), rgba(4,13,20,.68)), linear-gradient(0deg, rgba(4,13,20,.55), transparent 55%); }
  .intro-grid { grid-template-columns: 1fr; gap: 22px; padding: 44px 0; }
  .intro-grid .text-link { grid-column: auto; margin-top: 0; }
  .section { padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-image { height: 380px; }
  .feature-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .feature-image { min-height: 520px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }
  .gallery-large { grid-column: span 2; }
  .about-visual { min-height: 600px; max-width: 680px; }
  .faq-intro { position: static; }
  .quote-banner-inner { grid-template-columns: 1fr; gap: 34px; }
  .footer-main { grid-template-columns: 1.25fr 1fr; padding: 50px 0; }
  .footer-brand-block { grid-column: span 2; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .topbar { display: none; }
  .site-header { inset: 0 0 auto; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy span { font-size: 9px; }
  .hero { min-height: 710px; }
  .hero-inner { min-height: 710px; padding-top: 118px; padding-bottom: 82px; }
  .hero h1 { font-size: clamp(46px, 14vw, 67px); }
  .hero-copy > p { font-size: 15px; line-height: 1.65; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; gap: 8px; margin-top: 34px; }
  .section { padding: 76px 0; }
  .section-heading h2, .about-copy h2, .process-head h2, .faq-intro h2, .contact-copy h2, .feature-copy h2, .quote-banner h2 { font-size: 38px; }
  .service-image { height: 280px; }
  .service-body { padding: 25px 23px 27px; }
  .feature-band { padding: 76px 0; }
  .feature-image { min-height: 430px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 280px; gap: 8px; }
  .gallery-large, .gallery-wide { grid-column: auto; }
  .gallery-large, .gallery-tall { grid-row: auto; }
  .about-visual { min-height: 490px; }
  .about-main { width: 84%; height: 72%; }
  .about-inset { width: 58%; height: 43%; border-width: 6px; }
  .wolf-seal { width: 140px; height: 140px; left: 58%; top: 61%; }
  .wolf-seal img { width: 58px; height: 58px; }
  .process-section { padding: 76px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li:first-child { min-height: auto; padding: 24px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-grid li:first-child { border-top: 0; }
  .process-grid li > span { margin-bottom: 22px; }
  .quote-banner { min-height: 500px; }
  .quote-banner-overlay { background: rgba(5,14,21,.78); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px 19px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand-block { grid-column: auto; }
  .footer-bottom { min-height: 110px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; padding-bottom: 78px; }
  .mobile-actions { position: fixed; z-index: 44; left: 12px; right: 12px; bottom: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #07131b; box-shadow: 0 18px 55px rgba(0,0,0,.3); }
  .mobile-actions a { min-height: 54px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; }
  .mobile-actions a:first-child { color: white; background: #102431; }
  .mobile-actions a:last-child { color: #061018; background: var(--sky); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
