/* ============================================================
   public.css — Marketing-Seiten tagungshotel.net
   ============================================================ */

/* ── Fonts ── */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url("../fonts/inter/inter-latin-wght-normal-Gz7AlRl.woff2") format('woff2-variations');
}
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-display: swap;
    font-weight: 100 900;
    src: url("../fonts/inter/inter-latin-wght-italic-1oojmiU.woff2") format('woff2-variations');
}

/* ── Variablen ── */
:root {
    --brand:   #009FE3;
    --gold:    #FFBF07;
    --dark:    #0A2540;
    --ink-500: #64748B;
    --ink-100: #E2E8F0;
}

html { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--dark); overflow-x: hidden; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar { background: #fff; border-bottom: 1px solid var(--ink-100); padding-top: 14px; padding-bottom: 14px; }
.navbar-brand img { height: 32px; }
.nav-link { font-weight: 500; color: var(--dark) !important; font-size: 15px; padding: 6px 14px !important; }
.nav-link:hover, .nav-link.active { color: var(--brand) !important; }
.btn-brand { background: var(--brand); color: #fff; border: none; border-radius: 8px; font-weight: 600; padding: 8px 20px; }
.btn-brand:hover { background: #0087c0; color: #fff; }
.btn-login { background: transparent; color: var(--dark); border: none; font-weight: 500; padding: 7px 14px; font-size: 15px; cursor: pointer; text-decoration: none; }
.btn-login:hover { color: var(--brand); text-decoration: none; }
.btn-cta-nav { background: var(--dark); color: #fff; border: none; border-radius: 10px; font-weight: 600; padding: 9px 20px; font-size: 15px; cursor: pointer; text-decoration: none; }
.btn-cta-nav:hover { background: #0e3460; color: #fff; text-decoration: none; }
.lang-btn { border: none; background: transparent; font-weight: 500; padding: 7px 10px; font-size: 15px; cursor: pointer; display: flex; align-items: center; gap: 5px; color: var(--dark); }
.lang-btn:hover { color: var(--brand); }
.flag-de { display: inline-block; width: 20px; height: 14px; background: linear-gradient(to bottom, #000 0%, #000 33%, #D00 33%, #D00 66%, #FFCE00 66%, #FFCE00 100%); border-radius: 2px; }
.navbar .dropdown-menu { border: 1px solid var(--ink-100); border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.08); padding: 6px; }
.navbar .dropdown-item { border-radius: 7px; font-size: 14.5px; font-weight: 500; color: var(--dark); padding: 9px 14px; }
.navbar .dropdown-item:hover { background: #F1F5F9; color: var(--brand); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-bottom-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px 48px; align-items: start; }
@media (max-width: 767px) {
    .footer-bottom-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom-grid .footer-brand { grid-column: 1 / -1; }
}
.footer { background: #1E2530; padding: 56px 0 28px; border-top: none; }
.footer-region-title { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.footer-menu-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li a { font-size: 13.5px; color: rgba(255,255,255,.5); text-decoration: none; line-height: 2.1; display: block; }
.footer ul li a:hover { color: var(--brand); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 40px 0; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.65; margin: 12px 0 20px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; font-size: 16px; color: rgba(255,255,255,.5); text-decoration: none; margin-right: 6px; }
.footer-social a:hover { border-color: var(--brand); color: var(--brand); }
.footer-copyright { font-size: 12.5px; color: rgba(255,255,255,.35); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; }

/* ============================================================
   PPC LANDINGPAGES
   ============================================================ */
.lp-topbar {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(226,232,240,.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.lp-topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.lp-brand img {
    height: 34px;
}
.lp-phone {
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}
.lp-phone:hover {
    color: var(--brand);
}
.lp-phone-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(30,37,48,.14);
    background: transparent;
    color: #1E2530;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.lp-phone-pill:hover {
    border-color: rgba(30,37,48,.32);
    color: #1E2530;
}
.lp-phone-pill,
.lp-phone-pill:visited {
    color: #1E2530;
}
.lp-phone-pill i {
    color: currentColor;
    font-size: 15px;
}
.lp-footer {
    background: #1E2530;
    padding: 30px 0;
}
.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.lp-footer-brand img {
    height: 26px;
}
.lp-footer-brand p {
    margin: 10px 0 0;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
.lp-footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.lp-footer-links a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 14px;
}
.lp-footer-links a:hover {
    color: #fff;
}
.lp-hero-section {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 98px;
    padding-bottom: 88px;
}
.lp-hero-lead {
    max-width: 720px;
}
.lp-search-pill {
    max-width: 720px;
}
.lp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.lp-logo-strip {
    background: #fff;
}
.lp-conversion-band {
    padding: 26px 0 10px;
    background: #fff;
}
.lp-proof-card {
    height: 100%;
    background: #F8FAFC;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 22px 22px 20px;
}
.lp-proof-card strong {
    display: block;
    font-size: 16px;
    font-weight: 750;
    margin-bottom: 8px;
}
.lp-proof-card span {
    display: block;
    color: var(--ink-500);
    font-size: 14.5px;
    line-height: 1.6;
}
.lp-trust-section {
    margin-top: 42px;
    padding: 30px 32px;
    border: 1px solid var(--ink-100);
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.lp-trust-copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}
.lp-trust-copy h3 {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    line-height: 1.2;
    margin-bottom: 10px;
}
.lp-trust-copy p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.7;
}
.lp-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.lp-trust-logos img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.lp-trust-logo-badge {
    height: 125px;
}
.lp-trust-logo-partner {
    height: 152px !important;
}
@media (max-width: 767px) {
    .lp-topbar-inner {
        min-height: 64px;
        align-items: flex-start;
        flex-wrap: wrap;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .lp-brand img {
        height: 30px;
    }
    .lp-phone-pill {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
    }
    .lp-hero-section {
        padding-top: 76px;
        padding-bottom: 72px;
    }
    .lp-trust-section {
        margin-top: 32px;
        padding: 24px 20px;
        border-radius: 20px;
    }
    .lp-trust-logos {
        gap: 20px;
    }
    .lp-trust-logo-badge {
        height: 104px;
    }
    .lp-trust-logo-partner {
        height: 126px !important;
    }
    .lp-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ============================================================
   GETEILTE SECTION-HELPERS
   ============================================================ */
.section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); display: block; margin-bottom: 12px; }
.section-h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.section-lead { font-size: 16px; color: var(--ink-500); max-width: 620px; margin: 0 auto; line-height: 1.65; }

/* ============================================================
   HERO — Gradient (Über uns, Jobs, Anbieter)
   ============================================================ */
.hero {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 55%, #BAE6FD 100%);
    min-height: 62vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 80px 0;
}
.hero--jobs-photo {
    min-height: calc(72vh - 140px);
    padding: 42px 0;
    background: var(--jobs-hero-image) 68% center / cover no-repeat;
}
.hero--jobs-photo-default {
    --jobs-hero-image: url('/images/kundenservice-tagungshotel.webp');
}
.hero--jobs-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Varianten, falls wir später feintunen wollen:
       soft  = linear-gradient(100deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.86) 38%, rgba(255,255,255,.48) 62%, rgba(255,255,255,.08) 100%);
       crisp = linear-gradient(100deg, rgba(248,250,252,.99) 0%, rgba(248,250,252,.95) 36%, rgba(248,250,252,.72) 58%, rgba(248,250,252,.16) 100%);
       cool  = linear-gradient(100deg, rgba(240,249,255,.97) 0%, rgba(240,249,255,.90) 40%, rgba(224,242,254,.58) 64%, rgba(186,230,253,.12) 100%);
    */
    background: linear-gradient(100deg, rgba(240,249,255,.97) 0%, rgba(240,249,255,.90) 40%, rgba(224,242,254,.58) 64%, rgba(186,230,253,.12) 100%);
    z-index: 0;
    pointer-events: none;
}
.hero--jobs-photo .hero-shape,
.hero--jobs-photo .hero-shape-2 { display: none; }
.hero-shape {
    position: absolute; top: -120px; right: -80px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(0,159,227,.18), transparent 65%);
    pointer-events: none;
}
.hero-shape-2 {
    position: absolute; bottom: -160px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,.12), transparent 65%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.75); border: 1px solid rgba(0,159,227,.3);
    border-radius: 50px; padding: 6px 16px;
    font-size: 13px; font-weight: 600; color: #0284C7;
    letter-spacing: .04em; margin-bottom: 28px;
    backdrop-filter: blur(6px);
}
.hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800; line-height: 1.15; color: var(--dark);
    margin-bottom: 22px; letter-spacing: -.02em;
}
.hero h1 em { color: var(--brand); font-style: normal; font-weight: 800; }
.hero-lead { font-size: 16px; color: #0369A1; line-height: 1.75; max-width: 520px; margin-bottom: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge {
    background: rgba(255,255,255,.8); border: 1px solid rgba(0,159,227,.25);
    border-radius: 8px; padding: 10px 18px;
    font-size: 14px; font-weight: 600; color: var(--dark);
    display: flex; align-items: center; gap: 8px;
    backdrop-filter: blur(4px);
}
.hero-badge span { color: var(--brand); }
.hero-img-col { position: relative; }
.hero-img-col img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,159,227,.2), 0 4px 16px rgba(0,0,0,.08);
    position: relative; z-index: 1;
}
.hero-img-card {
    position: absolute; bottom: -20px; left: -20px; z-index: 2;
    background: #fff; border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
    min-width: 190px;
}
.hero-img-card .num { font-size: 1.8rem; font-weight: 900; color: var(--dark); line-height: 1; }
.hero-img-card .num em { color: var(--brand); font-style: normal; }
.hero-img-card .lbl { font-size: 12.5px; color: var(--ink-500); margin-top: 2px; }

/* Jobs Hero perks */
.hero-perks { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-perk {
    background: rgba(255,255,255,.8); border: 1px solid rgba(0,159,227,.25);
    border-radius: 8px; padding: 10px 18px;
    font-size: 14px; font-weight: 600; color: var(--dark);
    display: flex; align-items: center; gap: 8px;
    backdrop-filter: blur(4px);
}
.hero-perk i { color: var(--brand); font-size: 16px; }
.jobs-section-title-tight {
    margin-bottom: 16px;
}
.jobs-section-title-office {
    margin-bottom: 20px;
}
.jobs-office-copy {
    font-size: 16px;
    color: var(--ink-500);
    line-height: 1.75;
    margin-bottom: 28px;
}
.jobs-office-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.jobs-office-point {
    display: flex;
    align-items: center;
    gap: 14px;
}
.jobs-office-point-icon {
    width: 40px;
    height: 40px;
    background: #EFF8FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.jobs-office-point-title {
    display: block;
    font-size: 14.5px;
}
.jobs-office-point-text {
    font-size: 13.5px;
    color: var(--ink-500);
}
@media (max-width: 767px) {
    .hero--jobs-photo {
        min-height: auto;
        padding: 76px 0;
        background-position: 62% center;
    }
    .hero--jobs-photo::before {
        background: linear-gradient(100deg, rgba(240,249,255,.99) 0%, rgba(240,249,255,.96) 52%, rgba(224,242,254,.82) 100%);
    }
}

/* ============================================================
   STATS BAND (shared, Modifikatoren für Hell/Dunkel)
   ============================================================ */
.stats-band { padding: 56px 0; position: relative; overflow: hidden; }
.stats-band--light { background: #F8FAFC; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.stats-band--dark { background: var(--dark); padding: 72px 0; }
.stats-band--dark::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,159,227,.22), transparent 65%);
}
.stats-band--dark .container { position: relative; z-index: 1; }
.stat-box { text-align: center; padding: 24px 20px; }
.stat-num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; color: var(--dark); }
.stat-num em { color: var(--brand); font-style: normal; }
.stat-lbl { font-size: 14px; margin-top: 8px; font-weight: 500; color: var(--ink-500); }
.stats-band--dark .stat-num { color: #fff; }
.stats-band--dark .stat-lbl { color: rgba(255,255,255,.55); }

/* ============================================================
   STARTSEITE — spezifische Styles
   ============================================================ */

/* Hero mit Foto */
.hero-section {
    position: relative;
    padding: 80px 0 72px;
    text-align: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.65);
}
.hero-section > .container { position: relative; z-index: 1; }
.badge-trust {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px; padding: 6px 16px;
    font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.9);
    margin-bottom: 28px;
}
.badge-trust .stars { color: #F59E0B; font-size: 13px; }
.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800; line-height: 1.15;
    color: #fff; margin-bottom: 20px;
}
.hero-section h1 em { color: var(--gold); font-style: normal; }
.accent-bar { position: relative; display: inline-block; }
.accent-bar::after {
    content: ''; position: absolute;
    left: 0; right: 0; bottom: -4px; height: 6px;
    background: var(--gold); border-radius: 4px; opacity: .55;
}
.hero-lead-dark { font-size: 17px; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 32px; line-height: 1.65; }

/* Suchfeld */
.search-pill {
    display: flex; align-items: stretch;
    background: #fff; border-radius: 10px;
    max-width: 560px; margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.autocomplete-wrap {
    position: relative; flex: 1; min-width: 0;
}
.autocomplete-wrap input {
    border-radius: 10px 0 0 10px;
}
.search-pill .btn-search {
    border-radius: 0 10px 10px 0;
}
.autocomplete-dropdown {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    z-index: 1000; max-height: 260px; overflow-y: auto;
}
.autocomplete-dropdown.open { display: block; }
.autocomplete-item {
    padding: 12px 20px; cursor: pointer;
    font-size: 15px; color: var(--dark);
    transition: background .1s;
}
.autocomplete-item:hover,
.autocomplete-item.active {
    background: #f0f7ff;
}
.autocomplete-item:last-child { border-radius: 0 0 10px 10px; }
.search-pill input {
    border: none; outline: none; width: 100%;
    font-size: 16px; font-family: inherit; background: transparent;
    padding: 18px 20px; color: var(--dark);
}
.search-pill input::placeholder { color: #aaa; }
.search-pill .btn-search {
    background: var(--brand); color: #fff;
    border: none; padding: 16px 28px;
    font-weight: 700; font-size: 16px;
    white-space: nowrap; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
}
.search-pill .btn-search:hover { background: #0087c0; }
.lp-search-pill .btn-search-label-compact,
.lp-search-pill .btn-search-icon {
    display: none;
}
.lp-search-pill .btn-search-icon {
    font-size: 18px;
}
@media (max-width: 767.98px) {
    .lp-search-pill {
        max-width: 100%;
    }
    .lp-search-pill .btn-search {
        padding: 16px 18px;
    }
    .lp-search-pill .btn-search-label-full {
        display: none;
    }
    .lp-search-pill .btn-search-label-compact {
        display: inline;
    }
}
@media (max-width: 479.98px) {
    .lp-search-pill .btn-search {
        padding: 16px;
        min-width: 56px;
    }
    .lp-search-pill .btn-search-label-compact {
        display: none;
    }
    .lp-search-pill .btn-search-icon {
        display: inline-block;
    }
}
.pac-container { border-radius: 10px; margin-top: 4px; font-family: 'Inter', sans-serif; }
.search-meta { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 12px; }
.search-meta .stars { color: #F59E0B; }
.quick-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }
.quick-chips .lbl { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500; align-self: center; }
.chip {
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px; padding: 5px 14px;
    font-size: 13.5px; font-weight: 500; cursor: pointer; color: #fff;
}
.chip:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); color: #fff; }

/* Logo-Strip */
.logo-strip { padding: 28px 0; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); overflow: hidden; }
.strip-label { font-size: 12px; font-weight: 600; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; text-align: center; margin-bottom: 18px; }
.marquee { overflow: hidden; position: relative; }
.marquee-track {
    display: flex; align-items: center; gap: 56px;
    animation: marquee 45s linear infinite; width: max-content;
}
.logo-strip:not(.lp-logo-strip) .marquee-track { animation-duration: 90s; }
.marquee-track img { height: 64px; width: auto; filter: grayscale(1); opacity: .55; transition: filter .18s ease, opacity .18s ease; }
.marquee-track img[alt="Scandic Hotels"],
.marquee-track img[alt="Steigenberger Hotels"] { max-width: 140px; object-fit: contain; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee:hover .marquee-track img,
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Stats (Startseite — kleiner) */
.stat-big { font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-big em { color: var(--brand); font-style: normal; }
.stat-label { font-size: 13.5px; color: var(--ink-500); margin-top: 4px; }

/* Steps (Startseite — Zeilen-Layout) */
.steps-row { border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.step-col { position: relative; padding: 36px 32px !important; }
.step-col:not(:last-child) { border-right: 1px solid var(--ink-100); }
.step-col:not(:last-child)::after {
    content: '→';
    position: absolute; right: -10px; top: 52px; z-index: 2;
    width: 20px; height: 20px;
    background: #fff; border: 1px solid var(--ink-100); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--ink-500);
}
@media (max-width: 767px) {
    .step-col:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--ink-100); }
    .step-col:not(:last-child)::after { display: none; }
}
.step-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: 10px; }

/* Theme cards */
.theme-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.theme-grid .theme-lg { grid-column: span 2; }
.theme-card {
    position: relative; border-radius: 14px; overflow: hidden;
    cursor: pointer; display: block; text-decoration: none;
    min-height: 220px;
}
.theme-grid .theme-lg { min-height: 300px; }
.theme-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.theme-card:hover img { transform: scale(1.04); }
.theme-card::before { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(10, 37, 64, 0.35); }
.theme-card .card-meta {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 20px 18px 16px;
    background: linear-gradient(to top, rgba(10,37,64,.9) 0%, transparent 100%);
    color: #fff;
}
.theme-card .card-meta .card-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.theme-card .card-meta .card-name { font-size: 15px; font-weight: 700; }
.theme-card .card-meta .card-count { font-size: 12px; opacity: .75; margin-top: 2px; }
@media (max-width: 767px) { .theme-grid { grid-template-columns: 1fr 1fr; } .theme-grid .theme-lg { grid-column: span 2; } }
@media (max-width: 480px) { .theme-grid { grid-template-columns: 1fr; } .theme-grid .theme-lg { grid-column: span 1; } }

/* Feature cards */
.feature-num { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: 10px; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--ink-500); line-height: 1.65; }

/* Experten (dark section) */
.experten-section { background: linear-gradient(135deg, #0A2540 0%, #0e3460 100%); padding: 72px 0; color: #fff; }
.experten-section .eyebrow { color: #6FCCEB; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.experten-section h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin: 14px 0; }
.experten-section p { color: #C5D1E0; font-size: 15.5px; line-height: 1.65; }
.experten-stat-big { font-size: 2rem; font-weight: 800; color: #fff; }
.experten-stat-label { font-size: 12.5px; color: #8AA3BD; line-height: 1.4; }
.experten-photo { border-radius: 16px; overflow: hidden; }
.experten-photo img { width: 100%; height: 380px; object-fit: cover; display: block; }
.btn-outline-light-custom { border: 1px solid rgba(255,255,255,.3); color: #fff; background: rgba(255,255,255,.06); border-radius: 10px; padding: 10px 22px; font-weight: 600; text-decoration: none; display: inline-block; }
.btn-outline-light-custom:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Testimonials (Startseite) */
.testimonial-card {
    background: #fff; border: 1px solid var(--ink-100);
    border-radius: 16px; padding: 24px;
    display: flex; flex-direction: column;
}
.testimonial-card .card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.testimonial-card .stars { color: #F59E0B; font-size: 15px; line-height: 1; }
.testimonial-card .quote { font-size: 14px; color: var(--ink-500); line-height: 1.65; flex: 1; margin: 0 0 20px; }
.testimonial-card .author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--ink-100);
    margin-top: auto;
}
.testimonial-card .author img { height: 32px; width: auto; object-fit: contain; }
.testimonial-card .author .name { font-weight: 700; font-size: 13.5px; }
.testimonial-card .author .role { font-size: 12px; color: var(--ink-500); margin-top: 1px; }

/* FAQ Accordion */
.accordion-item { border: none; border-bottom: 1px solid var(--ink-100) !important; }
.accordion-item:first-child { border-top: 1px solid var(--ink-100) !important; }
.accordion-button { font-weight: 600; font-size: 15.5px; color: var(--dark); background: #fff; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--brand); background: #fff; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: invert(40%) sepia(90%) saturate(500%) hue-rotate(175deg); }
.accordion-body { font-size: 14.5px; color: var(--ink-500); line-height: 1.7; }

/* Newsletter */
.newsletter-box {
    background: linear-gradient(135deg, #0A2540 0%, #0F2D52 50%, #143A6A 100%);
    border-radius: 20px; padding: 48px 56px; color: #fff;
    position: relative; overflow: hidden;
}
.newsletter-box::before {
    content: ''; position: absolute;
    top: -100px; right: -100px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,159,227,0.25), transparent 70%);
    pointer-events: none;
}
.newsletter-box .eyebrow { color: #6FCCEB; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 10px; position: relative; }
.newsletter-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; position: relative; }
.newsletter-box p { color: #C5D1E0; font-size: 14.5px; line-height: 1.6; margin: 0; position: relative; }
.newsletter-input-wrap {
    display: flex; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px; padding: 8px; gap: 8px;
    backdrop-filter: blur(10px); position: relative;
}
.newsletter-input-wrap input { flex: 1 1 0; min-width: 0; background: transparent; border: none; outline: none; padding: 12px 14px; font-size: 15px; color: #fff; font-family: inherit; }
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-input-wrap button { background: var(--brand); color: #fff; border: none; border-radius: 9px; padding: 12px 22px; font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap; }
.newsletter-input-wrap button:hover { background: #0087c0; }
.newsletter-micro { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 10px; position: relative; }
.newsletter-micro a { color: #6FCCEB; }

/* Newsletter Landingpage */
.newsletter-page-hero {
    background: linear-gradient(135deg, #F8FBFF 0%, #EAF7FD 54%, #DDF2FB 100%);
    padding: 92px 0 82px;
    position: relative;
    overflow: hidden;
}
.newsletter-page-hero::before {
    content: '';
    position: absolute;
    right: -180px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0,159,227,.18), transparent 68%);
    pointer-events: none;
}
.newsletter-page-hero .container { position: relative; z-index: 1; }
.newsletter-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.newsletter-page-hero h1 {
    font-size: clamp(2.2rem, 5.2vw, 4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 22px;
}
.newsletter-page-lead {
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 30px;
}
.newsletter-benefit-list {
    display: grid;
    gap: 12px;
}
.newsletter-benefit-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark);
    font-size: 14.5px;
    font-weight: 650;
}
.newsletter-benefit-list i { color: var(--brand); font-size: 18px; line-height: 1.2; }
.newsletter-signup-card {
    background: #fff;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(10,37,64,.12);
}
.newsletter-signup-card .eyebrow {
    display: block;
    color: var(--brand);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.newsletter-signup-card h2 {
    font-size: 1.45rem;
    font-weight: 850;
    margin-bottom: 24px;
}
.newsletter-page-form .form-control {
    min-height: 48px;
    border-radius: 10px;
    border-color: var(--ink-100);
}
.newsletter-page-form .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(0,159,227,.12);
}
.newsletter-page-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 11px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    padding: 14px 22px;
    margin-top: 4px;
}
.newsletter-page-submit:hover { background: #0087c0; }
.newsletter-page-submit:disabled { opacity: .7; cursor: wait; }
.newsletter-page-micro {
    color: var(--ink-500);
    font-size: 12px;
    line-height: 1.55;
    margin: 12px 0 0;
}
.newsletter-page-micro a { color: var(--brand); }
.newsletter-page-confirmation {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,159,227,.22);
    background: #EFF8FF;
    color: var(--dark);
    font-size: 13.5px;
    line-height: 1.5;
}
.newsletter-page-confirmation strong {
    font-weight: 850;
    color: var(--brand);
}
.newsletter-page-content {
    padding: 88px 0;
    background: #fff;
}
.newsletter-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.newsletter-topic-grid div {
    background: #F8FAFC;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 22px;
}
.newsletter-topic-grid i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EFF8FF;
    border: 1px solid rgba(0,159,227,.18);
    border-radius: 11px;
    color: var(--brand);
    font-size: 18px;
    margin-bottom: 16px;
}
.newsletter-topic-grid strong {
    display: block;
    font-size: 15.5px;
    color: var(--dark);
    margin-bottom: 6px;
}
.newsletter-topic-grid span {
    display: block;
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.6;
}
.newsletter-preview-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 56px;
    align-items: center;
    margin-top: 92px;
    padding-top: 72px;
    border-top: 1px solid var(--ink-100);
}
.newsletter-preview {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(10,37,64,.12);
    overflow: hidden;
}
.newsletter-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--ink-100);
}
.newsletter-preview-top span { font-size: 14px; font-weight: 800; color: var(--dark); }
.newsletter-preview-top small { color: var(--ink-500); font-size: 12px; }
.newsletter-preview-hero {
    padding: 28px 24px;
    background: linear-gradient(135deg, #0A2540 0%, #123B66 100%);
}
.newsletter-preview-hero strong {
    display: block;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 10px;
}
.newsletter-preview-hero span {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
}
.newsletter-preview-row {
    padding: 18px 24px;
    border-top: 1px solid var(--ink-100);
}
.newsletter-preview-row span {
    display: block;
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.newsletter-preview-row strong {
    display: block;
    color: var(--dark);
    font-size: 14.5px;
}
@media (max-width: 991px) {
    .newsletter-preview-wrap { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 767px) {
    .newsletter-page-hero { padding: 70px 0; }
    .newsletter-signup-card { padding: 26px 22px; }
    .newsletter-topic-grid { grid-template-columns: 1fr; }
    .newsletter-preview-wrap { margin-top: 64px; padding-top: 52px; }
    .newsletter-box { padding: 34px 22px; }
    .newsletter-input-wrap { flex-direction: column; align-items: stretch; }
    .newsletter-input-wrap button { width: 100%; }
}

/* CTA Band */
.cta-band { background: var(--brand); padding: 64px 0; text-align: center; color: #fff; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.cta-band p { font-size: 16px; opacity: .9; margin-bottom: 28px; }
.btn-cta-white { background: #fff; color: var(--brand); border: none; border-radius: 10px; padding: 13px 28px; font-weight: 700; font-size: 16px; cursor: pointer; }
.btn-cta-white:hover { background: #f0f9ff; }
.btn-cta-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 10px; padding: 13px 28px; font-weight: 600; font-size: 16px; text-decoration: none; display: inline-block; }
.btn-cta-ghost:hover { background: rgba(255,255,255,.25); color: #fff; }
.cta-micro { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 16px; }

/* ============================================================
   UNTERNEHMEN — B2B Concierge-Service
   ============================================================ */
.company-hero {
    background: linear-gradient(135deg, #F8FBFF 0%, #EEF8FD 52%, #DDF2FB 100%);
    padding: 92px 0 78px;
    overflow: hidden;
    position: relative;
}
.company-hero::before {
    content: '';
    position: absolute;
    inset: auto -140px -220px auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0,159,227,.18), transparent 68%);
    pointer-events: none;
}
.company-hero .container { position: relative; z-index: 1; }
.company-hero h1 {
    font-size: clamp(2rem, 4.8vw, 3.35rem);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -.015em;
    color: var(--dark);
    margin-bottom: 24px;
}
.company-hero-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #334155;
    max-width: 620px;
    margin-bottom: 32px;
}
.company-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.btn-company-primary,
.btn-company-secondary {
    min-height: 48px;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 750;
    font-size: 15.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
}
.btn-company-primary {
    background: var(--brand);
    color: #fff;
    border: 1px solid var(--brand);
    box-shadow: 0 14px 28px rgba(0,159,227,.22);
}
.btn-company-primary:hover {
    background: #0087c0;
    border-color: #0087c0;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(0,159,227,.26);
}
.btn-company-secondary {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--ink-100);
}
.btn-company-secondary:hover {
    border-color: rgba(0,159,227,.45);
    color: var(--brand);
    transform: translateY(-1px);
}
.company-hero-note {
    font-size: 13.5px;
    color: var(--ink-500);
    margin-top: 14px;
}
.company-hero-panel {
    background: #fff;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(10,37,64,.13);
}
.company-hero-panel img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
}
.company-hero-panel-body { padding: 22px 24px 24px; }
.company-panel-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-100);
}
.company-panel-row:last-child { border-bottom: 0; padding-bottom: 0; }
.company-panel-row span { font-size: 13.5px; color: var(--ink-500); }
.company-panel-row strong { font-size: 14.5px; text-align: right; color: var(--dark); }
.company-proof {
    background: #fff;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}
.company-proof-item {
    padding: 30px 18px;
    border-right: 1px solid var(--ink-100);
}
.company-proof .col-6:last-child .company-proof-item,
.company-proof .col-lg-3:last-child .company-proof-item { border-right: 0; }
.company-proof-item strong {
    display: block;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.company-proof-item span {
    display: block;
    font-size: 13.5px;
    color: var(--ink-500);
    margin-top: 7px;
}
.company-section { padding: 88px 0; }
.company-section-text {
    font-size: 16px;
    color: var(--ink-500);
    line-height: 1.75;
    margin: 0;
}
.company-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.company-pain-item {
    min-height: 92px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    box-shadow: 0 4px 18px rgba(10,37,64,.04);
}
.company-pain-item i {
    color: var(--brand);
    font-size: 20px;
    line-height: 1;
    margin-top: 1px;
}
.company-pain-item span {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.55;
    font-weight: 600;
}
.company-service {
    background: var(--dark);
    color: #fff;
    padding: 92px 0;
    position: relative;
    overflow: hidden;
}
.company-service::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -140px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0,159,227,.24), transparent 68%);
}
.company-service .container { position: relative; z-index: 1; }
.company-service .section-h2 { color: #fff; }
.company-service p {
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px;
}
.company-executive-quote {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 18px;
    margin: 0 0 26px;
}
.company-executive-quote img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}
.company-executive-quote blockquote {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 14.5px;
    line-height: 1.65;
    font-style: italic;
}
.company-executive-quote figcaption {
    margin-top: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
}
.company-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.company-service-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 24px 22px;
    min-height: 212px;
}
.company-service-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0,159,227,.18);
    color: #6FCCEB;
    font-size: 21px;
    margin-bottom: 18px;
}
.company-service-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 9px;
}
.company-service-card p {
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}
.company-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}
.company-process-step {
    padding: 30px 16px;
    border-right: 1px solid var(--ink-100);
}
.company-process-step:last-child { border-right: 0; }
.company-process-num {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    color: var(--brand);
    margin-bottom: 14px;
}
.company-process-step h3 {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: 9px;
}
.company-process-step p {
    color: var(--ink-500);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}
.company-benefits {
    background: #F8FAFC;
    padding: 90px 0;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}
.company-benefits h2 {
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 850;
    line-height: 1.2;
    color: var(--dark);
}
.company-benefit-list {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    overflow: hidden;
}
.company-benefit-list div {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--ink-100);
}
.company-benefit-list div:last-child { border-bottom: 0; }
.company-benefit-list strong {
    color: var(--dark);
    font-size: 15px;
}
.company-benefit-list span {
    color: var(--ink-500);
    font-size: 14.5px;
    line-height: 1.6;
}
.company-customer-quote {
    margin: 18px 0 0;
    background: #fff;
    border: 1px solid rgba(0,159,227,.22);
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 10px 28px rgba(10,37,64,.06);
}
.company-customer-quote blockquote {
    margin: 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
}
.company-customer-quote figcaption {
    margin-top: 14px;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 750;
}
.company-customer-quote figcaption span {
    display: block;
    color: var(--ink-500);
    font-size: 12.5px;
    font-weight: 500;
    margin-top: 2px;
}
.company-rating {
    background: #fff;
    padding: 78px 0 0;
}
.company-rating-box {
    align-items: center;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    padding: 30px;
}
.company-rating-box h2 {
    color: var(--dark);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 850;
    margin-bottom: 10px;
}
.company-rating-box p {
    color: var(--ink-500);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 680px;
}
.company-rating-widget {
    justify-self: end;
    max-width: 100%;
    overflow-x: auto;
    width: 100%;
}
.company-rating-widget img,
.company-rating-widget iframe {
    max-width: 100%;
}
.company-final-cta {
    padding: 84px 0;
}
.company-final-box {
    background: linear-gradient(135deg, var(--brand) 0%, #0A7DB5 100%);
    border-radius: 22px;
    padding: 54px 48px;
    color: #fff;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,159,227,.22);
}
.company-final-box h2 {
    font-size: clamp(1.55rem, 3.2vw, 2.35rem);
    font-weight: 850;
    margin-bottom: 12px;
}
.company-final-box p {
    color: rgba(255,255,255,.84);
    font-size: 16px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 28px;
}
.company-final-box .btn-company-primary {
    background: #fff;
    color: var(--brand);
    border-color: #fff;
    box-shadow: none;
}
.company-final-box .btn-company-primary:hover {
    background: #F0F9FF;
    border-color: #F0F9FF;
}
.btn-company-secondary-light {
    background: rgba(255,255,255,.14);
    color: #fff;
    border-color: rgba(255,255,255,.36);
}
.btn-company-secondary-light:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
    border-color: rgba(255,255,255,.52);
}

@media (max-width: 991px) {
    .company-pain-grid,
    .company-service-grid,
    .company-process { grid-template-columns: repeat(2, 1fr); }
    .company-process-step { border-bottom: 1px solid var(--ink-100); }
    .company-process-step:nth-child(2n) { border-right: 0; }
    .company-process-step:last-child { border-bottom: 0; }
    .company-proof-item { border-bottom: 1px solid var(--ink-100); }
    .company-proof .col-6:nth-last-child(-n+2) .company-proof-item { border-bottom: 0; }
    .company-proof .col-6:nth-child(2n) .company-proof-item { border-right: 0; }
}
@media (max-width: 575px) {
    .company-hero { padding: 68px 0 58px; }
    .company-section,
    .company-service,
    .company-benefits,
    .company-rating,
    .company-final-cta { padding: 64px 0; }
    .company-rating-box { grid-template-columns: 1fr; padding: 24px; }
    .company-rating-widget { justify-self: start; width: 100%; }
    .company-hero-actions { align-items: stretch; }
    .btn-company-primary,
    .btn-company-secondary { width: 100%; }
    .company-hero-panel img { height: 230px; }
    .company-panel-row { align-items: flex-start; flex-direction: column; gap: 3px; }
    .company-panel-row strong { text-align: left; }
    .company-pain-grid,
    .company-service-grid,
    .company-process { grid-template-columns: 1fr; }
    .company-process-step,
    .company-process-step:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--ink-100);
    }
    .company-process-step:last-child { border-bottom: 0; }
    .company-benefit-list div { grid-template-columns: 1fr; gap: 7px; }
    .company-final-box { padding: 42px 24px; border-radius: 18px; }
}

/* ============================================================
   ÜBER UNS — spezifische Styles
   ============================================================ */
.mission { background: var(--brand); padding: 64px 0; overflow: hidden; position: relative; }
.mission::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 65%);
}
.mission-quote {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 800; color: #fff; line-height: 1.35;
    position: relative;
}
.mission-quote::before {
    content: '"';
    font-size: 8rem; line-height: 0;
    color: rgba(255,255,255,.15);
    position: absolute; top: 40px; left: -20px;
    font-family: Georgia, serif;
}
.mission-author { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 20px; font-weight: 500; }
.mission-author strong { color: #fff; }

.geschichte-img { width: 100%; border-radius: 16px; object-fit: cover; height: 420px; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.timeline { border-left: 2px solid var(--ink-100); padding-left: 28px; margin-top: 32px; }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
    content: '';
    position: absolute; left: -35px; top: 5px;
    width: 12px; height: 12px;
    background: var(--brand); border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px rgba(0,159,227,.2);
}
.timeline-year { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.timeline-text { font-size: 15px; color: var(--ink-500); line-height: 1.65; }
.timeline-text strong { color: var(--dark); }

/* Stats über uns (hell) */
.stats-band--about { background: #F8FAFC; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); padding: 56px 0; }
.stats-band--about .stat-num { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 900; color: var(--dark); line-height: 1; letter-spacing: -.02em; }
.stats-band--about .stat-num em { color: var(--brand); font-style: normal; }
.stats-band--about .stat-lbl { font-size: 15px; color: var(--ink-500); margin-top: 6px; font-weight: 500; }

/* Gründer */
.founder-card {
    background: #fff; border: 1px solid var(--ink-100);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.founder-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.founder-photo-wrap {
    height: 280px; overflow: hidden; position: relative;
    background: linear-gradient(135deg, #EFF8FF 0%, #E0F0FA 100%);
    display: flex; align-items: center; justify-content: center;
}
.founder-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-initials { font-size: 4rem; font-weight: 900; color: var(--brand); opacity: .3; user-select: none; position: absolute; }
.founder-photo-label {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(10,37,64,.6); color: #fff;
    font-size: 11px; font-weight: 600; padding: 4px 10px;
    border-radius: 6px; backdrop-filter: blur(6px);
}
.founder-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.founder-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; }
.founder-role { font-size: 13px; font-weight: 600; color: var(--brand); margin-bottom: 14px; }
.founder-bio { font-size: 14.5px; color: var(--ink-500); line-height: 1.7; }
.founder-linkedin {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: auto; font-size: 13px; font-weight: 600;
    color: var(--dark); text-decoration: none;
    border: 1px solid var(--ink-100); border-radius: 8px;
    padding: 6px 14px;
    width: fit-content;
}
.founder-linkedin:hover { border-color: var(--brand); color: var(--brand); }
.founder-linkedin--placeholder {
    visibility: hidden;
    pointer-events: none;
}

/* Standort */
.standort {
    background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
    border-top: 1px solid var(--ink-100);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
    color: var(--dark);
}
.standort-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin-bottom: 12px; display: block; }
.standort h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 20px; letter-spacing: -.01em; }
.standort-lead { font-size: 17px; color: var(--ink-500); line-height: 1.7; margin-bottom: 32px; }
.standort-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(10,37,64,.04);
}
.standort-feature:last-child { margin-bottom: 0; }
.standort-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: #EFF8FF; border: 1px solid rgba(0,159,227,.18);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.standort-feature-text strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.standort-feature-text span { font-size: 14px; color: var(--ink-500); line-height: 1.55; }
.standort-img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    height: 380px;
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 24px 60px rgba(10,37,64,.12);
}

/* ============================================================
   JOBS — spezifische Styles
   ============================================================ */
.kultur { padding: 96px 0 80px; }
.kultur-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.kultur-card {
    background: #fff; border: 1px solid var(--ink-100);
    border-radius: 18px; padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
    height: 100%;
}
.kultur-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.09); }
.kultur-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #EFF8FF, #DBEAFE);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
}
.kultur-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.kultur-card p { font-size: 14.5px; color: var(--ink-500); line-height: 1.7; margin: 0; }
@media (max-width: 1199px) {
    .kultur-grid { gap: 18px; }
    .kultur-card { padding: 28px 22px; }
}
@media (max-width: 991px) {
    .kultur-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .kultur-grid { grid-template-columns: 1fr; }
}

.benefits {
    background: #F8FAFC;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 4px 28px;
    box-shadow: 0 10px 28px rgba(10,37,64,.045);
}
.benefit-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: flex-start;
    gap: 16px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink-100);
    border-radius: 0;
    padding: 22px 0;
}
.benefit-item:last-child { border-bottom: 0; }
.benefit-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: #EFF8FF;
    border: 1px solid rgba(0,159,227,.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--brand);
}
.benefit-item strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.benefit-item span { font-size: 13.5px; color: var(--ink-500); line-height: 1.55; }
@media (max-width: 767px) {
    .benefits-grid { padding: 2px 18px; }
    .benefit-item { grid-template-columns: 38px minmax(0, 1fr); gap: 14px; padding: 20px 0; }
}

.foto-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 440px; }
.foto-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.foto-grid .foto-main { grid-row: 1 / 3; }
@media (max-width: 767px) {
    .foto-grid { grid-template-columns: 1fr; height: auto; }
    .foto-grid .foto-main { grid-row: auto; height: 240px; }
    .foto-grid img:not(.foto-main) { height: 180px; }
}

.stellen { padding: 96px 0; }
.stellen .section-lead { margin-left: 0; margin-right: 0; }
.stellen-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-btn {
    border: 1px solid var(--ink-100); background: #fff;
    border-radius: 50px; padding: 7px 18px;
    font-size: 13.5px; font-weight: 600; color: var(--ink-500);
    cursor: pointer; transition: all .15s;
}
.filter-btn:hover, .filter-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }

.job-item {
    background: #fff; border: 1px solid var(--ink-100);
    border-radius: 16px; overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
}
.job-item + .job-item { margin-top: 12px; }
.job-item.open { border-color: var(--brand); box-shadow: 0 8px 32px rgba(0,159,227,.1); }
.job-header {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 28px 32px; cursor: pointer; user-select: none;
}
.job-header:hover .job-title { color: var(--brand); }
.job-dept { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); margin-bottom: 6px; }
.job-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; transition: color .15s; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.job-tag { background: #F1F5F9; border-radius: 6px; padding: 3px 10px; font-size: 12.5px; font-weight: 600; color: var(--ink-500); display: flex; align-items: center; gap: 4px; }
.job-chevron { color: var(--ink-500); font-size: 20px; flex-shrink: 0; transition: transform .25s, color .2s; }
.job-item.open .job-chevron { transform: rotate(180deg); color: var(--brand); }
.job-body { display: none; border-top: 1px solid var(--ink-100); padding: 32px 32px 36px; }
.job-body.show { display: block; }
.job-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 767px) { .job-detail-grid { grid-template-columns: 1fr; } }
.job-detail-section h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); margin-bottom: 14px; }
.job-detail-section ul { list-style: none; padding: 0; margin: 0; }
.job-detail-section ul li { font-size: 14.5px; color: var(--ink-500); line-height: 1.7; padding-left: 18px; position: relative; margin-bottom: 4px; }
.job-detail-section ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
.job-intro { font-size: 15px; color: var(--ink-500); line-height: 1.75; margin-bottom: 28px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--ink-100); }
.job-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--ink-500); font-weight: 500; }
.job-meta-item i { color: var(--brand); }
.job-apply-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px; background: var(--dark); color: #fff;
    border: none; border-radius: 10px; font-weight: 700;
    padding: 12px 24px; font-size: 15px; cursor: pointer;
    text-decoration: none; transition: background .15s;
}
.job-apply-btn:hover { background: #0e3460; color: #fff; }

.initiativ { background: var(--brand); padding: 80px 0; position: relative; overflow: hidden; }
.initiativ::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.15), transparent 65%);
}
.initiativ .container { position: relative; z-index: 1; }
.initiativ h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -.01em; }
.initiativ p { font-size: 17px; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.btn-white { background: #fff; color: var(--dark); border: none; border-radius: 12px; font-weight: 700; padding: 14px 28px; font-size: 15.5px; cursor: pointer; text-decoration: none; display: inline-block; transition: box-shadow .2s; }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); color: var(--dark); }
.initiativ-contact-card {
    width: min(100%, 330px);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
}
.initiativ-contact-icon { font-size: 3rem; margin-bottom: 12px; line-height: 1; }
.initiativ-contact-email {
    font-size: 15px;
    font-weight: 750;
    color: #fff;
    margin-bottom: 6px;
    overflow-wrap: anywhere;
    text-align: center;
}
.initiativ-contact-note { font-size: 13px; color: rgba(255,255,255,.68); }
.btn-ghost-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); border-radius: 12px; font-weight: 700; padding: 12px 28px; font-size: 15.5px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color .2s; }
.btn-ghost-white:hover { border-color: #fff; color: #fff; }

/* ============================================================
   ANBIETER-WERDEN — spezifische Styles
   ============================================================ */
.vorteile { padding: 96px 0 80px; }
.vorteil-card {
    background: #fff; border: 1px solid var(--ink-100);
    border-radius: 18px; padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s; height: 100%;
}
.vorteil-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.09); }
.vorteil-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #EFF8FF, #DBEAFE);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--brand); margin-bottom: 20px;
}
.vorteil-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.vorteil-card p { font-size: 14.5px; color: var(--ink-500); line-height: 1.7; margin: 0; }

.so-funktionierts { background: #F8FAFC; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); padding: 88px 0; }
.step {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-top: 1px solid rgba(10,37,64,.09);
}
.step:last-of-type {
    border-bottom: 1px solid rgba(10,37,64,.09);
}
.step-circle {
    width: auto;
    height: auto;
    flex-shrink: 0;
    background: transparent;
    color: var(--brand);
    border-radius: 0;
    font-size: 22px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .02em;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2px;
}
.step-circle::before {
    content: '0';
}
.step-item { display: flex; gap: 24px; }
.step-item + .step-item { margin-top: 40px; }
.step-content h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.step-content p { font-size: 14.5px; color: var(--ink-500); line-height: 1.7; margin: 0; }

.booking-process-visual {
    position: relative;
    width: min(100%, 620px);
    margin-left: auto;
    isolation: isolate;
}
.booking-process-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
    animation: bookingProcessFloat 7s ease-in-out infinite;
}
.booking-mail-stream {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px;
    z-index: 2;
}
.booking-mail {
    position: absolute;
    right: 4%;
    bottom: 17%;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    width: min(46%, 250px);
    padding: 12px 14px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(10,37,64,.08);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(15,23,42,.13);
    opacity: 0;
    transform: translate(110px, -18px) scale(.96);
    animation: bookingMailArrive 7.2s cubic-bezier(.2,.8,.2,1) infinite;
}
.booking-mail i {
    grid-row: 1 / span 2;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #E0F2FE;
    color: var(--brand);
    font-size: 13px;
}
.booking-mail span {
    display: block;
    min-width: 0;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.booking-mail small {
    display: block;
    min-width: 0;
    color: var(--ink-500);
    font-size: 11px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.booking-mail-2 {
    right: 10%;
    bottom: 30%;
    animation-delay: 1.4s;
}
.booking-mail-3 {
    right: 2%;
    bottom: 43%;
    animation-delay: 2.8s;
}
@keyframes bookingProcessFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes bookingMailArrive {
    0%, 18% {
        opacity: 0;
        transform: translate(110px, -18px) scale(.96);
    }
    32%, 72% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    88%, 100% {
        opacity: 0;
        transform: translate(-22px, 8px) scale(.98);
    }
}

.partner-logo-strip {
    background: #fff;
    border-bottom: 1px solid var(--ink-100);
    padding: 42px 0;
}
.partner-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 18px 34px;
}
.partner-logo-row span {
    font-size: 12px;
    font-weight: 650;
    color: var(--ink-500);
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.partner-logo-row img {
    height: 48px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .56;
}
.partner-logo-row .partner-logo-accor {
    height: 62px;
    max-width: 190px;
    opacity: .68;
}
@media (max-width: 767px) {
    .partner-logo-row {
        flex-wrap: wrap;
        gap: 24px 36px;
    }
}
.partner-support {
    background: linear-gradient(180deg, #fff 0%, #F8FAFC 18%, #F8FAFC 100%);
    border-top: 0;
    border-bottom: 1px solid var(--ink-100);
    padding: 108px 0 92px;
}
.partner-support-lead {
    font-size: 16px;
    color: var(--ink-500);
    line-height: 1.75;
    margin: 0;
}
.partner-support-grid {
    display: grid;
    gap: 16px;
}
.partner-support-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(10,37,64,.045);
}
.partner-support-item i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #F0F9FF;
    border: 1px solid rgba(0,159,227,.16);
    color: var(--brand);
    font-size: 18px;
    line-height: 1;
}
.partner-support-item strong {
    display: block;
    font-size: 15.5px;
    color: var(--dark);
    margin-bottom: 4px;
}
.partner-support-item span {
    display: block;
    font-size: 14px;
    color: var(--ink-500);
    line-height: 1.6;
}
.partner-product-update {
    padding: 78px 0;
    background: #F8FAFC;
}
.partner-product-update-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    padding: 38px 42px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .07);
}
.partner-product-update-card .section-h2 {
    margin-bottom: 14px;
}
.partner-product-update-card p {
    max-width: 760px;
    margin: 0;
    color: var(--ink-500);
    font-size: 16px;
    line-height: 1.75;
}
.partner-product-update-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 10px;
    border: 0;
    background: var(--dark);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.partner-product-update-btn:hover {
    background: #0e3460;
    color: #fff;
}

.testimonials { padding: 96px 0; }
.testi-card {
    background: #fff; border: 1px solid var(--ink-100);
    border-radius: 18px; padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04); height: 100%;
}
.testi-logo {
    display: block;
    max-width: 150px;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    flex-shrink: 0;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--ink-500); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
}
.testi-author-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #EFF8FF, #DBEAFE);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: var(--brand); flex-shrink: 0;
}
.testi-avatar-img { object-fit: cover; padding: 0; }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-hotel { font-size: 12.5px; color: var(--ink-500); }
.testi-brand {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--ink-100);
    min-height: 54px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .partner-logo-strip { padding: 34px 0; }
    .partner-logo-row { gap: 26px 34px; }
    .partner-logo-row img { height: 46px; max-width: 150px; }
    .partner-logo-row .partner-logo-accor { height: 64px; max-width: 190px; }
    .booking-process-visual { margin-top: 26px; }
    .booking-mail {
        right: 5%;
        width: min(62%, 230px);
        padding: 10px 12px;
    }
    .booking-mail span { font-size: 12px; }
    .booking-mail small { font-size: 10px; }
    .step { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; padding: 20px 0; }
    .step-circle { font-size: 19px; }
    .partner-support { padding: 76px 0 72px; }
    .partner-support-item { padding: 20px; }
    .partner-product-update { padding: 60px 0; }
    .partner-product-update-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }
    .partner-product-update-btn {
        width: 100%;
        white-space: normal;
    }
    .testimonials { padding: 72px 0; }
    .testi-logo { max-width: 132px; max-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
    .booking-process-image,
    .booking-mail {
        animation: none;
    }
    .booking-mail-1 {
        opacity: 1;
        transform: none;
    }
}

.kontakt-section { background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 55%, #BAE6FD 100%); padding: 88px 0; }
.anna-card {
    background: #fff; border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,159,227,.12), 0 4px 16px rgba(0,0,0,.06);
    overflow: hidden; display: flex; flex-direction: column;
}
.anna-photo { width: 100%; height: 300px; object-fit: cover; object-position: top; display: block; }
.anna-body { padding: 24px 28px 28px; }
.anna-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; }
.anna-role { font-size: 13px; font-weight: 600; color: var(--brand); margin-bottom: 16px; }
.anna-contact a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-500); text-decoration: none; margin-bottom: 8px; font-weight: 500; }
.anna-contact a:hover { color: var(--brand); }
.anna-contact i { color: var(--brand); width: 16px; }

.cta-section { background: var(--brand); padding: 88px 0; position: relative; overflow: hidden; }
.cta-section::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.15), transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -.01em; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.btn-hero-primary {
    background: var(--brand); color: #fff; border: none;
    border-radius: 12px; font-weight: 700; padding: 15px 30px;
    font-size: 16px; cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .15s, box-shadow .15s;
}
.btn-hero-primary:hover { background: #007FC0; box-shadow: 0 8px 24px rgba(0,159,227,.35); color: #fff; }
.btn-hero-ghost {
    background: rgba(255,255,255,.8); color: var(--dark);
    border: 1.5px solid rgba(0,159,227,.3);
    border-radius: 12px; font-weight: 600; padding: 14px 28px;
    font-size: 16px; cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: border-color .15s, background .15s;
    backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover { border-color: var(--brand); color: var(--brand); }

.form-card { background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.1); padding: 40px 36px; }
.form-label { font-size: 13.5px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select {
    border: 1.5px solid var(--ink-100); border-radius: 10px;
    font-size: 14.5px; padding: 11px 14px; color: var(--dark);
    transition: border-color .15s;
}
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,159,227,.1); }
.btn-submit { background: var(--brand); color: #fff; border: none; border-radius: 12px; font-weight: 700; padding: 14px; font-size: 16px; cursor: pointer; width: 100%; transition: background .15s; }
.btn-submit:hover { background: #007FC0; }
.form-note { font-size: 12px; color: var(--ink-500); text-align: center; margin-top: 12px; }
.advice-contact-modal { border: none; border-radius: 18px; overflow: hidden; }
.advice-contact-modal .modal-header { border-bottom: 1px solid var(--ink-100); padding: 22px 28px; }
.advice-contact-modal .modal-body { padding: 28px; }
.advice-contact-modal .modal-title { font-weight: 800; color: var(--dark); }
.advice-contact-modal textarea.form-control { resize: vertical; }
.registration-contact-modal .modal-header,
.registration-contact-modal .modal-body { padding-left: 32px; padding-right: 32px; }
.registration-modal-grid { display: grid; grid-template-columns: minmax(260px, 34%) 1fr; min-height: 620px; }
.registration-modal-image { position: relative; min-height: 100%; overflow: hidden; background: var(--ink-50); }
.registration-modal-image > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; display: block; }
.registration-modal-logo {
    position: absolute;
    top: 30px;
    left: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.registration-modal-logo img {
    width: min(245px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(6, 26, 43, .28));
}
.registration-modal-content { display: flex; flex-direction: column; min-width: 0; }
.registration-modal-content .modal-body { flex: 1; }
.registration-success-message {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.registration-success-message i { color: var(--brand); font-size: 42px; margin-bottom: 18px; }
.registration-success-message h3 { color: var(--dark); font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.registration-success-message p { color: var(--ink-600); font-size: 17px; line-height: 1.55; max-width: 430px; margin: 0; }

@media (max-width: 767.98px) {
    .registration-modal-grid { display: block; min-height: 0; }
    .registration-modal-image { height: 220px; }
    .registration-modal-image > img { min-height: 0; }
    .registration-modal-logo { top: 20px; left: 18px; right: 18px; }
    .registration-modal-logo img { width: 190px; }
    .registration-success-message { min-height: 280px; }
    .registration-contact-modal .modal-header,
    .registration-contact-modal .modal-body { padding-left: 22px; padding-right: 22px; }
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-page {
    position: relative;
    overflow: hidden;
    padding: 72px 0 88px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}
.contact-page .container { position: relative; z-index: 1; }
.contact-page-copy h1 {
    max-width: 620px;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.05em;
    margin: 0 0 22px;
}
.contact-page-lead {
    max-width: 600px;
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-direct-list {
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
}
.contact-direct-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--dark);
    font-size: 17px;
    font-weight: 750;
    text-decoration: none;
}
.contact-direct-list a:hover { color: var(--brand); }
.contact-direct-list i { color: var(--brand); font-size: 18px; }
.contact-social {
    display: flex;
    gap: 12px;
    margin-bottom: 34px;
}
.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    background: #fff;
    color: var(--dark);
    font-size: 19px;
    text-decoration: none;
}
.contact-social a:hover {
    border-color: var(--brand);
    color: var(--brand);
}
.contact-brand-row { margin-bottom: 42px; }
.contact-brand-row img { height: 34px; }
.contact-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.contact-topic-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contact-topic-grid i {
    color: var(--brand);
    font-size: 22px;
    line-height: 1;
    min-height: 22px;
    margin-bottom: 12px;
}
.contact-topic-grid h2 {
    font-size: 17px;
    font-weight: 850;
    margin-bottom: 10px;
}
.contact-topic-grid p {
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.contact-form-card {
    border: 1px solid rgba(226,232,240,.8);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15,23,42,.08);
    padding: clamp(28px, 4vw, 44px);
}
.contact-form-card h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}
.contact-form-card p {
    color: var(--ink-500);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}
.contact-form-stack {
    display: grid;
    gap: 18px;
}
.contact-form-card textarea.form-control {
    min-height: 160px;
    resize: vertical;
}
@media (max-width: 991px) {
    .contact-page { padding: 48px 0 64px; }
    .contact-topic-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   IMPRESSUM — spezifische Styles
   ============================================================ */
.page-header { background: #F8FAFC; border-bottom: 1px solid var(--ink-100); padding: 48px 0 40px; }
.page-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.page-header p { font-size: 15px; color: var(--ink-500); margin: 0; }

.impressum-content { padding: 56px 0 80px; }
.info-card {
    background: #F8FAFC; border: 1px solid var(--ink-100);
    border-radius: 14px; padding: 28px 32px;
    margin-bottom: 48px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
}
@media (max-width: 600px) { .info-card { grid-template-columns: 1fr; } }
.info-card .info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin-bottom: 6px; }
.info-card .info-value { font-size: 15px; color: var(--dark); line-height: 1.7; font-style: normal; }
.info-card .info-value a { color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--ink-100); }
.info-card .info-value a:hover { color: var(--brand); border-color: var(--brand); }

.legal-text h2 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 40px 0 10px; }
.legal-text h2:first-child { margin-top: 0; }
.legal-text p { font-size: 15px; color: var(--ink-500); line-height: 1.8; margin-bottom: 16px; }
.legal-text a { color: var(--brand); text-decoration: none; }
.legal-text a:hover { text-decoration: underline; }
.legal-section-title {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--brand);
    margin: 56px 0 20px; display: block;
    padding-top: 32px; border-top: 1px solid var(--ink-100);
}

/* ============================================================
   EINFACHE INHALTSSEITEN (AGB, Datenschutz, Pricing, Layout)
   ============================================================ */
.public-page-content { padding: 56px 0 80px; }
.public-page-content h1 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.public-page-content h2 { font-size: 1.05rem; font-weight: 700; margin: 40px 0 10px; }
.public-page-content h2:first-child { margin-top: 0; }
.public-page-content p { font-size: 15px; color: var(--ink-500); line-height: 1.8; margin-bottom: 16px; }
.public-page-content a { color: var(--brand); }

/* ============================================================
   RATGEBER — Guide / Magazin
   ============================================================ */
.guide-hero {
    background: #fff;
    padding: 86px 0 34px;
}
.guide-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 18px;
}
.guide-hero h1 {
    font-size: clamp(2.25rem, 5vw, 4.35rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.08;
    max-width: 860px;
    margin: 0 auto 24px;
}
.guide-lead {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-500);
}
.guide-subline {
    margin: 26px 0 0;
    font-size: 14px;
    color: var(--ink-500);
    font-weight: 500;
}
.guide-section {
    background: #fff;
    padding: 22px 0;
}
.guide-section--featured {
    padding-top: 38px;
}
.guide-section--list {
    padding-top: 20px;
    padding-bottom: 96px;
}
.guide-section-heading {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}
.guide-section-heading .section-lead {
    margin: 12px auto 0;
    max-width: 640px;
}
.guide-card {
    display: grid;
    grid-template-columns: minmax(280px, 39%) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(34, 27, 20, .06);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(56, 42, 25, .08);
    max-width: 1120px;
    margin: 0 auto;
}
.guide-card + .guide-card {
    margin-top: 24px;
}
.guide-card--featured {
    grid-template-columns: minmax(320px, 41%) minmax(0, 1fr);
}
.guide-card-image {
    position: relative;
    min-height: 100%;
    background: #E7E1D9;
}
.guide-card-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}
.guide-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(15,23,42,.9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}
.guide-card-badge--soft {
    background: rgba(19, 19, 19, .88);
    color: #fff;
}
.guide-card-badge--inline {
    position: static;
    margin-bottom: 18px;
}
.guide-card-body {
    padding: clamp(28px, 4vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.guide-card-toprow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.guide-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 18px;
    color: var(--ink-500);
    font-size: 13px;
    font-weight: 500;
}
.guide-card-iconlink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #EFF8FF;
    color: var(--brand);
    text-decoration: none;
    font-size: 18px;
}
.guide-card-iconlink:hover {
    color: #0087c0;
}
.guide-card h2,
.guide-card h3 {
    font-size: clamp(1.7rem, 2.5vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    font-weight: 900;
    margin-bottom: 16px;
}
.guide-card h3 {
    font-size: clamp(1.45rem, 2vw, 2.15rem);
}
.guide-card-title-link {
    color: inherit;
    text-decoration: none;
}
.guide-card h2 .guide-card-title-link,
.guide-card h3 .guide-card-title-link,
.guide-card h2 .guide-card-title-link:visited,
.guide-card h3 .guide-card-title-link:visited,
.guide-card h2 .guide-card-title-link:hover,
.guide-card h3 .guide-card-title-link:hover,
.guide-card h2 .guide-card-title-link:active,
.guide-card h3 .guide-card-title-link:active {
    color: inherit;
    text-decoration: none;
}
.guide-card-title-link:hover {
    color: inherit;
}
.guide-card p {
    margin: 0;
    color: var(--ink-500);
    font-size: 16px;
    line-height: 1.72;
}
.guide-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--brand);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}
.guide-card-link:hover {
    color: #0087c0;
}
.guide-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.guide-card-link--muted {
    color: var(--ink-500);
}
.guide-card-link--muted:hover {
    color: var(--dark);
}
@media (max-width: 991px) {
    .guide-card,
    .guide-card--featured {
        grid-template-columns: 1fr;
    }
    .guide-card-image img {
        min-height: 250px;
    }
    .guide-card-toprow {
        align-items: center;
    }
}
@media (max-width: 767px) {
    .guide-hero {
        padding: 62px 0 26px;
    }
    .guide-card {
        border-radius: 22px;
    }
    .guide-card-image img {
        min-height: 220px;
    }
    .guide-card-body {
        padding: 24px 22px 28px;
    }
    .guide-card-meta {
        gap: 8px 14px;
    }
    .guide-card-toprow {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.guide-article-hero {
    padding: 56px 0 42px;
    background: linear-gradient(180deg, #FCFDFD 0%, #F8FAFC 100%);
    border-bottom: 1px solid rgba(226,232,240,.9);
}
.guide-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: #476174;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.guide-back-link:hover {
    color: var(--brand);
}
.guide-article-hero h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin-bottom: 18px;
}
.guide-article-lead {
    color: #526579;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}
.guide-article-image {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,.12);
}
.guide-article-image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}
.guide-article-body {
    padding: 48px 0 84px;
}
.guide-article-copy p {
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 20px;
}
.guide-article-inline-image {
    margin: 34px 0 38px;
}
.guide-article-inline-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: 0 18px 46px rgba(15,23,42,.1);
}
.guide-article-inline-image figcaption {
    color: #64748B;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 10px;
}
.guide-article-sidecard {
    position: sticky;
    top: 96px;
    border-radius: 24px;
    border: 1px solid rgba(226,232,240,.9);
    background: #fff;
    box-shadow: 0 20px 50px rgba(15,23,42,.07);
    padding: 26px;
}
.guide-article-sidecard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.guide-article-sidecard li {
    position: relative;
    padding-left: 28px;
    color: #526579;
    font-size: 14.5px;
    line-height: 1.7;
}
.guide-article-sidecard li + li {
    margin-top: 14px;
}
.guide-article-sidecard li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), #6FCCEB);
}
@media (max-width: 991px) {
    .guide-article-sidecard {
        position: static;
    }
}
