/* ============================================
   mPhone – Unternehmenswebsite
   Farbwelt: Schwarz/Anthrazit + Grau, Akzent Blau #1d5470
   ============================================ */

:root {
    --mp-black: #1a1a1a;
    --mp-anthracite: #2b2e33;
    --mp-grey-dark: #4a4f57;
    --mp-grey: #6b7280;
    --mp-grey-light: #f6f8fb;
    --mp-grey-line: #e7eaf0;
    --mp-blue: #1d5470;
    --mp-blue-dark: #0c3b53;
    --mp-blue-light: #eef3fc;
    --mp-white: #ffffff;
    /* Border radius – Lumina-Skala */
    --mp-radius: 14px;
    --mp-radius-lg: 20px;
    --mp-radius-xl: 28px;
    --mp-radius-pill: 9999px;
    /* Weiche, gestufte Schatten */
    --mp-shadow: 0 4px 6px -1px rgba(16, 24, 40, .06), 0 2px 4px -2px rgba(16, 24, 40, .05);
    --mp-shadow-lg: 0 10px 15px -3px rgba(16, 24, 40, .08), 0 4px 6px -4px rgba(16, 24, 40, .05);
    --mp-shadow-hover: 0 20px 30px -10px rgba(16, 24, 40, .14), 0 8px 12px -8px rgba(16, 24, 40, .08);
    /* Heller, diagonaler Hero-Verlauf (im Markenklang) */
    --mp-hero-gradient: linear-gradient(135deg, var(--mp-blue-light) 0%, #ffffff 55%, var(--mp-grey-light) 100%);
    --mp-maxw: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    color: var(--mp-anthracite);
    font-size: 17px;
    line-height: 1.65;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--mp-white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--mp-maxw);
}

h1, h2, h3, h4, h5 {
    font-family: inherit;
    font-weight: 700;
    color: var(--mp-black);
    line-height: 1.18;
    margin: 0 0 16px 0;
    letter-spacing: -0.022em;
}

h1 {
    font-size: clamp(2.3rem, 4.5vw, 3.25rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 800;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin: 0 0 1rem 0;
}

a, a:visited {
    text-decoration: none;
    outline: none;
    transition: color .15s ease;
}

    a:hover {
        color: var(--mp-blue-dark);
        text-decoration: none;
    }

img {
    border: none;
    outline: none;
    max-width: 100%;
}

.text-accent {
    color: var(--mp-blue);
}

.bg-light {
    background: var(--mp-grey-light);
}

.bg-dark {
    background: var(--mp-anthracite);
    color: #d9dce1;
}

    .bg-dark h1, .bg-dark h2, .bg-dark h3 {
        color: #fff;
    }

/* --- Section spacing --- */
section {
    padding: 96px 0;
}

    section.section-tight {
        padding: 60px 0;
    }

.section-lead {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

    .section-lead p {
        color: var(--mp-grey);
        font-size: 1.15rem;
    }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
    font-weight: 700;
    color: var(--mp-blue);
    margin-bottom: 12px;
}

/* --- Buttons --- */
.btn-mp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--mp-radius);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
    text-align: center;
}

.btn-mp-primary {
    background: var(--mp-blue);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(30,91,198,.5);
}

    .btn-mp-primary:hover {
        background: var(--mp-blue-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px -8px rgba(30,91,198,.55);
    }

.btn-mp-outline {
    background: transparent;
    color: var(--mp-black);
    border-color: var(--mp-grey-line);
}

    .btn-mp-outline:hover {
        border-color: var(--mp-blue);
        color: var(--mp-blue);
        transform: translateY(-2px);
    }

.btn-mp-light {
    background: #fff;
    color: var(--mp-blue);
}

    .btn-mp-light:hover {
        background: var(--mp-grey-light);
        color: var(--mp-blue-dark);
    }

/* ============================================
   Header / Navigation
   ============================================ */
.mphone-header {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--mp-grey-line);
}

    .mphone-header .navbar {
        padding: 12px 0;
    }

.mphone-logo {
    height: 38px;
    width: auto;
}

.navbar-toggler {
    border: none;
    font-size: 1.4rem;
    color: var(--mp-black);
}

.mphone-nav {
    align-items: center;
}

    .mphone-nav .menuitem,
    .mphone-nav > li > a {
        color: var(--mp-anthracite);
        font-weight: 500;
        padding: 2px;
        display: inline-block;
        margin: 6px 12px 4px;
        border-bottom: 2px solid #fff;
    }

        .mphone-nav .menuitem:hover,
        .mphone-nav li.active > a {
            color: var(--mp-blue);
            border-color: var(--mp-blue);
        }

    .mphone-nav li.active > a {
        font-weight: 600;
    }

    .mphone-nav .dropdown {
        position: relative;
    }

        .mphone-nav .dropdown > a {
            display: inline-block;
        }

    .mphone-nav .dropdown-toggle {
        padding: 8px 4px;
        color: var(--mp-grey);
    }

    .mphone-nav .dropdown-menu {
        border: 1px solid var(--mp-grey-line);
        border-radius: var(--mp-radius);
        box-shadow: var(--mp-shadow);
        padding: 8px;
        min-width: 280px;
    }

        .mphone-nav .dropdown-menu li a {
            display: block;
            padding: 9px 14px;
            border-radius: 8px;
            color: var(--mp-anthracite);
            font-weight: 500;
        }

            .mphone-nav .dropdown-menu li a:hover,
            .mphone-nav .dropdown-menu li.active a {
                background: var(--mp-grey-light);
                color: var(--mp-blue);
            }

.nav-cta-item {
    margin-left: 10px;
}

.nav-cta {
    background: var(--mp-blue);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: var(--mp-radius);
    font-weight: 600;
}

    .nav-cta:hover {
        background: var(--mp-blue-dark);
    }

/* ============================================
   Geschäftskunden – Leistungen als Check-Listen
   ============================================ */
.gk-leistung-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

    .gk-leistung-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        color: var(--mp-grey-dark);
        font-size: .97rem;
        line-height: 1.5;
    }

        .gk-leistung-list li:last-child {
            margin-bottom: 0;
        }

        .gk-leistung-list li::before {
            content: "\f00c";
            font-family: "FontAwesome";
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--mp-blue);
            font-size: .82rem;
        }

.gk-partner-note {
    text-align: center;
    margin: 36px 0 0;
    color: var(--mp-grey);
    font-size: .95rem;
}

    .gk-partner-note a {
        color: var(--mp-blue);
        font-weight: 600;
    }

        .gk-partner-note a:hover {
            color: var(--mp-blue-dark);
        }

/* ============================================
   Geschäftskunden – Branchen (Carousel + Liste)
   ============================================ */
.gk-carousel {
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    box-shadow: var(--mp-shadow-lg);
}

    .gk-carousel .carousel-item img {
        width: 100%;
        height: 560px;
        object-fit: cover;
        display: block;
    }

    .gk-carousel .carousel-indicators li {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,.55);
        margin: 0 4px;
    }

        .gk-carousel .carousel-indicators li.active {
            background: #fff;
        }

.branchen-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
}

.branchen-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

    .branchen-item h3 {
        font-size: 1.05rem;
        margin-bottom: 2px;
    }

    .branchen-item p {
        color: var(--mp-grey);
        margin: 0;
        font-size: .95rem;
    }

.branchen-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--mp-blue-light);
    color: var(--mp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    background: var(--mp-hero-gradient);
    padding: 104px 0 88px;
    overflow: hidden;
}

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 3.6rem);
        margin-bottom: 22px;
    }

.hero-subline {
    font-size: 1.3rem;
    color: var(--mp-grey-dark);
    max-width: 560px;
    margin-bottom: 28px;
}

.hero-image {
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-lg);
    width: 100%;
    object-fit: cover;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 32px;
    flex-wrap: wrap;
}

.hero-trust-label {
    font-size: .85rem;
    color: var(--mp-grey);
    font-weight: 600;
}

.hero-trust img {
    height: 110px;
    width: auto;
}

/* Zielgruppen-CTA Spalten */
.hero-cta-cols {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-cta-col {
    flex: 1 1 200px;
}

.hero-cta-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--mp-grey);
    margin-bottom: 8px;
}

.hero-cta-col .btn-mp {
    width: 100%;
}

/* ============================================
   Cards / Tiles
   ============================================ */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.tile {
    background: #fff;
    border: 1px solid var(--mp-grey-line);
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .tile:hover {
        transform: translateY(-4px);
        box-shadow: var(--mp-shadow-hover);
        border-color: transparent;
    }

.tile-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background: var(--mp-grey-light);
}

.tile-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .tile-body h3 {
        margin-bottom: 10px;
    }

    .tile-body p {
        color: var(--mp-grey);
        flex: 1;
    }

.tile-link {
    font-weight: 600;
    color: var(--mp-blue);
    margin-top: 8px;
}

    .tile-link:hover {
        color: var(--mp-blue-dark);
    }

/* Leistungskacheln mit Icon */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.feature {
    background: #fff;
    border: 1px solid var(--mp-grey-line);
    border-radius: var(--mp-radius-lg);
    padding: 32px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .feature:hover {
        transform: translateY(-4px);
        border-color: transparent;
        box-shadow: var(--mp-shadow-lg);
    }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--mp-radius);
    background: var(--mp-blue-light);
    color: var(--mp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.2rem;
}

.feature p {
    color: var(--mp-grey);
    margin-bottom: 0;
}

/* Vorteile / Why-Liste */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .why-item i {
        color: var(--mp-blue);
        font-size: 1.3rem;
        margin-top: 4px;
    }

    .why-item strong {
        display: block;
        color: var(--mp-black);
    }

    .why-item span {
        color: var(--mp-grey);
    }

/* ============================================
   Partner Logos
   ============================================ */
.partner-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 8px 0 36px;
}

    .partner-primary img {
        height: 120px;
        width: auto;
    }

.partner-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

    .partner-secondary img {
        height: 80px;
        width: auto;
        opacity: .8;
        filter: grayscale(40%);
        transition: all .18s;
    }

        .partner-secondary img:hover {
            opacity: 1;
            filter: grayscale(0);
        }

/* ============================================
   Process / Steps
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.step {
    position: relative;
    padding-top: 8px;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mp-blue);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step h3 {
    font-size: 1.15rem;
}

.step p {
    color: var(--mp-grey);
}

/* ============================================
   Ansprechpartner-Karte
   ============================================ */
.contact-card {
    display: flex;
    gap: 26px;
    background: #fff;
    border: 1px solid var(--mp-grey-line);
    border-radius: var(--mp-radius-lg);
    padding: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-card-img {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--mp-grey-light);
    flex-shrink: 0;
}

.contact-card-body h3 {
    margin-bottom: 4px;
}

.contact-card-role {
    color: var(--mp-blue);
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card-body p {
    margin-bottom: 4px;
    color: var(--mp-grey-dark);
}

.contact-card-body a {
    font-weight: 500;
}

/* Ansprechpartner-Grid (Kontaktseite) */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.contact-card-tile {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 26px;
}

    .contact-card-tile .contact-card-body p {
        word-break: break-word;
    }

.contact-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--mp-blue-light);
    color: var(--mp-blue);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-soon {
    background: var(--mp-blue-light);
    border: 1px dashed var(--mp-blue);
}

    .contact-card-soon .contact-card-avatar {
        background: var(--mp-blue);
        color: #fff;
    }

/* ============================================
   Shops
   ============================================ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.shop-card {
    border: 1px solid var(--mp-grey-line);
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    background: #fff;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

    .shop-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--mp-shadow-hover);
        border-color: transparent;
    }

    .shop-card img {
        height: 170px;
        width: 100%;
        object-fit: cover;
        background: var(--mp-grey-light);
    }

.shop-card-body {
    padding: 22px;
}

    .shop-card-body h3 {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }

    .shop-card-body p {
        color: var(--mp-grey);
        font-size: .95rem;
    }

/* Coming-Soon-Kachel (Standort Überlingen) */
.shop-card-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--mp-grey-line);
}

.soon-badge {
    display: inline-block;
    background: var(--mp-blue-light);
    color: var(--mp-blue);
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--mp-radius-pill);
    margin-bottom: 10px;
}

.footer-link-soon {
    color: rgba(255, 255, 255, .55);
    font-size: .95rem;
}

.footer-soon-badge {
    display: inline-block;
    background: var(--mp-blue);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 2px 9px;
    border-radius: var(--mp-radius-pill);
    margin-left: 6px;
    vertical-align: 1px;
    white-space: nowrap;
}

.shop-loc-logo {
    display: block;
    height: 24px;
    width: auto;
    margin-bottom: 12px;
}

/* ============================================
   CTA Band
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--mp-anthracite) 0%, #1a1d21 100%);
    color: #fff;
    text-align: center;
    border-radius: var(--mp-radius-xl);
    padding: 64px 32px;
    box-shadow: var(--mp-shadow-lg);
}

    .cta-band h2 {
        color: #fff;
    }

    .cta-band p {
        color: #c3c7ce;
        max-width: 620px;
        margin: 0 auto 26px;
        font-size: 1.15rem;
    }

/* ============================================
   Page hero (Unterseiten) – hell, im Lumina-Stil
   ============================================ */
.page-hero {
    background: var(--mp-hero-gradient);
    color: var(--mp-black);
    padding: 80px 0 64px;
    border-bottom: 1px solid var(--mp-grey-line);
}

    .page-hero.with-image {
        position: relative;
    }

    .page-hero h1 {
        color: var(--mp-black);
        max-width: 760px;
    }

    .page-hero p {
        color: var(--mp-grey-dark);
        font-size: 1.2rem;
        line-height: 1.7;
        max-width: 640px;
        margin-bottom: 0;
    }

    .page-hero .eyebrow {
        color: var(--mp-blue);
    }

/* Zahlen-Block */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--mp-blue);
    line-height: 1;
}

.stat-label {
    color: var(--mp-grey);
    margin-top: 8px;
}

/* ============================================
   Formular
   ============================================ */
.mp-form {
    background: #fff;
    border: 1px solid var(--mp-grey-line);
    border-radius: var(--mp-radius-lg);
    padding: 36px;
}

    .mp-form label {
        font-weight: 600;
        color: var(--mp-black);
        margin-bottom: 6px;
        display: block;
        font-size: .95rem;
    }

    .mp-form .form-control,
    .mp-form select,
    .mp-form textarea {
        width: 100%;
        border: 1px solid var(--mp-grey-line);
        border-radius: 8px;
        padding: 12px 14px;
        font-size: 1rem;
        margin-bottom: 18px;
        font-family: inherit;
    }

        .mp-form .form-control:focus,
        .mp-form select:focus,
        .mp-form textarea:focus {
            border-color: var(--mp-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(30,91,198,.12);
        }

    .mp-form .req {
        color: var(--mp-blue);
    }

.checkbox-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 18px;
}

    .checkbox-row input {
        margin-top: 5px;
    }

    .checkbox-row label {
        font-weight: 400;
        color: var(--mp-grey-dark);
        font-size: .9rem;
    }

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}

    .checkbox-grid .checkbox-row {
        margin-bottom: 0;
    }

/* ============================================
   Content / Prose
   ============================================ */
.prose {
    max-width: 820px;
}

    .prose h2 {
        margin-top: 40px;
    }

    .prose h3 {
        margin-top: 28px;
        font-size: 1.25rem;
    }

    .prose h4 {
        margin-top: 20px;
        font-size: 1.05rem;
    }

    .prose ul {
        padding-left: 1.2rem;
    }

    .prose li {
        margin-bottom: 8px;
    }

.value-list {
    list-style: none;
    padding: 0;
}

    .value-list li {
        padding: 14px 0;
        border-bottom: 1px solid var(--mp-grey-line);
    }

        .value-list li strong {
            color: var(--mp-black);
        }

.quote {
    border-left: 4px solid var(--mp-blue);
    padding: 6px 0 6px 24px;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--mp-grey-dark);
    margin: 24px 0;
}

/* Split content row */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

    .split img {
        border-radius: var(--mp-radius-lg);
        box-shadow: var(--mp-shadow-lg);
        width: 100%;
    }

    .split .hero-trust img {
        border-radius: 0;
        box-shadow: none;
        width: auto;
    }


/* ============================================
   Footer
   ============================================ */
.mphone-footer {
    background: var(--mp-black);
    color: #b9bdc5;
    padding: 56px 0 28px;
    margin-top: 0;
}

.footer-logo {
    height: 38px;
    width: auto;
    margin-bottom: 18px;
}

.footer-partners {
    text-align: center;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-partners-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
    color: #7d8694;
    margin-bottom: 18px;
}

.footer-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-partner-logo {
    height: 120px;
    width: auto;
    border-radius: 8px;
}

.footer-cols h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-contact-block {
    color: #b9bdc5;
    font-size: .95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        color: #b9bdc5;
        font-size: .95rem;
    }

        .footer-links a:hover {
            color: #fff;
        }

.footer-social {
    margin-top: 16px;
    display: flex;
    gap: 14px;
}

    .footer-social a {
        color: #b9bdc5;
        font-size: 1.3rem;
    }

        .footer-social a:hover {
            color: var(--mp-blue);
        }

.footer-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .85rem;
    color: #7d8694;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
    section {
        padding: 72px 0;
    }

    .gk-carousel .carousel-item img {
        height: 320px;
    }

    .mphone-nav {
        padding: 14px 0;
        align-items: stretch;
    }

    .nav-cta-item {
        margin: 10px 0 0;
    }

    .nav-cta {
        display: inline-block;
    }

    .mphone-nav .dropdown-menu {
        box-shadow: none;
        border: none;
        padding-left: 14px;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero {
        padding: 80px 0 64px;
    }

    .page-hero {
        padding: 64px 0 52px;
    }
}

@media (max-width: 575px) {
    section {
        padding: 56px 0;
    }

    .hero {
        padding: 56px 0 48px;
    }

    .partner-primary {
        gap: 28px;
    }

    .cta-band {
        padding: 48px 24px;
    }

    .mp-form {
        padding: 24px;
    }
}
