:root {
  --navy: #1a2357;
  --navy-deep: #101738;
  --navy-mid: #2d3a7a;
  --red: #bf0202;
  --red-dark: #970202;
  --paper: #f7f6f2;
  --sand: #eceae4;
  --ink: #151a28;
  --muted: #626675;
  --white: #fff;
  --display: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
  --shadow: 0 22px 70px rgba(16, 23, 56, .12);
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #f2adad; outline-offset: 3px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px; background: var(--white); color: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(790px, 100%); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96); border-bottom: 1px solid rgba(26, 35, 87, .1); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--display); font-size: 19px; }
.brand-copy span { margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nav-links { justify-self: center; display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--navy); font-size: 14px; font-weight: 700; text-decoration: none; }
.nav-links a:hover { color: var(--red); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--navy); background: var(--paper); }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 12px 22px; border: 1px solid transparent; border-radius: 7px; font-size: 14px; font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-red { color: var(--white); background: var(--red); }
.button-red:hover { background: var(--red-dark); }
.button-navy { color: var(--white); background: var(--navy); }
.button-ghost { color: var(--navy); border-color: rgba(26,35,87,.25); background: transparent; }
.button-light { color: var(--white); border-color: rgba(255,255,255,.48); background: transparent; }
.button-small { min-height: 42px; padding: 10px 17px; }
.button svg { width: 16px; height: 16px; }

.breadcrumbs { padding: 18px 0; border-bottom: 1px solid rgba(26,35,87,.08); color: var(--muted); font-size: 13px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #aaacb4; }
.breadcrumbs a { color: var(--navy); text-decoration: none; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 9% 12%, rgba(191, 2, 2, .28), transparent 27%), linear-gradient(110deg, rgba(16,23,56,.98) 0 48%, rgba(16,23,56,.67) 66%, rgba(16,23,56,.35)); }
.hero-grid { position: relative; min-height: 635px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); align-items: stretch; }
.hero-copy { z-index: 2; align-self: center; padding: 86px 70px 88px 0; }
.hero-visual { position: relative; min-height: 520px; }
.hero-visual img { width: calc(100% + ((100vw - min(1180px, calc(100vw - 48px))) / 2)); height: 100%; object-fit: cover; object-position: center; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-deep), transparent 44%), linear-gradient(0deg, rgba(16,23,56,.22), transparent 60%); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #ffd5d5; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--red); }
.eyebrow-dark { color: var(--red); }
.hero h1 { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(45px, 5.4vw, 76px); line-height: 1.01; letter-spacing: -.035em; }
.hero h1 em { color: #f3c4c4; font-weight: 400; }
.hero-lede { max-width: 675px; margin: 26px 0 0; color: rgba(255,255,255,.78); font-size: clamp(17px, 1.45vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; padding: 0; list-style: none; color: rgba(255,255,255,.7); font-size: 13px; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(191,2,2,.18); }

.trust-bar { background: var(--paper); border-bottom: 1px solid var(--sand); }
.trust-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); }
.trust-item { padding: 25px 26px; border-left: 1px solid var(--sand); }
.trust-item:first-child { padding-left: 0; border-left: 0; }
.trust-item strong { display: block; color: var(--navy); font-family: var(--display); font-size: 18px; }
.trust-item span { color: var(--muted); font-size: 12px; }

.section { padding: 92px 0; }
.section-paper { background: var(--paper); }
.section-navy { color: var(--white); background: var(--navy); }
.section-kicker { margin: 0 0 12px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section-navy .section-kicker { color: #efb4b4; }
.section-title { max-width: 780px; margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(34px, 4.4vw, 55px); line-height: 1.08; letter-spacing: -.025em; }
.section-navy .section-title { color: var(--white); }
.section-intro { max-width: 750px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.section-navy .section-intro { color: rgba(255,255,255,.72); }
.rule { width: 52px; height: 4px; margin: 24px 0; background: var(--red); }
.prose p { margin: 0 0 20px; }
.prose h2, .prose h3 { color: var(--navy); font-family: var(--display); }

.intro-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr); gap: 76px; align-items: start; }
.info-panel { position: sticky; top: 110px; padding: 30px; border-top: 5px solid var(--red); background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.info-panel h2 { margin: 0 0 12px; font-family: var(--display); font-size: 28px; line-height: 1.15; }
.info-panel p { margin: 0 0 22px; color: rgba(255,255,255,.7); font-size: 14px; }
.info-list { display: grid; gap: 12px; margin: 24px 0; padding: 20px 0; border-block: 1px solid rgba(255,255,255,.15); }
.info-list span { color: rgba(255,255,255,.72); font-size: 13px; }
.info-list strong { display: block; color: var(--white); font-size: 14px; }

.card-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; margin-top: 42px; }
.card { grid-column: span 4; position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--sand); background: var(--white); box-shadow: 0 10px 34px rgba(16,23,56,.05); }
.card:nth-child(1), .card:nth-child(5) { grid-column: span 5; }
.card:nth-child(2), .card:nth-child(4) { grid-column: span 3; }
.card:nth-child(3) { grid-column: span 4; }
.card::before { content: attr(data-number); position: absolute; top: 8px; right: 15px; color: rgba(26,35,87,.06); font-family: var(--display); font-size: 70px; line-height: 1; }
.card h3 { position: relative; margin: 0 0 10px; color: var(--navy); font-family: var(--display); font-size: 24px; line-height: 1.2; }
.card p { position: relative; margin: 0; color: var(--muted); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 44px; counter-reset: steps; }
.step { position: relative; padding: 22px 28px 10px 0; counter-increment: steps; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 41px; right: 10px; width: 40px; height: 1px; background: rgba(255,255,255,.28); }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 20px; color: #efb4b4; font-family: var(--display); font-size: 38px; }
.step h3 { margin: 0 0 8px; color: var(--white); font-family: var(--display); font-size: 22px; }
.step p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }

.detail-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.detail-image { position: sticky; top: 110px; overflow: hidden; min-height: 610px; border-radius: 2px 2px 90px 2px; box-shadow: var(--shadow); }
.detail-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.32); margin: 16px; border-radius: 2px 2px 76px 2px; }
.checklist { display: grid; gap: 0; margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--sand); }
.checklist li { position: relative; padding: 19px 0 19px 38px; border-bottom: 1px solid var(--sand); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 20px; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: 12px; font-weight: 900; }

.service-index { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 44px; background: var(--sand); border: 1px solid var(--sand); }
.service-link { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; min-height: 92px; padding: 23px 26px; color: var(--navy); background: var(--white); text-decoration: none; transition: background .2s, color .2s; }
.service-link:hover { color: var(--white); background: var(--navy); }
.service-link strong { font-family: var(--display); font-size: 19px; line-height: 1.2; }
.service-link span { color: var(--muted); font-size: 12px; }
.service-link:hover span { color: rgba(255,255,255,.65); }
.service-link b { color: var(--red); font-size: 21px; }

.faq-list { max-width: 900px; margin-top: 42px; border-top: 1px solid var(--sand); }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-question { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; width: 100%; padding: 23px 0; border: 0; color: var(--navy); background: transparent; font-family: var(--display); font-size: 20px; font-weight: 700; text-align: left; }
.faq-question span:last-child { color: var(--red); font-family: var(--sans); font-size: 24px; font-weight: 400; transition: transform .2s; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; max-width: 780px; padding: 0 0 24px; color: var(--muted); }
.faq-answer.open { display: block; }
.faq-answer p { margin: 0; }

.cta-band { position: relative; overflow: hidden; padding: 75px 0; color: var(--white); background: var(--navy-deep); }
.cta-band::after { content: "KREYÒL"; position: absolute; right: -20px; bottom: -48px; color: rgba(255,255,255,.035); font-family: var(--display); font-size: clamp(120px, 19vw, 280px); font-weight: 700; line-height: 1; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-grid h2 { max-width: 720px; margin: 0; font-family: var(--display); font-size: clamp(34px, 4.2vw, 54px); line-height: 1.08; }
.cta-grid p { max-width: 720px; margin: 14px 0 0; color: rgba(255,255,255,.68); }

.hub-hero .hero-grid { min-height: 690px; }
.cluster-group { margin-top: 58px; }
.cluster-heading { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; margin-bottom: 22px; }
.cluster-heading h3 { margin: 0; color: var(--navy); font-family: var(--display); font-size: 27px; }
.cluster-heading::after { content: ""; height: 1px; background: var(--sand); }
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.location-link { min-height: 125px; padding: 22px; color: var(--navy); border: 1px solid var(--sand); background: var(--white); text-decoration: none; }
.location-link:hover { color: var(--white); background: var(--navy); }
.location-link small { display: block; margin-bottom: 18px; color: var(--red); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.location-link strong { font-family: var(--display); font-size: 21px; }

.resource-callout { margin-top: 42px; padding: 28px; border-left: 5px solid var(--red); background: #fff; box-shadow: 0 10px 35px rgba(16,23,56,.06); }
.resource-callout h3 { margin: 0 0 9px; color: var(--navy); font-family: var(--display); font-size: 22px; }
.resource-callout p { margin: 0; color: var(--muted); }
.resource-callout a { color: var(--red); font-weight: 700; }

.home-services { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 18px; margin-top: 42px; }
.home-service-card { position: relative; min-height: 360px; padding: 38px 34px; overflow: hidden; color: var(--navy); border: 1px solid var(--sand); background: var(--white); }
.home-service-card:first-child { color: var(--white); border-color: var(--navy); background: var(--navy); }
.home-service-card::after { content: attr(data-mark); position: absolute; right: -18px; bottom: -58px; color: rgba(26,35,87,.045); font-family: var(--display); font-size: 170px; line-height: 1; }
.home-service-card:first-child::after { color: rgba(255,255,255,.055); }
.home-service-card h3 { position: relative; z-index: 1; margin: 0 0 24px; font-family: var(--display); font-size: 30px; }
.home-service-card ul { position: relative; z-index: 1; display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.home-service-card li { padding-bottom: 10px; border-bottom: 1px solid rgba(26,35,87,.12); font-size: 15px; }
.home-service-card:first-child li { border-color: rgba(255,255,255,.15); }
.home-services-action { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--sand); }
.home-services-action p { max-width: 630px; margin: 0; color: var(--muted); }

.industry-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 44px; }
.industry-item { grid-column: span 4; min-height: 190px; padding: 28px; color: var(--navy); border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.055); }
.industry-item:nth-child(1), .industry-item:nth-child(5) { grid-column: span 5; }
.industry-item:nth-child(2), .industry-item:nth-child(4) { grid-column: span 3; }
.industry-item h3 { margin: 0 0 12px; color: var(--white); font-family: var(--display); font-size: 24px; }
.industry-item p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }

.expect-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.expect-list { display: grid; gap: 1px; background: var(--sand); border: 1px solid var(--sand); }
.expect-item { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 24px; background: var(--white); }
.expect-number { color: var(--red); font-family: var(--display); font-size: 28px; }
.expect-item h3 { margin: 0 0 5px; color: var(--navy); font-family: var(--display); font-size: 20px; }
.expect-item p { margin: 0; color: var(--muted); font-size: 14px; }

.coverage-showcase { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1px; margin-top: 42px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.coverage-main, .coverage-side { padding: 42px; background: rgba(255,255,255,.055); }
.coverage-main h3, .coverage-side h3 { margin: 0 0 12px; color: var(--white); font-family: var(--display); font-size: 28px; }
.coverage-main p, .coverage-side p { color: rgba(255,255,255,.68); }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.coverage-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.82); font-size: 12px; }

.trust-panel { position: relative; padding: 52px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.trust-panel::before { content: "“"; position: absolute; top: 5px; right: 28px; color: rgba(255,255,255,.07); font-family: var(--display); font-size: 150px; line-height: 1; }
.trust-panel h3 { position: relative; margin: 0 0 18px; font-family: var(--display); font-size: 34px; line-height: 1.18; }
.trust-panel p { position: relative; color: rgba(255,255,255,.72); }
.trust-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; background: rgba(255,255,255,.15); }
.trust-fact { padding: 18px; background: var(--navy); }
.trust-fact strong { display: block; color: var(--white); font-family: var(--display); font-size: 18px; }
.trust-fact span { color: rgba(255,255,255,.6); font-size: 12px; }

.hub-intro { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.hub-note { max-width: 340px; padding: 24px; border-left: 4px solid var(--red); background: var(--paper); color: var(--muted); font-size: 14px; }

.site-footer { padding: 70px 0 26px; color: rgba(255,255,255,.68); background: #0b1025; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 70px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { max-width: 430px; margin: 20px 0; font-size: 14px; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 18px; color: var(--white); font-size: 14px; }
.footer-col h2 { margin: 0 0 18px; color: var(--white); font-family: var(--display); font-size: 20px; }
.footer-col a { display: block; margin: 9px 0; font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }

@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: 1fr auto auto; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; display: none; padding: 18px 24px 24px; background: var(--white); border-bottom: 1px solid var(--sand); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; gap: 8px; }
  .nav-links a { padding: 10px 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 80px 0 70px; }
  .hero-visual { position: absolute; inset: 0; opacity: .28; }
  .hero-visual img { width: 100%; }
  .hero::before { z-index: 1; background: linear-gradient(90deg, rgba(16,23,56,.98), rgba(16,23,56,.82)); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { padding-left: 0; border-left: 0; }
  .intro-layout, .detail-layout { grid-template-columns: 1fr; gap: 48px; }
  .info-panel, .detail-image { position: relative; top: 0; }
  .detail-image { min-height: 460px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
  .home-services, .expect-grid, .coverage-showcase { grid-template-columns: 1fr; }
  .industry-item, .industry-item:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1180px); }
  .brand-copy span { display: none; }
  .header-cta { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; min-height: 68px; }
  .nav-links { top: 68px; }
  .hero h1 { font-size: clamp(41px, 13vw, 58px); }
  .hero-copy { padding: 65px 0 58px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(3) { padding: 18px 0; border-left: 0; border-bottom: 1px solid var(--sand); }
  .section { padding: 70px 0; }
  .card-grid { display: grid; grid-template-columns: 1fr; }
  .card, .card:nth-child(n) { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .step { padding-bottom: 24px; }
  .step::after { display: none; }
  .service-index, .location-grid { grid-template-columns: 1fr; }
  .home-services-action, .hub-intro { align-items: flex-start; flex-direction: column; display: flex; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-item, .industry-item:nth-child(n) { grid-column: auto; }
  .trust-facts { grid-template-columns: 1fr; }
  .trust-panel { padding: 34px 26px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-grid .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
}

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

/* Request form */
.request-hero{padding:76px 0;color:var(--white);background:var(--navy-deep)}
.request-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:70px;align-items:end}
.request-hero h1,.success-panel h1{max-width:760px;margin:0;color:inherit;font-family:var(--display);font-size:clamp(40px,5vw,68px);line-height:1.05}
.request-hero p{max-width:760px;margin:20px 0 0;color:rgba(255,255,255,.72)}
.request-contact{display:grid;gap:5px;min-width:230px;padding:24px;border-left:3px solid var(--red);background:rgba(255,255,255,.06)}
.request-contact strong{font-family:var(--display);font-size:20px}.request-contact a{color:rgba(255,255,255,.78);text-decoration:none}
.request-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:64px;align-items:start}
.request-form{padding:38px;background:var(--white);box-shadow:var(--shadow)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}.form-field{display:grid;gap:8px}.form-field-wide{grid-column:1/-1}
.form-field label{color:var(--navy);font-size:14px;font-weight:800}.form-field label span{color:var(--red)}.form-field label small{color:var(--muted);font-weight:500}
.form-field input,.form-field select,.form-field textarea{width:100%;border:1px solid #d8d6cf;border-radius:4px;background:var(--white);padding:13px 14px;color:var(--ink)}
.form-field textarea{resize:vertical}.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--navy);outline:3px solid rgba(26,35,87,.1)}
.form-submit{margin-top:26px;border:0}.form-note{margin:14px 0 0;color:var(--muted);font-size:12px}.form-honeypot{position:absolute!important;left:-9999px!important}
.request-aside{position:sticky;top:110px}.request-aside h2{margin:0;color:var(--navy);font-family:var(--display);font-size:36px;line-height:1.15}.request-aside ol{display:grid;gap:0;margin:30px 0 0;padding:0;list-style:none;counter-reset:request-steps}.request-aside li{display:grid;gap:4px;padding:20px 0;border-bottom:1px solid var(--sand);counter-increment:request-steps}.request-aside li strong::before{content:'0' counter(request-steps);margin-right:12px;color:var(--red);font-family:var(--display)}.request-aside li span{color:var(--muted);font-size:14px}
.request-success{min-height:650px;display:grid;align-items:center;padding:90px 0;background:var(--paper)}.success-panel{max-width:820px;padding:60px;color:var(--navy);background:var(--white);box-shadow:var(--shadow)}.success-panel p{max-width:650px}.success-mark{display:grid;width:58px;height:58px;margin-bottom:24px;place-items:center;border-radius:50%;color:var(--white);background:var(--red);font-size:28px;font-weight:900}
@media(max-width:820px){.request-hero-grid,.request-layout{grid-template-columns:1fr}.request-contact{min-width:0}.request-aside{position:static}.form-grid{grid-template-columns:1fr}.form-field-wide{grid-column:auto}.request-form,.success-panel{padding:28px}}


/* Form language switcher */
.lang-bar{display:flex;flex-wrap:wrap;align-items:center;gap:10px 16px;margin:0 0 28px;padding:0 0 20px;border-bottom:1px solid var(--sand)}
.lang-bar-label{color:var(--muted);font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.lang-chips{display:flex;flex-wrap:wrap;gap:8px}
.lang-chip{padding:8px 14px;border:1px solid rgba(26,35,87,.22);border-radius:999px;color:var(--navy);background:var(--white);font-size:13px;font-weight:700;line-height:1.2;transition:background .2s ease,border-color .2s ease,color .2s ease}
.lang-chip:hover{border-color:var(--red);color:var(--red)}
.lang-chip.is-active{border-color:var(--navy);color:var(--white);background:var(--navy)}

/* Request pop-out */
body.modal-open{overflow:hidden}
.request-modal{position:fixed;inset:0;z-index:120;display:grid;align-items:start;justify-items:center;padding:24px;overflow-y:auto;background:rgba(16,23,56,.62);opacity:0;transition:opacity .2s ease}
.request-modal.is-open{opacity:1}
.request-modal[hidden]{display:none}
.request-modal-panel{position:relative;width:min(860px,100%);margin:auto;border-radius:var(--radius);background:var(--paper);box-shadow:var(--shadow);transform:translateY(14px);transition:transform .25s ease}
.request-modal.is-open .request-modal-panel{transform:translateY(0)}
.request-modal-close{position:absolute;top:16px;right:16px;display:grid;width:42px;height:42px;place-items:center;border:0;border-radius:50%;color:var(--navy);background:var(--white);box-shadow:0 6px 18px rgba(16,23,56,.14)}
.request-modal-close:hover{color:var(--red)}
.request-modal-close svg{width:20px;height:20px}
.request-modal-head{padding:38px 38px 0}
.request-modal-head h2{margin:6px 0 8px;color:var(--navy);font-family:var(--display);font-size:32px;line-height:1.15}
.request-modal-head p{margin:0;color:var(--muted);font-size:15px}
.request-modal-body{padding:24px 38px 38px}
.request-modal-body .request-form{padding:0;background:transparent;box-shadow:none}
@media(max-width:820px){.request-modal{padding:0}.request-modal-panel{border-radius:0;min-height:100%}.request-modal-head{padding:64px 22px 0}.request-modal-head h2{font-size:26px}.request-modal-body{padding:20px 22px 34px}}
