:root{--font-body:Arial,Helvetica,sans-serif;--font-display:"Trebuchet MS",Arial,sans-serif}

:root {
  --blue: #005eaa;
  --blue-dark: #043f70;
  --yellow: #f9bd00;
  --red: #df2626;
  --ink: #20252a;
  --muted: #6d7378;
  --paper: #ffffff;
  --soft: #f1f2f3;
  --line: #d9dcde;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: white; font-family: var(--font-body), Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { width: 1.1rem; fill: none; stroke: currentColor; stroke-width: 1.8; }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; height: 108px; background: rgba(255,255,255,.98); border-bottom: 1px solid #e1e3e4; transition: .25s; }
.site-header.scrolled { height: 88px; box-shadow: 0 8px 30px rgba(16,30,40,.09); }
.header-inner { width: min(1380px, calc(100% - 70px)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand img { display: block; width: 270px; }
.main-nav { display: flex; align-items: center; gap: 30px; color: #2d3134; font-size: .72rem; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; }
.main-nav > a, .nav-dropdown > button { position: relative; padding: 34px 0; }
.main-nav > a:not(.nav-cta)::after, .nav-dropdown > button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 3px; background: var(--red); transition: .2s; }
.main-nav > a:hover::after, .nav-dropdown > button:hover::after { right: 0; }
.nav-dropdown > button { border: 0; background: transparent; display: flex; align-items: center; gap: 5px; text-transform: uppercase; cursor: pointer; }
.nav-dropdown > button svg { width: 13px; transition: .2s; }
.nav-dropdown.open > button svg { transform: rotate(180deg); }
.nav-cta { display: inline-flex; align-items: center; gap: 12px; padding: 14px 18px !important; color: white !important; background: var(--blue); text-transform: none; letter-spacing: .02em; }
.nav-cta:hover { background: var(--blue-dark); }
.dropdown-panel { position: absolute; visibility: hidden; opacity: 0; top: 88px; left: 50%; translate: -50% 0; transform: translateY(-8px); width: min(900px, calc(100vw - 60px)); display: grid; grid-template-columns: 270px 1fr; color: var(--ink); background: white; border-top: 4px solid var(--red); box-shadow: 0 22px 48px rgba(14,35,49,.18); transition: .2s; }
.nav-dropdown.open .dropdown-panel, .nav-dropdown:hover .dropdown-panel { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-intro { padding: 34px; color: white; background: var(--blue); }
.dropdown-intro span { color: #d5e7f5; font-size: .62rem; }
.dropdown-intro strong { display: block; margin: 10px 0 14px; font: 600 1.5rem/1.2 var(--font-display); }
.dropdown-intro p { color: #d5e7f5; font-size: .72rem; line-height: 1.7; }
.dropdown-links { padding: 12px; display: grid; grid-template-columns: 1fr 1fr; }
.dropdown-links a { display: grid; grid-template-columns: 1fr 18px; align-items: center; gap: 8px; padding: 15px; border-bottom: 1px solid #edf0f1; transition: .2s; }
.dropdown-links a:hover { color: var(--blue); background: #f3f7fa; }
.dropdown-links a > span { color: var(--red); font-size: .6rem; font-weight: 800; }
.dropdown-links strong, .dropdown-links small { display: block; }
.dropdown-links strong { font-size: .75rem; }
.dropdown-links small { margin-top: 3px; color: #899095; font-size: .58rem; text-transform: none; letter-spacing: 0; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 790px; padding-top: 108px; overflow: hidden; color: var(--ink); background: #f5f5f5; }
.hero::before { content: ""; position: absolute; z-index: 2; inset: 108px 0 0 57%; background: linear-gradient(105deg, rgba(0,71,127,.23), rgba(1,38,66,.12)); }
.hero::after { content: ""; position: absolute; z-index: 2; inset: 108px 0 0 57%; background: linear-gradient(to right, rgba(3,47,79,.18), transparent 35%); }
.hero-slider { position: absolute; z-index: 1; inset: 108px 0 0 57%; overflow: hidden; background: var(--blue-dark); }
.hero-slider > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity .9s ease, transform 6s ease; }
.hero-slider > img.active { opacity: 1; transform: scale(1); }
.slide-counter { position: absolute; z-index: 3; right: 35px; top: 32px; padding: 9px 12px; color: white; background: rgba(0,0,0,.46); font-size: .58rem; letter-spacing: .12em; }
.slide-counter strong { color: var(--yellow); }
.slide-dots { position: absolute; z-index: 3; right: 35px; bottom: 31px; display: flex; gap: 7px; }
.slide-dots button { width: 18px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.55); cursor: pointer; transition: .2s; }
.slide-dots button.active { width: 34px; background: var(--yellow); }
.hero-content { position: relative; z-index: 4; width: min(1240px, calc(100% - 100px)); margin: auto; padding-top: 135px; }
.eyebrow { display: flex; align-items: center; gap: 13px; color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 3px; background: var(--red); }
.eyebrow.dark { color: var(--blue); }
.hero h1, h2 { margin: 25px 0; font-family: var(--font-display), Arial, sans-serif; font-weight: 600; line-height: 1.04; letter-spacing: -.035em; }
.hero h1 { max-width: 790px; font-size: clamp(4rem, 6.9vw, 7rem); }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero h1 em { color: var(--blue); -webkit-text-stroke: 0; -webkit-text-fill-color: currentColor; }
.hero-copy { width: min(510px, 100%); color: var(--muted); font-size: 1rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; gap: 24px; padding: 17px 21px; font-size: .74rem; font-weight: 800; transition: .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--blue); }
.button.primary:hover { background: var(--blue-dark); }
.text-link, .line-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; color: var(--ink); border-bottom: 2px solid var(--red); font-size: .74rem; font-weight: 800; }
.hero-facts { position: absolute; z-index: 5; right: max(5vw, 65px); bottom: 65px; display: flex; color: white; border-left: 1px solid rgba(255,255,255,.35); }
.hero-facts div { padding: 0 25px; border-right: 1px solid rgba(255,255,255,.35); }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font: 600 1.45rem/1 var(--font-display); }
.hero-facts span { margin-top: 6px; color: rgba(255,255,255,.7); font-size: .55rem; }
.scroll-cue { display: none; }

.section { padding: 105px max(7vw, 60px); }
.section-label { color: #979da1; font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.section-label.light { color: #8b9297; }
.intro { background: white; }
.intro-grid { max-width: 1240px; margin: 50px auto 65px; display: grid; grid-template-columns: 1fr .85fr; gap: 105px; }
h2 { font-size: clamp(3rem, 4.6vw, 5rem); }
.intro-copy { padding-top: 42px; }
.intro-copy p { color: var(--muted); font-size: .88rem; line-height: 1.9; }
.intro-copy .lead { color: var(--ink); font: 500 1.2rem/1.65 var(--font-display); }
.line-link { margin-top: 18px; color: var(--blue); }
.intro-image { grid-column: 1 / -1; height: 370px; margin: 5px 0 0; overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.process-strip { max-width: 1240px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-strip div { position: relative; display: flex; align-items: center; gap: 18px; padding: 25px 14px 25px 0; }
.process-strip span { color: var(--red); font-size: .58rem; font-weight: 800; }
.process-strip strong { font-size: .75rem; }
.process-strip i { position: absolute; right: 24px; width: 45px; height: 1px; background: #b6bbbe; }
.process-strip i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid #b6bbbe; border-right: 1px solid #b6bbbe; transform: rotate(45deg); }

.services { color: var(--ink); background: var(--soft); }
.services-heading, .reference-heading { max-width: 1240px; margin: 48px auto 60px; display: grid; grid-template-columns: 1fr .62fr; align-items: end; gap: 90px; }
.services-heading > p, .reference-heading > p { padding-bottom: 20px; color: var(--muted); font-size: .86rem; line-height: 1.9; }
.services h2 em { color: var(--blue); }
.service-list { max-width: 1240px; margin: auto; border-top: 1px solid #cfd3d5; }
.service-list article { min-height: 138px; display: grid; grid-template-columns: 45px 90px .9fr 1.15fr 56px; align-items: center; gap: 24px; border-bottom: 1px solid #cfd3d5; transition: .2s; }
.service-list article:hover { padding-left: 16px; background: white; box-shadow: inset 4px 0 var(--red); }
.service-number { color: var(--red); font-size: .62rem; font-weight: 800; }
.service-icon { width: 76px; height: 70px; object-fit: contain; filter: grayscale(1); opacity: .75; transition: .2s; }
.service-list article:hover .service-icon { filter: none; opacity: 1; }
.service-title small { color: #8c9397; font-size: .54rem; letter-spacing: .16em; text-transform: uppercase; }
.service-title h3 { margin: 7px 0 0; font: 600 1.45rem/1.2 var(--font-display); }
.service-list article > p { color: var(--muted); font-size: .76rem; line-height: 1.8; }
.service-list button { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid #bac0c3; border-radius: 0; background: transparent; transition: .2s; }
.service-list article:hover button { color: white; border-color: var(--blue); background: var(--blue); }
.service-details { max-width: 1240px; margin: 65px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-details article { padding: 32px; background: white; border-top: 4px solid var(--blue); }
.service-details article > span { color: var(--red); font-size: .62rem; font-weight: 800; }
.service-details h3 { margin: 10px 0 18px; font: 600 1.45rem/1.25 var(--font-display); }
.service-details h4 { margin: 24px 0 8px; font-size: .75rem; }
.service-details p, .service-details li { color: var(--muted); font-size: .76rem; line-height: 1.8; }
.service-details ul { padding-left: 18px; }
.project-gallery { max-width: 1240px; margin: 65px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.project-gallery figure, .hub-gallery-grid figure { margin: 0; overflow: hidden; background: white; }
.project-gallery img { width: 100%; aspect-ratio: 1.45; display: block; object-fit: cover; transition: .35s; }
.project-gallery figure:hover img, .hub-gallery-grid figure:hover img { transform: scale(1.035); }
.project-gallery figcaption, .hub-gallery-grid figcaption { display: flex; justify-content: space-between; padding: 14px 16px; color: var(--ink); font-size: .68rem; font-weight: 800; }
.project-gallery figcaption span, .hub-gallery-grid figcaption span { color: var(--red); }

.safety { min-height: 650px; padding: 0; display: grid; grid-template-columns: .9fr 1.1fr; background: white; }
.safety-visual { position: relative; min-height: 610px; overflow: hidden; background: #e8eaeb; border-right: 1px solid #d5d8da; }
.safety-grid { position: absolute; inset: 0; opacity: .7; background-image: linear-gradient(rgba(0,94,170,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(0,94,170,.12) 1px, transparent 1px); background-size: 65px 65px; }
.safety-ring { position: absolute; border: 2px solid rgba(0,94,170,.35); border-radius: 50%; }
.safety-ring.r1 { width: 440px; height: 440px; left: 9%; top: 13%; }
.safety-ring.r2 { width: 260px; height: 260px; left: 23%; top: 27%; border-style: dashed; }
.safety-cross { position: absolute; left: 30%; top: 24%; color: var(--blue); font: 200 12rem/1 var(--font-display); }
.safety-badge { position: absolute; right: 8%; bottom: 9%; width: 110px; height: 110px; padding: 25px 18px; color: white; background: var(--blue); }
.safety-badge strong, .safety-badge span { display: block; }
.safety-badge strong { font: 600 1.55rem/1.1 var(--font-display); }
.safety-badge span { font-size: .65rem; }
.safety-content { padding: 82px max(7vw, 70px); }
.safety-content h2 { margin-top: 20px; }
.safety-content > p:not(.eyebrow) { color: var(--muted); font-size: .86rem; line-height: 1.9; }
.safety-content ul { margin: 22px 0; padding: 0; list-style: none; }
.safety-content li { position: relative; padding: 12px 0 12px 27px; border-bottom: 1px solid var(--line); font-size: .75rem; font-weight: 700; }
.safety-content li::before { content: "✓"; position: absolute; left: 0; color: var(--red); }
.safety-contact { margin: 25px 0; padding: 20px; display: grid; grid-template-columns: 1fr 1.7fr; gap: 20px; color: white; background: var(--blue); font-size: .72rem; line-height: 1.7; }
.safety-contact strong { color: var(--yellow); }
.dark-button { color: white; background: var(--blue); }

.hub-gallery { background: var(--soft); }
.hub-gallery-grid { max-width: 1240px; margin: 45px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hub-gallery-grid img { width: 100%; aspect-ratio: 1.35; display: block; object-fit: contain; background: #f8f8f8; transition: .35s; }

.references { background: white; }
.client-grid { max-width: 1240px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client-grid div { min-height: 135px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: .2s; }
.client-grid div:hover { color: white; background: var(--blue); }
.client-grid span { color: var(--red); font-size: .58rem; font-weight: 800; }
.client-grid strong { font: 500 .98rem/1.4 var(--font-display); }
.client-grid small { margin-top: 10px; color: var(--muted); font-size: .65rem; }
.client-grid div:hover small { color: rgba(255,255,255,.7); }

.career { color: white; background: #353b3f; }
.career-inner { max-width: 1240px; margin: 45px auto 0; display: grid; grid-template-columns: 1.2fr .65fr; gap: 100px; align-items: end; }
.career h2 em { color: var(--yellow); }
.career-copy { padding-bottom: 25px; }
.career-copy p { color: rgba(255,255,255,.68); font-size: .86rem; line-height: 1.9; margin-bottom: 25px; }
.career-copy img { width: 100%; height: 210px; margin-bottom: 18px; display: block; object-fit: cover; }
.career .button.primary { color: var(--ink); background: var(--yellow); }

.contact { padding-bottom: 65px; color: white; background: var(--blue); }
.contact .eyebrow { color: white; }
.contact-top { position: relative; max-width: 1240px; min-height: 380px; margin: auto; display: flex; flex-direction: column; justify-content: center; }
.contact h2 { margin-bottom: 0; }
.contact h2 em { color: var(--yellow); }
.contact-circle { position: absolute; right: 4%; width: 160px; height: 160px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--ink); background: var(--yellow); font-size: .72rem; font-weight: 800; transition: .25s; }
.contact-circle:hover { transform: scale(1.04); }
.contact-circle svg { width: 25px; }
.contact-details { max-width: 1240px; margin: auto; padding-top: 30px; display: grid; grid-template-columns: 1.15fr 1fr 1fr 1fr; gap: 25px; border-top: 1px solid rgba(255,255,255,.35); }
.contact-details small { color: rgba(255,255,255,.7); font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-details p { font-size: .75rem; line-height: 1.8; }
.contact-details a:hover { color: var(--yellow); }
.contact-form { max-width: 1240px; margin: 55px auto 0; padding: 38px; color: var(--ink); background: white; }
.form-heading { display: flex; align-items: baseline; gap: 18px; margin-bottom: 25px; }
.form-heading strong { font: 600 1.6rem/1 var(--font-display); }
.form-heading span { color: var(--muted); font-size: .75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { color: #5f676b; font-size: .62rem; font-weight: 700; }
.form-grid input:not([type="checkbox"]), .form-grid textarea { width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid #cfd4d7; background: #f9f9f9; outline: none; font: .8rem var(--font-body); }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--blue); }
.message-field, .privacy-check { grid-column: 1 / -1; }
.privacy-check { display: flex; align-items: center; gap: 10px; }
.privacy-check input { accent-color: var(--blue); }
.contact-form .button { margin-top: 22px; border: 0; cursor: pointer; }
.contact-form > small { display: block; margin-top: 12px; color: #7c8488; }

.legal-content { background: white; }
.legal-panels { max-width: 1240px; margin: 38px auto 0; border-top: 1px solid var(--line); }
.legal-panels details { border-bottom: 1px solid var(--line); }
.legal-panels summary { padding: 25px 4px; display: flex; justify-content: space-between; cursor: pointer; list-style: none; font: 600 1.35rem/1 var(--font-display); }
.legal-panels summary::-webkit-details-marker { display: none; }
.legal-panels summary span { color: var(--red); font-size: 1.2rem; transition: .2s; }
.legal-panels details[open] summary span { transform: rotate(45deg); }
.legal-panels details > div { max-width: 870px; padding: 5px 4px 35px; color: var(--muted); font-size: .78rem; line-height: 1.85; }
.legal-panels h3, .legal-panels h4 { color: var(--ink); }
.legal-panels h3 { margin-top: 25px; font-size: 1rem; }
.legal-panels h4 { margin-top: 20px; font-size: .78rem; }
.legal-panels a { color: var(--blue); }

footer { padding: 72px max(7vw, 60px) 34px; color: white; background: #252a2d; }
.footer-main, .footer-legal { max-width: 1240px; margin: auto; display: flex; align-items: center; }
.footer-main img { width: 235px; margin: 10px 0 12px 18px; }
.footer-main p { margin-left: 70px; color: rgba(255,255,255,.55); font-size: .68rem; line-height: 1.7; letter-spacing: .07em; text-transform: uppercase; }
.to-top { margin-left: auto; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); }
.footer-legal { margin-top: 45px; padding-top: 18px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); font-size: .57rem; }
.footer-legal div { display: flex; gap: 22px; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .brand img { width: 225px; }
}

@media (max-width: 940px) {
  .site-header, .site-header.scrolled { height: 82px; }
  .header-inner { width: calc(100% - 36px); }
  .brand img { width: 210px; }
  .menu-toggle { position: relative; z-index: 4; width: 43px; height: 43px; padding: 11px 8px; border: 0; display: flex; flex-direction: column; justify-content: space-around; background: var(--blue); }
  .menu-toggle span { height: 2px; background: white; transition: .2s; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { display: none; position: fixed; inset: 82px 0 0; padding: 22px 25px 40px; overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; color: var(--ink); background: white; }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-dropdown > button { width: 100%; padding: 16px 0; justify-content: space-between; border-bottom: 1px solid var(--line); font: 600 1.25rem/1.3 var(--font-display); text-transform: none; letter-spacing: 0; }
  .nav-cta { margin-top: 18px; justify-content: space-between; font: 700 .76rem/1 var(--font-body) !important; text-transform: none; }
  .dropdown-panel { position: static; width: 100%; display: none; grid-template-columns: 1fr; translate: none; transform: none; border-top: 0; box-shadow: none; }
  .nav-dropdown:hover .dropdown-panel { visibility: hidden; opacity: 0; }
  .nav-dropdown.open .dropdown-panel { display: block; visibility: visible; opacity: 1; }
  .dropdown-intro { display: none; }
  .dropdown-links { grid-template-columns: 1fr; }
  .hero { min-height: 760px; padding-top: 82px; }
  .hero::before, .hero::after, .hero-slider { inset: 82px 0 0 66%; }
  .hero-content { width: calc(100% - 60px); padding-top: 125px; }
  .hero-facts { right: 30px; }
  .section { padding: 85px 35px; }
  .intro-grid, .services-heading, .reference-heading, .career-inner { grid-template-columns: 1fr; gap: 15px; }
  .intro-copy { padding-top: 0; }
  .service-list article { grid-template-columns: 38px 70px 1fr 45px; padding: 24px 0; }
  .service-list article > p { grid-column: 3 / 5; margin: 0; }
  .service-list button { grid-column: 4; grid-row: 1; }
  .project-gallery, .hub-gallery-grid { grid-template-columns: 1fr 1fr; }
  .service-details { grid-template-columns: 1fr; }
  .safety { grid-template-columns: 1fr; }
  .safety-visual { min-height: 450px; }
  .safety-content { padding: 75px 38px; }
  .client-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .brand img { width: 185px; }
  .hero { min-height: 760px; background: linear-gradient(to bottom, #f5f5f5 0 72%, var(--blue) 72%); }
  .hero::before, .hero::after, .hero-slider { inset: auto 0 0; height: 28%; }
  .hero-content { width: calc(100% - 40px); padding-top: 78px; }
  .hero h1 { font-size: 3.35rem; }
  .hero-copy { font-size: .88rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 25px; }
  .hero-facts { right: 12px; left: 12px; bottom: 28px; }
  .hero-facts div { flex: 1; padding: 0 9px; }
  .hero-facts strong { font-size: 1.05rem; }
  .hero-facts span { font-size: .48rem; }
  h2 { font-size: 2.8rem; }
  .section { padding: 70px 20px; }
  .process-strip { grid-template-columns: 1fr 1fr; }
  .process-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-strip i { display: none; }
  .service-list article { grid-template-columns: 28px 52px 1fr 38px; gap: 10px; }
  .service-icon { width: 48px; height: 48px; }
  .service-title h3 { font-size: 1.2rem; }
  .project-gallery, .hub-gallery-grid { grid-template-columns: 1fr; }
  .safety-visual { min-height: 360px; }
  .safety-ring.r1 { width: 330px; height: 330px; left: -7%; }
  .safety-ring.r2 { width: 195px; height: 195px; left: 17%; }
  .safety-cross { left: 23%; font-size: 9rem; }
  .safety-content { padding: 65px 20px; }
  .client-grid { grid-template-columns: 1fr; }
  .client-grid div { min-height: 105px; }
  .career-copy { padding-bottom: 0; }
  .contact-top { min-height: 520px; justify-content: flex-start; padding-top: 25px; }
  .contact-circle { right: 3px; bottom: 40px; width: 140px; height: 140px; }
  .contact-details { grid-template-columns: 1fr; gap: 20px; }
  .contact-form { padding: 25px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .message-field, .privacy-check { grid-column: 1; }
  footer { padding: 48px 20px 22px; }
  .footer-main { align-items: flex-start; flex-direction: column; gap: 18px; }
  .footer-main img { width: 205px; margin: 12px 0 14px 10px; }
  .footer-main p { margin: 0; }
  .to-top { position: absolute; right: 20px; }
  .footer-legal { align-items: flex-start; flex-direction: column; gap: 16px; }
}

/* Mehrseitige ANKO-Version */
.multi-header { position: sticky; z-index: 50; top: 0; height: 106px; background: rgba(255,255,255,.98); border-bottom: 1px solid #e0e3e5; box-shadow: 0 5px 22px rgba(17,35,48,.06); }
.multi-header-inner { width: min(1380px, calc(100% - 70px)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.multi-header .brand img { width: 270px; }
.multi-nav { display: flex; align-items: center; gap: 27px; color: #2c3134; font-size: .7rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.multi-nav > a, .multi-nav > .nav-dropdown > button { position: relative; padding: 40px 0 36px; }
.multi-nav > a::after, .multi-nav > .nav-dropdown > button::after { content: ""; position: absolute; right: 100%; bottom: 27px; left: 0; height: 3px; background: var(--red); transition: .2s; }
.multi-nav > a:hover::after, .multi-nav > a.active::after, .multi-nav > .nav-dropdown > button:hover::after, .multi-nav > .nav-dropdown > button.active::after { right: 0; }
.multi-nav .nav-dropdown > button { border: 0; display: flex; align-items: center; gap: 6px; background: transparent; text-transform: uppercase; cursor: pointer; }
.multi-nav .dropdown-panel { top: 105px; }
.multi-nav .dropdown-links { grid-template-columns: 1fr 1fr; }
.multi-nav .dropdown-links a { grid-template-columns: 1fr 18px; }

.multi-home-hero { min-height: 670px; display: grid; grid-template-columns: 48% 52%; background: #f3f3f3; }
.home-copy { padding: 105px max(5vw,55px) 75px max(7vw,70px); display: flex; flex-direction: column; justify-content: center; }
.home-copy > small, .page-hero small, .home-intro small { color: var(--blue); font-size: .62rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.home-copy h1 { margin: 25px 0; font: 600 clamp(3.8rem,5.8vw,6.3rem)/1.01 var(--font-display); letter-spacing: -.045em; }
.home-copy h1 em { color: var(--blue); font-style: normal; }
.home-copy p { max-width: 540px; color: var(--muted); font-size: .94rem; line-height: 1.85; }
.home-copy .button { align-self: flex-start; margin-top: 20px; }
.home-slider { position: relative; min-height: 670px; overflow: hidden; background: var(--blue-dark); }
.home-slider > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s; }
.home-slider > img.active { opacity: 1; }
.home-dots { position: absolute; z-index: 2; right: 35px; bottom: 30px; display: flex; gap: 8px; }
.home-dots button { width: 24px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.55); cursor: pointer; }
.home-dots button.active { width: 44px; background: var(--yellow); }
.content-section { padding: 95px max(7vw,60px); }
.home-intro { max-width: 1450px; margin: auto; display: grid; grid-template-columns: .9fr 1fr; gap: 100px; }
.home-intro h2, .home-services h2, .page-content h2 { font: 600 clamp(2rem,3.4vw,3.8rem)/1.12 var(--font-display); letter-spacing: -.03em; }
.home-intro p, .page-content > p, .page-content li { color: var(--muted); font-size: .88rem; line-height: 1.9; }
.home-services { background: var(--soft); }
.home-services > h2 { max-width: 1240px; margin: 0 auto 45px; }
.home-service-grid { max-width: 1240px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.home-service-grid a { min-height: 250px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: .2s; }
.home-service-grid a:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(18,43,59,.1); }
.home-service-grid img { width: 85px; height: 80px; object-fit: contain; margin-bottom: 30px; }
.home-service-grid strong { font: 600 1.2rem/1.3 var(--font-display); }
.home-service-grid span { margin-top: auto; display: flex; align-items: center; gap: 10px; color: var(--blue); font-size: .68rem; font-weight: 800; }

.page-hero { min-height: 360px; display: grid; grid-template-columns: 52% 48%; color: white; background: var(--blue); overflow: hidden; }
.page-hero > div { padding: 78px max(5vw,60px) 60px max(7vw,70px); display: flex; flex-direction: column; justify-content: center; }
.page-hero small { color: rgba(255,255,255,.7); }
.page-hero h1 { margin: 15px 0 10px; font: 600 clamp(3rem,5vw,5.3rem)/1 var(--font-display); letter-spacing: -.04em; }
.page-hero p { color: rgba(255,255,255,.78); font-size: .9rem; }
.page-hero > img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.page-content { width: min(1240px, calc(100% - 80px)); min-height: 420px; margin: auto; padding: 90px 0 110px; }
.page-content > p { max-width: 900px; }
.page-content a { color: var(--blue); }
.page-content .button { color: white; }
.page-content ul { padding-left: 22px; }
.page-content li { margin-bottom: 8px; }
.overview-grid { margin: 45px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.overview-grid a { position: relative; min-height: 150px; padding: 28px; display: grid; grid-template-columns: 95px 1fr 24px; align-items: center; gap: 22px; color: var(--ink); background: var(--soft); border-left: 4px solid var(--blue); }
.overview-grid img { width: 80px; max-height: 80px; object-fit: contain; }
.overview-grid h3 { font: 600 1.15rem/1.3 var(--font-display); }
.page-gallery { margin-top: 45px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.page-gallery figure { margin: 0; border: 1px solid var(--line); background: white; overflow: hidden; }
.page-gallery img { width: 100%; height: 250px; object-fit: cover; display: block; transition: .3s; }
.page-gallery img.contain { object-fit: contain; background: #f5f5f5; }
.page-gallery figure:hover img { transform: scale(1.03); }
.page-gallery figcaption { padding: 15px; font-size: .7rem; font-weight: 800; }
.check-list { max-width: 900px; padding-left: 0 !important; list-style: none; counter-reset: safety; }
.check-list li { counter-increment: safety; padding: 14px 15px 14px 55px; position: relative; border-bottom: 1px solid var(--line); }
.check-list li::before { content: counter(safety,decimal-leading-zero); position: absolute; left: 12px; color: var(--red); font-weight: 800; }
.contact-card, .notice { margin-top: 35px; padding: 28px; background: var(--soft); border-left: 4px solid var(--blue); }
.contact-card strong { color: var(--blue); }
.reference-page-grid { display: grid; grid-template-columns: repeat(3,1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.reference-page-grid div { min-height: 130px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reference-page-grid strong { font: 600 1rem/1.35 var(--font-display); }
.reference-page-grid span { color: var(--muted); font-size: .68rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-cards > div { padding: 27px; background: var(--soft); }
.contact-cards h3 { color: var(--blue); font: 600 1rem/1.3 var(--font-display); }
.contact-cards p { color: var(--muted); font-size: .76rem; line-height: 1.8; }
.page-form { margin-top: 50px; padding: 35px; background: var(--soft); }
.page-form > div { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.page-form input:not([type=checkbox]), .page-form textarea { padding: 13px; border: 1px solid #cbd0d3; background: white; font: .78rem var(--font-body); }
.page-form textarea { grid-column: 1/-1; }
.page-form > label { display: flex; align-items: center; gap: 8px; margin: 18px 0; font-size: .7rem; }
.page-form button { border: 0; cursor: pointer; }

.multi-footer { padding: 72px max(7vw,60px) 34px; color: white; background: #252a2d; }
.multi-footer .footer-main { max-width: 1240px; margin: auto; }
.multi-footer .footer-main img { width: 235px; margin: 34px 0 38px 18px; }
.footer-contact { margin-left: auto; color: rgba(255,255,255,.62); font-size: .68rem; line-height: 1.8; text-align: right; }
.multi-footer .footer-legal { max-width: 1240px; margin: 45px auto 0; }

@media (max-width: 1050px) {
  .multi-nav { gap: 16px; }
  .multi-header .brand img { width: 220px; }
  .multi-home-hero { grid-template-columns: 55% 45%; }
  .home-copy { padding-left: 40px; padding-right: 35px; }
  .home-service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .multi-header { height: 82px; }
  .multi-header-inner { width: calc(100% - 36px); }
  .multi-header .menu-toggle { display: flex; }
  .multi-nav { display: none; position: fixed; inset: 82px 0 0; padding: 20px 25px 45px; overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; background: white; }
  .multi-nav.open { display: flex; }
  .multi-nav > a, .multi-nav > .nav-dropdown > button { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font: 600 1.2rem/1.2 var(--font-display); text-transform: none; letter-spacing: 0; justify-content: space-between; }
  .multi-nav .dropdown-panel { position: static; width: 100%; display: none; grid-template-columns: 1fr; translate: none; transform: none; box-shadow: none; }
  .multi-nav .nav-dropdown:hover .dropdown-panel { visibility: hidden; opacity: 0; }
  .multi-nav .nav-dropdown.open .dropdown-panel { display: block; visibility: visible; opacity: 1; }
  .multi-nav .dropdown-intro { display: none; }
  .multi-nav .dropdown-links { grid-template-columns: 1fr; }
  .multi-home-hero { grid-template-columns: 1fr; }
  .home-copy { min-height: 550px; padding: 80px 35px; }
  .home-slider { min-height: 420px; }
  .home-intro { grid-template-columns: 1fr; gap: 25px; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero > img { min-height: 260px; max-height: 320px; }
  .page-content { width: calc(100% - 50px); padding: 70px 0 85px; }
  .page-gallery, .reference-page-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .multi-header .brand img { width: 185px; }
  .home-copy h1 { font-size: 3.25rem; }
  .home-service-grid, .overview-grid, .page-gallery, .reference-page-grid { grid-template-columns: 1fr; }
  .content-section { padding: 68px 20px; }
  .page-hero > div { padding: 55px 25px; }
  .page-hero h1 { font-size: 3rem; }
  .page-content { width: calc(100% - 40px); }
  .page-form { padding: 24px 18px; }
  .page-form > div { grid-template-columns: 1fr; }
  .page-form textarea { grid-column: 1; }
  .multi-footer { padding: 58px 25px 30px; }
  .multi-footer .footer-main { align-items: flex-start; }
  .multi-footer .footer-main img { margin: 28px 0 32px 10px; }
  .footer-contact { margin-left: 0; text-align: left; }
}

/* Footer-Farben nach dem Erscheinungsbild der bisherigen ANKO-Webseite */
.multi-footer{padding-bottom:0;background:#f6f6f6;color:#404040}
.multi-footer .footer-main p,
.multi-footer .footer-contact,
.multi-footer .footer-legal{color:#404040}
.multi-footer .footer-contact a,
.multi-footer .footer-legal a{color:#0056a3}
.multi-footer .footer-legal{
  max-width:none;
  margin:45px calc(-1 * max(7vw,60px)) 0;
  padding:28px max(7vw,60px);
  background:#fff;
  border-top:0;
}
@media(max-width:700px){
  .multi-footer{padding-bottom:0}
  .multi-footer .footer-legal{
    margin:38px -25px 0;
    padding:24px 25px;
  }
}

.career-page{display:grid;gap:72px}
.career-intro{max-width:900px}
.career-intro>small,.career-application small{color:var(--blue);font-size:.65rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase}
.career-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.career-benefits article{padding:34px;background:#f3f5f6;border-top:4px solid var(--blue)}
.career-benefits span{color:var(--red);font-size:.7rem;font-weight:800}
.career-benefits h3{margin:16px 0 12px;font:600 1.3rem/1.25 var(--font-display)}
.career-benefits p{margin:0;color:var(--muted)}
.career-application{display:flex;align-items:center;justify-content:space-between;gap:45px;padding:45px;background:#eef4f8}
.career-application>div{max-width:720px}
.career-application h2{font-size:clamp(2rem,3.2vw,3.4rem)}
.career-application .button{flex:0 0 auto}
@media(max-width:800px){
  .career-benefits{grid-template-columns:1fr}
  .career-application{align-items:flex-start;flex-direction:column}
}

/* SEO, Barrierefreiheit und Navigation */
.skip-link{position:fixed;z-index:9999;left:16px;top:12px;padding:12px 18px;background:#fff;color:#043f70;border:2px solid #005eaa;transform:translateY(-160%);transition:transform .2s}
.skip-link:focus{transform:translateY(0)}
.multi-nav a:focus-visible,.multi-nav button:focus-visible,.button:focus-visible{outline:3px solid var(--yellow);outline-offset:4px}
.multi-footer a{color:#fff}
.multi-footer a:hover{text-decoration:underline;text-underline-offset:4px}
.page-content a:not(.button){color:var(--blue);text-decoration:underline;text-underline-offset:3px}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}

/* Contact Form 7 – ANKO Design */
.wpcf7 { width: 100%; }
.wpcf7 form { margin: 0; }
.wpcf7 .anko-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.wpcf7 .anko-form-field { min-width: 0; }
.wpcf7 .anko-form-field-full { grid-column: 1 / -1; }
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #cfd4d7;
  border-radius: 0;
  color: var(--ink);
  background: #f9f9f9;
  box-shadow: none;
  outline: none;
  font: 400 .88rem/1.45 var(--font-body);
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.wpcf7 textarea { min-height: 170px; resize: vertical; }
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,94,170,.1);
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: #747b80; opacity: 1; }
.wpcf7 .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5f676b;
  font-size: .78rem;
  line-height: 1.6;
  cursor: pointer;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}
.wpcf7 a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  width: auto;
  min-width: 180px;
  padding: 16px 24px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--blue);
  font: 800 .75rem/1 var(--font-body);
  letter-spacing: .03em;
  cursor: pointer;
  transition: background-color .2s, transform .2s;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover { background: var(--blue-dark); transform: translateY(-2px); }
.wpcf7 .wpcf7-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.wpcf7 .wpcf7-spinner { margin: 0 0 0 12px; vertical-align: middle; }
.wpcf7 .wpcf7-not-valid { border-color: #c92f2f !important; }
.wpcf7 .wpcf7-not-valid-tip { margin-top: 6px; color: #b42318; font-size: .72rem; }
.wpcf7 form .wpcf7-response-output {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 0;
  border-left: 4px solid var(--blue);
  color: var(--ink);
  background: #edf6fc;
  font-size: .8rem;
  line-height: 1.55;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-left-color: #d89a00;
  background: #fff8e5;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border-left-color: #c92f2f;
  background: #fff0f0;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-left-color: #28834f;
  background: #edf8f1;
}

@media (max-width: 700px) {
  .wpcf7 .anko-form-grid { grid-template-columns: 1fr; }
  .wpcf7 .anko-form-field-full { grid-column: auto; }
  .wpcf7 input[type="submit"], .wpcf7 .wpcf7-submit { width: 100%; }
}

/* ANKO Theme 1.3: stabile Leistungsübersicht */
.overview-grid { align-items: stretch; }
.overview-grid a {
  overflow: hidden;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.overview-grid a:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 14px 32px rgba(18,43,59,.10);
}
.overview-grid h3 { margin: 0; min-width: 0; overflow-wrap: anywhere; }
.overview-grid svg { width: 24px; height: 24px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; }
.overview-arrow { justify-self: end; color: var(--blue); font-size: 1.45rem; line-height: 1; }
.overview-symbol { width: 80px; height: 80px; display: grid; place-items: center; color: var(--blue); border: 2px solid var(--blue); border-radius: 50%; font: 700 2rem/1 var(--font-display); }

.anko-contact-form-wrap { margin-top: 70px; }
.anko-form-intro { margin: -20px 0 28px; color: var(--muted); }
.privacy-page { max-width: 980px; }
.privacy-page h2 { margin-top: 54px; font-size: clamp(1.55rem,2.5vw,2.35rem); }
.privacy-page h2:first-of-type { margin-top: 36px; }
.privacy-page p, .privacy-page li { color: var(--muted); line-height: 1.85; }
.privacy-intro { padding: 24px 28px; background: var(--soft); border-left: 4px solid var(--blue); }

@media (max-width: 720px) {
  .overview-grid a { grid-template-columns: 68px 1fr 22px; padding: 22px 18px; gap: 14px; }
  .overview-grid img, .overview-symbol { width: 58px; height: 58px; }
}

/* ANKO Theme 1.5 – klare Seitenüberschriften und neue Leistungsübersicht */
.anko-page-heading {
  background: linear-gradient(135deg, #005eaa 0%, #064a82 100%);
  color: #fff;
}
.anko-page-heading__inner {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding: 58px 0 62px;
}
.anko-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
}
.anko-breadcrumb a { color: #fff; text-decoration: none; }
.anko-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.anko-page-heading h1 {
  margin: 0;
  color: #fff;
  font: 600 clamp(2.7rem, 5vw, 5rem)/1.05 var(--font-display);
  letter-spacing: -.04em;
}
.page-lead {
  max-width: 930px !important;
  margin: 0 0 42px;
  color: #5f686e !important;
  font-size: 1rem !important;
  line-height: 1.85 !important;
}
.anko-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 78px;
}
.anko-service-card {
  min-width: 0;
  min-height: 190px;
  display: grid;
  grid-template-columns: 92px minmax(0,1fr) 32px;
  align-items: center;
  gap: 24px;
  padding: 30px 28px;
  color: var(--ink) !important;
  background: #f3f5f6;
  border: 1px solid #e3e7e9;
  border-top: 4px solid var(--blue);
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.anko-service-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 38px rgba(16,42,60,.11);
}
.anko-service-card__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
}
.anko-service-card__icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.anko-service-card__icon svg {
  width: 66px;
  height: 66px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}
.anko-service-card__body { min-width: 0; display: block; }
.anko-service-card__body strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font: 600 1.25rem/1.25 var(--font-display);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}
.anko-service-card__body > span {
  display: block;
  color: #687176;
  font-size: .82rem;
  line-height: 1.65;
}
.anko-service-card__arrow {
  justify-self: end;
  color: var(--blue);
  font-size: 1.8rem;
  line-height: 1;
  transition: transform .2s ease;
}
.anko-service-card:hover .anko-service-card__arrow { transform: translateX(5px); }
.anko-content-block {
  max-width: 980px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.anko-content-block h2 { margin-top: 38px; }

@media (max-width: 800px) {
  .anko-page-heading__inner { width: calc(100% - 50px); padding: 46px 0 50px; }
  .anko-services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .anko-page-heading__inner { width: calc(100% - 40px); }
  .anko-page-heading h1 { font-size: 2.65rem; }
  .anko-service-card {
    min-height: 0;
    grid-template-columns: 62px minmax(0,1fr) 24px;
    gap: 16px;
    padding: 23px 18px;
  }
  .anko-service-card__icon { width: 58px; height: 58px; }
  .anko-service-card__icon img { width: 55px; height: 55px; }
  .anko-service-card__icon svg { width: 50px; height: 50px; }
  .anko-service-card__body strong { font-size: 1.05rem; }
  .anko-service-card__body > span { font-size: .76rem; }
}


/* Version 1.6: ruhige, bildstarke Leistungsübersicht */
.anko-service-overview { margin: 54px 0 70px; display: grid; gap: 28px; }
.anko-service-row { min-height: 290px; display: grid; grid-template-columns: minmax(320px, 46%) 1fr; overflow: hidden; background: #f2f4f5; color: var(--ink); text-decoration: none; }
.anko-service-row:nth-child(even) { grid-template-columns: 1fr minmax(320px, 46%); }
.anko-service-row:nth-child(even) .anko-service-row__image { order: 2; }
.anko-service-row__image { min-height: 290px; overflow: hidden; background: #e8ebed; }
.anko-service-row__image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.anko-service-row:nth-child(3) .anko-service-row__image img { object-fit: contain; padding: 25px; }
.anko-service-row__content { padding: 44px 52px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.anko-service-row__content small { margin-bottom: 18px; color: var(--red); font-size: .66rem; font-weight: 800; letter-spacing: .15em; }
.anko-service-row__content strong { font: 600 clamp(1.6rem, 2.4vw, 2.35rem)/1.08 var(--font-display); }
.anko-service-row__content > span { max-width: 620px; margin-top: 16px; color: var(--muted); font-size: .88rem; line-height: 1.8; }
.anko-service-row__content b { margin-top: 26px; color: var(--blue); font-size: .72rem; letter-spacing: .04em; }
.anko-service-row:hover .anko-service-row__image img { transform: scale(1.035); }
.anko-service-row:hover .anko-service-row__content b { color: var(--red); }

.anko-page-visual { max-width: 1240px; height: clamp(280px, 36vw, 500px); margin: 0 auto 52px; overflow: hidden; background: #edf0f2; }
.anko-page-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.anko-page-visual img[src$="02.png"] { object-fit: contain; padding: 28px; }

@media (max-width: 760px) {
  .anko-service-row, .anko-service-row:nth-child(even) { grid-template-columns: 1fr; }
  .anko-service-row:nth-child(even) .anko-service-row__image { order: 0; }
  .anko-service-row__image { min-height: 220px; }
  .anko-service-row__content { padding: 30px 26px 34px; }
  .anko-page-visual { width: calc(100% - 36px); margin-bottom: 34px; }
}

/* Version 1.7: Kleine Korrekturen für Karriere und Impressum */
.career-application{
  margin-top:72px;
}
.legal-content{
  max-width:900px;
}
.legal-content h2{
  margin-top:42px;
  margin-bottom:12px;
}
.legal-content h2:first-child{
  margin-top:0;
}
.legal-content p{
  margin:0 0 18px;
}
@media(max-width:800px){
  .career-application{margin-top:46px;}
}

/* Direct contact block (v1.8) */
.anko-direct-contact { margin-top: 70px; padding: clamp(32px, 5vw, 64px); background: #eef5fa; }
.anko-direct-contact h2 { max-width: 760px; margin: 10px 0 18px; }
.anko-direct-contact > p:not(.eyebrow) { max-width: 760px; color: #56616a; }
.anko-direct-contact__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.anko-direct-contact .button-secondary { background: transparent; color: #0067b1; border: 1px solid #0067b1; }
.anko-direct-contact .button-secondary:hover { background: #0067b1; color: #fff; }
@media (max-width: 640px) { .anko-direct-contact__actions { flex-direction: column; align-items: stretch; } .anko-direct-contact__actions .button { text-align: center; } }

/* Improved contrast for direct contact actions (v2.1) */
.anko-direct-contact__actions .button {
  min-width: 150px;
  justify-content: center;
  color: #ffffff;
  background: #0067b1;
  border: 2px solid #0067b1;
  text-decoration: none;
}
.anko-direct-contact__actions .button:hover,
.anko-direct-contact__actions .button:focus-visible {
  color: #ffffff;
  background: #004f89;
  border-color: #004f89;
}
.anko-direct-contact__actions .button-secondary {
  color: #005a9c;
  background: #ffffff;
  border: 2px solid #005a9c;
}
.anko-direct-contact__actions .button-secondary:hover,
.anko-direct-contact__actions .button-secondary:focus-visible {
  color: #ffffff;
  background: #005a9c;
  border-color: #005a9c;
}
