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

:root {
    --mp-black: #1a1a1a;
    --mp-anthracite: #2b2e33;
    --mp-grey-dark: #4a4f57;
    --mp-grey: #6b7280;
    --mp-grey-light: #f4f5f7;
    --mp-grey-line: #e3e5e9;
    --mp-blue: #1E5BC6;
    --mp-blue-dark: #174a9e;
    --mp-white: #ffffff;
    --mp-radius: 12px;
    --mp-shadow: 0 6px 24px rgba(26, 26, 26, 0.08);
    --mp-shadow-hover: 0 12px 36px rgba(30, 91, 198, 0.16);
    --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.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

h1 { font-size: 2.6rem; font-weight: 800; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

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: 72px 0; }
section.section-tight { padding: 48px 0; }
.section-lead { max-width: 760px; margin: 0 auto 48px; 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-block;
    padding: 14px 30px;
    border-radius: var(--mp-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .18s ease;
    text-align: center;
}
.btn-mp-primary { background: var(--mp-blue); color: #fff; }
.btn-mp-primary:hover { background: var(--mp-blue-dark); color: #fff; transform: translateY(-2px); }
.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: 8px 14px;
    display: inline-block;
}
.mphone-nav .menuitem:hover,
.mphone-nav li.active > a { 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 – Bereichs-Navigation (Sub-Nav)
   ============================================ */
.gk-subnav {
    background: #fff;
    border-bottom: 1px solid var(--mp-grey-line);
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
    position: sticky;
    top: 62px;
    z-index: 900;
}
.gk-subnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.gk-subnav-list::-webkit-scrollbar { height: 4px; }
.gk-subnav-list::-webkit-scrollbar-thumb { background: var(--mp-grey-line); border-radius: 4px; }
.gk-subnav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 16px 16px;
    color: var(--mp-anthracite);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.gk-subnav-link i { color: var(--mp-grey); transition: color .15s ease; }
.gk-subnav-link:hover { color: var(--mp-blue); text-decoration: none; }
.gk-subnav-link:hover i { color: var(--mp-blue); }
.gk-subnav-list li.active .gk-subnav-link {
    color: var(--mp-blue);
    font-weight: 600;
    border-bottom-color: var(--mp-blue);
}
.gk-subnav-list li.active .gk-subnav-link i { color: var(--mp-blue); }

/* ============================================
   Geschäftskunden – große Leistungs-Auswahl
   ============================================ */
.gk-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.gk-pick {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--mp-grey-line);
    border-radius: var(--mp-radius);
    padding: 28px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gk-pick:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow);
    border-color: var(--mp-blue);
    text-decoration: none;
}
.gk-pick-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--mp-grey-light);
    color: var(--mp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.gk-pick h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--mp-black); }
.gk-pick p { color: var(--mp-grey-dark); margin-bottom: 18px; flex: 1; }
.gk-pick-more {
    font-weight: 600;
    color: var(--mp-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.gk-pick:hover .gk-pick-more { gap: 12px; }

/* ============================================
   Hero
   ============================================ */
.hero {
    background: linear-gradient(180deg, var(--mp-grey-light) 0%, #fff 100%);
    padding: 84px 0 72px;
    overflow: hidden;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-subline { font-size: 1.3rem; color: var(--mp-grey-dark); max-width: 560px; margin-bottom: 28px; }
.hero-image { border-radius: 18px; box-shadow: var(--mp-shadow); 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: 26px; 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);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-hover); }
.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);
    padding: 30px;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.feature:hover { border-color: var(--mp-blue); box-shadow: var(--mp-shadow); }
.feature-icon {
    width: 54px; height: 54px;
    border-radius: 12px;
    background: rgba(30,91,198,.1);
    color: var(--mp-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.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: 56px; width: auto; }
.partner-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.partner-secondary img { height: 30px; 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);
    padding: 28px;
    box-shadow: var(--mp-shadow);
    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; }

/* ============================================
   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);
    overflow: hidden;
    background: #fff;
    transition: transform .18s, box-shadow .18s;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-hover); }
.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; }

/* ============================================
   CTA Band
   ============================================ */
.cta-band {
    background: var(--mp-anthracite);
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 56px 32px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3c7ce; max-width: 620px; margin: 0 auto 26px; font-size: 1.15rem; }

/* ============================================
   Page hero (Unterseiten)
   ============================================ */
.page-hero {
    background: var(--mp-anthracite);
    color: #fff;
    padding: 72px 0;
}
.page-hero.with-image { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c3c7ce; font-size: 1.2rem; max-width: 720px; margin-bottom: 0; }
.page-hero .eyebrow { color: #7ea6ee; }

/* 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); padding: 32px; box-shadow: var(--mp-shadow); }
.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 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: 16px; box-shadow: var(--mp-shadow); width: 100%; }

/* ============================================
   Footer
   ============================================ */
.mphone-footer { background: var(--mp-black); color: #b9bdc5; padding: 56px 0 28px; margin-top: 0; }
.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: 40px; width: auto; background: #fff; padding: 8px 14px; 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) {
    .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; }
    h1, .hero h1 { font-size: 2.1rem; }
    h2 { font-size: 1.6rem; }
}
@media (max-width: 575px) {
    section { padding: 48px 0; }
    .hero { padding: 56px 0 48px; }
    .partner-primary { gap: 28px; }
}
