/* =========================================================
   SOENT GmbH — Corporate Design System
   Brand: Deep Navy #001220 · Sky Blue #009FE3 · White
   Type: Inter (UI) · Manrope (display)
   ========================================================= */

:root {
  /* Brand */
  --navy: #001220;
  --navy-900: #03182a;
  --navy-800: #0a2238;
  --navy-700: #143049;
  --sky: #009FE3;
  --sky-600: #0089c4;
  --sky-50: #e6f6fd;

  /* Neutrals */
  --white: #ffffff;
  --paper: #f6f7f9;
  --line: #e6e9ee;
  --line-2: #d3d8e0;
  --ink: #0c1622;
  --ink-2: #324155;
  --muted: #6b7787;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.h-display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 .5em;
}
h1, .h1 { font-size: clamp(2.4rem, 5.4vw, 4.5rem); font-weight: 800; }
h2, .h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3, .h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.01em; }
h4, .h4 { font-size: 1.1rem; letter-spacing: -0.005em; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-2); line-height: 1.55; max-width: 65ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--sky);
}
.eyebrow.dark { color: var(--navy); }
.eyebrow.dark::before { background: var(--navy); }
.eyebrow.light { color: var(--sky); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--dark { background: var(--navy); color: #cfd8e3; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #aab6c4; }
.section--paper { background: var(--paper); }

.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.section-head { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: 14px 22px;
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn i, .btn svg { transition: transform .25s var(--ease); }
.btn:hover i.fa-arrow-right, .btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--sky); color: #fff; }
.btn-primary:hover { background: var(--navy); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--sky); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; color: var(--navy);
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.btn-link.light { color: #fff; }
.btn-link:hover { color: var(--sky); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .site-header.is-solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 16px rgba(0,18,32,.07);
}
.site-header.is-scrolled .nav-link,
.site-header.is-solid .nav-link,
.site-header.is-scrolled .lang-toggle,
.site-header.is-solid .lang-toggle { color: var(--navy); }
/* ── Logo switching state machine ──────────────────────────────────────────
   .logo-hero    = white-on-black logo, shown on transparent dark hero
                   mix-blend-mode:screen makes the black bg fully invisible
   .logo-scrolled = dark-navy logo, shown once header turns white (scrolled/solid)
   ─────────────────────────────────────────────────────────────────────────── */
.logo-light { display: block; }
.logo-dark  { display: none; }
.site-header.is-scrolled .logo-light, .site-header.is-solid .logo-light { display: none; }
.site-header.is-scrolled .logo-dark,  .site-header.is-solid .logo-dark  { display: block; }

/* ── New logo pair: stacked via absolute positioning so only one is visible at a time ── */
.logo { position: relative; }

/* Hero state: white-on-black logo with screen blend — black bg disappears on dark hero */
.logo-hero {
  display: block;
  mix-blend-mode: screen;
  position: relative;
}
/* Scrolled / solid state: dark-navy logo, hidden by default (transparent header = dark hero) */
.logo-scrolled {
  display: block;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* Once header turns white — hide hero logo, reveal dark logo */
.site-header.is-scrolled .logo-hero,
.site-header.is-solid    .logo-hero {
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: normal;
}
.site-header.is-scrolled .logo-scrolled,
.site-header.is-solid    .logo-scrolled {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile menu open (dark navy overlay) — always show the white hero logo */
body.menu-open .logo-hero     { opacity: 1 !important; pointer-events: auto !important; mix-blend-mode: screen !important; }
body.menu-open .logo-scrolled { opacity: 0 !important; pointer-events: none !important; }
.site-header.is-scrolled .hamburger span, .site-header.is-solid .hamburger span { background: var(--navy); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo { display: inline-flex; align-items: center; height: 40px; text-decoration: none; }
.logo img { height: 40px; width: auto; display: block; }

.nav-main { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav-link {
  font-size: 0.92rem; font-weight: 500; color: #fff;
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--sky); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--sky); }

.header-actions { display: flex; align-items: center; gap: 20px; }

.lang-switch { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: #fff; padding: 8px 12px; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600; letter-spacing: .08em;
}
.site-header.is-scrolled .lang-toggle, .site-header.is-solid .lang-toggle {
  border-color: var(--line-2);
}
.lang-toggle:hover { border-color: var(--sky); color: var(--sky); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  min-width: 160px; padding: 6px; box-shadow: 0 18px 40px rgba(2,10,20,.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s var(--ease);
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; align-items: center; gap: .6rem;
  width: 100%; padding: 9px 12px; border: 0; background: transparent;
  color: var(--ink); border-radius: 6px; font-size: 0.9rem; text-align: left;
}
.lang-menu button:hover { background: var(--paper); color: var(--navy); }
.lang-menu button.active { color: var(--sky); font-weight: 600; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: all .25s var(--ease); border-radius: 2px; }

@media (max-width: 1024px) {
  .nav-main {
    position: fixed; inset: 0; z-index: 105;
    background: var(--navy);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px;
    transform: translateX(100%); transition: transform .4s var(--ease);
    padding: 80px 24px 40px;
    overflow-y: auto;
  }
  .nav-main .nav-link {
    color: #fff; font-size: 1.6rem;
    font-family: var(--font-display); font-weight: 700;
    padding: 12px 0;
  }
  .nav-main .nav-link::after { display: none; }
  .nav-main .nav-link.active { color: var(--sky); }
  body.menu-open .nav-main { transform: translateX(0); }
  body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
  body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
  body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }
  body.menu-open { overflow: hidden; }
  .hamburger { display: inline-flex; z-index: 110; position: relative; }
  /* Ensure logo shows on mobile nav overlay */
  .site-header .logo { z-index: 110; position: relative; }
  /* When menu is open, always show white logo */
  body.menu-open .logo-light { display: block !important; }
  body.menu-open .logo-dark  { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  padding-bottom: clamp(48px, 8vh, 120px);
  padding-top: 140px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,18,32,.55) 0%, rgba(0,18,32,.15) 40%, rgba(0,18,32,.85) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  font-weight: 800;
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero p.lead { color: rgba(255,255,255,.85); max-width: 56ch; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 28px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding-top: 18px;
}
@media (max-width: 700px) { .hero__meta { display: none; } }

/* page hero (smaller) */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  padding: 180px 0 clamp(48px, 7vw, 90px);
}
.page-hero .hero__media, .page-hero .hero__overlay { position: absolute; inset: 0; }
.page-hero .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero__overlay {
  background: linear-gradient(180deg, rgba(0,18,32,.6) 0%, rgba(0,18,32,.4) 50%, rgba(0,18,32,.85) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 60ch; }

.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--sky); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(2,10,20,.08); border-color: var(--line-2); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95); color: var(--navy);
  padding: 6px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.card__body { padding: 24px 24px 28px; }
.card__body h3 { margin-bottom: .5em; }
.card__body p { font-size: 0.95rem; }
.card__meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.78rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* Service card variant: icon + text */
.service-card {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; width: 0; height: 3px; background: var(--sky);
  transition: width .4s var(--ease);
}
.service-card:hover { border-color: var(--navy); transform: translateY(-4px); }
.service-card:hover::after { width: 100%; }
.service-card .icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sky-50); color: var(--sky);
  border-radius: var(--radius-lg);
  font-size: 1.4rem; margin-bottom: 22px;
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--ink-2); font-size: 0.96rem; }
.service-card ul { padding-left: 1.1em; margin: 14px 0 0; color: var(--ink-2); font-size: .92rem; }
.service-card ul li { margin-bottom: 4px; }

/* Stat bar */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 800px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: 0; }
@media (max-width: 800px) {
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}
.stat__value {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); color: #fff; letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 8px;
}
.stat__value .unit { font-size: .55em; color: var(--sky); margin-left: 4px; }
.stat__label {
  font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* Sector tile */
.sector-tile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 4/5; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  isolation: isolate;
}
.sector-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; transition: transform 1s var(--ease);
}
.sector-tile::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,18,32,.15) 0%, rgba(0,18,32,.85) 100%);
  transition: background .4s var(--ease);
}
.sector-tile:hover img { transform: scale(1.05); }
.sector-tile:hover::before { background: linear-gradient(180deg, rgba(0,18,32,.25) 0%, rgba(0,159,227,.85) 100%); }
.sector-tile h3 { color: #fff; margin-bottom: 6px; }
.sector-tile p { color: rgba(255,255,255,.9); font-size: 0.95rem; margin-bottom: 16px; }
.sector-tile .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  transition: all .3s var(--ease);
}
.sector-tile:hover .arrow { background: #fff; color: var(--navy); border-color: #fff; }

/* Quote / pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 500; line-height: 1.35; letter-spacing: -0.015em;
  color: #fff;
  max-width: 24ch;
}
.pull-quote .accent { color: var(--sky); }

/* Split feature */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--wide { aspect-ratio: 5/4; }

/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 0;
  width: 1px; background: var(--line-2);
}
.timeline__item { position: relative; padding-bottom: 36px; }
.timeline__item::before {
  content: ""; position: absolute; left: -28px; top: 6px;
  width: 17px; height: 17px; border-radius: 50%;
  background: #fff; border: 3px solid var(--sky);
}
.timeline__year {
  font-family: var(--font-display); font-weight: 700; color: var(--sky);
  font-size: 1.1rem; margin-bottom: 4px;
}

/* Logo strip */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 36px; }
.logo-strip span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; color: var(--muted); letter-spacing: .02em;
  opacity: .75; transition: opacity .2s var(--ease), color .2s var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--navy); }

/* Footer */
.site-footer { background: var(--navy); color: #aab6c4; padding: 90px 0 0; }
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 60px;
}
@media (max-width: 900px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff; font-family: var(--font-sans);
  font-size: 0.78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px;
}
/* Footer logo — white-on-black logo; screen blend removes black on dark navy bg */
.site-footer .footer-logo img {
  height: 46px; width: auto; display: block;
  margin-bottom: 18px;
  mix-blend-mode: screen;
}
.site-footer p { color: #8a97a8; font-size: 0.9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: #aab6c4; font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--sky); }

.footer-bottom {
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 18px;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: #7a8696;
}
.footer-bottom .footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .footer-legal a:hover { color: var(--sky); }

.social-row { display: flex; gap: 10px; margin-top: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18); color: #fff;
  transition: all .2s var(--ease);
}
.social-row a:hover { background: var(--sky); border-color: var(--sky); }

/* Newsletter mini-form */
.nl-form { display: flex; gap: 0; margin-top: 14px; }
.nl-form input {
  flex: 1; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: 12px 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  font: inherit; font-size: 0.92rem;
}
.nl-form input::placeholder { color: #6b7787; }
.nl-form input:focus { outline: none; border-color: var(--sky); }
.nl-form button {
  background: var(--sky); color: #fff; border: 0;
  padding: 0 16px; border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600;
}
.nl-form button:hover { background: #fff; color: var(--navy); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Reusable responsive layout helpers ---------- */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }

.lifecycle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; margin-top: clamp(32px, 5vw, 64px); }
@media (max-width: 900px) { .lifecycle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lifecycle-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem;
  padding: 14px 16px; border: 1px solid var(--line-2);
  border-radius: var(--radius); background: #fff; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(0,159,227,.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--muted); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--ink-2); }
.consent input { margin-top: 4px; }

.form-success {
  background: #e8f9f1; border: 1px solid #b6ebd4; color: #08603a;
  padding: 16px 20px; border-radius: var(--radius); display: none;
}
.form-success.show { display: block; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Accent line */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Map placeholder */
.map-frame {
  position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Tag chip */
.chip {
  display: inline-flex; padding: 6px 12px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
}
.chip.dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }

/* CTA banner */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid; grid-template-columns: 1.4fr auto; align-items: center; gap: 30px;
}
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner::before {
  content: ""; position: absolute; right: -10%; top: -20%;
  width: 60%; height: 140%; background: radial-gradient(circle, rgba(0,159,227,.35), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; max-width: 22ch; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.75); margin: 0; max-width: 50ch; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Print / a11y */
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 3px; }

::selection { background: var(--sky); color: #fff; }

/* ---------- Mobile enhancements ---------- */
@media (max-width: 700px) {
  .hero h1 { font-size: clamp(2rem, 8vw, 3.2rem); max-width: 20ch; }
  .hero p.lead { font-size: 1rem; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .page-hero { min-height: 55vh; padding: 140px 0 clamp(36px, 6vw, 60px); }
  .section-head { gap: 12px; }
  .split { gap: 32px; }
  .cta-banner { padding: clamp(28px, 6vw, 48px); }
  .sector-tile { aspect-ratio: 16/10; padding: 20px; }
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 18px; }
}
@media (max-width: 520px) {
  .header-inner { height: 68px; }
  .logo img { height: 34px; }
  .btn { padding: 12px 18px; font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 14px; }
}
