/* 
   UMSA Umwelt & Sachverstand GmbH - Stylesheet
   Brand colors:
     Primδr-Grόn     #2C9664
     Hell-Grau       #F3F4F6
     Sekundδr-Grau   #6B7280
     Schwarz         #14181F
     Weiί             #FFFFFF
    */

:root {
    --green: #2c9664;
    --green-text: #1f7a4d;
    --green-dark: #17603b;
    --green-soft: #e6f4ed;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --black: #14181f;
    --white: #ffffff;
    --red: #d9342b;
    --red-dark: #b8281f;

    --shadow-sm: 0 1px 2px rgba(20, 24, 31, 0.04);
    --shadow: 0 4px 12px rgba(20, 24, 31, 0.06);
    --shadow-lg: 0 16px 48px rgba(20, 24, 31, 0.1);

    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    --container: 1200px;

    --font-sans:
        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    --font-display: "Inter", system-ui, sans-serif;
}

/* reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
}

img,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}
button {
    font-family: inherit;
    cursor: pointer;
}
a {
    color: var(--green-text);
    text-decoration: none;
    transition: color 0.15s ease;
}
a:hover {
    color: var(--green-dark);
}
:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 4px;
}

/* layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 920px) {
/* left / right space on small images for agb / ds */
    .container-narrow > * {
       margin-left: 10px!important ;
       margin-right: 10px!important ;
    }
}
/* type */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    color: var(--black);
}
h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    letter-spacing: -0.03em;
}
h2 {
    font-size: clamp(30px, 4vw, 48px);
}
h3 {
    font-size: clamp(20px, 2vw, 24px);
}
h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
p {
    margin: 0 0 1rem;
}
p:last-child {
    margin-bottom: 0;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-text);
    margin-bottom: 16px;
}
.eyebrow.pill {
    background: var(--green-soft);
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: 0.08em;
}
.eyebrow.pill::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    margin-right: 8px;
    vertical-align: middle;
}

.lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-500);
    max-width: 60ch;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid transparent;
    transition:
        transform 0.12s ease,
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}
.btn:active {
    transform: translateY(1px);
}
.btn-primary {
    background: var(--green-text);
    color: #fff;
}
.btn-primary:hover {
    background: var(--green-dark);
    color: #fff;
}
.btn-ghost {
    background: var(--white);
    color: var(--black);
    border-color: var(--gray-300);
}
.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--black);
}
.btn-red {
    background: var(--red);
    color: #fff;
}
.btn-red:hover {
    background: var(--red-dark);
    color: #fff;
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn .icon {
    width: 16px;
    height: 16px;
}

/*  HEADER / NAV  */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: saturate(1.5) blur(14px);
    backdrop-filter: saturate(1.5) blur(14px);
    border-bottom: 1px solid var(--gray-200);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
    text-decoration: none;
}
.brand-logo {
    height: 52px;
    width: auto;
    display: block;
}
.brand-logo-sm {
    height: 36px;
    width: auto;
    display: block;
}
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    border: 1px solid rgba(44, 150, 100, 0.18);
}
.brand-text {
    line-height: 1.1;
}
.brand-text strong {
    display: block;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
}
.brand-text span {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-links a {
    display: inline-block;
    padding: 10px 14px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition:
        color 0.15s,
        background 0.15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--black);
    background: var(--gray-100);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* mobile nav */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}
@media (max-width: 920px) {
    .nav-links {
        display: none;
    }
    .nav-actions .btn-ghost {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px 24px;
    z-index: 49;
    box-shadow: var(--shadow);
}
.mobile-menu.is-open {
    display: block;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.mobile-menu li a {
    display: block;
    padding: 14px 4px;
    color: var(--black);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

/*  SECTIONS  */
section {
    padding: 96px 0;
}
section.tight {
    padding: 64px 0;
}
@media (max-width: 720px) {
    section {
        padding: 64px 0;
    }
}

section.alt {
    background: var(--gray-100);
}
section.dark {
    background: var(--black);
    color: rgba(255, 255, 255, 0.85);
}
section.dark h1,
section.dark h2,
section.dark h3 {
    color: #fff;
}

/*  HERO  */
.hero {
    padding: 80px 0 96px;
    background:
        radial-gradient(
            60% 80% at 0% 0%,
            rgba(44, 150, 100, 0.06),
            transparent 60%
        ),
        linear-gradient(180deg, #fff, var(--gray-100));
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.hero h1 .accent {
    color: var(--green);
}
#hero-title {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
}
@media (max-width: 480px) {
    #hero-title {
        font-size: 30px;
    }
    .hero h1,
    .hero-subline,
    .hero .lede,
    .eyebrow.pill {
        hyphens: auto;
        overflow-wrap: break-word;
    }
}
.hero-subline .accent {
    color: var(--green-text);
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.hero-stats {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hero-stat .n {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    white-space: nowrap;
}
.hero-stat .n.accent {
    color: var(--green);
}
.hero-stat .l {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}
@media (max-width: 420px) {
    .hero-stat .n {
        font-size: 24px;
    }
}
@media (max-width: 880px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-mark {
    align-self: start;
    margin-top: 116px;
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
    position: relative;
    padding: 4%;
}
.hero-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*  SERVICE CARDS  */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-2px);
    border-color: var(--green);
    box-shadow: var(--shadow);
}
.service-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.service-card-num {
    font-size: 11px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    color: var(--gray-500);
    letter-spacing: 0.08em;
}
.service-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--green-soft);
    color: var(--green);
    display: grid;
    place-items: center;
}
.service-image {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    flex-shrink: 0;
}
.service-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.04);
}
.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}
.service-card .desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 18px;
}
.service-card .bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--gray-700);
}
.service-card .bullets li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    line-height: 1.45;
}
.service-card .bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}
.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-text);
}
.service-link::after {
    content: "β";
    transition: transform 0.15s ease;
}
.service-card:hover .service-link::after {
    transform: translateX(3px);
}

/*  EMERGENCY DARK SECTION  */
.emergency-panel {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.emergency-panel .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 52, 43, 0.14);
    color: #ff6e63;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.emergency-panel .pill::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(217, 52, 43, 0.6);
    animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 52, 43, 0.55);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(217, 52, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 52, 43, 0);
    }
}
.emergency-panel h2 {
    color: #fff;
    font-size: clamp(40px, 5vw, 60px);
}
.emergency-panel p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    max-width: 60ch;
    margin: 16px auto 32px;
}
.emergency-panel .hotline-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}
.emergency-panel .hotline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 28px;
    display: inline-block;
}
.emergency-panel .hotline:hover {
    color: #fff;
}

/*  FEATURE BAND  */
.feature-band {
    background: var(--green-soft);
    border: 1px solid rgba(44, 150, 100, 0.28);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.feature-band-item {
    text-align: center;
}
.feature-band-item .n {
    font-size: 32px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.02em;
}
.feature-band-item .l {
    font-size: 14px;
    color: var(--gray-700);
    margin-top: 4px;
}
@media (max-width: 720px) {
    .feature-band {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 920px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
}
.feature-card .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--green-soft);
    color: var(--green);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--gray-500);
    font-size: 14px;
}
.feature-card.region {
    grid-column: 1 / -1;
    background: var(--green-soft);
    border-color: rgba(44, 150, 100, 0.28);
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 26px 32px;
}
.feature-card.region .icon-wrap {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--green);
    color: #fff;
}
.feature-card.region .region-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feature-card.region h3 {
    color: var(--green-dark);
    margin: 0;
    font-size: 19px;
}
.feature-card.region p {
    color: var(--gray-700);
    font-size: 14.5px;
}
@media (max-width: 560px) {
    .feature-card.region {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }
}

/*  TEAM  */
.team-band {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 24px;
}
.team-band h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.team-band p {
    color: var(--gray-500);
    margin: 0;
}
.team-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: fit-content;
    margin-left: auto;
}
.team-stat .n {
    font-size: 28px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.02em;
    line-height: 1;
}
.team-stat .l {
    font-size: 13px;
    color: var(--gray-500);
    text-align: left;
    margin-top: 4px;
}
@media (max-width: 760px) {
    .team-band {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .team-stats {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px 24px;
    }
    .team-stat .l {
        text-align: left;
    }
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 720px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
.expertise-card {
    background: var(--black);
    border-radius: var(--radius);
    padding: 28px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.expertise-card .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
    transition:
        opacity 0.3s ease,
        transform 0.6s ease;
}
.expertise-card:hover .bg-img {
    opacity: 0.7;
}
.expertise-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 24, 31, 0.35) 0%,
        rgba(20, 24, 31, 0.85) 70%,
        rgba(20, 24, 31, 0.95) 100%
    );
    z-index: 1;
}
.expertise-card > * {
    position: relative;
    z-index: 2;
}
.expertise-card .icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}
.expertise-card h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 6px;
}
.expertise-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
}
.expertise-card.accent::before {
    background: linear-gradient(
        180deg,
        rgba(44, 150, 100, 0.15) 0%,
        rgba(20, 24, 31, 0.85) 75%,
        rgba(20, 24, 31, 0.95) 100%
    );
}

/*  AUFTRAGGEBER  */
.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 720px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}
.client-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
}
.client-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.client-card-num {
    font-family: ui-monospace, monospace;
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.08em;
}
.client-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    display: grid;
    place-items: center;
    color: var(--green);
}
.client-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
}
.client-card p {
    color: var(--gray-500);
    font-size: 14px;
}

/*  NETWORK CHIPS  */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.chip {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--chip-color, var(--gray-200));
    border-radius: 999px;
    background: var(--chip-soft, var(--white));
    font-size: 14px;
    font-weight: 600;
    color: var(--chip-color, var(--gray-700));
}
/* Farbverlauf Blau β Grόn, wie die vier Prozessschritte */
.chip:nth-child(1) {
    --chip-color: oklch(0.47 0.1 232);
    --chip-soft: oklch(0.96 0.026 232);
}
.chip:nth-child(2) {
    --chip-color: oklch(0.47 0.1 216);
    --chip-soft: oklch(0.96 0.026 216);
}
.chip:nth-child(3) {
    --chip-color: oklch(0.47 0.1 200);
    --chip-soft: oklch(0.96 0.026 200);
}
.chip:nth-child(4) {
    --chip-color: oklch(0.47 0.1 184);
    --chip-soft: oklch(0.96 0.026 184);
}
.chip:nth-child(5) {
    --chip-color: oklch(0.47 0.1 168);
    --chip-soft: oklch(0.96 0.026 168);
}
.chip:nth-child(6) {
    --chip-color: oklch(0.47 0.1 152);
    --chip-soft: oklch(0.96 0.026 152);
}

/*  RED STRIP  */
.red-strip {
    background: var(--red);
    color: #fff;
    padding: 24px 0;
}
.red-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.red-strip-left {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: 15px;
}
.red-strip-left .siren {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.red-strip-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.red-strip-right a.tel {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.red-strip-right .btn-ghost {
    background: #fff;
    color: var(--red);
    border-color: #fff;
}
.red-strip-right .btn-ghost:hover {
    background: var(--gray-100);
}

/*  CONTACT  */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
}
@media (max-width: 880px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info-block {
    margin-bottom: 28px;
}
.contact-info-block h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}
.contact-info-block h4 .icon {
    color: var(--green);
    width: 20px;
    height: 20px;
}
.contact-info-block p,
.contact-info-block address {
    font-style: normal;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.65;
    margin-left: 26px;
}
.contact-info-block .tel-emergency {
    color: var(--black);
    font-weight: 600;
}
.contact-info-block .tel-emergency a {
    color: inherit;
    text-decoration: underline;
}

/* form */
.contact-form-wrap {
    background: var(--green-soft);
    border: 1px solid rgba(44, 150, 100, 0.28);
    border-radius: var(--radius);
    padding: 32px;
}
.contact-form-wrap h3 {
    font-size: 20px;
    margin-bottom: 24px;
}
/* Kontaktbereich grόn hinterlegt - identischer Ton wie die Ansatz-Kδsten,
   grόner Trennrahmen oben als visuelle Fortfόhrung */
#kontakt {
    background: var(--green-soft);
    border-top: 1px solid rgba(44, 150, 100, 0.28);
}
/* FlieΓtext auf grόnem Grund dunkler fόr WCAG-AA (β₯4,5:1) */
#kontakt .lede,
#kontakt .contact-info-block p,
#kontakt .contact-info-block address,
#kontakt .form-note {
    color: var(--gray-700);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field.full {
    grid-column: 1 / -1;
}
.field label {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}
.field input,
.field textarea,
.field select {
    font-family: inherit;
    font-size: 15px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    color: var(--black);
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}
.field input::placeholder,
.field textarea::placeholder {
    color: var(--gray-500);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(44, 150, 100, 0.14);
}
.field.has-error input,
.field.has-error textarea,
.field.has-error select {
    border-color: var(--red);
}
.field .err {
    color: var(--red);
    font-size: 13px;
    min-height: 14px;
}
.form-actions {
    margin-top: 18px;
}
.form-actions .btn {
    width: 100%;
    padding: 16px 22px;
    font-size: 15px;
}
.form-note {
    margin-top: 14px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.55;
}
.form-success {
    text-align: center;
    padding: 40px 24px;
}
.form-success .check {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
}
.form-success h3 {
    margin-bottom: 8px;
}
.form-success p {
    color: var(--gray-500);
}

/*  FOOTER  */
.site-footer {
    border-top: 1px solid var(--gray-200);
    padding: 48px 0 32px;
    background: var(--white);
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
}
.footer-left .brand-logo-sm {
    height: 32px;
}
.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
}
.footer-right a,
.footer-right span {
    color: var(--gray-500);
    font-size: 14px;
}
.footer-right a:hover {
    color: var(--black);
}

/*  LEGAL PAGES  */
.legal-header {
    padding: 56px 0 32px;
    border-bottom: 1px solid var(--gray-200);
}
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 32px;
}
.legal-back:hover {
    color: var(--black);
}
.legal-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 12px;
}
.legal-body {
    padding: 56px 0 96px;
}
.legal-body h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 40px 0 16px;
}
.legal-body h2:first-child {
    margin-top: 0;
}
.legal-body h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 28px 0 10px;
}
.legal-body p,
.legal-body ul,
.legal-body ol {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 14px;
}
.legal-body ul,
.legal-body ol {
    padding-left: 22px;
}
.legal-body li {
    margin-bottom: 6px;
}
.legal-body strong {
    color: var(--black);
    font-weight: 600;
}

.legal-notice {
    background: #fff8e1;
    border-left: 4px solid #f0b429;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0 40px;
    font-size: 14px;
    color: #4b3f0f;
}

.legal-toc {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 24px 0 48px;
}
.legal-toc h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}
.legal-toc ol {
    list-style: decimal;
    padding-left: 22px;
    margin: 0;
    column-count: 1;
}
.legal-toc li {
    font-size: 14px;
    margin-bottom: 6px;
}
.legal-toc a {
    color: var(--green-text);
}
@media (min-width: 720px) {
    .legal-toc ol {
        column-count: 2;
        column-gap: 32px;
    }
}

/*  UTILITIES  */
.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;
}
.divider {
    height: 1px;
    background: var(--gray-200);
    margin: 32px 0;
}

/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
   MODERN ENHANCEMENTS - Hero mesh, trust bullets, marquee, process timeline,
   service card refinements, scroll reveals.
   Loaded last; respects prefers-reduced-motion.
   ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */

/*  Hero mesh  */
.hero {
    position: relative;
    overflow: hidden;
}
.hero-mesh {
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    background:
        radial-gradient(
            40% 50% at 10% 20%,
            rgba(44, 150, 100, 0.16),
            transparent 60%
        ),
        radial-gradient(
            30% 40% at 90% 10%,
            rgba(44, 150, 100, 0.1),
            transparent 65%
        ),
        radial-gradient(
            50% 50% at 80% 90%,
            rgba(44, 150, 100, 0.08),
            transparent 65%
        );
    animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(-2%, -1%, 0) scale(1.04);
    }
}
.hero .container {
    position: relative;
    z-index: 1;
}

/*  Hero trust bullets  */
.hero-trust {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}
.hero-trust .check {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

/*  Marquee band  */
.marquee-section {
    padding: 28px 0;
    background: var(--black);
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee {
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
    overflow: hidden;
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: marqueeSlide 38s linear infinite;
    will-change: transform;
}
.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}
@keyframes marqueeSlide {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}
.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
}
.marquee-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

/*  Process timeline  */
.process-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: process;
}
@media (max-width: 980px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
}
@media (max-width: 560px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
.process-step {
    position: relative;
    padding-top: 12px;
}
.process-num {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--green-text);
    margin-bottom: 14px;
}
.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--green);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(20, 24, 31, 0.04);
}
.process-step h3 {
    font-size: 19px;
    margin-bottom: 8px;
}
.process-step p {
    color: var(--gray-500);
    font-size: 14.5px;
    line-height: 1.6;
}

/* connecting line between steps (desktop only) */
.process-line {
    position: absolute;
    top: calc(12px + 14px + 14px + 56px / 2 - 1px); /* center of icon */
    left: calc(56px + 16px);
    right: -28px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--gray-300) 0 4px,
        transparent 4px 10px
    );
    z-index: 1;
}
@media (max-width: 980px) {
    .process-line {
        display: none;
    }
}

/*  Service card top accent  */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    box-shadow: 0 16px 48px rgba(20, 24, 31, 0.08);
}

/*  Feature card hover  */
.feature-card {
    transition:
        transform 0.25s ease,
        border-color 0.2s ease,
        box-shadow 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--green);
    box-shadow: 0 12px 32px rgba(20, 24, 31, 0.06);
}

/*  Eyebrow pill polish (animated dot)  */
.eyebrow.pill::before {
    box-shadow: 0 0 0 0 rgba(44, 150, 100, 0.5);
    animation: pillPulse 2.4s ease-out infinite;
}
@keyframes pillPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 150, 100, 0.45);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(44, 150, 100, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 150, 100, 0);
    }
}

/*  Scroll reveals 
   Only active when JS is ready AND user has not opted into reduced motion.
   Falls back to no-op (content visible) otherwise.            */
@media (prefers-reduced-motion: no-preference) {
    body.js-ready section:not(#top):not(.in-view),
    body.js-ready .service-card:not(.in-view),
    body.js-ready .feature-card:not(.in-view),
    body.js-ready .client-card:not(.in-view),
    body.js-ready .expertise-card:not(.in-view),
    body.js-ready .process-step:not(.in-view) {
        opacity: 0;
        transform: translateY(24px);
    }
    body.js-ready section:not(#top),
    body.js-ready .service-card,
    body.js-ready .feature-card,
    body.js-ready .client-card,
    body.js-ready .expertise-card,
    body.js-ready .process-step {
        transition:
            opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
            transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    }

    /* staggered children inside a parent that's already in view */
    .services-grid .service-card:nth-child(1) {
        transition-delay: 0ms;
    }
    .services-grid .service-card:nth-child(2) {
        transition-delay: 90ms;
    }
    .services-grid .service-card:nth-child(3) {
        transition-delay: 180ms;
    }
    .services-grid .service-card:nth-child(4) {
        transition-delay: 270ms;
    }
    .features-grid .feature-card:nth-child(1) {
        transition-delay: 0ms;
    }
    .features-grid .feature-card:nth-child(2) {
        transition-delay: 70ms;
    }
    .features-grid .feature-card:nth-child(3) {
        transition-delay: 140ms;
    }
    .features-grid .feature-card:nth-child(4) {
        transition-delay: 210ms;
    }
    .features-grid .feature-card:nth-child(5) {
        transition-delay: 280ms;
    }
    .features-grid .feature-card:nth-child(6) {
        transition-delay: 350ms;
    }
    .clients-grid .client-card:nth-child(1) {
        transition-delay: 0ms;
    }
    .clients-grid .client-card:nth-child(2) {
        transition-delay: 90ms;
    }
    .clients-grid .client-card:nth-child(3) {
        transition-delay: 180ms;
    }
    .clients-grid .client-card:nth-child(4) {
        transition-delay: 270ms;
    }
    .process-grid .process-step:nth-child(1) {
        transition-delay: 0ms;
    }
    .process-grid .process-step:nth-child(2) {
        transition-delay: 100ms;
    }
    .process-grid .process-step:nth-child(3) {
        transition-delay: 200ms;
    }
    .process-grid .process-step:nth-child(4) {
        transition-delay: 300ms;
    }
    .expertise-grid .expertise-card:nth-child(1) {
        transition-delay: 0ms;
    }
    .expertise-grid .expertise-card:nth-child(2) {
        transition-delay: 80ms;
    }
    .expertise-grid .expertise-card:nth-child(3) {
        transition-delay: 160ms;
    }
    .expertise-grid .expertise-card:nth-child(4) {
        transition-delay: 240ms;
    }
}

/* contact form - e-mail fallback in success state */
.form-success-fallback {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}
.form-success-fallback a {
    font-weight: 600;
    color: var(--green-text);
}
.copy-mail {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    min-height: 44px;
    padding: 8px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--white);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        color 0.18s ease,
        background 0.18s ease;
}
.copy-mail:hover {
    border-color: var(--green);
    color: var(--green-text);
}
.copy-mail.is-copied {
    border-color: var(--green);
    background: var(--green-soft);
    color: var(--green-dark);
}

/* 
   Ausgelagerte Utilities & Komponenten (ersetzen frόhere Inline-Styles).
    */
/* Hero-Subline-Typografie */
.hero-subline {
    margin-top: 20px;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: -0.01em;
}
/* Abstands-Utilities */
.u-mt-10 {
    margin-top: 10px;
}
.u-mt-20 {
    margin-top: 20px;
}
.u-mt-24 {
    margin-top: 24px;
}
.u-mb-16 {
    margin-bottom: 16px;
}
.u-mb-40 {
    margin-bottom: 40px;
}
.u-mb-48 {
    margin-bottom: 48px;
}
.u-mb-56 {
    margin-bottom: 56px;
}
.u-w-full {
    width: 100%;
}
/* Schmale Inhaltsspalte (z. B. Netzwerk-Intro) */
.col-narrow {
    max-width: 720px;
}
/* FuΓnote / Sternchen-Hinweis */
.footnote {
    margin-top: 24px;
    font-size: 13px;
    color: var(--gray-500);
}
/* "Warum UMSA": Text links, CTA rechts unten bόndig */
.warum-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}
.warum-intro-text {
    flex: 1 1 520px;
    min-width: 0;
}
.warum-intro-text .lede {
    margin-bottom: 0;
}
.warum-intro > .btn {
    flex: 0 0 auto;
}
@media (max-width: 720px) {
    .warum-intro {
        align-items: flex-start;
        gap: 24px;
    }
}
/* Expertise-Karten: bildspezifische Ausrichtung */
.expertise-card .bg-img--sachverstand {
    transform: rotate(180deg) scale(1.15);
    object-position: center 60%;
}
.expertise-card .bg-img--kaufmann {
    object-position: center 18%;
    transform: scale(1.18);
    transform-origin: center 20%;
}
