/* =====================================================
TOWNWORK STANDORT HAMBURG CONTENT
Datei: standort-hamburg-content.css
===================================================== */

:root {
    --tw-blue: #0d4f93;
    --tw-blue-dark: #062760;
    --tw-orange: #ff7417;
    --tw-orange-dark: #e65e08;
    --tw-text: #10244a;
    --tw-muted: #465775;
    --tw-border: #dfe7f2;
    --tw-soft: #f6f9fd;
    --tw-white: #ffffff;
    --tw-shadow-soft: 0 16px 38px rgba(8, 38, 94, 0.11);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--tw-text);
    background: #ffffff;
}

.location-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.location-section-inner {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
}

/* HERO */

.location-hero {
    position: relative;
    min-height: 470px;
    border-top: 4px solid var(--tw-orange);
    background: linear-gradient(90deg, #ffffff 0%, #f8fafc 42%, #eef4fb 100%);
    overflow: hidden;
}

.location-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    justify-content: flex-end;
}

.location-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.98) 31%, rgba(255,255,255,.75) 47%, rgba(255,255,255,.06) 73%, rgba(255,255,255,0) 100%);
}

.location-hero-bg img {
    width: 62%;
    min-width: 720px;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.location-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 64px));
    min-height: 470px;
    margin: 0 auto;
    padding: 20px 0 34px;
}

.location-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    color: var(--tw-blue-dark);
}

.location-breadcrumb a {
    color: var(--tw-blue-dark);
    text-decoration: none;
}

.location-breadcrumb span:last-child {
    color: var(--tw-orange);
}

.location-hero-content {
    min-height: 410px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 56px;
    align-items: center;
}

.location-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--tw-orange);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.location-hero-text h1 {
    margin: 0 0 18px;
    font-size: clamp(48px, 6vw, 86px);
    line-height: .88;
    letter-spacing: -2.5px;
    font-weight: 900;
    color: var(--tw-blue-dark);
}

.location-hero-text p {
    max-width: 560px;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    color: #21334e;
}

.location-checklist {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 9px;
}

.location-checklist li {
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #26394f;
}

.location-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -1px;
    color: #21a843;
    font-size: 20px;
    font-weight: 900;
}

.location-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.location-primary-btn,
.location-secondary-btn,
.route-btn,
.price-outline-btn,
.price-primary-btn {
    min-height: 44px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}

.location-primary-btn,
.price-primary-btn {
    color: #ffffff;
    background: linear-gradient(180deg, #ff8425 0%, var(--tw-orange-dark) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 4px 10px rgba(230, 94, 8, .26);
}

.location-secondary-btn,
.price-outline-btn,
.route-btn {
    color: var(--tw-blue-dark);
    background: rgba(255,255,255,.92);
    border: 2px solid #1b5598;
}

.location-info-card {
    align-self: center;
    padding: 22px 20px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--tw-border);
    border-radius: 10px;
    box-shadow: var(--tw-shadow-soft);
}

.location-info-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 13px 0;
    border-bottom: 1px solid #edf2f8;
}

.location-info-item:first-child { padding-top: 0; }
.location-info-item:last-child { padding-bottom: 0; border-bottom: 0; }

.location-info-item img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.location-info-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
    font-weight: 900;
    color: var(--tw-blue-dark);
}

.location-info-item span {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
    color: #334663;
}

/* SERVICES */

.location-services {
    padding: 34px 0 42px;
    background: #ffffff;
    border-bottom: 1px solid #edf2f8;
}

.location-services h2,
.location-targets h2,
.location-section-head h2,
.location-map-info h2 {
    margin: 0 0 24px;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--tw-blue-dark);
}

.location-service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.location-service-item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.service-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.location-service-item h3 {
    margin: 0 0 5px;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--tw-blue-dark);
}

.location-service-item p {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.5;
    font-weight: 600;
    color: #2e405c;
}

/* TARGETS */

.location-targets {
    padding: 40px 0 42px;
    background: #ffffff;
    border-bottom: 1px solid #edf2f8;
}

.location-target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.location-target-card {
    min-height: 180px;
    padding: 28px 22px 24px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--tw-border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(8,38,94,.06);
}

.location-target-card img {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    object-fit: contain;
    display: block;
}

.location-target-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--tw-blue-dark);
}

.location-target-card p {
    margin: 0 auto;
    max-width: 200px;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
    color: #334663;
}

/* PRICING */

.location-pricing {
    padding: 34px 0 38px;
    background: #ffffff;
    border-bottom: 1px solid #edf2f8;
}

.location-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.location-section-head h2 { margin-bottom: 0; }

.location-section-head span {
    padding: 8px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--tw-border);
    font-size: 12px;
    font-weight: 700;
    color: #53627a;
}

.location-price-grid {
    width: min(660px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.location-price-card {
    position: relative;
    padding: 28px 28px 24px;
    background: #ffffff;
    border: 1px solid var(--tw-border);
    border-radius: 10px;
    box-shadow: var(--tw-shadow-soft);
}

.location-price-card.is-featured {
    border-color: #0b3d8a;
}

.price-badge {
    position: absolute;
    left: -1px;
    right: -1px;
    top: -28px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px 7px 0 0;
    color: #ffffff;
    background: #073f93;
    font-size: 12px;
    font-weight: 900;
}

.location-price-card h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 900;
    color: var(--tw-blue-dark);
}

.location-price-card p {
    min-height: 34px;
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    color: #53627a;
}

.location-price-card strong {
    display: block;
    margin-bottom: 2px;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    color: var(--tw-orange);
}

.location-price-card small {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    color: #53627a;
}

.location-price-card ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.location-price-card li {
    position: relative;
    padding-left: 23px;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 700;
    color: #26394f;
}

.location-price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -1px;
    color: #24aa40;
    font-weight: 900;
}

.price-outline-btn,
.price-primary-btn {
    width: 100%;
    min-height: 38px;
    font-size: 13px;
}

/* MAP */

.location-map-section {
    padding: 34px 0 26px;
    background: #ffffff;
    border-bottom: 1px solid #edf2f8;
}

.location-map-inner {
    display: grid;
    grid-template-columns: 305px minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
}

.location-map-info h2 { margin-bottom: 14px; }

.location-map-info p {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
    color: #334663;
}

.location-map-info ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.location-map-info li {
    position: relative;
    padding-left: 22px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    color: #334663;
}

.location-map-info li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tw-blue-dark);
    font-size: 12px;
}

.route-btn {
    min-height: 34px;
    padding: 0 18px;
    font-size: 13px;
}

.location-map-card {
    overflow: hidden;
    min-height: 245px;
    background: #eef4fb;
    border: 1px solid var(--tw-border);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(8,38,94,.08);
}

.location-map-card img {
    width: 100%;
    height: 100%;
    min-height: 245px;
    object-fit: cover;
    display: block;
}

/* TRUST BAR */

.location-trustbar {
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid #edf2f8;
}

.location-trustbar-inner {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: 18px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.location-trustbar article {
    min-height: 58px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    border-right: 1px solid var(--tw-border);
}

.location-trustbar article:last-child { border-right: 0; }

.location-trustbar img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.location-trustbar strong {
    display: block;
    font-size: 12.5px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--tw-blue-dark);
}

.location-trustbar span {
    display: block;
    font-size: 11.5px;
    line-height: 1.25;
    font-weight: 600;
    color: #53627a;
}

/* CTA */

.location-bottom-cta {
    background: #ffffff;
    padding: 16px 0 26px;
}

.location-bottom-cta-inner {
    width: min(1180px, calc(100% - 64px));
    min-height: 76px;
    margin: 0 auto;
    padding: 15px 22px 15px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: linear-gradient(90deg, #eff5ff 0%, #f8fbff 100%);
    border: 1px solid var(--tw-border);
    border-radius: 10px;
    position: relative;
}

.location-bottom-cta-inner::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: url('/img/standort_leipzig_img_19.png') center / contain no-repeat;
}

.location-bottom-cta h2 {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--tw-blue-dark);
}

.location-bottom-cta p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #53627a;
    font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .location-hero-content {
        grid-template-columns: 1fr;
        gap: 26px;
        align-items: start;
    }

    .location-info-card {
        max-width: 420px;
    }

    .location-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-target-grid,
    .location-trustbar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-trustbar article:nth-child(2) {
        border-right: 0;
    }

    .location-map-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .location-section-inner,
    .location-hero-inner,
    .location-trustbar-inner,
    .location-bottom-cta-inner {
        width: min(100% - 30px, 520px);
    }

    .location-hero-bg img {
        width: 100%;
        min-width: 0;
        opacity: .28;
    }

    .location-hero-bg::before {
        background: rgba(255,255,255,.86);
    }

    .location-hero-inner {
        padding-top: 16px;
    }

    .location-hero-content {
        min-height: auto;
        padding: 38px 0 20px;
    }

    .location-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .location-primary-btn,
    .location-secondary-btn {
        width: 100%;
    }

    .location-service-grid,
    .location-target-grid,
    .location-price-grid,
    .location-trustbar-inner {
        grid-template-columns: 1fr;
    }

    .location-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .location-trustbar article {
        border-right: 0;
        border-bottom: 1px solid var(--tw-border);
    }

    .location-trustbar article:last-child {
        border-bottom: 0;
    }

    .location-bottom-cta-inner {
        padding: 74px 18px 18px;
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .location-bottom-cta-inner::before {
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
    }
}
