:root {
    --navy: #10182b;
    --navy-2: #18233b;
    --blue: #194574;
    --coral: #f65358;
    --coral-dark: #df3f45;
    --ink: #182033;
    --muted: #647084;
    --line: #e1e6ee;
    --soft: #f5f7fb;
    --white: #fff;
    --shadow-sm: 0 8px 24px rgba(16, 24, 43, .07);
    --shadow: 0 24px 70px rgba(16, 24, 43, .12);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shell: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fbfcfe;
    font-family: Inter, "Avenir Next", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
main { overflow: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1.25rem; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.22rem; letter-spacing: -.025em; }
address { font-style: normal; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); }
.section { padding: clamp(80px, 9vw, 132px) 0; }
.section--tight { padding-block: clamp(56px, 7vw, 88px); }
.section--soft { background: linear-gradient(180deg, #f7f9fc, #f2f5fa); }
.section--navy { color: var(--white); background: linear-gradient(145deg, var(--navy), #162644); }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 10px 16px; background: var(--coral); color: var(--white); }
.skip-link:focus { top: 16px; }
.eyebrow {
    margin: 0 0 16px;
    color: var(--coral);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .17em;
    line-height: 1.4;
    text-transform: uppercase;
}
.eyebrow--light { color: #ff8a8a; }
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); line-height: 1.75; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 2px solid var(--coral);
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    font-weight: 800;
    line-height: 1.25;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(246, 83, 88, .22);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--coral-dark); border-color: var(--coral-dark); box-shadow: 0 14px 32px rgba(246, 83, 88, .3); }
.button--outline { background: transparent; color: var(--coral); box-shadow: none; }
.button--outline:hover, .button--outline:focus-visible { color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--coral); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: var(--white); }

.contact-strip { position: relative; z-index: 40; color: rgba(255,255,255,.84); background: #0b1221; }
.contact-strip__inner { min-height: 44px; display: flex; justify-content: flex-end; align-items: center; gap: 34px; font-size: .87rem; font-weight: 700; }
.contact-strip a { transition: color .2s ease; }
.contact-strip a:hover { color: #ff8a8a; }
.contact-strip span span, .contact-strip a span { color: var(--coral); margin-right: 7px; }

.site-header { position: sticky; top: 0; z-index: 35; border-bottom: 1px solid rgba(225,230,238,.9); background: rgba(255,255,255,.88); box-shadow: none; backdrop-filter: blur(18px) saturate(150%); transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 12px 34px rgba(16,24,43,.08); }
.site-header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 40px; transition: min-height .25s ease; }
.site-header.is-scrolled .site-header__inner { min-height: 74px; }
.brand { flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .92rem; font-weight: 750; }
.main-nav > a:not(.button), .nav-group > a { position: relative; padding-block: 30px; }
.main-nav > a:not(.button)::after, .nav-group > a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 21px; height: 3px; border-radius: 999px;
    background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav .is-active { color: var(--coral); }
.site-header.is-scrolled .main-nav > a:not(.button), .site-header.is-scrolled .nav-group > a { padding-block: 25px; }
.site-header.is-scrolled .main-nav > a:not(.button)::after, .site-header.is-scrolled .nav-group > a::after { bottom: 16px; }
.button--nav { min-height: 44px; padding-inline: 21px; }
.nav-group { position: relative; display: flex; align-items: center; gap: 5px; }
.nav-group > button { border: 0; padding: 10px 0; background: transparent; font-size: 1rem; cursor: pointer; }
.nav-dropdown {
    position: absolute; top: calc(100% - 8px); left: -20px; width: 295px; padding: 10px;
    border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.98); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: .18s ease;
}
.nav-dropdown--wide { width: 330px; }
.nav-dropdown--dispatch { width: 410px; max-height: calc(100vh - 130px); overflow-y: auto; }
.nav-dropdown--tele { width: 370px; max-height: calc(100vh - 130px); overflow-y: auto; }
.nav-dropdown--digital { left: auto; right: -18px; width: 330px; }
.nav-dropdown__label { display: block; padding: 10px 12px 6px; color: var(--coral); font-size: .68rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.nav-dropdown__label:not(:first-child) { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.nav-dropdown a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--ink); font-size: .88rem; font-weight: 650; }
    .nav-dropdown a:hover { color: var(--coral); background: var(--soft); }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown, .nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 6px auto; background: var(--navy); transition: .2s ease; }

.home-hero { position: relative; min-height: min(760px, calc(100svh - 128px)); display: grid; align-items: stretch; overflow: hidden; color: var(--white); background: var(--navy); }
.home-hero__image {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(6,13,26,.98) 0%, rgba(6,13,26,.89) 34%, rgba(6,13,26,.48) 58%, rgba(6,13,26,.08) 88%), url('../images/home-operations-hero.jpg') 58% center / cover no-repeat;
    transform: scale(1.008);
}
.home-hero__image::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 77% 34%, rgba(246,83,88,.09), transparent 27%), linear-gradient(180deg, rgba(4,9,18,.06) 42%, rgba(4,9,18,.62)); }
.home-hero::after { content: ""; position: absolute; z-index: 1; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--coral), rgba(246,83,88,.2) 48%, transparent 78%); }
.home-hero__content { position: relative; z-index: 2; display: grid; align-items: center; padding-block: clamp(90px, 11vw, 132px) 74px; }
.home-hero__copy { max-width: 750px; }
.home-hero h1 { max-width: 750px; font-size: clamp(3.3rem, 6.15vw, 5.8rem); }
.home-hero__copy > p:not(.eyebrow) { max-width: 680px; margin-top: 25px; color: rgba(255,255,255,.82); font-size: clamp(1.08rem, 1.8vw, 1.28rem); line-height: 1.72; }
.home-hero__signals { max-width: 720px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 48px; }
.home-hero__signals > div { min-width: 0; padding: 2px 24px; border-left: 1px solid rgba(255,255,255,.22); }
.home-hero__signals > div:first-child { padding-left: 0; border-left: 0; }
.home-hero__signals strong, .home-hero__signals span { display: block; }
.home-hero__signals strong { margin-bottom: 4px; font-size: .94rem; }
.home-hero__signals span { color: rgba(255,255,255,.6); font-size: .78rem; line-height: 1.45; }

.home-proof { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 18px 45px rgba(16,24,43,.055); }
.home-proof__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-proof__grid > div { min-height: 174px; padding: 30px 27px; border-right: 1px solid var(--line); }
.home-proof__grid > div:last-child { border-right: 0; }
.home-proof__grid span { display: block; margin-bottom: 19px; color: var(--coral); font-size: .71rem; font-weight: 850; letter-spacing: .16em; }
.home-proof__grid strong { display: block; margin-bottom: 8px; font-size: 1.02rem; line-height: 1.35; }
.home-proof__grid p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.home-flow { position: relative; background: radial-gradient(circle at 92% 8%, rgba(246,83,88,.055), transparent 24%), #fbfcfe; }
.home-flow__heading { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(50px, 8vw, 110px); align-items: end; margin-bottom: 58px; }
.home-flow__heading h2 { max-width: 570px; }
.home-flow__intro .lead { margin-bottom: 20px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.home-flow__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); list-style: none; }
.home-flow__steps li { min-height: 280px; padding: 34px 28px 38px; border-right: 1px solid var(--line); }
.home-flow__steps li:last-child { border-right: 0; }
.home-flow__steps li > span { display: block; margin-bottom: 58px; color: var(--coral); font-size: .74rem; font-weight: 850; letter-spacing: .16em; }
.home-flow__steps h3 { margin-bottom: 11px; font-size: 1.42rem; }
.home-flow__steps p { margin: 0; color: var(--muted); font-size: .93rem; }

.home-routes { position: relative; overflow: hidden; margin-top: 64px; padding: clamp(38px, 5vw, 62px); border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, #10182b, #17365c); box-shadow: var(--shadow); }
.home-routes::after { content: ""; position: absolute; width: 370px; height: 370px; right: -160px; top: -240px; border: 78px solid rgba(246,83,88,.12); border-radius: 50%; }
.home-routes__heading { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(45px, 7vw, 90px); align-items: end; margin-bottom: 38px; }
.home-routes__heading h2 { max-width: 610px; font-size: clamp(2rem, 3.8vw, 3.35rem); }
.home-routes__heading > p { margin: 0; color: rgba(255,255,255,.68); font-size: 1.04rem; }
.home-route-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.home-route-card { display: flex; min-height: 320px; flex-direction: column; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.055); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.home-route-card:hover, .home-route-card:focus-visible { transform: translateY(-5px); border-color: rgba(255,146,149,.52); background: rgba(255,255,255,.09); }
.home-route-card__label { display: block; margin-bottom: 50px; color: #ff999c; font-size: .69rem; font-weight: 850; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.home-route-card h3 { margin-bottom: 14px; color: var(--white); font-size: 1.42rem; }
.home-route-card p { color: rgba(255,255,255,.67); font-size: .92rem; }
.home-route-card strong { margin-top: auto; color: #ff999c; font-size: .9rem; }
.home-route-card strong span { display: inline-block; margin-left: 4px; transition: transform .2s ease; }
.home-route-card:hover strong span { transform: translateX(4px); }

.section-heading { max-width: 780px; margin: 0 auto 58px; text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading h2::after { content: ""; display: block; width: 44px; height: 4px; margin: 24px auto 0; border-radius: 999px; background: var(--coral); }
.section-heading--left h2::after { margin-left: 0; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.12rem; }

.cta-band { position: relative; display: grid; align-items: center; overflow: hidden; color: var(--white); background: linear-gradient(118deg, #173f6d, #102039); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 15%, rgba(246,83,88,.18), transparent 26%), radial-gradient(circle at 88% 86%, rgba(71,133,199,.22), transparent 31%); }
.cta-band::after { content: ""; position: absolute; width: 360px; height: 360px; right: -150px; top: -230px; border: 72px solid rgba(255,255,255,.055); border-radius: 50%; }
.cta-band__content { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(45px, 8vw, 110px); align-items: end; padding-block: clamp(72px, 8vw, 105px); }
.cta-band h2 { max-width: 780px; }
.cta-band h2 span { color: var(--coral); }
.cta-band p:not(.eyebrow) { max-width: 700px; margin: 22px 0 0; color: rgba(255,255,255,.76); }
.cta-band__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

.services-home { padding-bottom: 70px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.service-grid--dispatch { margin-top: 74px; }
.service-category + .service-category { margin-top: 74px; }
.service-category__heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; align-items: end; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.service-category__heading h3 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
.service-category__heading p { max-width: 690px; margin: 0; color: var(--muted); }
.service-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { display: flex; flex-direction: column; align-items: flex-start; min-height: 330px; padding: 29px 26px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(246,83,88,.4); box-shadow: var(--shadow); }
.service-card--bordered { border: 1px solid var(--line); }
.service-card--bordered:hover { border-color: rgba(246,83,88,.4); }
.service-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 17px; color: var(--coral); background: linear-gradient(145deg, rgba(246,83,88,.13), rgba(246,83,88,.05)); }
.service-card__icon svg { width: 27px; height: 27px; }
.service-card__icon--image { background: transparent; border-radius: 0; }
.service-card__icon--image img { width: 52px; height: 52px; object-fit: contain; }
.service-card h3 { margin-bottom: 14px; color: var(--ink); font-size: 1.3rem; }
.service-card p { color: var(--muted); font-size: .98rem; }
.service-card .text-link { margin-top: auto; }
.section-action { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 42px; }

.news-home { background: var(--soft); }
.news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-card > a { display: block; overflow: hidden; aspect-ratio: 16 / 8; }
.news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover img { transform: scale(1.025); }
.news-card__body { padding: 30px; }
.news-card__body .meta { margin-bottom: 10px; color: var(--coral); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.news-card__body h2, .news-card__body h3 { margin-bottom: 14px; font-size: 1.55rem; }
.news-card__body h2 a:hover, .news-card__body h3 a:hover { color: var(--coral); }
.news-card__body > p:not(.meta) { color: var(--muted); }
.news-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); }
.news-card--featured > a { height: 100%; aspect-ratio: auto; }
.news-card--featured .news-card__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 60px); }

.page-hero, .article-hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy), #17294a); }
.page-hero::before, .article-hero::before { content: ""; position: absolute; inset: 0; opacity: .3; background: radial-gradient(circle at 78% 35%, rgba(246,83,88,.78), transparent 27%), radial-gradient(circle at 68% 110%, rgba(54,113,175,.72), transparent 35%); }
.page-hero::after, .article-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--coral), transparent 45%); }
.page-hero__inner { position: relative; z-index: 1; max-width: 900px; padding-block: clamp(78px, 10vw, 130px); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.page-hero__inner > p:last-child { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.8); font-size: 1.2rem; }
.page-hero--tele {
    min-height: min(700px, calc(100vh - 128px));
    display: grid;
    align-items: end;
    background: var(--navy) url('../images/telesecretariaat-hero.jpg') 68% center / cover no-repeat;
}
.page-hero--tele::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(7,15,30,.97) 0%, rgba(7,15,30,.87) 45%, rgba(7,15,30,.18) 82%), linear-gradient(180deg, rgba(7,15,30,.06), rgba(7,15,30,.5));
}
.page-hero--tele .page-hero__inner { max-width: 860px; padding-block: clamp(100px, 13vw, 160px) 88px; }
.page-hero--tele h1 { max-width: 830px; font-size: clamp(3.25rem, 6.4vw, 5.9rem); }

.page-hero--services-detail {
    min-height: min(690px, calc(100vh - 128px));
    display: grid;
    align-items: end;
    background: var(--navy) url('../images/cta-team.jpg') 62% center / cover no-repeat;
}
.page-hero--services-detail::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(7,15,30,.98) 0%, rgba(7,15,30,.88) 47%, rgba(7,15,30,.22) 84%), linear-gradient(180deg, rgba(7,15,30,.04), rgba(7,15,30,.58));
}
.page-hero--services-detail .page-hero__inner { max-width: 910px; padding-block: clamp(100px, 13vw, 155px) 84px; }
.page-hero--services-detail h1 { max-width: 880px; font-size: clamp(3.2rem, 6.2vw, 5.8rem); }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.service-detail-card {
    position: relative; display: flex; min-height: 500px; flex-direction: column; overflow: hidden; padding: clamp(30px, 4vw, 46px);
    border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-detail-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -118px; top: -120px; border-radius: 50%; background: rgba(246,83,88,.07); }
.service-detail-card:hover { transform: translateY(-5px); border-color: rgba(246,83,88,.35); box-shadow: var(--shadow); }
.service-detail-card__main, .service-detail-card__detail { position: relative; z-index: 1; }
.service-detail-card__number { display: block; margin-bottom: 42px; color: var(--coral); font-size: .78rem; font-weight: 850; letter-spacing: .16em; }
.service-detail-card h3 { margin-bottom: 16px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.service-detail-card__main p { color: var(--muted); font-size: 1.04rem; }
.service-detail-card__detail { display: flex; flex: 1; flex-direction: column; }
.service-detail-card .check-list { margin: 16px 0 30px; color: var(--muted); }
.service-detail-card .text-link { margin-top: auto; }
.service-detail-card--wide { grid-column: 1 / -1; min-height: 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 7vw, 90px); color: var(--white); border-color: transparent; background: linear-gradient(135deg, var(--navy), #19385f); }
.service-detail-card--wide::after { width: 330px; height: 330px; right: -145px; top: -195px; background: rgba(246,83,88,.18); }
.service-detail-card--wide .service-detail-card__number { color: #ff9295; }
.service-detail-card--wide .service-detail-card__main p, .service-detail-card--wide .check-list { color: rgba(255,255,255,.75); }
.service-detail-card--wide .text-link { color: #ff9295; }

.service-choice-grid .task-card { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.service-choice-grid .task-card:hover { transform: translateY(-4px); border-color: rgba(246,83,88,.4); box-shadow: var(--shadow); }
.service-choice-grid .task-card strong { display: inline-block; margin-top: 12px; color: var(--coral); font-size: .9rem; }
.services-sector-grid article { display: flex; flex-direction: column; }
.services-sector-grid article .text-link { margin-top: 22px; }
.services-process-grid article { min-height: 270px; }

.tele-intro__grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(55px, 8vw, 110px); align-items: center; }
.tele-intro__copy h2 { margin-bottom: 25px; }
.tele-intro__copy > p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.tele-intro__copy > .lead { color: var(--ink); }
.tele-highlight { position: relative; overflow: hidden; padding: clamp(32px, 4vw, 48px); border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, #12213a, #17385f); box-shadow: var(--shadow); }
.tele-highlight::after { content: ""; position: absolute; width: 260px; height: 260px; right: -130px; top: -145px; border-radius: 50%; background: rgba(246,83,88,.2); }
.tele-highlight > * { position: relative; z-index: 1; }
.tele-highlight h2 { margin-bottom: 30px; font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
.tele-highlight dl { display: grid; gap: 0; margin: 0; }
.tele-highlight dl div { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.14); }
.tele-highlight dt { color: #ff9295; font-weight: 850; }
.tele-highlight dd { margin: 4px 0 0; color: rgba(255,255,255,.72); }
.page-hero--dispatch { background: linear-gradient(115deg, rgba(23,26,42,.98), rgba(23,63,114,.78)), url('../images/home-news-legal.jpg') center / cover no-repeat; }

.page-hero--dispatch-service {
    min-height: min(670px, calc(100vh - 128px));
    display: grid;
    align-items: end;
    background-color: var(--navy);
    background-position: 68% center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-hero--courier { background-image: url('../images/home-news-legal.jpg'); }
.page-hero--paramedical { background-image: url('../images/nursing.jpg'); }
.page-hero--taxi { background-image: url('../images/taxi.jpg'); }
.page-hero--property { background-image: url('../images/property-emergency-hero.jpg'); background-position: 64% center; }
.page-hero--it-emergency { background-image: url('../images/it-emergency-hero.jpg'); background-position: 64% center; }
.page-hero--technical-maintenance { background-image: url('../images/technical-maintenance-hero.jpg'); background-position: 64% center; }
.page-hero--security-access { background-image: url('../images/security-access-dispatch-hero.jpg'); background-position: 64% center; }
.page-hero--cold-chain-dispatch { background-image: url('../images/cold-chain-dispatch-hero.jpg'); background-position: 62% center; }
.page-hero--drain-service { background-image: url('../images/drain-service-hero.jpg'); background-position: 64% center; }
.page-hero--event-dispatch { background-image: url('../images/event-dispatch-hero.jpg'); background-position: 64% center; }
.page-hero--tow-dispatch { background-image: url('../images/tow-dispatch-hero.jpg'); background-position: 62% center; }
.page-hero--lift-dispatch { background-image: url('../images/lift-dispatch-hero.jpg'); background-position: 62% center; }
.page-hero--ev-charge-dispatch { background-image: url('../images/ev-charge-dispatch-hero.jpg'); background-position: 62% center; }
.page-hero--dispatch-service::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(7,15,30,.97) 0%, rgba(7,15,30,.88) 45%, rgba(7,15,30,.22) 82%), linear-gradient(180deg, rgba(7,15,30,.08), rgba(7,15,30,.52));
}
.page-hero--dispatch-service .page-hero__inner { max-width: 890px; padding-block: clamp(100px, 13vw, 155px) 84px; }
.page-hero--dispatch-service h1 { max-width: 880px; font-size: clamp(3.2rem, 6.2vw, 5.8rem); }

.page-hero--tele-service {
    min-height: min(670px, calc(100vh - 128px));
    display: grid;
    align-items: end;
    background-color: var(--navy);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-hero--tele-legal { background-image: url('../images/tele-legal-hero.jpg'); }
.page-hero--tele-medical { background-image: url('../images/tele-medical-hero.jpg'); }
.page-hero--tele-events { background-image: url('../images/tele-events-hero.jpg'); }
.page-hero--tele-hotel { background-image: url('../images/tele-hotel-hero.jpg'); }
.page-hero--tele-kinesist { background-image: url('../images/tele-kinesist-hero.jpg'); }
.page-hero--tele-travel { background-image: url('../images/tele-travel-hero.jpg'); }
.page-hero--tele-restaurant { background-image: url('../images/tele-restaurant-hero.jpg'); }
.page-hero--tele-funeral { background-image: url('../images/tele-funeral-hero.jpg'); }
.page-hero--tele-nursing { background-image: url('../images/tele-nursing-hero.jpg'); }
.page-hero--tele-veterinary { background-image: url('../images/tele-veterinary-hero.jpg'); }
.page-hero--tele-tasks { background-image: url('../images/telesecretariaat-hero.jpg'); background-position: 60% center; }
.page-hero--tele-service::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(7,15,30,.98) 0%, rgba(7,15,30,.89) 44%, rgba(7,15,30,.18) 82%), linear-gradient(180deg, rgba(7,15,30,.07), rgba(7,15,30,.54));
}
.page-hero--tele-service .page-hero__inner { max-width: 920px; padding-block: clamp(100px, 13vw, 155px) 84px; }
.page-hero--tele-service h1 { max-width: 910px; font-size: clamp(3.05rem, 5.7vw, 5.45rem); }

.page-hero--digital-service {
    min-height: min(670px, calc(100vh - 128px));
    display: grid;
    align-items: end;
    background-color: var(--navy);
    background-position: 64% center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-hero--digital-content { background-image: url('../images/digital-content-hero.jpg'); }
.page-hero--website-care { background-image: url('../images/website-care-hero.jpg'); }
.page-hero--website-addons { background-image: url('../images/website-addons-hero.jpg'); }
.page-hero--website-check { background-image: url('../images/website-care-hero.jpg'); background-position: 58% center; }
.page-hero--digital-service::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(7,15,30,.98) 0%, rgba(7,15,30,.9) 45%, rgba(7,15,30,.18) 82%), linear-gradient(180deg, rgba(7,15,30,.06), rgba(7,15,30,.54));
}
.page-hero--digital-service .page-hero__inner { max-width: 900px; padding-block: clamp(100px, 13vw, 155px) 84px; }
.page-hero--digital-service h1 { max-width: 890px; font-size: clamp(3.05rem, 5.9vw, 5.55rem); }

.dispatch-intro__grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(55px, 8vw, 110px); align-items: center; }
.dispatch-intro__copy h2 { margin-bottom: 25px; }
.dispatch-intro__copy > p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.dispatch-intro__copy > .lead { color: var(--ink); }
.dispatch-highlight { position: relative; overflow: hidden; padding: clamp(32px, 4vw, 48px); border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, #12213a, #17385f); box-shadow: var(--shadow); }
.dispatch-highlight::after { content: ""; position: absolute; width: 260px; height: 260px; right: -130px; top: -145px; border-radius: 50%; background: rgba(246,83,88,.2); }
.dispatch-highlight > * { position: relative; z-index: 1; }
.dispatch-highlight h2 { margin-bottom: 30px; font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
.dispatch-highlight dl { display: grid; gap: 0; margin: 0; }
.dispatch-highlight dl div { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.14); }
.dispatch-highlight dt { color: #ff9295; font-weight: 850; }
.dispatch-highlight dd { margin: 4px 0 0; color: rgba(255,255,255,.72); }

.dispatch-workflow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.dispatch-workflow .article-section { grid-template-columns: 58px 1fr; gap: 20px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.dispatch-workflow .article-section:last-child { border: 1px solid var(--line); }
.dispatch-workflow .article-section__number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--white); background: var(--coral); font-size: 1rem; font-weight: 800; }
.dispatch-workflow .article-section h2 { font-size: clamp(1.55rem, 2.5vw, 2.05rem); }
.dispatch-workflow .article-section p { font-size: .98rem; }
.dispatch-workflow .check-list { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.dispatch-use-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.dispatch-use-grid article { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.dispatch-use-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dispatch-use-grid article > span { display: block; margin-bottom: 40px; color: var(--coral); font-size: .82rem; font-weight: 850; letter-spacing: .14em; }
.dispatch-use-grid h3 { margin-bottom: 12px; font-size: 1.3rem; }
.dispatch-use-grid p { margin: 0; color: var(--muted); }

.intro-copy { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; margin-bottom: 60px; }
.intro-copy h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.intro-copy > div:last-child { color: var(--muted); font-size: 1.08rem; }
.task-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.task-card { display: flex; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.task-card > span { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--white); background: var(--coral); font-weight: 800; }
.task-card h3 { margin: 1px 0 3px; }
.task-card p { margin: 0; color: var(--muted); }
.task-card--link { align-items: flex-start; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.task-card--link:hover { transform: translateY(-4px); border-color: rgba(246,83,88,.4); box-shadow: var(--shadow); }
.task-card--link > div { display: flex; min-height: 100%; flex-direction: column; }
.task-card--link strong { display: inline-block; margin-top: 13px; color: var(--coral); font-size: .86rem; }

.task-detail-list { display: grid; gap: 26px; }
.task-detail { scroll-margin-top: 110px; display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 26px; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.task-detail:nth-child(even) { background: linear-gradient(145deg, #f9fbfd, #f2f5f9); }
.task-detail__number { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; color: var(--white); background: linear-gradient(145deg, var(--coral), var(--coral-dark)); font-size: 1.08rem; font-weight: 900; box-shadow: 0 12px 28px rgba(246,83,88,.22); }
.task-detail__content > h2 { margin-bottom: 13px; font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.task-detail__content > .lead { max-width: 850px; margin-bottom: 26px; color: var(--ink); font-size: 1.13rem; }
.task-detail__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr); gap: 30px; align-items: start; }
.task-detail__grid > div > p { color: var(--muted); }
.task-detail__aside { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.82); }
.task-detail__aside h3 { margin-bottom: 13px; font-size: 1.08rem; }
.task-detail__aside .check-list { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.task-detail__links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.agenda-platforms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.agenda-platform { padding: 21px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.agenda-platform h3 { margin-bottom: 9px; font-size: 1.03rem; }
.agenda-platform p { margin: 0; color: var(--muted); font-size: .9rem; }
.compatibility-note { margin-top: 18px; padding: 16px 18px; border-left: 4px solid var(--coral); color: var(--muted); background: rgba(246,83,88,.055); font-size: .92rem; }
.callback-delivery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.callback-delivery > div { position: relative; padding: 23px 23px 23px 66px; border: 1px solid var(--line); border-radius: 15px; background: #f8fafc; }
.callback-delivery__icon { position: absolute; left: 22px; top: 23px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--white); background: var(--coral); font-size: .9rem; font-weight: 900; }
.callback-delivery h3 { margin-bottom: 7px; font-size: 1.03rem; }
.callback-delivery p { margin: 0; color: var(--muted); font-size: .9rem; }
.calltakers-mockup { overflow: hidden; margin-top: 26px; border: 1px solid #cbd7e2; border-radius: 20px; background: #eef5f8; box-shadow: 0 24px 55px rgba(15,45,68,.14); }
.calltakers-mockup__topbar { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 20px; color: var(--white); background: #073b5a; }
.calltakers-mockup__topbar > div { display: flex; align-items: center; gap: 11px; }
.calltakers-mockup__topbar > div > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,.13); }
.calltakers-mockup__live { display: flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .76rem; font-weight: 800; }
.calltakers-mockup__live i { width: 8px; height: 8px; border-radius: 50%; background: #20c997; box-shadow: 0 0 0 5px rgba(32,201,151,.14); }
.calltakers-mockup__body { padding: clamp(20px, 3vw, 34px); background: linear-gradient(145deg, #f4fbfe, #edf3f7); }
.calltakers-mockup__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.calltakers-mockup__heading small { color: #557284; font-size: .64rem; font-weight: 900; letter-spacing: .12em; }
.calltakers-mockup__heading h3 { margin: 3px 0 4px; font-size: clamp(1.5rem, 3vw, 2.15rem); }
.calltakers-mockup__heading p { margin: 0; color: #647786; font-size: .87rem; }
.calltakers-mockup__heading > strong { flex: 0 0 auto; padding: 8px 12px; border: 1px solid #d6e0e7; border-radius: 999px; background: var(--white); font-size: .75rem; }
.calltakers-mockup__filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.calltakers-mockup__filters span { padding: 8px 11px; border: 1px solid #d5e0e7; border-radius: 999px; color: #31495a; background: rgba(255,255,255,.88); font-size: .74rem; font-weight: 800; }
.calltakers-mockup__filters .is-active { color: #075080; border-color: #9fcde2; background: #dff4fb; }
.calltakers-ticket { display: grid; grid-template-columns: minmax(0, 1fr) 178px; gap: 18px; padding: 20px; border: 1px solid #d9e2e8; border-radius: 17px; background: var(--white); box-shadow: 0 10px 24px rgba(16,50,75,.07); }
.calltakers-ticket__title { display: flex; align-items: center; gap: 11px; }
.calltakers-ticket__title > span { width: 38px; height: 38px; display: grid; flex: 0 0 38px; place-items: center; border-radius: 11px; background: #eef6f8; }
.calltakers-ticket__title h4 { margin: 0 0 2px; font-size: 1rem; }
.calltakers-ticket__title p { margin: 0; color: #657786; font-size: .78rem; }
.calltakers-ticket__title em { margin-left: auto; padding: 6px 9px; border-radius: 999px; color: #0872bb; background: #e7f4ff; font-size: .7rem; font-style: normal; font-weight: 900; }
.calltakers-ticket dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 18px 0; }
.calltakers-ticket dl div { padding: 10px; border-radius: 10px; background: #f7f9fb; }
.calltakers-ticket dt { margin-bottom: 3px; color: #6d7e89; font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.calltakers-ticket dd { margin: 0; color: #19384c; font-size: .78rem; font-weight: 750; }
.calltakers-ticket__message { margin: 0 0 15px; padding: 13px 14px; border-left: 3px solid #11a7b9; color: #314b5d; background: #f3fafb; font-size: .84rem; }
.calltakers-ticket__main > small { color: #788994; font-size: .68rem; }
.calltakers-ticket__actions { display: grid; align-content: start; gap: 8px; }
.calltakers-ticket__actions span { min-height: 40px; display: grid; place-items: center; padding: 8px 10px; border: 1px solid #d4dee5; border-radius: 10px; color: #19384c; background: #fff; font-size: .75rem; font-weight: 850; text-align: center; }
.calltakers-ticket__actions .is-primary { color: var(--white); border-color: #1479d1; background: #1479d1; box-shadow: 0 8px 18px rgba(20,121,209,.18); }
.calltakers-mockup__caption { margin: 0; padding: 10px 18px; color: #61737f; background: #e3edf2; font-size: .7rem; text-align: center; }
.infrastructure-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; }
.infrastructure-grid article { padding: 26px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.infrastructure-grid article > span { display: block; margin-bottom: 38px; color: #ff9295; font-size: 2rem; font-weight: 300; }
.infrastructure-grid h3 { margin-bottom: 12px; }
.infrastructure-grid p { color: rgba(255,255,255,.68); }

.pricing-section { background: var(--soft); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.price-card { position: relative; padding: 38px 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.price-card--featured { color: var(--white); border-color: transparent; background: linear-gradient(145deg, var(--navy), #1a2b4c); transform: translateY(-14px); box-shadow: var(--shadow); }
.price-card__badge { position: absolute; top: 18px; right: 18px; padding: 5px 10px; border-radius: 999px; color: var(--white); background: var(--coral); font-size: .75rem; font-weight: 800; }
.price-card h3 { font-size: 1.8rem; }
.price { margin-block: 25px; }
.price strong { color: var(--coral); font-size: 2.8rem; }
.price-card ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.price-card li::before { content: "✓"; margin-right: 8px; color: var(--coral); font-weight: 900; }
.price-card__usage { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); font-weight: 800; }
.price-card--featured .price-card__usage { border-color: rgba(255,255,255,.2); }
.price-card__usage small { color: var(--muted); }
.pricing-note { max-width: 760px; margin: 30px auto 0; color: var(--muted); font-size: .9rem; text-align: center; }

.price-promise { position: relative; z-index: 2; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 14px 36px rgba(16,24,43,.055); }
.price-promise__inner { min-height: 166px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(26px, 4vw, 54px); align-items: center; padding-block: 22px; }
.price-stamp { width: 124px; height: 124px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 0 0 124px; border: 2px solid rgba(255,255,255,.82); outline: 2px dashed rgba(255,255,255,.74); outline-offset: -9px; border-radius: 50%; color: var(--white); background: linear-gradient(145deg, var(--coral), var(--coral-dark)); box-shadow: 0 15px 34px rgba(246,83,88,.25); transform: rotate(-5deg); transition: transform .22s ease, box-shadow .22s ease; }
.price-stamp:hover { color: var(--white); box-shadow: 0 18px 40px rgba(246,83,88,.34); transform: rotate(-2deg) scale(1.025); }
.price-stamp small { font-size: .59rem; font-weight: 850; letter-spacing: .11em; line-height: 1.25; text-transform: uppercase; }
.price-stamp strong { margin-block: 4px 1px; font-size: 1.9rem; letter-spacing: -.05em; line-height: 1; }
.price-stamp span { font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-promise__copy .eyebrow { margin-bottom: 7px; }
.price-promise__copy h2 { margin-bottom: 8px; font-size: clamp(1.45rem, 2.6vw, 2.15rem); }
.price-promise__copy p:last-child { margin: 0; color: var(--muted); }
.price-promise__inner > .text-link { white-space: nowrap; }

.contact-cta { position: relative; overflow: hidden; padding: 70px 0; color: var(--white); background: linear-gradient(115deg, var(--blue), #17365e); }
.contact-cta::after { content: ""; position: absolute; width: 360px; height: 360px; right: -130px; top: -190px; border-radius: 50%; background: rgba(246,83,88,.17); }
.contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-cta__inner > * { position: relative; z-index: 1; }
.contact-cta h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.contact-cta .button-row { margin: 0; }

.detail-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 7vw, 90px); align-items: center; }
.detail-intro__grid--no-image { grid-template-columns: 1fr; max-width: 860px; }
.detail-intro__image { position: relative; }
.detail-intro__image::before { content: ""; position: absolute; inset: -14px 18px 18px -14px; z-index: -1; border-radius: var(--radius); background: linear-gradient(145deg, var(--coral), #ff8f83); }
.detail-intro__image img { width: 100%; min-height: 430px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.detail-intro__copy h2 { margin-bottom: 22px; }
.detail-intro__copy .lead { color: var(--muted); }
.article-sections { display: grid; }
.article-section { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 50px 0; border-bottom: 1px solid var(--line); }
.article-section:last-child { border-bottom: 0; }
.article-section__number { color: var(--coral); font-size: 2rem; font-weight: 300; }
.article-section h2 { margin-bottom: 20px; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.article-section p { max-width: 760px; color: var(--muted); }
.check-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--coral); font-weight: 900; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { margin-top: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-sm); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px; cursor: pointer; font-size: 1.08rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--coral); font-size: 1.6rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 56px 22px 24px; color: var(--muted); }

.landing-hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #0c1425, #142746); }
.landing-hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -180px; top: -220px; border: 110px solid rgba(246,83,88,.09); border-radius: 50%; }
.landing-hero__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; padding-block: clamp(78px, 10vw, 128px); }
.landing-hero h1 { font-size: clamp(3.1rem, 6vw, 6rem); }
.landing-hero__copy > p:not(.eyebrow) { max-width: 680px; margin-top: 24px; color: rgba(255,255,255,.8); font-size: 1.18rem; }
.call-card { position: relative; padding: 30px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: rgba(255,255,255,.09); box-shadow: 0 34px 80px rgba(0,0,0,.25); backdrop-filter: blur(18px) saturate(130%); }
.call-card__top { color: #ffaaaa; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.call-card__top span { display: inline-block; width: 9px; height: 9px; margin-right: 8px; border-radius: 50%; background: #42d484; }
.call-card h2 { margin: 14px 0 24px; font-size: 1.45rem; }
.call-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.call-card dl div:last-child { grid-column: 1 / -1; }
.call-card dt { color: rgba(255,255,255,.55); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.call-card dd { margin: 3px 0 0; }
.call-card > p { margin: 22px 0 0; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.16); color: #7be0aa; font-weight: 800; }
.proof-strip { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); box-shadow: 0 14px 36px rgba(16,24,43,.04); }
.proof-strip__grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); align-items: stretch; }
.proof-strip__grid > div { min-height: 160px; display: flex; flex-direction: column; justify-content: center; padding: 28px 22px; border-right: 1px solid var(--line); }
.proof-strip__grid > div:last-child { border-right: 0; }
.proof-strip strong { display: block; margin-bottom: 5px; }
.proof-strip span { color: var(--muted); font-size: .9rem; line-height: 1.5; }
.proof-strip .proof-stat strong { color: var(--coral); font-size: 1.85rem; }
.landing-section__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.landing-section__grid h2 { position: sticky; top: 130px; }
.landing-section__content > p { color: var(--muted); font-size: 1.08rem; }
.steps { display: grid; margin-top: 34px; }
.steps article { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 25px 0; border-top: 1px solid var(--line); }
.steps article > span { color: var(--coral); font-size: 1.35rem; font-weight: 300; }
.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chips span { padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); box-shadow: 0 4px 12px rgba(16,24,43,.04); font-size: .9rem; font-weight: 700; }
.landing-contact { color: var(--white); background: linear-gradient(135deg, var(--blue), #142f53); }
.landing-contact__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.landing-contact h2 { margin-bottom: 22px; }
.landing-contact__grid > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.contact-direct { display: grid; gap: 10px; margin-top: 28px; font-size: 1.18rem; font-weight: 800; }
.contact-direct a:hover { color: #ff9a9a; }

.form-panel { padding: clamp(28px, 4vw, 46px); border: 1px solid rgba(255,255,255,.55); border-radius: 24px; color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 30px 80px rgba(10,20,38,.2); }
.form-panel > h2 { font-size: 2rem; }
.form-panel > p { color: var(--muted); }
.contact-form { margin-top: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: grid; gap: 7px; color: var(--ink); font-size: .88rem; font-weight: 800; }
.form-grid label[hidden] { display: none; }
.form-grid label span { color: var(--coral); }
.form-grid label small { display: inline; color: var(--muted); font-weight: 500; }
.form-grid__wide { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 50px; border: 1px solid #d6dce6; border-radius: 11px; padding: 11px 13px; color: var(--ink); background: #fbfcfe; outline: 0; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--coral); background: var(--white); box-shadow: 0 0 0 4px rgba(246,83,88,.11); }
.form-interest { margin: 0 0 4px; padding: 0; border: 0; }
.form-interest legend { margin-bottom: 11px; color: var(--ink); font-size: .92rem; font-weight: 850; }
.form-interest legend span { color: var(--coral); }
.interest-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.interest-option { position: relative; display: block; cursor: pointer; }
.form-grid .interest-option > input { position: absolute; width: 1px; height: 1px; min-height: 0; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.form-grid .interest-option__card { min-height: 126px; display: flex; flex-direction: column; gap: 7px; padding: 17px 16px; border: 1px solid #d6dce6; border-radius: 14px; color: var(--ink); background: #fbfcfe; box-shadow: 0 5px 15px rgba(16,24,43,.035); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease; }
.interest-option__card strong { font-size: 1rem; }
.form-grid .interest-option__card small { color: var(--muted); font-size: .78rem; font-weight: 550; line-height: 1.45; }
.interest-option:hover .interest-option__card { transform: translateY(-2px); border-color: rgba(246,83,88,.55); }
.interest-option input:focus-visible + .interest-option__card { outline: 3px solid rgba(246,83,88,.22); outline-offset: 2px; }
.interest-option input:checked + .interest-option__card { border-color: var(--coral); background: rgba(246,83,88,.055); box-shadow: 0 0 0 3px rgba(246,83,88,.1); }
.interest-option input:checked + .interest-option__card strong { color: var(--coral-dark); }
.form-conditional { padding: 23px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, #f8fafd, #f3f6fa); }
.form-conditional[hidden] { display: none; }
.form-conditional__heading { margin-bottom: 17px; }
.form-conditional__heading h3 { margin-bottom: 5px; font-size: 1.17rem; }
.form-conditional__heading p { margin: 0; color: var(--muted); font-size: .82rem; }
.form-grid--nested { gap: 14px; }
.form-digital-conditional { margin-top: 19px; padding-top: 19px; border-top: 1px solid var(--line); }
.form-digital-conditional[hidden] { display: none; }
.form-grid .form-check-consent { grid-template-columns: 20px minmax(0, 1fr); gap: 11px; align-items: start; padding: 15px 16px; border: 1px solid #d6dce6; border-radius: 12px; background: #fff; font-weight: 600; line-height: 1.5; cursor: pointer; }
.form-grid .form-check-consent input { width: 18px; height: 18px; min-height: 0; margin-top: 2px; accent-color: var(--coral); }
.form-grid .form-check-consent span { color: var(--muted); }
.form-privacy { margin: 17px 0; color: var(--muted); font-size: .8rem; }
.form-privacy a { color: var(--coral); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.form-trap { position: absolute; left: -9999px; }
.form-verification { display: grid; gap: 7px; margin-top: 18px; }
.turnstile-widget { width: 100%; min-height: 0; overflow: hidden; }
.turnstile-widget iframe { max-width: 100%; }
.form-verification__status, .form-verification__noscript { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.form-verification__status.is-valid { color: #155f39; }
.form-verification__status.is-error, .form-verification__noscript { color: #8e2222; }
.contact-form .button:disabled { transform: none; border-color: #c8ced8; color: #6b7280; background: #e6e9ee; box-shadow: none; cursor: wait; }
.form-status { margin: 20px 0; padding: 15px 17px; border-radius: var(--radius-sm); }
.form-status--error { color: #8e2222; background: #ffe8e8; }
.form-status--success { color: #155f39; background: #e4f8ed; }

.article-hero { padding: clamp(78px, 10vw, 130px) 0; }
.article-hero h1 { margin-bottom: 22px; font-size: clamp(2.8rem, 6vw, 5.3rem); }
.article-hero__meta { color: rgba(255,255,255,.7); }
.article-hero--digital { background: var(--navy) url('../images/digital-content-hero.jpg') 67% center / cover no-repeat; }
.article-hero--digital::before { opacity: 1; background: linear-gradient(90deg, rgba(7,15,30,.98), rgba(7,15,30,.86) 55%, rgba(7,15,30,.28)); }
.article-body { padding-block: clamp(60px, 8vw, 100px); }
.article-body__image { width: 100%; margin-bottom: 50px; aspect-ratio: 16 / 8; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.article-body > p { color: var(--muted); font-size: 1.08rem; }
.article-body > p.lead { color: var(--ink); font-size: 1.3rem; }
.article-body > h2 { margin: 48px 0 18px; font-size: clamp(1.7rem, 3.6vw, 2.55rem); }
.article-body__action { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 40px; }

.contact-page__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.contact-page__grid > div:first-child > h2 { margin-bottom: 22px; }
.contact-page__grid > div:first-child > .lead { color: var(--muted); }
.contact-cards { display: grid; gap: 14px; margin-top: 36px; }
.contact-cards > a, .contact-cards > div { display: flex; align-items: flex-start; gap: 17px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-cards > * > span { width: 39px; height: 39px; flex: 0 0 39px; display: grid; place-items: center; border-radius: 12px; color: var(--coral); background: rgba(246,83,88,.09); }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { color: var(--muted); }
.contact-cards a:hover strong { color: var(--coral); }

.not-found {
    position: relative; min-height: min(760px, calc(100vh - 128px)); overflow: hidden; display: grid; align-items: center;
    color: var(--white); background: radial-gradient(circle at 82% 18%, rgba(246,83,88,.22), transparent 26%), radial-gradient(circle at 12% 110%, rgba(25,69,116,.68), transparent 40%), linear-gradient(135deg, #0b1325, #16294a);
}
.not-found::before {
    content: ""; position: absolute; inset: 0; opacity: .28; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 48%, #000); mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}
.not-found::after { content: ""; position: absolute; width: 420px; height: 420px; right: -220px; bottom: -260px; border-radius: 50%; border: 1px solid rgba(246,83,88,.28); box-shadow: 0 0 0 70px rgba(246,83,88,.035), 0 0 0 140px rgba(246,83,88,.025); }
.not-found__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .72fr); gap: clamp(50px, 8vw, 110px); align-items: center; padding-block: clamp(76px, 10vw, 126px); }
.not-found__copy { max-width: 730px; }
.not-found__code { margin: 0 0 26px; color: rgba(255,255,255,.045); font-size: clamp(6.5rem, 13vw, 10.5rem); font-weight: 900; letter-spacing: -.09em; line-height: .72; -webkit-text-stroke: 1px rgba(255,255,255,.2); }
.not-found h1 { max-width: 690px; font-size: clamp(3rem, 5.7vw, 5.25rem); }
.not-found__lead { max-width: 650px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1.05rem, 1.8vw, 1.22rem); }
.not-found .button--outline { color: var(--white); border-color: rgba(255,255,255,.34); }
.not-found .button--outline:hover, .not-found .button--outline:focus-visible { border-color: var(--coral); }
.not-found__shortcuts { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; margin-top: 38px; color: rgba(255,255,255,.68); font-size: .92rem; }
.not-found__shortcuts > span { color: rgba(255,255,255,.46); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.not-found__shortcuts a { position: relative; color: var(--white); font-weight: 800; }
.not-found__shortcuts a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 999px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.not-found__shortcuts a:hover::after, .not-found__shortcuts a:focus-visible::after { transform: scaleX(1); }
.not-found-console { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: rgba(11,20,37,.72); box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.not-found-console__header { min-height: 64px; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.57); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.not-found-console__header strong { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid rgba(246,83,88,.24); border-radius: 999px; color: #ff9a9d; background: rgba(246,83,88,.08); font-size: .65rem; letter-spacing: .06em; }
.not-found-console__header i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(246,83,88,.13); animation: not-found-pulse 2.2s ease-out infinite; }
.not-found-console__incident { margin: 22px; padding: 21px 22px; border: 1px solid rgba(246,83,88,.22); border-radius: 17px; background: linear-gradient(135deg, rgba(246,83,88,.13), rgba(246,83,88,.035)); }
.not-found-console__incident span, .not-found-console__incident strong, .not-found-console__incident small { display: block; }
.not-found-console__incident span { margin-bottom: 7px; color: #ff9699; font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.not-found-console__incident strong { font-size: 1.12rem; }
.not-found-console__incident small { margin-top: 5px; color: rgba(255,255,255,.56); font-size: .83rem; }
.not-found-console__steps { display: grid; gap: 0; margin: 0 22px; padding: 0; list-style: none; }
.not-found-console__steps li { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 15px; min-height: 82px; padding-bottom: 18px; }
.not-found-console__steps li:not(:last-child)::after { content: ""; position: absolute; width: 1px; left: 20px; top: 43px; bottom: 4px; background: rgba(255,255,255,.14); }
.not-found-console__steps li > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: rgba(255,255,255,.58); background: #15243d; font-size: .72rem; font-weight: 850; }
.not-found-console__steps li.is-done > span { color: #a8c7ef; border-color: rgba(96,150,215,.34); background: rgba(25,69,116,.66); }
.not-found-console__steps li.is-active > span { color: var(--white); border-color: var(--coral); background: var(--coral); box-shadow: 0 0 0 6px rgba(246,83,88,.09); }
.not-found-console__steps strong, .not-found-console__steps small { display: block; }
.not-found-console__steps strong { padding-top: 2px; font-size: .95rem; }
.not-found-console__steps small { margin-top: 2px; color: rgba(255,255,255,.52); font-size: .8rem; }
.not-found-console__footer { display: flex; justify-content: space-between; gap: 14px; padding: 15px 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.52); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
@keyframes not-found-pulse { 0% { box-shadow: 0 0 0 0 rgba(246,83,88,.4); } 70%, 100% { box-shadow: 0 0 0 9px rgba(246,83,88,0); } }

.page-hero--offshore {
    min-height: min(690px, calc(100vh - 128px));
    display: grid;
    align-items: end;
    background: var(--navy) url('../images/offshore-hero.jpg') 68% center / cover no-repeat;
}
.page-hero--offshore::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(7,15,30,.97) 0%, rgba(7,15,30,.86) 43%, rgba(7,15,30,.24) 78%), linear-gradient(180deg, rgba(7,15,30,.08), rgba(7,15,30,.48));
}
.page-hero--offshore .page-hero__inner { max-width: 830px; padding-block: clamp(100px, 13vw, 160px) 88px; }
.page-hero--offshore h1 { max-width: 820px; font-size: clamp(3.25rem, 6.5vw, 6rem); }
.page-hero__lead { max-width: 700px; margin: 25px 0 0; color: rgba(255,255,255,.84); font-size: clamp(1.1rem, 2vw, 1.32rem); line-height: 1.65; }

.offshore-intro__grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(55px, 8vw, 110px); align-items: center; }
.offshore-intro__grid > div:first-child h2 { margin-bottom: 25px; }
.offshore-intro__grid > div:first-child > p:not(.eyebrow) { max-width: 710px; color: var(--muted); }
.offshore-intro__grid > div:first-child > .lead { color: var(--ink); }
.offshore-highlight { position: relative; overflow: hidden; padding: clamp(32px, 4vw, 48px); border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, #12213a, #17385f); box-shadow: var(--shadow); }
.offshore-highlight::after { content: ""; position: absolute; width: 260px; height: 260px; right: -130px; top: -145px; border-radius: 50%; background: rgba(246,83,88,.2); }
.offshore-highlight > * { position: relative; z-index: 1; }
.offshore-highlight h2 { margin-bottom: 34px; font-size: clamp(2rem, 3.4vw, 3rem); }
.offshore-highlight dl { display: grid; gap: 0; margin: 0; }
.offshore-highlight dl div { padding: 19px 0; border-top: 1px solid rgba(255,255,255,.14); }
.offshore-highlight dt { color: #ff9295; font-weight: 850; }
.offshore-highlight dd { margin: 4px 0 0; color: rgba(255,255,255,.72); }

.offshore-proof { border-block: 1px solid var(--line); background: var(--white); }
.offshore-proof__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.offshore-proof__grid > div { min-height: 170px; display: flex; flex-direction: column; justify-content: center; padding: 30px; border-right: 1px solid var(--line); }
.offshore-proof__grid > div:last-child { border-right: 0; }
.offshore-proof strong { margin-bottom: 7px; font-size: 1.03rem; }
.offshore-proof span { color: var(--muted); font-size: .92rem; line-height: 1.55; }

.offshore-services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.offshore-services .article-section { grid-template-columns: 58px 1fr; gap: 20px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.offshore-services .article-section:last-child { border: 1px solid var(--line); }
.offshore-services .article-section__number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--white); background: var(--coral); font-size: 1rem; font-weight: 800; }
.offshore-services .article-section h2 { font-size: clamp(1.55rem, 2.5vw, 2.05rem); }
.offshore-services .article-section p { font-size: .98rem; }
.offshore-services .check-list { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.offshore-use-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.offshore-use-grid article { min-height: 235px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.offshore-use-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.offshore-use-grid article > span { display: block; margin-bottom: 42px; color: var(--coral); font-size: .82rem; font-weight: 850; letter-spacing: .14em; }
.offshore-use-grid h3 { margin-bottom: 12px; font-size: 1.3rem; }
.offshore-use-grid p { margin: 0; color: var(--muted); }

.offshore-process__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.offshore-process__grid article { padding: 34px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.offshore-process__grid article > span { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 50%; color: var(--white); background: var(--coral); font-weight: 850; }
.offshore-process__grid h3 { margin-bottom: 12px; color: var(--white); font-size: 1.32rem; }
.offshore-process__grid p { margin: 0; color: rgba(255,255,255,.67); }

.page-hero--monitoring {
    min-height: min(690px, calc(100vh - 128px));
    display: grid;
    align-items: end;
    background-color: var(--navy);
    background-position: 66% center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-hero--sms { background-image: url('../images/monitoring-sms-hero.jpg'); }
.page-hero--email { background-image: url('../images/monitoring-email-hero.jpg'); }
.page-hero--api { background-image: url('../images/monitoring-api-hero.jpg'); }
.page-hero--monitoring::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(7,15,30,.97) 0%, rgba(7,15,30,.86) 44%, rgba(7,15,30,.18) 80%), linear-gradient(180deg, rgba(7,15,30,.08), rgba(7,15,30,.46));
}
.page-hero--monitoring .page-hero__inner { max-width: 830px; padding-block: clamp(100px, 13vw, 160px) 88px; }
.page-hero--monitoring h1 { max-width: 850px; font-size: clamp(3.35rem, 6.5vw, 6rem); }

.monitoring-statement { position: relative; overflow: hidden; }
.monitoring-statement::after { content: ""; position: absolute; width: 480px; height: 480px; right: -210px; top: -260px; border-radius: 50%; background: rgba(246,83,88,.13); }
.monitoring-statement .shell { position: relative; z-index: 1; }
.monitoring-statement__copy { max-width: 900px; }
.monitoring-statement__copy h2 { max-width: 840px; margin-bottom: 24px; }
.monitoring-statement__copy > p:last-child { max-width: 760px; color: rgba(255,255,255,.72); font-size: 1.12rem; }

.monitoring-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.monitoring-link-card { display: flex; min-height: 280px; flex-direction: column; align-items: flex-start; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.monitoring-link-card:hover { transform: translateY(-5px); border-color: rgba(246,83,88,.38); box-shadow: var(--shadow); }
.monitoring-link-card.is-current { border-color: rgba(246,83,88,.45); background: linear-gradient(145deg, rgba(246,83,88,.055), var(--white) 55%); }
.monitoring-link-card__icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 26px; }
.monitoring-link-card__icon img { width: 50px; height: 50px; object-fit: contain; }
.monitoring-link-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.monitoring-link-card p { color: var(--muted); }
.monitoring-link-card .text-link { margin-top: auto; }
.related-page-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.related-page-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.related-page-grid .monitoring-link-card { min-height: 265px; padding: 27px; }

.digital-case { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #0f1a2f, #173b63); }
.digital-case::after { content: ""; position: absolute; width: 440px; height: 440px; right: -210px; top: -250px; border: 84px solid rgba(246,83,88,.12); border-radius: 50%; }
.digital-case .shell { position: relative; z-index: 1; }
.digital-case .lead { color: rgba(255,255,255,.88); }
.digital-case p:not(.eyebrow), .digital-case .check-list { color: rgba(255,255,255,.72); }
.digital-case .text-link { color: #ff9295; }
.digital-case__card { padding: clamp(32px, 4vw, 50px); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.08); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.digital-case__card > span { display: grid; width: 76px; height: 76px; place-items: center; margin-bottom: 34px; border: 2px solid var(--coral); border-radius: 50%; color: #ff9295; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.digital-case__card h3 { margin-bottom: 18px; color: var(--white); font-size: clamp(1.8rem, 3vw, 2.65rem); }

.home-digital { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #10192c, #17365b); }
.home-digital::after { content: ""; position: absolute; width: 520px; height: 520px; right: -270px; top: -310px; border: 94px solid rgba(246,83,88,.11); border-radius: 50%; }
.home-digital .shell { position: relative; z-index: 1; }
.home-digital__heading { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(45px, 8vw, 105px); align-items: end; margin-bottom: 48px; }
.home-digital__heading h2 { max-width: 690px; color: var(--white); font-size: clamp(2.4rem, 5vw, 4.5rem); }
.home-digital__heading > div:last-child > p { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.home-digital__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.home-digital__card { display: flex; min-height: 360px; flex-direction: column; align-items: flex-start; padding: clamp(27px, 3vw, 38px); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.08); box-shadow: var(--shadow-sm); transition: transform .25s ease, background .25s ease; }
.home-digital__card:hover { transform: translateY(-5px); background: rgba(255,255,255,.12); }
.home-digital__card img { width: 58px; height: 58px; margin-bottom: 32px; }
.home-digital__card h3 { margin-bottom: 14px; color: var(--white); font-size: 1.65rem; }
.home-digital__card p { color: rgba(255,255,255,.68); }
.home-digital__card .text-link { margin-top: auto; color: #ff9295; }
.home-digital__offer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 24px; padding: 24px 28px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.home-digital__offer p { margin: 0; color: rgba(255,255,255,.72); }
.home-digital__offer strong { color: var(--white); }
.home-digital__offer .button { flex: 0 0 auto; }
.services-digital { padding-block: clamp(76px, 8vw, 112px); }

/* Situaties waarin telefoonopvang het verschil maakt */
.situations-home { overflow: hidden; background: linear-gradient(180deg, #f8fafc, #eef3f8); }
.situation-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.situation-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); color: inherit; background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.situation-card:hover { transform: translateY(-5px); border-color: rgba(246,83,88,.38); box-shadow: var(--shadow); }
.situation-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: #e7edf4; }
.situation-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.situation-card:hover .situation-card__image img { transform: scale(1.025); }
.situation-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 27px 27px 30px; }
.situation-card__body h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.situation-card__body p { color: var(--muted); }
.situation-card__body .text-link { margin-top: auto; }
.situation-quick-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.situation-quick-list span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.78); font-size: .88rem; font-weight: 750; }

.situation-hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #0d1729, #18395e); }
.situation-hero::after { content: ""; position: absolute; width: 520px; height: 520px; left: -330px; bottom: -350px; border: 90px solid rgba(246,83,88,.11); border-radius: 50%; }
.situation-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: clamp(45px, 7vw, 90px); align-items: center; min-height: 670px; padding-block: 82px; }
.situation-hero__copy h1 { max-width: 790px; margin-bottom: 24px; color: var(--white); font-size: clamp(3.1rem, 6vw, 6.2rem); line-height: .98; }
.situation-hero__copy > p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.76); font-size: 1.12rem; }
.situation-hero__media { position: relative; overflow: hidden; aspect-ratio: 5 / 4; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; box-shadow: 0 34px 85px rgba(3,9,18,.42); }
.situation-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.situation-hero__badge { position: absolute; right: 22px; bottom: 22px; max-width: 285px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.25); border-radius: 16px; color: var(--white); background: rgba(9,20,36,.82); font-weight: 800; line-height: 1.4; backdrop-filter: blur(10px); }
.situation-reason-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.situation-reason { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.situation-reason > span { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 34px; border-radius: 15px; color: var(--coral); background: rgba(246,83,88,.1); font-weight: 900; }
.situation-reason h3 { margin-bottom: 11px; font-size: 1.3rem; }
.situation-reason p { margin: 0; color: var(--muted); }
.situation-availability { padding-block: clamp(70px, 8vw, 105px); color: var(--white); background: linear-gradient(135deg, #101a2f, #18446b); }
.situation-availability__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); gap: clamp(42px, 8vw, 110px); align-items: center; }
.situation-availability h2 { max-width: 780px; margin-bottom: 20px; color: var(--white); font-size: clamp(2.3rem, 5vw, 4.3rem); }
.situation-availability p:not(.eyebrow) { max-width: 740px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.situation-availability__panel { padding: 30px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.08); }
.situation-availability__panel strong { display: block; margin-bottom: 10px; color: #ff9295; font-size: 1.2rem; }
.situation-availability__panel p { margin: 0; }
.situation-inline { overflow: hidden; }
.situation-inline__grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(38px, 7vw, 88px); align-items: center; }
.situation-inline__media { overflow: hidden; aspect-ratio: 16 / 11; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.situation-inline__media img { width: 100%; height: 100%; object-fit: cover; }
.situation-inline__copy h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.6rem); }
.situation-inline__copy p:not(.eyebrow) { max-width: 760px; color: var(--muted); }
.situation-inline__copy .text-link { margin-top: 5px; }

.site-footer { padding: 78px 0 24px; color: rgba(255,255,255,.68); background: #0a1120; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, 1fr) minmax(0, 1.08fr); gap: clamp(34px, 4.5vw, 68px); padding-bottom: 52px; }
.footer-brand p { max-width: 330px; }
.footer-brand__logo { display: inline-block; }
.footer-logo { width: 225px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .95; }
.footer-grid h2 { margin-bottom: 19px; color: var(--white); font-size: 1.05rem; letter-spacing: 0; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { display: inline-block; padding-block: 3px; }
.footer-grid a:hover, .footer-bottom a:hover { color: var(--coral); }
.footer-contact address { line-height: 1.72; }
.footer-contact strong { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom__links button { padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.footer-bottom__links button:hover { color: var(--coral); }

.privacy-section { background: linear-gradient(180deg, #fbfcfe, #f3f6fa); }
.privacy-layout { display: grid; grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr); gap: clamp(34px, 6vw, 80px); align-items: start; }
.privacy-toc { position: sticky; top: 110px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.privacy-toc h2 { margin-bottom: 16px; font-size: 1.05rem; letter-spacing: -.02em; }
.privacy-toc a { display: block; padding: 8px 0; color: var(--muted); font-size: .9rem; font-weight: 700; }
.privacy-toc a:hover { color: var(--coral); }
.privacy-content { min-width: 0; }
.privacy-updated { margin-bottom: 24px; color: var(--muted); font-size: .88rem; }
.privacy-card { scroll-margin-top: 110px; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.privacy-card + .privacy-card { margin-top: 22px; }
.privacy-card h2 { margin-bottom: 20px; font-size: clamp(1.65rem, 3vw, 2.3rem); }
.privacy-card h3 { margin: 28px 0 10px; }
.privacy-card p, .privacy-card li { color: var(--muted); }
.privacy-card p:last-child { margin-bottom: 0; }
.privacy-card ul { margin: 16px 0 0; padding-left: 22px; }
.privacy-card li + li { margin-top: 8px; }
.privacy-card a { color: var(--coral); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.privacy-note { padding: 20px 22px; border-left: 4px solid var(--coral); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: rgba(246,83,88,.07); }
.privacy-table-wrap { margin-top: 24px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.privacy-table { width: 100%; border-collapse: collapse; min-width: 660px; background: var(--white); font-size: .9rem; }
.privacy-table th, .privacy-table td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-table th { color: var(--ink); background: var(--soft); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.privacy-table tr:last-child td { border-bottom: 0; }

.cookie-consent { position: fixed; z-index: 9998; inset: auto 0 0; padding: 18px; background: linear-gradient(180deg, rgba(9,17,32,0), rgba(9,17,32,.2)); }
.cookie-consent[hidden] { display: none !important; }
.cookie-consent__panel { width: min(100%, 1120px); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); gap: clamp(24px, 5vw, 62px); align-items: center; margin-inline: auto; padding: clamp(24px, 3.5vw, 38px); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; color: var(--white); background: linear-gradient(135deg, #0d1628, #172b49); box-shadow: 0 28px 80px rgba(5,12,24,.38); }
.cookie-consent__eyebrow { margin: 0 0 8px; color: #ff9699; font-size: .68rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.cookie-consent__copy h2 { margin-bottom: 10px; font-size: clamp(1.35rem, 2.7vw, 2rem); letter-spacing: -.035em; }
.cookie-consent__copy p:not(.cookie-consent__eyebrow) { max-width: 700px; margin-bottom: 10px; color: rgba(255,255,255,.74); font-size: .9rem; line-height: 1.55; }
.cookie-consent__copy a { color: #ff9b9e; font-size: .86rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: grid; gap: 10px; }
.cookie-consent__button { min-height: 50px; padding: 11px 18px; border: 2px solid rgba(255,255,255,.28); border-radius: 999px; color: var(--white); background: #263853; font-weight: 800; line-height: 1.25; cursor: pointer; transition: transform .2s ease, filter .2s ease, border-color .2s ease; }
.cookie-consent__button:hover, .cookie-consent__button:focus-visible { transform: translateY(-2px); filter: brightness(1.08); }
.cookie-consent__button:hover { border-color: rgba(255,255,255,.58); }

:focus-visible { outline: 3px solid rgba(255,73,73,.45); outline-offset: 3px; }

@media (min-width: 1051px) {
    body.nav-open { overflow: auto; }
}

@media (max-width: 1050px) {
    .contact-strip__inner { justify-content: center; }
    .site-header__inner, .site-header.is-scrolled .site-header__inner { min-height: 80px; }
    .brand img { width: 190px; }
    .nav-toggle { display: block; z-index: 3; }
    .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .main-nav {
        position: absolute; inset: 100% 0 auto; max-height: calc(100dvh - 124px); overflow-x: hidden; overflow-y: auto;
        display: none; align-items: stretch; padding: 22px 24px 30px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); backdrop-filter: blur(18px);
        overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    }
    .main-nav.is-open { display: flex; flex-direction: column; gap: 0; }
    .main-nav > a:not(.button), .nav-group > a { padding: 13px 6px; }
    .site-header.is-scrolled .main-nav > a:not(.button), .site-header.is-scrolled .nav-group > a { padding: 13px 6px; }
    .main-nav > a:not(.button)::after, .nav-group > a::after { display: none; }
    .nav-group { display: grid; grid-template-columns: 1fr auto; }
    .nav-group > button { width: 46px; }
    .nav-dropdown, .nav-dropdown--wide, .nav-dropdown--dispatch, .nav-dropdown--tele, .nav-dropdown--digital { position: static; grid-column: 1 / -1; display: none; width: auto; max-height: none; overflow: visible; padding: 4px 0 10px 14px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .nav-group.is-open .nav-dropdown { display: block; }
    .button--nav { margin-top: 14px; }
    .home-proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-proof__grid > div { border-bottom: 1px solid var(--line); }
    .home-proof__grid > div:nth-child(2n) { border-right: 0; }
    .home-proof__grid > div:nth-last-child(-n+2) { border-bottom: 0; }
    .home-flow__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-flow__steps li:nth-child(2n) { border-right: 0; }
    .home-flow__steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .home-routes__heading { grid-template-columns: 1fr; gap: 20px; }
    .home-route-card { padding-inline: 23px; }
    .service-grid, .infrastructure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .proof-strip__grid > div { border-bottom: 1px solid var(--line); }
    .proof-strip__grid > div:nth-child(2n) { border-right: 0; }
    .proof-strip__grid > div:first-child { grid-column: 1 / -1; }
    .landing-hero__grid { gap: 38px; }
    .offshore-intro__grid { grid-template-columns: 1fr; gap: 42px; }
    .dispatch-intro__grid { grid-template-columns: 1fr; gap: 42px; }
    .service-detail-card { min-height: 0; }
    .tele-intro__grid { grid-template-columns: 1fr; gap: 42px; }
    .dispatch-workflow { grid-template-columns: 1fr; }
    .dispatch-use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .task-detail__grid { grid-template-columns: 1fr; }
    .agenda-platforms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .calltakers-ticket { grid-template-columns: 1fr; }
    .calltakers-ticket__actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .offshore-proof__grid { grid-template-columns: repeat(2, 1fr); }
    .offshore-proof__grid > div:nth-child(2n) { border-right: 0; }
    .offshore-proof__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .offshore-services { grid-template-columns: 1fr; }
    .monitoring-link-grid { grid-template-columns: 1fr 1fr; }
    .monitoring-link-card:last-child { grid-column: 1 / -1; }
    .related-page-grid, .related-page-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .related-page-grid .monitoring-link-card:last-child { grid-column: auto; }
    .not-found__grid { grid-template-columns: 1fr; gap: 48px; }
    .not-found__copy { max-width: 760px; }
    .not-found-console { width: min(100%, 650px); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 60px; }
    .home-digital__heading { grid-template-columns: 1fr; gap: 20px; }
    .home-digital__grid { grid-template-columns: 1fr; }
    .home-digital__card { min-height: 0; }
    .home-digital__offer { align-items: flex-start; flex-direction: column; }
    .news-card--featured { grid-template-columns: 1fr; }
    .news-card--featured > a { aspect-ratio: 16 / 8; }
    .situation-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .situation-card:last-child { grid-column: 1 / -1; }
    .situation-hero__grid { grid-template-columns: 1fr; min-height: 0; }
    .situation-hero__copy { padding-top: 18px; }
    .situation-hero__media { aspect-ratio: 16 / 9; }
    .situation-reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .situation-availability__grid { grid-template-columns: 1fr; }
    .situation-inline__grid { grid-template-columns: 1fr; }
    .situation-inline__media { max-width: 760px; }
}

@media (max-width: 760px) {
    .shell, .narrow { width: min(calc(100% - 32px), var(--shell)); }
    .contact-strip__inner { min-height: 38px; justify-content: space-between; gap: 12px; font-size: .78rem; }
    .contact-strip__inner a:nth-child(2) { display: none; }
    .site-header__inner, .site-header.is-scrolled .site-header__inner { min-height: 74px; }
    .main-nav { inset: 100% 0 auto; max-height: calc(100dvh - 112px); padding-bottom: 100px; }
    .brand img { width: 170px; }
    .home-hero { min-height: 690px; }
    .home-hero__image { background: linear-gradient(90deg, rgba(6,13,26,.98) 0%, rgba(6,13,26,.89) 62%, rgba(6,13,26,.4) 100%), linear-gradient(180deg, rgba(6,13,26,.08), rgba(6,13,26,.66)), url('../images/home-operations-hero.jpg') 67% center / cover no-repeat; }
    .home-hero__content { padding-block: 84px 58px; }
    .home-hero h1 { font-size: clamp(2.65rem, 12vw, 4.05rem); }
    .home-hero__copy > p:not(.eyebrow) { font-size: 1rem; line-height: 1.65; }
    .home-hero__signals { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 38px; }
    .home-hero__signals > div { padding-inline: 10px; }
    .home-hero__signals > div:first-child { padding-left: 0; }
    .home-hero__signals strong { font-size: .77rem; line-height: 1.3; }
    .home-hero__signals span { display: none; }
    .home-proof__grid { grid-template-columns: 1fr; }
    .home-proof__grid > div, .home-proof__grid > div:nth-child(2n), .home-proof__grid > div:nth-last-child(-n+2) { min-height: 0; padding: 25px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
    .home-proof__grid > div:last-child { border-bottom: 0; }
    .home-proof__grid span { margin-bottom: 10px; }
    .home-flow__heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 42px; }
    .home-flow__steps { grid-template-columns: 1fr; }
    .home-flow__steps li, .home-flow__steps li:nth-child(2n), .home-flow__steps li:nth-child(-n+2) { min-height: 0; padding: 28px 24px 31px; border-right: 0; border-bottom: 1px solid var(--line); }
    .home-flow__steps li:last-child { border-bottom: 0; }
    .home-flow__steps li > span { margin-bottom: 28px; }
    .home-routes { margin-top: 44px; padding: 34px 20px 22px; border-radius: 21px; }
    .home-routes__heading { margin-bottom: 27px; }
    .home-route-grid { grid-template-columns: 1fr; }
    .home-route-card { min-height: 0; padding: 25px 22px; }
    .home-route-card__label { margin-bottom: 30px; }
    .home-route-card strong { margin-top: 16px; }
    .cta-band__content { grid-template-columns: 1fr; align-items: start; }
    .cta-band__actions { flex-direction: row; flex-wrap: wrap; align-items: center; }
    .service-grid, .service-grid--dispatch, .news-grid, .task-grid, .infrastructure-grid, .pricing-grid { grid-template-columns: 1fr; }
    .task-detail { grid-template-columns: 1fr; padding: 25px 21px; }
    .task-detail__number { width: 52px; height: 52px; border-radius: 15px; }
    .agenda-platforms { grid-template-columns: 1fr; }
    .callback-delivery { grid-template-columns: 1fr; }
    .calltakers-mockup__topbar, .calltakers-mockup__heading { align-items: flex-start; flex-direction: column; }
    .calltakers-mockup__heading > strong { align-self: flex-start; }
    .calltakers-ticket dl, .calltakers-ticket__actions { grid-template-columns: 1fr; }
    .page-hero--services-detail { min-height: 650px; background-position: 68% center; }
    .page-hero--services-detail::before { background: linear-gradient(90deg, rgba(7,15,30,.98), rgba(7,15,30,.65)), linear-gradient(180deg, rgba(7,15,30,.08), rgba(7,15,30,.74)); }
    .page-hero--services-detail .page-hero__inner { padding-block: 92px 68px; }
    .page-hero--services-detail h1 { font-size: clamp(2.75rem, 12vw, 4.2rem); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-card--wide { grid-column: auto; display: flex; gap: 0; }
    .service-grid--dispatch { margin-top: 45px; }
    .service-card { min-height: 0; padding: 26px 23px; }
    .price-card--featured { transform: none; }
    .price-promise__inner { grid-template-columns: 104px minmax(0, 1fr); gap: 20px; padding-block: 24px; }
    .price-stamp { width: 104px; height: 104px; flex-basis: 104px; }
    .price-stamp strong { font-size: 1.55rem; }
    .price-promise__copy h2 { font-size: 1.35rem; }
    .price-promise__copy p:last-child { font-size: .88rem; }
    .price-promise__inner > .text-link { grid-column: 2; white-space: normal; }
    .contact-cta__inner { align-items: flex-start; flex-direction: column; }
    .intro-copy, .detail-intro__grid, .landing-hero__grid, .landing-section__grid, .landing-contact__grid, .contact-page__grid { grid-template-columns: 1fr; gap: 40px; }
    .detail-intro__image { order: 2; }
    .detail-intro__image img { min-height: 300px; }
    .article-section { grid-template-columns: 1fr; gap: 8px; }
    .landing-hero__grid { padding-block: 70px; }
    .landing-hero h1 { font-size: clamp(2.8rem, 14vw, 4.8rem); }
    .landing-section__grid h2 { position: static; }
    .proof-strip__grid { grid-template-columns: 1fr; }
    .proof-strip__grid > div, .proof-strip__grid > div:nth-child(2n) { grid-column: auto; border-right: 0; }
    .call-card dl { grid-template-columns: 1fr; }
    .call-card dl div:last-child { grid-column: auto; }
    .page-hero--offshore { min-height: 650px; background-position: 66% center; }
    .page-hero--offshore::before { background: linear-gradient(90deg, rgba(7,15,30,.95), rgba(7,15,30,.64)), linear-gradient(180deg, rgba(7,15,30,.12), rgba(7,15,30,.72)); }
    .page-hero--offshore .page-hero__inner { padding-block: 95px 70px; }
    .page-hero--offshore h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
    .offshore-intro__grid, .offshore-use-grid, .offshore-process__grid { grid-template-columns: 1fr; gap: 22px; }
    .offshore-highlight { border-radius: 20px; }
    .offshore-proof__grid { grid-template-columns: 1fr; }
    .offshore-proof__grid > div, .offshore-proof__grid > div:nth-child(2n), .offshore-proof__grid > div:nth-child(-n+2) { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line); }
    .offshore-proof__grid > div:last-child { border-bottom: 0; }
    .offshore-services .article-section { grid-template-columns: 1fr; padding: 27px 24px; }
    .offshore-use-grid article { min-height: 0; }
    .page-hero--monitoring { min-height: 650px; background-position: 64% center; }
    .page-hero--monitoring::before { background: linear-gradient(90deg, rgba(7,15,30,.96), rgba(7,15,30,.6)), linear-gradient(180deg, rgba(7,15,30,.1), rgba(7,15,30,.72)); }
    .page-hero--monitoring .page-hero__inner { padding-block: 95px 70px; }
    .page-hero--monitoring h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
    .monitoring-link-grid { grid-template-columns: 1fr; }
    .monitoring-link-card:last-child { grid-column: auto; }
    .page-hero--dispatch-service { min-height: 640px; background-position: 70% center; }
    .page-hero--property { background-position: 68% center; }
    .page-hero--it-emergency, .page-hero--technical-maintenance, .page-hero--security-access, .page-hero--cold-chain-dispatch, .page-hero--drain-service, .page-hero--event-dispatch, .page-hero--tow-dispatch, .page-hero--lift-dispatch, .page-hero--ev-charge-dispatch { background-position: 68% center; }
    .page-hero--dispatch-service::before { background: linear-gradient(90deg, rgba(7,15,30,.97), rgba(7,15,30,.64)), linear-gradient(180deg, rgba(7,15,30,.1), rgba(7,15,30,.72)); }
    .page-hero--dispatch-service .page-hero__inner { padding-block: 92px 68px; }
    .page-hero--dispatch-service h1 { font-size: clamp(2.75rem, 12vw, 4.2rem); }
    .dispatch-use-grid { grid-template-columns: 1fr; }
    .page-hero--tele-service { min-height: 650px; background-position: 69% center; }
    .page-hero--tele-service::before { background: linear-gradient(90deg, rgba(7,15,30,.98), rgba(7,15,30,.66)), linear-gradient(180deg, rgba(7,15,30,.1), rgba(7,15,30,.74)); }
    .page-hero--tele-service .page-hero__inner { padding-block: 78px 118px; }
    .page-hero--tele-service h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
    .page-hero--digital-service { min-height: 650px; background-position: 69% center; }
    .page-hero--digital-service::before { background: linear-gradient(90deg, rgba(7,15,30,.98), rgba(7,15,30,.66)), linear-gradient(180deg, rgba(7,15,30,.1), rgba(7,15,30,.74)); }
    .page-hero--digital-service .page-hero__inner { padding-block: 78px 94px; }
    .page-hero--digital-service h1 { font-size: clamp(2.5rem, 11.5vw, 4.1rem); }
    .page-hero--tele { min-height: 650px; background-position: 67% center; }
    .page-hero--tele::before { background: linear-gradient(90deg, rgba(7,15,30,.97), rgba(7,15,30,.62)), linear-gradient(180deg, rgba(7,15,30,.08), rgba(7,15,30,.72)); }
    .page-hero--tele .page-hero__inner { padding-block: 94px 70px; }
    .page-hero--tele h1 { font-size: clamp(2.65rem, 12vw, 4.25rem); }
    .service-category__heading { grid-template-columns: 1fr; gap: 12px; }
    .monitoring-link-card { min-height: 0; }
    .related-page-grid, .related-page-grid--three { grid-template-columns: 1fr; }
    .form-panel { border-radius: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid__wide { grid-column: auto; }
    .interest-options { grid-template-columns: 1fr; }
    .form-grid .interest-option__card { min-height: 0; }
    .form-conditional { padding: 20px 17px; }
    .not-found__grid { gap: 38px; padding-block: 64px 72px; }
    .not-found__code { margin-bottom: 22px; font-size: clamp(5.4rem, 29vw, 7.5rem); }
    .not-found h1 { font-size: clamp(2.65rem, 12vw, 3.8rem); }
    .not-found .button-row { align-items: stretch; flex-direction: column; gap: 12px; }
    .not-found .button { width: 100%; }
    .not-found__shortcuts { align-items: flex-start; flex-direction: column; }
    .not-found-console__header { align-items: flex-start; flex-direction: column; }
    .not-found-console__footer { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
    .situation-photo-grid, .situation-reason-grid { grid-template-columns: 1fr; }
    .situation-card:last-child { grid-column: auto; }
    .situation-card__body { padding: 23px 21px 25px; }
    .situation-hero__grid { gap: 32px; padding-block: 64px 72px; }
    .situation-hero__copy h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
    .situation-hero__media { aspect-ratio: 4 / 3; border-radius: 21px; }
    .situation-hero__badge { right: 14px; bottom: 14px; left: 14px; max-width: none; }
    .situation-reason { min-height: 0; }
    .situation-inline__media { aspect-ratio: 4 / 3; }
    .privacy-layout { grid-template-columns: 1fr; }
    .privacy-toc { position: static; }
    .privacy-card { padding: 26px 22px; }
    .cookie-consent { padding: 10px; }
    .cookie-consent__panel { max-height: calc(100dvh - 20px); grid-template-columns: 1fr; gap: 20px; overflow-y: auto; padding: 24px 20px; border-radius: 18px; }
    .cookie-consent__actions { grid-template-columns: 1fr; }
}

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