:root {
    --navy: #08265d;
    --blue: #0e4fb4;
    --blue-2: #173a8b;
    --red: #dc1831;
    --gold: #d4a62a;
    --white: #ffffff;
    --ink: #0c1730;
    --muted: #5b6577;
    --surface: #f3f5f8;
    --surface-2: #e7ebf1;
    --line: rgba(12, 23, 48, .14);
    --header-bg: rgba(255, 255, 255, .96);
    --header-ink: #08265d;
    --accent: var(--blue);
    --accent-2: var(--gold);
    --danger: var(--red);
    --shadow: 0 24px 70px rgba(3, 20, 55, .13);
    --radius: 24px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100vw - 40px));
    --font-display: Archivo, "Arial Narrow", "Segoe UI", sans-serif;
    --font-text: Manrope, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", Consolas, monospace;
}

html[data-theme="impact"] {
    --navy: #081c45;
    --blue: #113b8e;
    --red: #df152a;
    --gold: #f0bb1d;
    --ink: #101a30;
    --surface: #fff7f7;
    --surface-2: #f4e7e8;
    --header-bg: #d8172e;
    --header-ink: #ffffff;
    --accent: #d8172e;
    --accent-2: #f0bb1d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-text);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; background: #fff; color: #000; padding: 10px 14px; }
.skip-link:focus { top: 16px; }

.scroll-progress { position: fixed; z-index: 5000; inset: 0 0 auto; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--red); }

.splash {
    position: fixed; inset: 0; z-index: 6000; display: grid; place-items: center; background: #fff;
    transition: opacity .55s ease, visibility .55s ease;
}
.splash.is-hidden { opacity: 0; visibility: hidden; }
.splash img { width: min(290px, 58vw); animation: splashScale 1.05s ease both; }
.flag-line { width: min(300px, 62vw); height: 8px; margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.flag-line i:first-child { background: #fff; border: 1px solid #d6d9e0; }
.flag-line i:last-child { background: #dc143c; }
@keyframes splashScale { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: transform .3s ease, box-shadow .3s ease; }
.site-header.scrolled { box-shadow: 0 10px 40px rgba(7, 30, 74, .14); }
.topbar { background: var(--navy); color: #fff; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; }
.topbar-inner { min-height: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.navbar { background: var(--header-bg); color: var(--header-ink); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(8, 38, 93, .08); }
.nav-inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.brand img { width: 120px; height: 68px; object-fit: contain; }
.nav-menu { justify-self: center; display: flex; align-items: center; gap: clamp(12px, 1.5vw, 24px); font-family: var(--font-display); font-weight: 700; font-size: .84rem; text-transform: uppercase; letter-spacing: .035em; }
.nav-menu a { position: relative; padding: 30px 0 27px; }
.nav-menu a::after { content: ""; position: absolute; inset: auto 0 20px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-select { display: inline-flex; align-items: center; gap: 6px; font: 700 .7rem var(--font-mono); border: 1px solid currentColor; padding: 7px 8px; border-radius: 999px; }
.language-select select { border: 0; background: transparent; color: inherit; font-weight: 800; outline: none; }
.language-select option { color: #111; }
.theme-toggle { width: 38px; height: 38px; border-radius: 50%; border: 1px solid currentColor; background: transparent; color: inherit; display: grid; place-items: center; }
.theme-toggle span { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(90deg, var(--accent) 50%, var(--accent-2) 50%); }
.login-link { padding: 10px 15px; border-radius: 999px; background: var(--navy); color: #fff; font: 700 .76rem var(--font-display); text-transform: uppercase; }
html[data-theme="impact"] .login-link { background: var(--gold); color: #111; }
.nav-toggle { display: none; }

.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    position: relative;
    isolation: isolate;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(4, 20, 53, .93) 0%, rgba(4, 20, 53, .78) 44%, rgba(4, 20, 53, .24) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
    padding: 150px 0 70px;
}
.hero::after { content: ""; position: absolute; z-index: -1; inset: auto 0 0; height: 12px; background: linear-gradient(90deg, #fff 0 50%, #dc143c 50% 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; align-items: end; }
.hero-copy { max-width: 810px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent-2); font: 800 .77rem var(--font-mono); letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 36px; height: 2px; background: currentColor; }
.hero h1, .section h2 { font-family: var(--font-display); font-weight: 900; letter-spacing: -.045em; line-height: .98; }
.hero h1 { margin: 22px 0 24px; font-size: clamp(3.2rem, 7vw, 7.5rem); max-width: 1000px; }
.hero-copy > p { font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 750px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; padding: 12px 22px; font: 800 .82rem var(--font-display); text-transform: uppercase; letter-spacing: .04em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--accent-2); color: #101010; box-shadow: 0 12px 30px rgba(0,0,0,.17); }
.button.ghost { color: #fff; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.button.secondary { background: var(--navy); color: #fff; }
.button.outline { border: 1px solid var(--navy); color: var(--navy); background: #fff; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { border: 1px solid rgba(255,255,255,.32); background: rgba(8,38,93,.35); padding: 8px 12px; border-radius: 999px; font-size: .8rem; }
.hero-panel { justify-self: end; width: 100%; background: rgba(8,38,93,.72); border: 1px solid rgba(255,255,255,.2); padding: 26px; border-radius: var(--radius); backdrop-filter: blur(12px); }
.hero-panel img { width: 170px; filter: drop-shadow(0 10px 28px rgba(0,0,0,.2)); }
.hero-panel dl { margin: 25px 0 0; }
.hero-panel dl div { display: grid; grid-template-columns: 70px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.16); }
.hero-panel dt { font: 700 .7rem var(--font-mono); color: var(--accent-2); }
.hero-panel dd { margin: 0; font-weight: 800; }
.hero-watermark { position: absolute; z-index: -1; right: -120px; bottom: -160px; opacity: .08; width: min(700px, 55vw); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 28px; height: 46px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; }
.scroll-cue span { width: 4px; height: 8px; background: #fff; border-radius: 4px; position: absolute; left: 50%; top: 8px; transform: translateX(-50%); animation: scrollCue 1.5s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,20px); } }

.site-flash { width: var(--container); margin: 18px auto; padding: 14px 18px; border-radius: 12px; background: #eef4ff; border: 1px solid #b8cdf7; }
.site-flash.error { background: #fff0f0; border-color: #f0b4b4; }
.site-flash.success { background: #effbf2; border-color: #b7e4c0; }

.section { position: relative; padding: clamp(80px, 10vw, 150px) 0; overflow: clip; }
.section h2 { margin: 16px 0 24px; font-size: clamp(2.5rem, 5.6vw, 5.8rem); color: var(--navy); }
.section-heading { max-width: 840px; margin-bottom: 48px; }
.section-heading.compact { display: flex; align-items: end; justify-content: space-between; max-width: none; margin-bottom: 30px; }
.section-heading.compact h3 { margin: 0; font: 900 clamp(2rem, 4vw, 4rem)/1 var(--font-display); color: var(--navy); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: var(--muted); }
.split-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); gap: clamp(45px, 7vw, 100px); align-items: center; }
.logo-watermark { position: absolute; right: -120px; top: 80px; width: 600px; opacity: .025; pointer-events: none; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 36px; }
.value-grid article { min-height: 220px; background: var(--surface); border: 1px solid var(--line); padding: 24px; border-radius: var(--radius-sm); }
.value-grid b { font: 700 .75rem var(--font-mono); color: var(--red); }
.value-grid h3 { font: 900 1.35rem var(--font-display); color: var(--navy); }
.value-grid p { font-size: .92rem; color: var(--muted); }
.media-frame { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); min-height: 540px; box-shadow: var(--shadow); background: var(--surface); }
.media-frame img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; transition: transform .8s ease; }
.media-frame:hover img { transform: scale(1.025); }
.media-frame figcaption { position: absolute; left: 20px; right: 20px; bottom: 18px; padding: 12px 16px; border-radius: 12px; color: #fff; background: rgba(4,20,53,.76); backdrop-filter: blur(10px); font-size: .82rem; }
.timeline-block { margin-top: 90px; }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 2px solid var(--navy); }
.timeline li { position: relative; padding: 28px 20px 0 0; min-height: 150px; }
.timeline li::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px #fff; }
.timeline span { font: 800 .75rem var(--font-mono); color: var(--red); }
.timeline p { font-size: .88rem; font-weight: 700; line-height: 1.4; color: var(--navy); }

.services { background: var(--surface); }
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.service-card { grid-column: span 4; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 15px 45px rgba(11,35,82,.07); }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 6; }
.service-media { height: 260px; overflow: hidden; background: #dbe1ea; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-media img { transform: scale(1.04); }
.service-body { padding: 28px; }
.service-body > b { font: 800 .76rem var(--font-mono); color: var(--red); }
.service-body h3 { margin: 10px 0 12px; color: var(--navy); font: 900 1.6rem var(--font-display); }
.service-body p { color: var(--muted); }
.service-body ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.service-body li { position: relative; padding-left: 18px; font-size: .86rem; font-weight: 700; }
.service-body li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

.standards { background: var(--navy); color: #fff; }
.standards h2 { color: #fff; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cert-grid article { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 34px; }
.cert-grid span { display: inline-grid; place-items: center; min-width: 84px; height: 50px; padding: 0 14px; border: 1px solid var(--gold); color: var(--gold); font: 900 1.05rem var(--font-mono); }
.cert-grid h3 { margin: 26px 0 8px; font: 800 1.35rem var(--font-display); }
.cert-grid p { color: rgba(255,255,255,.7); }
.standards-strip { margin-top: 24px; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(255,255,255,.15); }
.standards-strip span { padding: 18px; text-align: center; font: 800 .85rem var(--font-mono); border-right: 1px solid rgba(255,255,255,.15); }
.standards-strip span:last-child { border-right: 0; }
.verification-note { font-size: .8rem; color: var(--muted); font-style: italic; }
.standards .verification-note { color: rgba(255,255,255,.62); }

.fleet-grid { align-items: stretch; }
.fleet .media-frame { min-height: 610px; }
.counter-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 36px 0 20px; }
.counter-grid article { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 20px; min-width: 0; overflow: hidden; }
.counter-grid strong { display: block; font: 900 clamp(2.8rem, 5.8vw, 5.8rem)/.92 var(--font-display); letter-spacing: -.06em; color: var(--navy); white-space: nowrap; }
.counter-grid span { display: block; margin-top: 10px; font: 700 .78rem var(--font-mono); color: var(--red); text-transform: uppercase; }

.sustainability { min-height: 780px; display: grid; align-items: end; color: #fff; background-image: linear-gradient(0deg, rgba(4,20,53,.92), rgba(4,20,53,.12)), var(--sustainability-image); background-size: cover; background-position: center; }
.sustainability-panel { padding: 55px; border: 1px solid rgba(255,255,255,.2); background: rgba(4,20,53,.72); backdrop-filter: blur(12px); border-radius: var(--radius); }
.sustainability h2 { color: #fff; max-width: 900px; }
.sustainability p { max-width: 800px; font-size: 1.1rem; color: rgba(255,255,255,.82); }
.sustainability-points { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.sustainability-points span { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 8px 12px; font: 700 .72rem var(--font-mono); }

.forms-section { background: #fff; }
.forms-section.alt { background: var(--surface); }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(38px, 7vw, 90px); align-items: start; }
.form-layout.reverse { grid-template-columns: 1.15fr .85fr; }
.form-layout.reverse .form-intro { order: 2; }
.form-layout.reverse .form-card { order: 1; }
.form-intro h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.form-intro > img { width: 260px; margin-top: 38px; opacity: .12; }
.partner-badge { margin-top: 38px; display: inline-flex; align-items: center; gap: 16px; border: 1px solid var(--line); padding: 16px 20px; border-radius: 14px; }
.partner-badge strong { font: 900 2rem var(--font-display); color: var(--navy); }
.partner-badge span { font: 700 .72rem var(--font-mono); color: var(--red); }
.form-card, .compact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow); }
.form-card label, .compact-form label { display: grid; gap: 8px; margin-bottom: 18px; font: 800 .76rem var(--font-display); text-transform: uppercase; letter-spacing: .04em; color: var(--navy); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
input, textarea { width: 100%; border: 1px solid #cbd2dc; border-radius: 12px; background: #fbfcfe; color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(14,79,180,.1); }
textarea { resize: vertical; }
.file-drop { min-height: 120px; place-items: center; align-content: center; text-align: center; border: 1px dashed #8ea0b8; border-radius: 14px; background: var(--surface); position: relative; }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop small { color: var(--muted); font: 600 .7rem var(--font-mono); }
.consent { display: flex !important; grid-template-columns: auto 1fr !important; align-items: flex-start; gap: 10px !important; text-transform: none !important; font-family: var(--font-text) !important; font-size: .78rem !important; font-weight: 500 !important; color: var(--muted) !important; }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-status { min-height: 24px; margin-top: 10px; font-size: .86rem; }
.form-status.success { color: #0b7c3e; }
.form-status.error { color: #b3132b; }

.contact { background: var(--navy); color: #fff; }
.contact h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: stretch; }
.contact-data { border-left: 3px solid var(--gold); padding-left: 20px; margin: 30px 0; }
.contact-data h3 { font: 900 1.2rem var(--font-display); }
.contact-data a { color: var(--gold); }
.compact-form { box-shadow: none; background: #fff; color: var(--ink); }
.map-card { border-radius: var(--radius); overflow: hidden; min-height: 720px; background: #e8ebf0; position: relative; }
.map-card iframe { width: 100%; height: 100%; border: 0; min-height: 720px; }
.map-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; padding: 40px; background: linear-gradient(135deg, #eef1f5, #dce2ea); color: var(--navy); }
.map-placeholder img { width: 240px; margin-bottom: 18px; }

.site-footer { background: #04142f; color: #fff; padding: 70px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 50px; }
.footer-logo { width: 220px; margin-bottom: 24px; }
.footer-grid h3 { font: 900 .9rem var(--font-display); color: var(--gold); letter-spacing: .08em; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.7); font-size: .88rem; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .78rem; }
.footer-bottom button { color: var(--gold); border: 0; background: transparent; }

.cookie-banner { position: fixed; inset: 0; z-index: 7000; display: grid; place-items: end center; padding: 20px; background: rgba(4,20,47,.42); backdrop-filter: blur(4px); }
.cookie-banner[hidden] { display: none; }
.cookie-card { width: min(980px, 100%); display: grid; grid-template-columns: 150px 1fr; gap: 25px; background: #fff; color: var(--ink); border-radius: var(--radius); padding: 26px; box-shadow: 0 30px 100px rgba(0,0,0,.25); }
.cookie-card img { width: 130px; }
.cookie-card h2 { margin: 0 0 6px; color: var(--navy); font: 900 1.8rem var(--font-display); }
.cookie-card p { margin-top: 0; color: var(--muted); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 14px 0; }
.cookie-details label { border: 1px solid var(--line); border-radius: 10px; padding: 10px; font-size: .82rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }



/* Standalone photographic showcase */
.photo-showcase {
    padding: clamp(22px, 4vw, 58px) 0 clamp(82px, 9vw, 140px);
    background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}
.photo-showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 235px;
    gap: 18px;
}
.photo-tile {
    grid-column: span 4;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) - 4px);
    background: #dce3ed;
    box-shadow: 0 20px 55px rgba(4, 25, 63, .12);
    isolation: isolate;
}
.photo-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(3, 20, 52, .2));
    pointer-events: none;
}
.photo-tile-wide { grid-column: span 8; }
.photo-tile-tall { grid-row: span 2; }
.photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .85s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.photo-tile:hover img { transform: scale(1.045); filter: saturate(1.05) contrast(1.02); }

/* More premium visual treatment */
.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(circle at 82% 34%, rgba(255,255,255,.08), transparent 34%);
    pointer-events: none;
}
.service-card { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 26px 60px rgba(11,35,82,.14); border-color: rgba(14,79,180,.28); }
.media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: inherit;
    pointer-events: none;
}

@media (max-width: 1120px) {
    .nav-menu { position: fixed; left: 20px; right: 20px; top: 118px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; border-radius: 18px; background: var(--header-bg); color: var(--header-ink); box-shadow: var(--shadow); }
    .nav-menu.is-open { display: flex; }
    .nav-menu a { padding: 12px 8px; border-bottom: 1px solid rgba(10,25,55,.08); }
    .nav-menu a::after { display: none; }
    .nav-toggle { display: inline-grid; grid-template-columns: 22px auto; column-gap: 8px; align-items: center; border: 0; background: transparent; color: inherit; }
    .nav-toggle span { grid-column: 1; width: 22px; height: 2px; background: currentColor; margin: 2px 0; }
    .nav-toggle b { grid-column: 2; grid-row: 1 / span 3; font: 800 .72rem var(--font-display); }
    .nav-inner { grid-template-columns: auto 1fr auto; }
    .nav-toggle { justify-self: center; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-panel { display: none; }
    .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
    .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 6; }
}

@media (max-width: 820px) {
    .photo-showcase-grid { grid-auto-rows: 220px; }
    .photo-tile, .photo-tile-wide { grid-column: span 6; }
    .photo-tile-tall { grid-row: span 1; }

    :root { --container: min(100% - 28px, 1180px); }
    .topbar { display: none; }
    .nav-inner { min-height: 74px; gap: 10px; }
    .brand img { width: 92px; height: 56px; }
    .nav-menu { top: 82px; }
    .login-link { display: none; }
    .language-select span { display: none; }
    .hero { padding-top: 110px; }
    .hero h1 { font-size: clamp(3.1rem, 13vw, 5.3rem); }
    .split-grid, .contact-grid, .form-layout, .form-layout.reverse { grid-template-columns: 1fr; }
    .form-layout.reverse .form-intro, .form-layout.reverse .form-card { order: initial; }
    .value-grid { grid-template-columns: 1fr; }
    .value-grid article { min-height: 0; }
    .media-frame, .media-frame img, .fleet .media-frame { min-height: 430px; }
    .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 12; }
    .cert-grid { grid-template-columns: 1fr; }
    .standards-strip { grid-template-columns: 1fr 1fr; }
    .standards-strip span { border-bottom: 1px solid rgba(255,255,255,.15); }
    .timeline { grid-template-columns: 1fr 1fr; }
    .sustainability-panel { padding: 30px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .map-card, .map-card iframe { min-height: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cookie-card { grid-template-columns: 1fr; }
    .cookie-card img { width: 100px; }
    .cookie-details { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .photo-showcase-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; gap: 12px; }
    .photo-tile, .photo-tile-wide { grid-column: 1; }

    .nav-actions { gap: 6px; }
    .theme-toggle { width: 34px; height: 34px; }
    .hero-actions .button { width: 100%; }
    .trust-row { display: grid; }
    .section { padding: 75px 0; }
    .section h2 { font-size: clamp(2.45rem, 12vw, 4.2rem); }
    .timeline { grid-template-columns: 1fr; }
    .timeline li { min-height: 0; padding-bottom: 18px; }
    .counter-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .cookie-actions .button { width: 100%; }
    .cookie-details { grid-template-columns: 1fr; }
}

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

/* Inner pages, authentication and administration */
.inner-page { min-height: 100vh; margin: 0; background: #f2f5fa; color: var(--ink); }
.inner-header { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 10px max(22px, calc((100vw - 1180px)/2)); background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.inner-header img { width: 112px; height: 62px; object-fit: contain; }
.inner-header nav { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.inner-header nav a { color: var(--navy); font: 800 .78rem var(--font-display); text-transform: uppercase; letter-spacing: .06em; }
.inner-main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 76px; }
.inner-footer { min-height: 72px; display: grid; place-items: center; padding: 20px; background: var(--navy); color: rgba(255,255,255,.75); font-size: .82rem; }
.auth-page .inner-main { min-height: calc(100vh - 158px); display: grid; place-items: center; }
.auth-card { width: min(470px, 100%); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 28px 80px rgba(10,43,102,.12); padding: clamp(28px, 5vw, 50px); }
.auth-card.wide { width: min(620px, 100%); }
.auth-logo { width: 150px; height: 90px; object-fit: contain; display: block; margin: 0 0 18px; }
.auth-card h1, .account-content h1, .admin-top h1, .legal-document h1 { margin: 6px 0 22px; color: var(--navy); font: 900 clamp(1.9rem, 3.5vw, 2.8rem)/1 var(--font-display); letter-spacing: -.04em; }
.stack-form { display: grid; gap: 14px; }
.stack-form label { display: grid; gap: 7px; font: 800 .78rem var(--font-display); color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }
.stack-form input, .stack-form select, .stack-form textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #cdd6e5; border-radius: 10px; background: #fff; color: var(--ink); font: 500 1rem var(--font-body); }
.stack-form small { text-transform: none; letter-spacing: 0; color: var(--muted); font: 500 .76rem var(--font-body); }
.text-link { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 800; }
.credential-box { display: grid; gap: 8px; margin: 18px 0; padding: 18px; border: 2px dashed var(--gold); border-radius: 14px; background: #fff9e8; }
.credential-box span { color: #6c5714; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.credential-box strong { overflow-wrap: anywhere; color: var(--navy); font: 800 1.4rem var(--font-mono); }
.account-shell { display: grid; grid-template-columns: 280px 1fr; min-height: 620px; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: 0 30px 90px rgba(10,43,102,.10); }
.account-sidebar { display: flex; flex-direction: column; gap: 12px; padding: 35px; background: var(--navy); color: #fff; }
.account-sidebar img { width: 175px; }
.account-sidebar span { margin-top: auto; overflow-wrap: anywhere; color: rgba(255,255,255,.75); }
.account-sidebar strong { color: var(--gold); font: 800 .78rem var(--font-display); letter-spacing: .12em; }
.account-content { padding: clamp(30px, 6vw, 70px); }
.account-form { max-width: 680px; }
.legal-document { width: min(860px, 100%); margin: auto; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(28px, 6vw, 70px); box-shadow: 0 28px 80px rgba(10,43,102,.08); }
.legal-document h2 { margin: 34px 0 10px; color: var(--navy); font: 850 1.4rem var(--font-display); }
.legal-document p { color: #46536a; line-height: 1.8; }
.legal-updated { padding-bottom: 20px; border-bottom: 1px solid var(--line); font: 700 .8rem var(--font-mono); }
.admin-page .inner-header, .admin-page .inner-footer { display: none; }
.admin-page .inner-main { width: 100%; margin: 0; padding: 0; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 255px minmax(0,1fr); }
.admin-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; gap: 7px; padding: 28px 20px; background: #071e48; color: #fff; }
.admin-sidebar img { width: 165px; margin: 0 6px 20px; }
.admin-sidebar > span { margin: 0 8px 14px; color: var(--gold); font: 800 .68rem var(--font-mono); letter-spacing: .13em; }
.admin-sidebar a { padding: 12px 14px; border-radius: 9px; color: rgba(255,255,255,.75); font: 750 .82rem var(--font-display); }
.admin-sidebar a.active, .admin-sidebar a:hover { background: rgba(255,255,255,.10); color: #fff; }
.admin-sidebar a:nth-last-child(2) { margin-top: auto; }
.admin-content { min-width: 0; padding: 34px; background: #f3f6fb; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.admin-top h1 { margin-bottom: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; margin-bottom: 22px; }
.stat-grid article { min-width: 0; padding: 24px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(10,43,102,.06); }
.stat-grid strong { display: block; overflow-wrap: anywhere; color: var(--navy); font: 900 clamp(2rem,5vw,3.3rem) var(--font-display); }
.stat-grid span { color: var(--muted); font-size: .82rem; }
.admin-panel { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 14px 40px rgba(10,43,102,.05); }
.admin-panel h2, .media-admin-card h2 { margin: 0 0 18px; color: var(--navy); font: 850 1.25rem var(--font-display); }
.admin-grid { display: grid; grid-template-columns: minmax(320px,.65fr) minmax(0,1.35fr); gap: 20px; align-items: start; }
.table-wrap { max-width: 100%; overflow: auto; }
table { width: 100%; border-collapse: collapse; font-size: .82rem; }
th, td { padding: 12px; border-bottom: 1px solid #e7ecf4; text-align: left; vertical-align: top; }
th { position: sticky; top: 0; background: #f8faff; color: var(--navy); font: 800 .68rem var(--font-display); text-transform: uppercase; letter-spacing: .06em; }
tr.unread td { background: #fff9e8; }
td { max-width: 320px; overflow-wrap: anywhere; color: #42506a; }
td strong { color: var(--navy); }
.inline-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.inline-actions input[type=hidden] { display: none; }
.inline-actions button { border: 1px solid #cfd8e8; border-radius: 7px; background: #fff; color: var(--navy); padding: 7px 9px; font: 750 .7rem var(--font-display); cursor: pointer; }
.inline-actions button.danger { color: #a51d2d; border-color: #efc7cd; }
.media-admin-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.media-admin-card { min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.media-admin-card > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; }
.media-admin-card code { display: block; margin: 0 0 15px; overflow-wrap: anywhere; color: var(--muted); font-size: .7rem; }
.site-flash a { text-decoration: underline; }

@media (max-width: 980px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; height: auto; flex-direction: row; flex-wrap: wrap; align-items: center; }
    .admin-sidebar img { width: 105px; margin: 0 10px 0 0; }
    .admin-sidebar > span { display: none; }
    .admin-sidebar a:nth-last-child(2) { margin-top: 0; margin-left: auto; }
    .stat-grid { grid-template-columns: repeat(2,1fr); }
    .admin-grid { grid-template-columns: 1fr; }
    .account-shell { grid-template-columns: 1fr; }
    .account-sidebar { min-height: 220px; }
}
@media (max-width: 680px) {
    .inner-header { align-items: flex-start; }
    .inner-header nav { justify-content: flex-end; gap: 10px; }
    .inner-main { width: min(100% - 20px,1180px); padding-top: 24px; }
    .admin-content { padding: 18px; }
    .admin-top { align-items: flex-start; flex-direction: column; }
    .stat-grid, .media-admin-grid { grid-template-columns: 1fr; }
    .admin-sidebar { padding: 14px; }
    .admin-sidebar a { padding: 9px; font-size: .7rem; }
}

/* =========================================================
   AG POLAND 2.0 — visual and usability refinements
   ========================================================= */
:root {
    --header-offset: 118px;
    --font-body: var(--font-text);
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

main section[id] { scroll-margin-top: var(--header-offset); }

:where(a, button, input, textarea, select):focus-visible {
    outline: 3px solid color-mix(in srgb, var(--gold) 82%, white);
    outline-offset: 3px;
}

.skip-splash .splash { display: none; }
.splash-inner { display: grid; justify-items: center; }

.topbar {
    max-height: 28px;
    overflow: hidden;
    transition: max-height .28s ease, opacity .2s ease;
}
.nav-inner,
.brand img {
    transition: min-height .28s ease, width .28s ease, height .28s ease;
}
.site-header.scrolled .topbar { max-height: 0; opacity: 0; }
.site-header.scrolled .nav-inner { min-height: 68px; }
.site-header.scrolled .brand img { width: 96px; height: 54px; }
.site-header.scrolled .nav-menu a { padding-top: 22px; padding-bottom: 21px; }
.site-header.scrolled .nav-menu a::after { bottom: 14px; }
.mobile-login-link { display: none; }

.hero-grid { grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(38px, 6vw, 76px); }
.hero h1 { font-size: clamp(3.2rem, 6.3vw, 6.75rem); max-width: 900px; }
.hero-copy > p { max-width: 720px; }
.hero-panel { padding: 24px; }
.hero-panel img { width: 150px; }
.hero-panel dl div { grid-template-columns: 76px 1fr; }
.hero-panel dd { line-height: 1.35; }

.section h2 { font-size: clamp(2.65rem, 5vw, 5.15rem); max-width: 1000px; }
.section-heading { margin-bottom: clamp(34px, 5vw, 54px); }
.value-grid article {
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.value-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(14,79,180,.26);
    background: #fff;
}

.timeline {
    gap: 0;
}
.timeline li { padding-right: 24px; }
.timeline p { max-width: 170px; }

.standards-label {
    margin: 30px 0 10px;
    color: var(--gold);
    font: 800 .72rem var(--font-mono);
    letter-spacing: .12em;
    text-transform: uppercase;
}
.standards-strip {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}
.standards-strip span { border-bottom: 0; }
.cert-grid article { min-height: 245px; }
.cert-grid span { min-width: 58px; height: 42px; font-size: .82rem; }

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}
.capability-grid article {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}
.capability-grid b {
    color: var(--red);
    font: 800 .72rem var(--font-mono);
}
.capability-grid h3 {
    margin: 10px 0 8px;
    color: var(--navy);
    font: 900 1.16rem var(--font-display);
}
.capability-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.photo-showcase { padding-top: clamp(64px, 8vw, 118px); }
.photo-showcase-heading { margin-bottom: 34px; }
.photo-showcase-heading h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font: 900 clamp(2.7rem, 5vw, 5rem)/.98 var(--font-display);
    letter-spacing: -.045em;
}
.photo-tile::after { background: linear-gradient(180deg, transparent 46%, rgba(3,20,52,.72)); }
.photo-tile figcaption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 14px;
    color: #fff;
    font: 800 .8rem var(--font-display);
    letter-spacing: .02em;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.sustainability { min-height: 690px; }
.sustainability-panel { max-width: 1060px; }

.form-card,
.compact-form { overflow: hidden; }
.form-card label:has(input[required], textarea[required])::after,
.compact-form label:has(input[required], textarea[required])::after {
    content: "•";
    color: var(--red);
    margin-left: 3px;
}
.file-drop::after,
.consent::after { content: none !important; }
.consent a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.button:disabled,
.button[aria-busy="true"] { opacity: .65; cursor: wait; transform: none; }
.form-status:not(:empty) { padding-top: 8px; font-weight: 700; }

.text-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 800;
}
.map-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.map-card .button.outline { background: rgba(255,255,255,.7); }

@media (max-width: 1120px) {
    :root { --header-offset: 84px; }
    .site-header.scrolled .nav-menu { top: 76px; }
    .nav-menu {
        max-height: calc(100vh - 138px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .mobile-login-link { display: block; color: var(--accent); font-weight: 900; }
    body.nav-open { overflow: hidden; }
}

@media (max-width: 820px) {
    :root { --header-offset: 76px; }
    .site-header.scrolled .nav-inner { min-height: 64px; }
    .site-header.scrolled .brand img { width: 82px; height: 48px; }
    .nav-toggle b { font-size: .68rem; }
    .hero {
        min-height: 100svh;
        padding: 118px 0 58px;
        background-position: 58% center;
    }
    .hero::after { height: 7px; }
    .hero h1 { font-size: clamp(3rem, 12.2vw, 4.5rem); line-height: .96; }
    .hero-copy > p { font-size: 1rem; line-height: 1.65; }
    .scroll-cue { display: none; }
    .section h2 { font-size: clamp(2.55rem, 10.8vw, 4.1rem); }
    .timeline-block { margin-top: 66px; }
    .timeline { border-top: 0; border-left: 2px solid var(--navy); margin-left: 7px; }
    .timeline li { padding: 0 0 30px 28px; min-height: 0; }
    .timeline li::before { top: 4px; left: -7px; }
    .timeline p { max-width: none; margin-bottom: 0; }
    .section-heading.compact { align-items: flex-start; flex-direction: column; gap: 12px; }
    .capability-grid { grid-template-columns: 1fr; }
    .sustainability { min-height: 620px; }
    .sustainability-panel { padding: 28px; }
    .form-intro > img { width: 180px; margin-top: 24px; }
    .form-card, .compact-form { padding: 24px; }
    .contact-grid { gap: 34px; }
}

@media (max-width: 560px) {
    .nav-actions { margin-left: auto; }
    .language-select { padding-inline: 9px; }
    .hero { background-position: 45% center; }
    .hero h1 { font-size: clamp(2.9rem, 12vw, 4rem); }
    .hero-actions { margin-top: 26px; }
    .trust-row span { width: 100%; }
    .value-grid { gap: 12px; }
    .value-grid article { padding: 22px; }
    .media-frame, .media-frame img, .fleet .media-frame { min-height: 340px; }
    .service-media { height: 220px; }
    .service-body { padding: 24px; }
    .photo-showcase-grid { grid-auto-rows: 245px; }
    .photo-tile-tall { grid-row: span 1; }
    .photo-showcase-heading h2 { font-size: 2.9rem; }
    .sustainability-points { display: grid; }
    .sustainability-points span { text-align: center; }
    .map-actions { display: grid; width: 100%; }
    .map-actions .button { width: 100%; }
    .map-placeholder { padding: 26px; }
    .map-placeholder img { width: 170px; }
    .cookie-card { padding: 22px; }
}

/* Final responsive corrections */
@media (max-width: 1120px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 820px) {
    :root { --container: min(calc(100% - 28px), 1180px); }
    .hero-copy { max-width: 100%; }
    .hero-copy > p { max-width: 38rem; }
}

@media (max-width: 560px) {
    .hero h1 { max-width: 9.5ch; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .button { width: 100%; min-height: 52px; }
}

@media (max-width: 560px) {
    .contact h2 {
        font-size: clamp(2.25rem, 10.5vw, 3.3rem);
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
    }
}


/* =========================================================
   AG POLAND COMPLETE V4 — PUBLIC EXPERIENCE REFINEMENT
   ========================================================= */
.hero-network-card {
    align-self: end;
    justify-self: end;
    width: min(100%, 350px);
    padding: 28px;
    color: #fff;
    background: linear-gradient(145deg, rgba(5, 20, 48, .90), rgba(10, 43, 102, .72));
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(18px) saturate(130%);
    overflow: hidden;
    position: relative;
}
.hero-network-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -90px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 68px rgba(255,255,255,.02);
}
.hero-network-head { display:flex; align-items:center; gap:10px; font:800 .68rem var(--font-mono); letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.72); }
.network-pulse { width:9px; height:9px; border-radius:50%; background:#68f0aa; box-shadow:0 0 0 0 rgba(104,240,170,.55); animation:networkPulse 2.2s infinite; }
@keyframes networkPulse { 70% { box-shadow:0 0 0 12px rgba(104,240,170,0); } 100% { box-shadow:0 0 0 0 rgba(104,240,170,0); } }
.hero-network-card h2 { margin:34px 0 14px; max-width:12ch; font:900 clamp(1.75rem,2.2vw,2.45rem)/1.02 var(--font-display); letter-spacing:-.04em; }
.hero-network-card > p { margin:0; color:rgba(255,255,255,.76); line-height:1.65; font-size:.94rem; }
.hero-network-services { display:grid; grid-template-columns:repeat(2,1fr); gap:8px; margin:24px 0; }
.hero-network-services span { padding:11px 12px; border:1px solid rgba(255,255,255,.14); border-radius:12px; background:rgba(255,255,255,.055); font:800 .72rem var(--font-mono); letter-spacing:.08em; text-align:center; }
.hero-network-foot { padding-top:18px; border-top:1px solid rgba(255,255,255,.14); display:grid; gap:5px; }
.hero-network-foot span { color:rgba(255,255,255,.56); font:700 .65rem var(--font-mono); text-transform:uppercase; letter-spacing:.1em; }
.hero-network-foot strong { font:800 .79rem var(--font-mono); letter-spacing:.06em; }

.operating-model { margin-top:96px; padding:44px; border-radius:32px; background:var(--navy); color:#fff; box-shadow:0 30px 80px rgba(8,38,93,.16); position:relative; overflow:hidden; }
.operating-model::before { content:""; position:absolute; inset:-40% auto auto 55%; width:520px; height:520px; border-radius:50%; border:1px solid rgba(255,255,255,.08); box-shadow:0 0 0 70px rgba(255,255,255,.025),0 0 0 140px rgba(255,255,255,.018); }
.operating-model-heading { position:relative; display:grid; grid-template-columns:minmax(250px,.8fr) minmax(280px,1.2fr); align-items:end; gap:40px; margin-bottom:42px; }
.operating-model-heading .eyebrow { grid-column:1/-1; color:#ffca55; }
.operating-model-heading h3 { margin:0; font:900 clamp(2.2rem,4.5vw,4.7rem)/.94 var(--font-display); letter-spacing:-.05em; }
.operating-model-heading p { margin:0; max-width:580px; color:rgba(255,255,255,.68); font-size:1.02rem; line-height:1.7; }
.operating-model-grid { position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.operating-step { min-height:190px; padding:22px; display:flex; flex-direction:column; border-radius:20px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.055); transition:transform .25s ease, background .25s ease, border-color .25s ease; }
.operating-step:hover { transform:translateY(-5px); background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.23); }
.operating-step > span { font:800 .7rem var(--font-mono); color:#ffca55; letter-spacing:.08em; }
.operating-step-line { width:38px; height:2px; margin:22px 0 auto; background:linear-gradient(90deg,#dc143c,#fff); }
.operating-step p { margin:24px 0 0; max-width:22ch; font:750 1rem/1.42 var(--font-display); }

.career-paths { display:grid; gap:10px; margin-top:32px; }
.career-paths article { display:grid; grid-template-columns:44px 1fr; gap:15px; align-items:center; padding:15px 16px; border-radius:16px; border:1px solid rgba(8,38,93,.12); background:rgba(255,255,255,.68); box-shadow:0 12px 36px rgba(8,38,93,.055); }
.career-paths article > span { display:grid; place-items:center; width:42px; height:42px; border-radius:12px; background:var(--navy); color:#fff; font:800 .68rem var(--font-mono); }
.career-paths article div { display:grid; gap:3px; }
.career-paths strong { color:var(--navy); font:850 .95rem var(--font-display); }
.career-paths small { color:var(--muted); line-height:1.4; }
.forms-section .form-intro > img { display:none!important; }

@media (max-width: 980px) {
    .hero-network-card { justify-self:start; width:min(100%,620px); }
    .operating-model-heading { grid-template-columns:1fr; gap:18px; }
    .operating-model-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 720px) {
    .hero-network-card { display:block; padding:22px; border-radius:22px; }
    .hero-network-card h2 { font-size:1.8rem; max-width:14ch; margin-top:26px; }
    .operating-model { margin-top:60px; padding:26px 20px; border-radius:24px; }
    .operating-model-grid { grid-template-columns:1fr; }
    .operating-step { min-height:150px; }
    .operating-model-heading h3 { font-size:2.7rem; }
}

/* =========================================================
   AG POLAND WEBSITE 4.2 — editorial, large-scale interface
   ========================================================= */
.site-v42{background:#f4f7fb;color:#0a1c36}
.site-v42 .container{width:min(1380px,calc(100% - 64px))}
.site-v42 .topbar{display:none}
.site-v42 .navbar{background:rgba(255,255,255,.94);backdrop-filter:blur(22px);border-bottom:1px solid rgba(7,32,72,.08)}
.site-v42 .nav-inner{min-height:92px}
.site-v42 .brand img{width:154px;height:auto}
.site-v42 .nav-menu{gap:clamp(14px,1.5vw,28px)}
.site-v42 .nav-menu a{font-size:.79rem;font-weight:800;letter-spacing:.01em}
.site-v42 .login-link{min-height:46px;padding:0 22px;border-radius:13px;background:#0b367a;color:#fff}
.site-v42 .language-select{height:46px;border-radius:13px;background:#eef3f9}
.site-v42 .button{min-height:54px;padding:0 26px;border-radius:15px;font-size:.85rem;font-weight:850}
.site-v42 .button.light{background:#fff;color:#0a326f;border:1px solid rgba(255,255,255,.65)}
.site-v42 .eyebrow{font-size:.72rem;letter-spacing:.18em}

.v42-hero{position:relative;min-height:clamp(720px,86vh,940px);display:flex;align-items:flex-end;overflow:hidden;background:#06162f;color:#fff}
.v42-hero-media,.v42-hero-slide,.v42-hero-shade{position:absolute;inset:0}
.v42-hero-slide{opacity:0;transition:opacity .85s ease,transform 8s ease;transform:scale(1.035)}
.v42-hero-slide.is-active{opacity:1;transform:scale(1)}
.v42-hero-slide img{width:100%;height:100%;object-fit:cover;object-position:center}
.v42-hero-shade{background:linear-gradient(90deg,rgba(3,15,38,.93) 0%,rgba(4,20,47,.74) 42%,rgba(4,20,47,.2) 74%),linear-gradient(0deg,rgba(3,15,36,.78),transparent 46%)}
.v42-hero-content{position:relative;z-index:2;padding-top:190px;padding-bottom:clamp(48px,7vh,84px);display:flex;flex-direction:column;justify-content:flex-end;min-height:inherit}
.v42-hero-copy{max-width:930px}
.v42-hero-copy .eyebrow{color:#82dfff}
.v42-hero-copy h1{font:900 clamp(4.2rem,8.4vw,9rem)/.86 Archivo,Manrope,sans-serif;letter-spacing:-.073em;max-width:10.5ch;margin:24px 0 28px;text-wrap:balance}
.v42-hero-copy p{max-width:760px;font-size:clamp(1.05rem,1.5vw,1.35rem);line-height:1.72;color:#dbe8f8;margin:0}
.v42-hero-copy .hero-actions{margin-top:34px;display:flex;gap:12px;flex-wrap:wrap}
.v42-hero-bottom{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-top:auto;padding-top:54px}
.v42-trust{display:flex;gap:12px;flex-wrap:wrap}
.v42-trust span{padding:11px 15px;border:1px solid rgba(255,255,255,.19);border-radius:999px;background:rgba(255,255,255,.08);backdrop-filter:blur(12px);font-size:.75rem;font-weight:750}
.v42-slider-controls{display:flex;align-items:center;gap:12px}
.v42-slider-controls button{width:50px;height:50px;border-radius:50%;border:1px solid rgba(255,255,255,.28);background:rgba(5,26,60,.35);color:#fff;font-size:1.1rem;cursor:pointer;transition:.2s}
.v42-slider-controls button:hover{background:#fff;color:#0b3474;transform:translateY(-2px)}
.v42-slider-controls [data-slider-dots]{display:flex;gap:7px}
.v42-slider-controls [data-slider-dots] button{width:28px;height:4px;border:0;border-radius:999px;padding:0;background:rgba(255,255,255,.35)}
.v42-slider-controls [data-slider-dots] button.is-active{background:#fff;width:54px}

.v42-section{padding:clamp(90px,10vw,150px) 0;position:relative}
.v42-heading{display:grid;gap:20px;max-width:1080px;margin-bottom:clamp(42px,6vw,76px)}
.v42-heading h2,.v42-fleet-copy h2,.v42-form-visual h2,.v42-contact-copy h2{font:900 clamp(3.1rem,6.2vw,6.8rem)/.9 Archivo,Manrope,sans-serif;letter-spacing:-.065em;margin:0;color:#0a1d39;text-wrap:balance}
.v42-heading>p{font-size:clamp(1.05rem,1.5vw,1.3rem);line-height:1.75;color:#63738b;max-width:850px;margin:0}
.v42-about{background:#fff}
.v42-about-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr);gap:clamp(28px,4vw,60px);align-items:stretch}
.v42-feature-image{min-height:620px;margin:0;border-radius:32px;overflow:hidden;position:relative;box-shadow:0 32px 85px rgba(8,35,76,.13)}
.v42-feature-image img{width:100%;height:100%;object-fit:cover}
.v42-feature-image figcaption{position:absolute;left:24px;bottom:24px;padding:12px 16px;border-radius:12px;background:rgba(4,20,46,.8);color:#fff;backdrop-filter:blur(10px);font-size:.78rem}
.v42-values{display:grid;gap:16px}
.v42-values article{display:grid;grid-template-columns:auto 1fr;gap:22px;align-items:start;padding:30px;border-radius:24px;background:#f5f8fc;border:1px solid #e1e8f1}
.v42-values article b{font:800 .75rem JetBrains Mono,monospace;color:#1463d8;padding-top:6px}
.v42-values h3{font-size:1.55rem;margin:0 0 10px}
.v42-values p{font-size:1rem;line-height:1.7;color:#66758b;margin:0}

.v42-services{background:#eef3f9}
.v42-service-slider{position:relative}
.v42-service-stage{position:relative;min-height:690px;border-radius:34px;overflow:hidden;background:#fff;box-shadow:0 35px 90px rgba(7,31,69,.12)}
.v42-service-slide{position:absolute;inset:0;display:grid;grid-template-columns:minmax(0,1.3fr) minmax(390px,.7fr);opacity:0;visibility:hidden;transform:translateX(24px);transition:.55s ease}
.v42-service-slide.is-active{opacity:1;visibility:visible;transform:none}
.v42-service-image{min-height:690px;overflow:hidden}
.v42-service-image img{width:100%;height:100%;object-fit:cover;transition:transform 8s ease}
.v42-service-slide.is-active .v42-service-image img{transform:scale(1.035)}
.v42-service-copy{padding:clamp(44px,6vw,84px);display:flex;flex-direction:column;justify-content:center;background:#fff}
.v42-service-copy>span{font:800 .72rem JetBrains Mono,monospace;color:#1768df}
.v42-service-copy h3{font:900 clamp(2.8rem,4.7vw,5rem)/.92 Archivo,Manrope,sans-serif;letter-spacing:-.055em;margin:18px 0 22px}
.v42-service-copy p{font-size:1.08rem;line-height:1.75;color:#63738a}
.v42-service-copy ul{display:grid;gap:13px;padding:0;margin:26px 0 0;list-style:none}
.v42-service-copy li{font-weight:800;padding-left:25px;position:relative}
.v42-service-copy li:before{content:"";position:absolute;left:0;top:.5em;width:10px;height:10px;border-radius:50%;background:#1d70ed;box-shadow:0 0 0 6px #eaf2ff}
.v42-service-nav{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;margin-top:16px}
.v42-service-nav button{min-height:86px;padding:16px;text-align:left;border:1px solid #d9e3ef;border-radius:17px;background:rgba(255,255,255,.72);cursor:pointer;color:#31445f;transition:.2s;display:grid;grid-template-columns:auto 1fr;align-items:center;gap:12px}
.v42-service-nav button b{font:800 .65rem JetBrains Mono,monospace;color:#7d8ba0}
.v42-service-nav button span{font-weight:850}
.v42-service-nav button.is-active{background:#0a3478;color:#fff;border-color:#0a3478;box-shadow:0 16px 34px rgba(10,52,120,.22);transform:translateY(-3px)}
.v42-service-nav button.is-active b{color:#80ddff}
.v42-service-slider>.v42-slider-controls{display:none}

.v42-workflow{background:#fff}
.v42-workflow-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #dce4ed;border-left:1px solid #dce4ed}
.v42-workflow-grid article{min-height:250px;padding:34px;border-right:1px solid #dce4ed;border-bottom:1px solid #dce4ed;display:flex;flex-direction:column;justify-content:space-between;background:#fff;transition:.25s}
.v42-workflow-grid article:hover{background:#0b3478;color:#fff;transform:translateY(-4px);box-shadow:0 24px 55px rgba(8,44,101,.18)}
.v42-workflow-grid span{font:800 .75rem JetBrains Mono,monospace;color:#1b6dde}
.v42-workflow-grid article:hover span{color:#82dfff}
.v42-workflow-grid p{font:800 clamp(1.25rem,1.9vw,1.75rem)/1.25 Archivo,Manrope,sans-serif;margin:0;max-width:18ch}

.v42-fleet{background:#eaf0f7}
.v42-fleet-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(400px,.8fr);gap:clamp(36px,5vw,76px);align-items:center}
.v42-fleet-gallery{position:relative;min-height:760px;border-radius:34px;overflow:hidden;box-shadow:0 35px 90px rgba(6,29,65,.18)}
.v42-fleet-slides,.v42-fleet-slides figure{position:absolute;inset:0;margin:0}
.v42-fleet-slides figure{opacity:0;transition:opacity .65s ease}
.v42-fleet-slides figure.is-active{opacity:1}
.v42-fleet-slides img{width:100%;height:100%;object-fit:cover}
.v42-fleet-slides figcaption{position:absolute;left:24px;top:24px;padding:11px 15px;border-radius:12px;background:rgba(4,19,43,.78);color:#fff;font-size:.75rem;backdrop-filter:blur(10px)}
.v42-fleet-gallery>.v42-slider-controls{position:absolute;right:22px;bottom:22px;z-index:4}
.v42-fleet-copy h2{margin:18px 0 40px}
.v42-capabilities{display:grid;gap:8px}
.v42-capabilities article{display:grid;grid-template-columns:46px 1fr;gap:18px;padding:22px 0;border-top:1px solid #cfd9e5}
.v42-capabilities b{font:800 .67rem JetBrains Mono,monospace;color:#1768df;padding-top:5px}
.v42-capabilities h3{font-size:1.35rem;margin:0 0 7px}
.v42-capabilities p{color:#66768c;line-height:1.65;margin:0}

.v42-standards{background:linear-gradient(145deg,#06162f,#0b3478);color:#fff;overflow:hidden}
.v42-heading.light h2{color:#fff}.v42-heading.light .eyebrow{color:#80ddff}
.v42-standard-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.v42-standard-grid article{min-height:330px;padding:34px;border:1px solid rgba(255,255,255,.13);border-radius:26px;background:rgba(255,255,255,.06);backdrop-filter:blur(16px)}
.v42-standard-grid span{font:800 .7rem JetBrains Mono,monospace;color:#80ddff}
.v42-standard-grid h3{font-size:1.65rem;margin:70px 0 15px}
.v42-standard-grid p{color:#c4d4e9;line-height:1.75}
.v42-standard-strip{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.v42-standard-strip span{padding:13px 17px;border-radius:999px;background:#fff;color:#0a3478;font-weight:900;font-size:.75rem}

.v42-sustainability{min-height:720px;display:flex;align-items:center;background-image:linear-gradient(90deg,rgba(3,17,40,.9),rgba(3,17,40,.28)),var(--bg);background-size:cover;background-position:center;color:#fff}
.v42-sustain-copy{max-width:820px;padding:90px 0}
.v42-sustain-copy .eyebrow{color:#8eeecf}
.v42-sustain-copy h2{font:900 clamp(3.5rem,7vw,7.4rem)/.88 Archivo,Manrope,sans-serif;letter-spacing:-.065em;margin:22px 0 28px;max-width:10ch}
.v42-sustain-copy p{font-size:1.2rem;line-height:1.75;color:#d8e6e3;max-width:690px}

.v42-forms{background:#fff}
.v42-partners{background:#eef3f9}
.v42-form-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(460px,.95fr);gap:clamp(30px,4vw,60px);align-items:stretch}
.v42-form-layout.reverse .v42-form-visual{order:2}
.v42-form-visual{position:relative;min-height:800px;border-radius:32px;overflow:hidden;color:#fff;box-shadow:0 30px 80px rgba(7,30,68,.16)}
.v42-form-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(2,16,39,.94),rgba(2,16,39,.08) 66%)}
.v42-form-visual>img{width:100%;height:100%;object-fit:cover}
.v42-form-visual>div{position:absolute;z-index:2;left:clamp(28px,5vw,60px);right:clamp(28px,5vw,60px);bottom:clamp(28px,5vw,60px)}
.v42-form-visual h2{color:#fff;font-size:clamp(3rem,5vw,5.4rem);margin:18px 0 20px}
.v42-form-visual>div>p{font-size:1.07rem;line-height:1.7;color:#d4e1f1;max-width:650px}
.v42-career-paths{display:grid;gap:10px;margin-top:28px}
.v42-career-paths article{display:grid;grid-template-columns:40px 1fr;gap:12px;padding-top:12px;border-top:1px solid rgba(255,255,255,.19)}
.v42-career-paths b{color:#80ddff;font:800 .65rem JetBrains Mono,monospace}
.v42-career-paths span{display:grid;gap:3px}.v42-career-paths strong{font-size:.95rem}.v42-career-paths small{color:#bcd0e7}
.v42-form-card{align-self:center;padding:clamp(30px,4vw,54px);border-radius:28px;background:#fff;border:1px solid #dce4ef;box-shadow:0 28px 75px rgba(7,31,70,.1);display:grid;gap:18px}
.v42-form-card label,.v42-contact-card label{font-size:.75rem;font-weight:800;color:#314861;display:grid;gap:8px}
.v42-form-card input,.v42-form-card textarea,.v42-contact-card input,.v42-contact-card textarea{width:100%;min-height:54px;border:1px solid #d5dfeb;border-radius:14px;background:#f8fafc;padding:13px 15px;color:#10233f}
.v42-form-card textarea,.v42-contact-card textarea{min-height:130px;resize:vertical}
.v42-form-card input:focus,.v42-form-card textarea:focus,.v42-contact-card input:focus,.v42-contact-card textarea:focus{outline:0;background:#fff;border-color:#6da4ff;box-shadow:0 0 0 4px rgba(23,105,255,.1)}
.v42-form-card .field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.v42-form-card .consent,.v42-contact-card .consent{display:flex;align-items:flex-start;gap:10px;line-height:1.5;font-size:.68rem;color:#66768d}
.v42-form-card .consent input,.v42-contact-card .consent input{width:18px;min-height:18px;padding:0;flex:0 0 auto}
.v42-form-card .file-drop{min-height:96px;border:1px dashed #aec0d7;border-radius:16px;padding:18px;background:#f7faff;display:flex;justify-content:center;align-items:center;text-align:center;position:relative}
.v42-form-card .file-drop input{position:absolute;inset:0;opacity:0;cursor:pointer}

.v42-contact{background:#081e45;color:#fff}
.v42-contact-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(430px,.75fr);gap:clamp(44px,7vw,100px);align-items:center}
.v42-contact-copy h2{color:#fff;margin:20px 0 38px}
.v42-contact-copy .eyebrow{color:#80ddff}
.v42-contact-data{font-size:1.05rem;line-height:1.75;color:#c8d8ec}.v42-contact-data strong{color:#fff}.v42-contact-data a:not(.button){color:#fff}
.v42-contact-card{padding:clamp(30px,4vw,50px);border-radius:28px;background:#fff;color:#10233f}
.v42-contact-card form{display:grid;gap:18px}

@media(max-width:1120px){
 .site-v42 .container{width:min(100% - 36px,1380px)}
 .v42-about-grid,.v42-fleet-grid,.v42-form-layout,.v42-contact-grid{grid-template-columns:1fr}
 .v42-feature-image{min-height:540px}.v42-values{grid-template-columns:repeat(3,1fr)}.v42-values article{grid-template-columns:1fr}
 .v42-service-stage{min-height:610px}.v42-service-slide{grid-template-columns:1fr 1fr}.v42-service-image{min-height:610px}.v42-service-copy{padding:44px}
 .v42-fleet-gallery{min-height:620px}.v42-form-visual{min-height:680px}.v42-form-layout.reverse .v42-form-visual{order:0}
}
@media(max-width:820px){
 .site-v42 .container{width:min(100% - 26px,1380px)}
 .site-v42 .nav-inner{min-height:76px}.site-v42 .brand img{width:128px}
 .v42-hero{min-height:760px}.v42-hero-content{padding-top:130px;padding-bottom:34px}.v42-hero-copy h1{font-size:clamp(3.5rem,13vw,6.2rem)}.v42-hero-bottom{display:grid;margin-top:48px}.v42-trust{display:none}
 .v42-heading h2,.v42-fleet-copy h2,.v42-form-visual h2,.v42-contact-copy h2{font-size:clamp(2.7rem,11vw,5rem)}
 .v42-about-grid{gap:20px}.v42-feature-image{min-height:450px;border-radius:24px}.v42-values{grid-template-columns:1fr}.v42-values article{padding:24px}
 .v42-service-stage{min-height:790px;border-radius:24px}.v42-service-slide{grid-template-columns:1fr;grid-template-rows:360px 1fr}.v42-service-image{min-height:360px}.v42-service-copy{padding:28px}.v42-service-copy h3{font-size:2.8rem}.v42-service-nav{display:none}.v42-service-slider>.v42-slider-controls{display:flex;justify-content:center;margin-top:18px}.v42-service-slider>.v42-slider-controls button{background:#0a3478}.v42-service-slider>.v42-slider-controls [data-slider-dots] button{background:#b9c7d8}.v42-service-slider>.v42-slider-controls [data-slider-dots] button.is-active{background:#0a3478}
 .v42-workflow-grid{grid-template-columns:1fr 1fr}.v42-workflow-grid article{min-height:210px;padding:25px}
 .v42-fleet-gallery{min-height:520px;border-radius:24px}.v42-standard-grid{grid-template-columns:1fr}.v42-standard-grid article{min-height:240px}.v42-standard-grid h3{margin-top:40px}
 .v42-sustainability{min-height:620px}.v42-form-visual{min-height:620px;border-radius:24px}.v42-form-card,.v42-contact-card{padding:26px;border-radius:22px}.v42-form-card .field-row{grid-template-columns:1fr}
}
@media(max-width:520px){
 .site-v42 .container{width:min(100% - 20px,1380px)}
 .v42-section{padding:76px 0}.v42-hero{min-height:710px}.v42-hero-copy h1{font-size:3.55rem}.v42-hero-copy p{font-size:.98rem}.v42-hero-copy .hero-actions{display:grid}.v42-hero-copy .button{width:100%}.v42-slider-controls button{width:44px;height:44px}
 .v42-heading{margin-bottom:34px}.v42-heading h2,.v42-fleet-copy h2,.v42-form-visual h2,.v42-contact-copy h2{font-size:2.75rem}
 .v42-feature-image{min-height:350px}.v42-service-stage{min-height:740px}.v42-service-slide{grid-template-rows:300px 1fr}.v42-service-image{min-height:300px}.v42-service-copy{padding:23px}.v42-service-copy h3{font-size:2.35rem}.v42-service-copy p{font-size:.94rem}
 .v42-workflow-grid{grid-template-columns:1fr}.v42-workflow-grid article{min-height:170px}.v42-fleet-gallery{min-height:430px}.v42-form-visual{min-height:580px}.v42-sustain-copy h2{font-size:3.25rem}.v42-footer{}
}
