:root {
  --ink: #101827;
  --ink-deep: #081220;
  --ink-soft: #223044;
  --paper: #f3f5f2;
  --paper-strong: #e8ece8;
  --white: #fffefa;
  --line: #d7dedb;
  --muted: #66737d;
  --muted-light: #aab8c0;
  --teal: #42d5c4;
  --teal-deep: #159e94;
  --amber: #f0b35b;
  --violet: #6559e8;
  --radius: 8px;
  --radius-large: 18px;
  --display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.5; -webkit-font-smoothing: antialiased; }
body, button, input, select, textarea { font-size: 16px; }
::selection { background: var(--teal); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.hidden-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.skip-link { position: fixed; top: -80px; left: 18px; z-index: 100; padding: 10px 14px; border-radius: var(--radius); background: var(--amber); color: var(--ink); font-weight: 700; transition: top 160ms ease; }
.skip-link:focus { top: 18px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 30; color: var(--white); background: rgba(8,18,32,.78); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.header-inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.14); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark { width: 32px; height: 32px; flex: 0 0 auto; }
.brand-word { font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -.05em; }
.brand-note { padding-left: 11px; border-left: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 25px; font-size: 13px; font-weight: 600; }
.site-nav a { color: rgba(255,255,255,.76); transition: color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav .nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 5px; color: var(--white); }
.site-nav .nav-cta span { color: var(--teal); font-size: 17px; line-height: 1; }
.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid rgba(255,255,255,.3); border-radius: 5px; background: transparent; }
.nav-toggle span { width: 18px; height: 1px; background: var(--white); }

.hero-section { position: relative; min-height: min(920px, 100svh); display: flex; align-items: stretch; overflow: hidden; background: var(--ink-deep); color: var(--white); }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .72; transform: scale(1.015); }
.hero-overlay { background: linear-gradient(90deg, rgba(8,18,32,.995) 0%, rgba(8,18,32,.95) 39%, rgba(8,18,32,.55) 72%, rgba(8,18,32,.78) 100%), linear-gradient(0deg, rgba(8,18,32,.7), transparent 45%); }
.hero-grid { position: relative; z-index: 2; min-height: min(920px, 100svh); display: grid; grid-template-columns: minmax(0,1fr) 370px; align-items: center; gap: 74px; padding-top: 135px; padding-bottom: 125px; }
.hero-copy { max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--teal-deep); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-light { color: var(--teal); }
.eyebrow-line { display: inline-block; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -.062em; line-height: .99; }
h1 { max-width: 790px; margin-bottom: 28px; font-size: clamp(58px, 7vw, 104px); }
h1 span { color: var(--teal); }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: rgba(255,254,250,.77); font-size: 19px; line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 12px; padding: 13px 18px; border: 1px solid transparent; border-radius: 5px; font-size: 14px; font-weight: 700; transition: transform 160ms ease, background 160ms ease, border-color 160ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--amber); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: #f5c87e; }
.button-quiet { border-color: rgba(255,255,255,.28); color: var(--white); }
.button-quiet:hover, .button-quiet:focus-visible { border-color: rgba(255,255,255,.65); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: var(--ink-soft); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 48px; }
.hero-proof div { display: flex; align-items: center; gap: 9px; }
.hero-proof strong { color: var(--amber); font-family: var(--display); font-size: 23px; letter-spacing: -.04em; }
.hero-proof span { max-width: 112px; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.25; }
.hero-card { align-self: end; padding: 22px; border: 1px solid rgba(255,255,255,.23); border-radius: var(--radius); background: rgba(16,24,39,.78); backdrop-filter: blur(13px); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.hero-card-top, .hero-card-foot { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.hero-card-arrow { margin-left: auto; color: var(--teal); font-size: 17px; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(66,213,196,.13); }
.hero-card-line { height: 1px; margin: 20px 0 7px; background: rgba(255,255,255,.15); }
.hero-card-product { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.product-index { color: var(--amber); font-family: var(--display); font-size: 13px; }
.hero-card-product strong, .hero-card-product small { display: block; }
.hero-card-product strong { margin-bottom: 4px; color: var(--white); font-family: var(--display); font-size: 16px; letter-spacing: -.03em; }
.hero-card-product small { color: var(--muted-light); font-size: 11px; line-height: 1.35; }
.hero-card-foot { justify-content: space-between; margin-top: 17px; transition: color 160ms ease; }
.hero-card-foot:hover { color: var(--white); }
.hero-bottom { position: absolute; z-index: 2; right: 0; bottom: 28px; left: 0; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.hero-bottom i { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }
.hero-location { margin-left: auto; }
.hero-location span { color: var(--amber); }

.signal-strip { background: var(--amber); }
.signal-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.signal-label { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: -.02em; }
.signal-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 26px; font-size: 12px; font-weight: 700; }
.signal-items span { position: relative; padding-left: 14px; }
.signal-items span::before { content: ""; position: absolute; top: 7px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--ink); }

.section { padding: 122px 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--white); }
.section-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,410px); gap: 80px; align-items: end; margin-bottom: 54px; }
.section-intro h2 { max-width: 730px; font-size: clamp(42px,5vw,70px); }
.section-intro > p { max-width: 410px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.section-intro-dark > p { color: var(--muted-light); }

.service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.service-card { min-width: 0; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.service-card-dark { border-color: rgba(255,255,255,.14); background: var(--ink-deep); color: var(--white); }
.service-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.chip { display: inline-flex; padding: 6px 9px; border: 1px solid #c7e9e3; border-radius: 999px; color: var(--teal-deep); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.chip-dark { border-color: rgba(66,213,196,.35); color: var(--teal); }
.solution-number { color: var(--muted); font-family: var(--display); font-size: 13px; }
.service-card-dark .solution-number { color: var(--muted-light); }
.service-media { position: relative; aspect-ratio: 1.6; overflow: hidden; margin-bottom: 28px; border: 1px solid var(--line); border-radius: 6px; background: #e8edf1; }
.service-card-dark .service-media { border-color: rgba(255,255,255,.13); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.service-card:hover .service-media img { transform: scale(1.025); }
.service-card h3 { margin-bottom: 13px; font-size: 35px; }
.service-card > p { min-height: 74px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.service-card-dark > p { color: var(--muted-light); }
.feature-list { display: grid; gap: 10px; margin: 23px 0 26px; list-style: none; }
.feature-list li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 13px; }
.feature-list li::before { content: ""; position: absolute; top: 7px; left: 0; width: 9px; height: 5px; border-bottom: 1px solid var(--teal-deep); border-left: 1px solid var(--teal-deep); transform: rotate(-45deg); }
.feature-list-dark li { color: rgba(255,255,255,.72); }
.feature-list-dark li::before { border-color: var(--teal); }
.card-link { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; color: var(--teal-deep); font-size: 13px; font-weight: 700; }
.card-link span { font-size: 18px; line-height: 1; }
.card-link-light { color: var(--teal); }
.custom-solution { display: grid; grid-template-columns: 64px minmax(0,1fr) auto; gap: 24px; align-items: center; margin-top: 18px; padding: 27px 30px; border: 1px solid var(--line); background: var(--paper-strong); }
.custom-mark { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--ink); font-family: var(--display); font-size: 29px; }
.custom-solution .eyebrow { margin-bottom: 8px; }
.custom-solution h3 { margin-bottom: 7px; font-size: 24px; }
.custom-solution p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 14px; }

.sector-section { background: #edf1ee; border-top: 1px solid #d8dfdc; border-bottom: 1px solid #d8dfdc; }
.sector-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); border-top: 1px solid #cdd6d2; border-left: 1px solid #cdd6d2; }
.sector-card { min-height: 245px; display: flex; flex-direction: column; padding: 23px; border-right: 1px solid #cdd6d2; border-bottom: 1px solid #cdd6d2; background: rgba(255,255,255,.35); transition: background 180ms ease, transform 180ms ease; }
.sector-card:hover { position: relative; z-index: 1; background: var(--white); transform: translateY(-3px); box-shadow: 0 16px 35px rgba(16,24,39,.08); }
.sector-number { margin-bottom: 34px; color: var(--teal-deep); font-family: var(--display); font-size: 12px; font-weight: 700; }
.sector-card h3 { margin-bottom: 12px; font-size: 23px; line-height: 1.04; }
.sector-card p { color: var(--muted); font-size: 12px; line-height: 1.55; }
.sector-result { margin-top: auto; padding-top: 22px; color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.sector-result::before { content: ""; display: inline-block; width: 18px; height: 1px; margin-right: 8px; vertical-align: middle; background: var(--amber); }

.showcase-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.showcase-card { min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: var(--ink-deep); }
.showcase-card-wide { grid-column: span 2; }
.showcase-image { position: relative; display: block; height: 340px; overflow: hidden; background: #e8edf2; }
.showcase-card-wide .showcase-image { height: 500px; }
.showcase-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(8,18,32,.8) 100%); pointer-events: none; }
.showcase-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.showcase-image:hover img { transform: scale(1.018); }
.showcase-label { position: absolute; z-index: 2; bottom: 18px; left: 20px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(8,18,32,.58); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.showcase-body { display: grid; grid-template-columns: minmax(0,1fr) minmax(180px,.75fr); gap: 28px; padding: 25px; }
.showcase-card:not(.showcase-card-wide) .showcase-body { display: block; }
.case-kicker { display: block; margin-bottom: 10px; color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.showcase-body h3 { font-size: 27px; }
.showcase-body p { color: var(--muted-light); font-size: 13px; line-height: 1.6; }
.showcase-card:not(.showcase-card-wide) .showcase-body p { margin-top: 13px; }

.process-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.process-step { min-height: 260px; padding: 26px 28px 10px 0; border-right: 1px solid var(--line); }
.process-step + .process-step { padding-left: 28px; }
.process-step:last-child { border-right: 0; }
.step-number { color: var(--teal-deep); font-family: var(--display); font-size: 14px; font-weight: 600; }
.step-line { width: 48px; height: 1px; margin: 34px 0 22px; background: var(--amber); }
.process-step h3 { margin-bottom: 11px; font-size: 30px; }
.process-step p { max-width: 280px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.investment-section { background: var(--paper-strong); }
.investment-list { border-top: 1px solid #bec9c5; }
.investment-row { display: grid; grid-template-columns: 50px minmax(170px,.8fr) minmax(190px,1fr) 150px 22px; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid #bec9c5; transition: padding 160ms ease, color 160ms ease; }
.investment-row:hover, .investment-row:focus-visible { padding-right: 9px; padding-left: 9px; color: var(--teal-deep); }
.investment-number, .investment-detail, .investment-price { color: var(--muted); font-size: 12px; }
.investment-name { font-family: var(--display); font-size: 23px; font-weight: 600; letter-spacing: -.04em; }
.investment-price { color: var(--ink); font-weight: 700; text-align: right; }
.investment-arrow { color: var(--teal-deep); font-size: 20px; text-align: right; }

.blog-section { padding-bottom: 130px; }
.notes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.note-card { min-height: 260px; display: flex; flex-direction: column; align-items: flex-start; padding: 26px; border-top: 2px solid var(--ink); background: var(--white); }
.note-type { padding: 6px 9px; border-radius: 999px; background: #dff4ef; color: var(--teal-deep); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.note-card h3 { max-width: 320px; margin: 33px 0 26px; font-size: 25px; line-height: 1.08; }
.note-card a { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: var(--teal-deep); font-size: 12px; font-weight: 700; }
.note-card a span { font-size: 17px; }

.contact-section { padding: 120px 0; background: var(--ink-deep); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(450px,1.15fr); gap: 84px; align-items: start; }
.contact-copy h2 { max-width: 550px; margin-bottom: 20px; font-size: clamp(42px,5vw,69px); }
.contact-copy > p:not(.eyebrow) { max-width: 480px; color: var(--muted-light); line-height: 1.7; }
.contact-email { margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-email span, .contact-email a { display: block; }
.contact-email > span { margin-bottom: 10px; color: var(--muted-light); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-email a { color: var(--white); font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.04em; }
.contact-email a span { display: inline; color: var(--teal); }
.contact-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: #101d2d; }
.form-heading { grid-column: 1/-1; display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.form-heading > span { color: var(--amber); font-family: var(--display); font-size: 14px; }
.form-heading strong { font-family: var(--display); font-size: 18px; }
.form-heading small { color: var(--muted-light); font-size: 11px; }
.contact-form label { display: grid; gap: 8px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 5px; outline: none; background: #0a1524; color: var(--white); transition: border-color 160ms ease, box-shadow 160ms ease; }
.contact-form input, .contact-form select { min-height: 48px; padding: 0 13px; }
.contact-form textarea { resize: vertical; min-height: 118px; padding: 13px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #748396; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(66,213,196,.1); }
.form-full { grid-column: 1/-1; }
.form-consent { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; font-weight: 400 !important; line-height: 1.5; }
.form-consent input { width: 16px; min-height: 16px; margin-top: 2px; accent-color: var(--teal); }
.form-consent a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.form-status { min-height: 20px; color: var(--teal); font-size: 12px; }

.site-footer { padding: 42px 0 24px; background: #070f1b; color: var(--white); }
.footer-top { display: grid; grid-template-columns: auto 1fr minmax(380px,auto); gap: 34px; align-items: center; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { color: var(--white); }
.footer-top > p { color: var(--muted-light); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: rgba(255,255,255,.67); font-size: 11px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .04em; }

.cookie-banner { position: fixed; z-index: 80; right: 22px; bottom: 22px; left: 22px; max-width: 900px; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: 0 auto; padding: 20px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; background: #0a1524; color: var(--white); box-shadow: 0 24px 65px rgba(0,0,0,.36); }
.cookie-banner strong { font-family: var(--display); }
.cookie-banner p { margin: 5px 0; color: var(--muted-light); font-size: 12px; line-height: 1.5; }
.cookie-banner a { color: var(--teal); font-size: 11px; font-weight: 700; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-actions button { min-height: 40px; padding: 0 15px; border-radius: 5px; font-weight: 700; }
.cookie-secondary { border: 1px solid rgba(255,255,255,.25); background: transparent; color: var(--white); }
.cookie-primary { border: 1px solid var(--amber); background: var(--amber); color: var(--ink); }

/* Legal and thank-you pages */
.legal-page, .thanks-page { background: var(--paper); }
.legal-main { padding-top: 90px; }
.legal-hero { padding-top: 90px; padding-bottom: 55px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 20px; color: var(--ink); font-size: clamp(48px,6vw,82px); }
.legal-hero > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 18px; }
.legal-updated { display: block; margin-top: 25px; color: var(--muted); font-size: 11px; }
.legal-content { max-width: 900px; padding-top: 55px; padding-bottom: 100px; }
.legal-section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 13px; font-size: 27px; }
.legal-section p, .legal-list { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-section p + p { margin-top: 12px; }
.legal-section a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-list { display: grid; gap: 8px; padding-left: 20px; }
.thanks-page { min-height: 100vh; background: var(--ink-deep); }
.thanks-main { min-height: 100vh; display: grid; place-items: center; padding: 145px 24px 70px; }
.thanks-card { max-width: 860px; padding: 70px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: #101d2d; color: var(--white); }
.thanks-card h1 { font-size: clamp(54px,7vw,92px); }
.thanks-card > p:not(.eyebrow):not(.thanks-legal) { max-width: 650px; color: var(--muted-light); font-size: 17px; line-height: 1.7; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.thanks-legal { margin-top: 38px; color: var(--muted-light); font-size: 11px; }
.thanks-legal a { color: var(--teal); }

@media (max-width: 1100px) {
  .site-nav { gap: 16px; }
  .brand-note { display: none; }
  .hero-grid { grid-template-columns: minmax(0,1fr) 335px; gap: 40px; }
  .sector-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-top { grid-template-columns: auto 1fr; }
  .footer-links { grid-column: 1/-1; justify-content: flex-start; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 78px; }
  .container { width: min(100% - 32px, 760px); }
  .header-inner { min-height: 76px; }
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; top: 76px; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 7px; background: #0a1524; box-shadow: 0 25px 55px rgba(0,0,0,.3); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 12px; }
  .site-nav .nav-cta { margin-top: 4px; justify-content: space-between; }
  .hero-section, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 145px; padding-bottom: 135px; }
  .hero-card { align-self: auto; max-width: 530px; }
  .hero-bottom { flex-wrap: wrap; }
  .hero-location { width: 100%; margin-left: 0; }
  .signal-inner { min-height: auto; flex-direction: column; align-items: flex-start; padding: 22px 0; }
  .signal-items { justify-content: flex-start; }
  .section { padding: 92px 0; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card > p { min-height: 0; }
  .custom-solution { grid-template-columns: 52px 1fr; }
  .custom-solution .button { grid-column: 1/-1; justify-self: start; }
  .sector-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card-wide { grid-column: auto; }
  .showcase-card-wide .showcase-image, .showcase-image { height: 350px; }
  .showcase-body { display: block; }
  .showcase-body p { margin-top: 13px; }
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .investment-row { grid-template-columns: 38px 1fr auto 20px; gap: 12px; }
  .investment-detail { grid-column: 2/3; }
  .investment-price { grid-column: 3/4; grid-row: 1; }
  .investment-arrow { grid-column: 4/5; grid-row: 1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 560px); }
  h1 { font-size: clamp(50px,16vw,72px); }
  .hero-grid { padding-top: 125px; padding-bottom: 145px; }
  .hero-lead { font-size: 17px; }
  .hero-proof { gap: 16px; }
  .hero-card { padding: 18px; }
  .hero-bottom { bottom: 18px; gap: 9px; }
  .hero-bottom span:not(.hero-location), .hero-bottom i { display: none; }
  .signal-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
  .section { padding: 75px 0; }
  .section-intro h2 { font-size: clamp(39px,12vw,54px); }
  .service-card { padding: 20px; }
  .service-card h3 { font-size: 30px; }
  .custom-solution { grid-template-columns: 1fr; padding: 23px; }
  .custom-solution .button { grid-column: auto; }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-card { min-height: 210px; }
  .showcase-card-wide .showcase-image, .showcase-image { height: 245px; }
  .showcase-body { padding: 20px; }
  .process-grid { grid-template-columns: 1fr; border-top: 0; }
  .process-step, .process-step + .process-step { min-height: 0; padding: 25px 0; border-top: 1px solid var(--line); border-right: 0; }
  .process-step:last-child { border-bottom: 1px solid var(--line); }
  .process-step p { max-width: none; }
  .notes-grid { grid-template-columns: 1fr; }
  .investment-row { grid-template-columns: 30px 1fr 20px; }
  .investment-name { font-size: 20px; }
  .investment-price { grid-column: 2/3; grid-row: 2; text-align: left; }
  .investment-detail { grid-column: 2/3; grid-row: 3; }
  .investment-arrow { grid-column: 3/4; grid-row: 1; }
  .contact-form { grid-template-columns: 1fr; padding: 20px; }
  .form-heading { grid-template-columns: 32px 1fr; }
  .form-heading small { grid-column: 2/3; }
  .contact-email a { font-size: 18px; overflow-wrap: anywhere; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; justify-content: flex-start; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 14px; right: 12px; bottom: 12px; left: 12px; }
  .cookie-actions { justify-content: flex-end; }
  .legal-hero { padding-top: 65px; }
  .thanks-card { padding: 38px 24px; }
}
