/* ============================================================
   NORTEK24 – Hauptstylesheet
   Farben: Orange #D4621A, Dunkel #1A1A1A, Weiß #FFFFFF
   ============================================================ */

/* ── LOKALE SCHRIFTEN (Roboto + Oswald) ── */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange:       #D4621A;
    --orange-dark:  #B8521A;
    --orange-light: #F07830;
    --orange-bg:    #FFF4EE;
    --dark:         #1A1A1A;
    --dark-2:       #222222;
    --dark-3:       #333333;
    --mid:          #555555;
    --light:        #F5F5F5;
    --lighter:      #FAFAFA;
    --white:        #FFFFFF;
    --border:       #E8E8E8;
    --shadow:       0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
    --radius:       12px;
    --radius-sm:    8px;
    --transition:   all 0.3s ease;
    --font:         'Roboto', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    /* overflow-x auf html verschoben – overflow auf body blockiert background-attachment:fixed */
}

/* ── TYPOGRAFIE: Roboto global, Oswald für Überschriften ── */
body, input, textarea, select, button {
    font-family: 'Roboto', sans-serif;
}

.fa, .fas, .far, .fal, .fab, .fa-solid, .fa-regular, .fa-brands,
[class*="fa-"]::before, [class*="fa-"]::after {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", FontAwesome !important;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .page-header h1,
.form-header h2, .card-title, .service-title,
.pp-slogan-primary, .cta-text h2, .why-title,
.brand-text-logo, .section-header h2,
.highlight, h1 .highlight, h2 .highlight, h3 .highlight,
.stat-number, .section-tag, .offer-title {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.01em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 96px 0; }

/* ── BUTTONS ── */
.btn,
button,
[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 20px;
    min-height: 40px;
    border-radius: 0 !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    white-space: nowrap;
    background-color: #D4621A;
    color: #ffffff;
    text-decoration: none;
}

.btn:hover,
button:hover,
[type="submit"]:hover {
    overflow: visible !important;
    z-index: 2;
    transition: 0.3s !important;
    background-color: #D4621A;
    color: #ffffff;
    transform: none;
    box-shadow:
        -1px  1px 0 #000,
        -2px  2px 0 #000,
        -3px  3px 0 #000,
        -4px  4px 0 #000,
        -5px  5px 0 #000,
        -6px  6px 0 #000,
        -7px  7px 0 #000,
        -8px  8px 0 #000;
}

/* Weißer Schatten für dunkle Hintergründe – automatisch, kein extra Class nötig */
.white-shadow .btn:hover,
.white-shadow button:hover,
.white-shadow [type="submit"]:hover,
.hero .btn:hover,
.hero button:hover,
.footer .btn:hover,
.footer button:hover,
.cta-section .btn:hover,
.cta-section button:hover,
.cta-section [type="submit"]:hover,
.page-header .btn:hover,
.page-header button:hover,
.pp-split-slogan .btn:hover,
.pp-split-slogan button:hover,
.topbar .btn:hover,
.topbar button:hover,
.contact-section .btn:hover,
.contact-section button:hover,
.header .btn:hover,
.header button:hover,
.nav .btn:hover,
.nav button:hover {
    box-shadow:
        -1px  1px 0 #fff,
        -2px  2px 0 #fff,
        -3px  3px 0 #fff,
        -4px  4px 0 #fff,
        -5px  5px 0 #fff,
        -6px  6px 0 #fff,
        -7px  7px 0 #fff,
        -8px  8px 0 #fff;
}

/* Varianten */
.btn-primary {
    background: #D4621A;
    color: #ffffff;
    border: none;
}
.btn-primary:hover {
    background: #D4621A;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    box-shadow:
        -1px  1px 0 #fff,
        -2px  2px 0 #fff,
        -3px  3px 0 #fff,
        -4px  4px 0 #fff,
        -5px  5px 0 #fff,
        -6px  6px 0 #fff,
        -7px  7px 0 #fff,
        -8px  8px 0 #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}
.btn-outline-dark:hover {
    background: #D4621A;
    color: #ffffff;
    border-color: #D4621A;
}

.btn-lg {
    padding: 10px 36px;
    font-size: 1.3rem;
}

/* ── TOP BAR ── */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar i { color: var(--orange); }
.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
}
.topbar-link i { color: var(--orange); }
.topbar-link:hover { color: #fff; }

.topbar-whatsapp {    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
}
.topbar-whatsapp i {
    color: #25D366;
    font-size: 1rem;
}
.topbar-whatsapp:hover {
    color: #25D366;
}

/* ── HEADER ── */
.header {
    background: var(--dark-2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(12px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

/* LOGO */
.logo { display: flex; align-items: center; }
.logo-img {
    height: 52px;
    width: auto;
}

/* NAV */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.93rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: rgba(212,98,26,0.1);
}
.nav-btn { margin-left: 8px; }

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 4px !important;
    min-height: unset !important;
    font-size: unset !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: inherit;
}
.burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    background: var(--dark);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* SLIDESHOW HINTERGRUND */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s ease, transform 8s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1.0);
}
.hero-slide.zoom-out {
    transform: scale(1.12);
}

/* DUNKLES OVERLAY über dem Bild */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.82) 0%,
        rgba(20, 20, 20, 0.70) 50%,
        rgba(10, 10, 10, 0.78) 100%
    );
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(212,98,26,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(212,98,26,0.10) 0%, transparent 60%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4621A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 3;
}

/* WALKING LIGHT EFFECT */
.hero-walk-light {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212,98,26,0.06) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: walkLight 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes walkLight {
    0%   { background-position: -100% 0; }
    50%  { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* FLIMMERNDE LICHT-PARTIKEL */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(212,98,26,0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-20px) translateX(var(--drift)) scale(1.5); opacity: 0; }
}

/* PROGRESS DOTS */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0 !important;
    min-height: unset !important;
    font-size: unset !important;
    box-shadow: none !important;
}
.hero-dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 4px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,98,26,0.15);
    border: 1px solid rgba(212,98,26,0.3);
    color: var(--orange-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
}
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}
.highlight { color: var(--orange); }
.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    display: none; /* Buttons entfernt */
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 8px;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
}
.stat-divider {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.15);
}

/* HERO IMAGE */
.hero-image {
    /* Aligned to h1 top – stats/buttons bottom via margin-top on wrapper */
    padding-top: calc(var(--hero-badge-h, 52px) + 24px); /* badge + gap */
}
.hero-img-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(10px);
    /* Höhe: von H1-Oberkante bis Buttons-Unterkante – per JS gesetzt */
}
.hero-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    height: 100%;
}
.hero-icon-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    padding: 10px 6px;
}
.hero-icon-card:hover {
    background: rgba(212,98,26,0.15);
    border-color: rgba(212,98,26,0.3);
    transform: translateY(-4px);
}
.hero-icon-card i {
    font-size: 2.6rem;
    color: var(--orange);
    display: block;
}
.hero-icon-card span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    line-height: 1.3;
    display: block;
    padding: 0 6px;
}

/* ── USP BANNER ── */
.usp-banner {
    background: var(--orange);
    padding: 32px 0;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: var(--white);
}
.usp-item i {
    font-size: 2rem;
    opacity: 0.9;
    flex-shrink: 0;
    height: 2rem; /* feste Höhe – Icons immer gleich hoch */
    display: flex;
    align-items: center;
}
.usp-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}
.usp-item span {
    font-size: 0.82rem;
    opacity: 0.85;
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-tag {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--dark);
}
.section-subtitle {
    color: var(--mid);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── HERSTELLER LOGO SLIDER ── */
.brands-slider-section {
    background-color: #3a3a4a;
    background-image: none;
    background-repeat: repeat;
    background-attachment: fixed;
    padding: 40px 0 22px;
    overflow: hidden;
    position: relative;
}
.brands-slider-section .section-header {
    margin-bottom: 18px;
}
.brands-slider-section .section-title,
.brands-slider-section .section-subtitle {
    color: #fff;
}
.brands-slider-section .section-title .highlight {
    color: var(--orange);
}
.brands-all-btn-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0 0;
}
.brands-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.30);
}
.brands-all-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
    padding: 20px 0 40px;
}

/* Sanfte Überblendung an den Rändern */
.slider-wrapper::before,
.slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}
.slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #3a3a4a 0%, transparent 100%);
}
.slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #3a3a4a 0%, transparent 100%);
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: infiniteScroll 120s linear infinite;
}
.slider-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo-card {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    padding: 4px;
    background: #f0f0f0;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    box-sizing: border-box;
}
.brand-logo-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(212,98,26,0.15);
    transform: translateY(-4px);
}

/* Platzhalter (wird später durch echte Logos ersetzt) */
.brand-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--mid);
    transition: var(--transition);
}
.brand-logo-card:hover .brand-logo-placeholder {
    color: var(--orange);
}
.brand-logo-placeholder i {
    font-size: 2.4rem;
    color: #ccc;
    transition: var(--transition);
}
.brand-logo-card:hover .brand-logo-placeholder i {
    color: var(--orange);
}
.brand-logo-placeholder span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #aaa;
    transition: var(--transition);
}
.brand-logo-card:hover .brand-logo-placeholder span {
    color: var(--orange);
}

/* Echte Logo-Bilder */
.brand-logo-img {
    max-width: 212px;
    max-height: 112px;
    width: 212px;
    height: 112px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: var(--transition);
}
.brand-logo-card:hover .brand-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Text-Logos für Marken ohne Bild-Download */
.brand-text-logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #888;
    transition: var(--transition);
    text-align: center;
    line-height: 1.1;
}
.brand-logo-card:hover .brand-text-logo {
    color: var(--orange);
}
.ate-logo {
    font-size: 2rem;
    color: #555;
    font-style: italic;
}
.jpgroup-logo {
    font-size: 1.3rem;
    color: #444;
}
.jpgroup-logo span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #888;
}
.quaro-logo {
    font-size: 1.5rem;
    color: #333;
    letter-spacing: 2px;
}
.maxgear-logo {
    font-size: 1.4rem;
    color: #1a1a2e;
    font-style: italic;
}
.maxgear-logo span {
    font-style: normal;
    font-weight: 400;
}
.rocks-logo {
    font-size: 1.8rem;
    color: #222;
    font-style: italic;
    letter-spacing: -1px;
}
.launch-logo {
    font-size: 1.5rem;
    color: #0066cc;
    letter-spacing: 2px;
}

/* Neue Marken-Text-Logos */
.vw-logo {
    font-size: 2.6rem;
    font-weight: 900;
    color: #1a1a6e;
    letter-spacing: -2px;
}
.pierburg-logo {
    font-size: 0.95rem;
    font-weight: 800;
    color: #333;
    letter-spacing: 2px;
}
.nk-logo {
    font-size: 2.4rem;
    font-weight: 900;
    color: #cc1515;
    letter-spacing: 2px;
}
.schaeffler-logo {
    font-size: 0.9rem;
    font-weight: 800;
    color: #009e3f;
    letter-spacing: 2px;
}
.psa-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-wrapper::before,
    .slider-wrapper::after { width: 60px; }
    .brand-logo-card { width: 160px; height: 95px; padding: 4px; }
    .brand-logo-img { max-width: 152px; max-height: 87px; width: 152px; height: 87px; }
    .brand-logo-placeholder i { font-size: 1.8rem; }
}

/* ── CTA SECTION ── */
/* ── CTA SECTION – neues 3-Spalten-Layout ── */
.cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding-top: 2px;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(212,98,26,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Haupt-Grid: Text | Bild | Button */
.cta-inner-new {
    display: grid;
    grid-template-columns: 1fr 440px 220px;
    align-items: end;
    min-height: 320px; /* mindestens Bildhöhe */
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* LINKS – Text */
.cta-left {
    padding: 32px 48px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: stretch; /* volle Höhe für top-Ausrichtung */
    justify-content: center;
}
.cta-text {
    display: block;
}
.cta-text-block {
    display: table; /* shrink-wraps auf den breitesten Inhalt = H2 */
    width: auto;
    max-width: 370px;
}
.cta-text h2 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
    white-space: nowrap;
    display: block;
}
.cta-text p {
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    margin-bottom: 12px;
    line-height: 1.65;
    display: block;
    width: 100%;      /* 100% des table-Containers = exakt H2-Breite */
    text-align: justify;
    hyphens: auto;
}

/* MITTE – Bild + Steps-Overlay */
.cta-image-block {
    position: relative;
    align-self: end;
    width: 100%;
    margin-left: -80px;
    line-height: 0;
    /* Bild setzt die Höhe der Grid-Reihe – Section wächst mit dem Bild */
    margin-bottom: 0;
}
.cta-person-img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: bottom center;
    margin-bottom: 0;
    vertical-align: bottom;
}

/* Steps-Overlay wird nicht mehr benötigt */
.cta-steps-overlay { display: none; }

.cta-steps {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Steps auf volle Breite strecken */
    gap: 6px;
    background: rgba(20, 20, 30, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 14px 20px;
    width: 100%;
}
.cta-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    width: 100%; /* volle Breite – Badges linksbündig */
}
.step-num {
    width: 30px; height: 30px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.cta-arrow {
    color: var(--orange);
    font-size: 1.1rem;
    align-self: flex-start; /* bündig mit linker Kante der Badges */
    margin-left: 9px;       /* (30px Badge-Breite / 2) - (Pfeil-Breite / 2) ≈ zentriert unter Badge */
    transform: rotate(90deg);
    margin-top: 2px;
    margin-bottom: 2px;
}

/* RECHTS – Steps + Button */
.cta-right {
    align-self: stretch;
    padding: 32px 0 20px 24px; /* padding-top = .cta-left padding-top = bündig mit H2 */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.cta-btn-main {
    white-space: nowrap;
    font-size: 0.95rem;
}

/* ── NEWS & ANGEBOTE ── */
.news-offers-section {
    background: #2a2a3a;
    padding: 5px 0 0;    /* 5px oben, kein Padding sonst */
}
.news-offers-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 495px;       /* 16:9 für den 2/3-Slider (880px breit → 880/16×9 = 495px) */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;     /* gleiches seitliches Padding wie cta-inner-new darüber */
}

/* LINKS – Bild-Slider */
.news-slider-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-slider-track-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    flex: 1;
    height: 100%;
}
.news-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
}
.news-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2a2a3a;
    position: relative;
}
/* Platzhalter-Stil solange kein Bild hochgeladen ist */
.news-slide--placeholder {
    background-image: none !important; /* verhindert 404-Request */
    background: linear-gradient(135deg, #2a2a3a 0%, #3a3a4a 100%);
}
.news-slide-placeholder-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
}
.news-slide-placeholder-text i { font-size: 2.5rem; }
.news-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.25) 100%);
}

/* News-Slide Content (Text + CTA) */
.news-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px 28px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.news-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.news-slide-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.news-slide-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    margin: 0 0 14px;
    line-height: 1.5;
}
.news-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.news-slide-link:hover {
    background: #e05a00;
    transform: translateY(-1px);
}

/* Platzhalter-Muster wenn kein Bild vorhanden */
.news-slide:not([style*="url"]),
.news-slide[style*="slide1.jpg"],
.news-slide[style*="slide2.jpg"],
.news-slide[style*="slide3.jpg"] {
    background-color: #2a2a3a;
}

/* Pfeile innerhalb des Sliders */
.news-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px; height: 40px;
    border-radius: 50% !important;
    border: none;
    background: rgba(255,255,255,0.85);
    color: var(--dark);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    min-height: unset;
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.news-nav-btn:hover {
    background: var(--orange);
    color: var(--white);
}
.news-nav-left  { left: 12px; }
.news-nav-right { right: 12px; }

/* Dots */
.news-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.news-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.news-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* RECHTS – Angebotsbanner */
.offer-banner {
    background: linear-gradient(160deg, var(--dark-2) 0%, #1a1a3a 100%);
    border-radius: 0;    /* kein Radius – bündig */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;        /* Höhe vom Grid erben */
}
.offer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,98,26,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.offer-banner-inner {
    position: relative;
    z-index: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    height: 100%;
}
.offer-tag {
    background: rgba(212,98,26,0.2);
    color: var(--orange-light);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212,98,26,0.3);
}
.offer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin: 0;
}
.offer-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}
.offer-placeholder-icon {
    font-size: 4rem;
    color: rgba(212,98,26,0.25);
    margin: auto 0;
    align-self: center;
}
.offer-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* ── ThinkTool Angebot – Hover-Karte ── */
.offer-card {
    position: relative;
    width: 100%;
    height: 100%;        /* füllt offer-banner komplett */
    min-height: 0;       /* verhindert Overflow im Grid */
    overflow: hidden;
    cursor: pointer;
    flex: 1 1 0;
}
.offer-card-img-wrap {
    position: absolute;
    inset: 0;
}
.offer-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;   /* Gerät mittig-oben, Bullet-Text unten abgeschnitten */
    display: block;
    transition: transform 0.5s ease;
}
.offer-card:hover .offer-card-img {
    transform: scale(1.05);
}
/* Immer sichtbar: Badge oben + Titel unten */
.offer-card-static {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 20px;
    z-index: 2;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.45) 0%,
        transparent 35%,
        transparent 55%,
        rgba(0,0,0,0.75) 100%);
    transition: opacity 0.35s ease;
}
.offer-card:hover .offer-card-static {
    opacity: 0;
    pointer-events: none;
}
.offer-card-name {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/* Hover-Overlay: alles dunkel + Infos */
.offer-card-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15,15,30,0.96) 0%, rgba(26,26,50,0.96) 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 14px;
    z-index: 3;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    overflow: hidden;   /* kein Scrollbalken */
}
.offer-card:hover .offer-card-hover {
    opacity: 1;
    transform: translateY(0);
}
.offer-neuheit-badge {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 4px 11px;
    border-radius: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    align-self: flex-start;
}
.offer-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.offer-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.35;
}
.offer-highlights li i {
    color: var(--orange);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.offer-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 7px 10px;
}
.offer-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.offer-spec span {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.offer-spec strong {
    font-size: 0.72rem;
    color: #fff;
    font-weight: 700;
}
.offer-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82rem;
    padding: 9px 16px;
}
/* Hover-Kontext: kleinere Überschrift + Text */
.offer-card-hover .offer-title {
    font-size: 1.05rem;
    line-height: 1.2;
}
.offer-card-hover .offer-text {
    font-size: 0.78rem;
    line-height: 1.45;
    margin: 0;
}
.offer-card-hover .offer-tag {
    font-size: 0.68rem;
    padding: 3px 9px;
}

/* Responsive */
@media (max-width: 900px) {
    .news-offers-grid { grid-template-columns: 1fr; }
}

/* ── BRANDS (alt) ── */
.brands { background: var(--white); }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.brand-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.brand-item i { color: var(--orange); font-size: 1.2rem; }
.brand-item:hover {
    background: var(--orange-bg);
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

/* ── WHY US ── */
.why-us { background: #3a3a4a; position: relative; isolation: isolate; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-text .section-tag { margin-bottom: 12px; }
.why-text .section-title { text-align: left; margin-bottom: 16px; }
.why-intro {
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 28px;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}
.why-list i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.why-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.info-card:hover {
    transform: translateX(6px);
    border-color: rgba(212,98,26,0.3);
}
.info-card i {
    font-size: 1.8rem;
    color: var(--orange);
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}
.info-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.info-card span {
    font-size: 0.82rem;
    color: var(--mid);
    line-height: 1.5;
}

/* ── WHY-RIGHT: Newsletter + Kundenstimmen ── */
.why-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* NEWSLETTER */
.newsletter-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow);
}
.newsletter-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.newsletter-box-header i {
    font-size: 1.8rem;
    color: var(--orange);
    flex-shrink: 0;
}
.newsletter-box-header strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.newsletter-box-header span {
    font-size: 0.82rem;
    color: var(--mid);
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.newsletter-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--dark);
    background: var(--lighter);
    transition: var(--transition);
    box-sizing: border-box;
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
}
.newsletter-btn {
    width: 100%;
    justify-content: center;
}
.newsletter-hint {
    font-size: 0.75rem;
    color: var(--mid);
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.newsletter-hint i { font-size: 0.7rem; }

/* ═══════════════════════════════════════════
   NEUE NEWSLETTER-SEKTION (prominent)
═══════════════════════════════════════════ */
.nl-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    overflow: hidden;
}
.nl-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212,98,26,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,98,26,0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}
.nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Linke Seite */
.nl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,98,26,0.2);
    border: 1px solid rgba(212,98,26,0.4);
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nl-headline {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.nl-highlight {
    color: var(--orange);
}
.nl-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 28px;
}
.nl-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nl-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.nl-benefits li i {
    color: var(--orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.nl-subscribers {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nl-avatars {
    display: flex;
}
.nl-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    margin-left: -10px;
    flex-shrink: 0;
}
.nl-avatar:first-child { margin-left: 0; }
.nl-avatar--1 { background: #e05a00; }
.nl-avatar--2 { background: #c0392b; }
.nl-avatar--3 { background: #2980b9; }
.nl-avatar--4 { background: #27ae60; }
.nl-sub-count {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.nl-sub-count strong { color: #fff; }

/* Rechte Seite – Formular-Karte */
.nl-form-wrap {
    display: flex;
    justify-content: center;
}
.nl-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    position: relative;
}
.nl-form-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--orange), #ff6b35, var(--orange));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.6;
}
.nl-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}
.nl-gift-icon {
    font-size: 2rem;
    color: var(--orange);
    flex-shrink: 0;
}
.nl-form-header strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}
.nl-form-header span {
    font-size: 0.83rem;
    color: var(--mid);
}
.nl-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nl-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nl-form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nl-form-group label i {
    color: var(--orange);
    font-size: 0.78rem;
}
.nl-required { color: var(--orange); }
.nl-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--dark);
    background: #fafafa;
    transition: all 0.2s;
    box-sizing: border-box;
}
.nl-input:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212,98,26,0.1);
}
.nl-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--orange), #e05a00);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}
.nl-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,98,26,0.45);
}
.nl-submit-btn:active { transform: translateY(0); }
.nl-btn-arrow {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.2s;
}
.nl-submit-btn:hover .nl-btn-arrow { transform: translateX(3px); }
.nl-privacy {
    font-size: 0.72rem;
    color: #999;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
}
.nl-privacy i { color: #16a34a; font-size: 0.75rem; margin-top: 2px; flex-shrink: 0; }
.nl-privacy a { color: var(--orange); text-decoration: none; }
.nl-privacy a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    .nl-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nl-section { padding: 60px 0; }
    .nl-form-card { padding: 28px 24px; }
}
@media (max-width: 480px) {
    .nl-headline { font-size: 1.6rem; }
    .nl-section { padding: 48px 0; }
}

/* ── Newsletter Spam-Schutz: Captcha + Feedback ── */
.nl-captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #f9f9fb;
    border: 1px solid rgba(212,98,26,0.2);
    border-radius: 10px;
    padding: 11px 14px;
    margin-bottom: 4px;
}
.nl-captcha-label {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.nl-captcha-label i { color: var(--orange); }
.nl-captcha-q {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    flex-shrink: 0;
}
.nl-captcha-input {
    width: 68px !important;
    padding: 7px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: var(--font);
}
.nl-captcha-input:focus {
    outline: none;
    border-color: var(--orange);
}
.nl-captcha-fb {
    font-size: 0.78rem;
    font-weight: 700;
}
.nl-captcha-fb.ok  { color: #16a34a; }
.nl-captcha-fb.err { color: #dc2626; }

/* Feedback-Nachrichten */
.nl-feedback-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 4px;
}
.nl-feedback-msg.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}
.nl-feedback-msg.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #86efac;
}

/* Kompakte Fehler-Meldung für Strip/Blog */
.nl-strip-msg {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 6px;
    width: 100%;
    box-sizing: border-box;
}
.nl-strip-msg.error {
    background: rgba(220,38,38,0.15);
    color: #fca5a5;
    border: 1px solid rgba(220,38,38,0.3);
}
.nl-strip-msg.success {
    background: rgba(22,163,74,0.15);
    color: #86efac;
    border: 1px solid rgba(22,163,74,0.3);
}

/* ═══════════════════════════════════════════
   NEWSLETTER VARIANTE 1: LEISTE (Teileanfrage)
═══════════════════════════════════════════ */
.nl-strip {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 36px 0;
}
.nl-strip-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.nl-strip-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 260px;
}
.nl-strip-icon {
    width: 52px;
    height: 52px;
    background: rgba(212,98,26,0.2);
    border: 1px solid rgba(212,98,26,0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    flex-shrink: 0;
}
.nl-strip-left strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.nl-strip-left span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.nl-strip-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 300px;
}
.nl-strip-input {
    flex: 1;
    min-width: 140px;
    padding: 11px 16px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font);
    color: #fff;
    background: rgba(255,255,255,0.08);
    transition: all 0.2s;
    box-sizing: border-box;
}
.nl-strip-input::placeholder { color: rgba(255,255,255,0.4); }
.nl-strip-input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,255,255,0.12);
}
.nl-strip-btn {
    padding: 11px 24px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nl-strip-btn:hover {
    background: #e05a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(212,98,26,0.4);
}
@media (max-width: 768px) {
    .nl-strip-inner { flex-direction: column; align-items: stretch; gap: 20px; }
    .nl-strip-form { flex-direction: column; }
    .nl-strip-btn { justify-content: center; }
}

/* ═══════════════════════════════════════════
   NEWSLETTER VARIANTE 2: B2B (Profipartner)
═══════════════════════════════════════════ */
.nl-b2b {
    position: relative;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 80px 0;
    overflow: hidden;
}
.nl-b2b-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(212,98,26,0.12) 0%, transparent 45%),
        radial-gradient(circle at 90% 30%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}
.nl-b2b-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.nl-b2b-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,98,26,0.2);
    border: 1px solid rgba(212,98,26,0.4);
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nl-b2b-headline {
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}
.nl-b2b-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}
.nl-b2b-card { background: #fff; }
.nl-b2b-btn {
    background: linear-gradient(135deg, #1a3a4a, #2c5364) !important;
}
.nl-b2b-btn:hover {
    box-shadow: 0 8px 25px rgba(44,83,100,0.5) !important;
}
@media (max-width: 900px) {
    .nl-b2b-inner { grid-template-columns: 1fr; gap: 40px; }
    .nl-b2b { padding: 60px 0; }
}

/* ═══════════════════════════════════════════
   NEWSLETTER VARIANTE 3: BLOG (Neuigkeiten)
═══════════════════════════════════════════ */
.nl-blog {
    background: #f4f6f9;
    border-top: 3px solid var(--orange);
    padding: 44px 0;
}
.nl-blog-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.nl-blog-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange), #e05a00);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(212,98,26,0.3);
}
.nl-blog-content {
    flex: 1;
    min-width: 200px;
}
.nl-blog-content strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.nl-blog-content span {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.5;
}
.nl-blog-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 300px;
}
.nl-blog-btn {
    padding: 11px 22px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nl-blog-btn:hover {
    background: #e05a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(212,98,26,0.35);
}
.nl-blog-form .nl-strip-input {
    background: #fff;
    border-color: #ddd;
    color: var(--dark);
}
.nl-blog-form .nl-strip-input::placeholder { color: #aaa; }
.nl-blog-form .nl-strip-input:focus {
    border-color: var(--orange);
    background: #fff;
}
@media (max-width: 768px) {
    .nl-blog-inner { flex-direction: column; align-items: stretch; gap: 18px; }
    .nl-blog-form { flex-direction: column; }
    .nl-blog-btn { justify-content: center; }
    .nl-blog-icon-wrap { display: none; }
}

/* KUNDENSTIMMEN */
.reviews-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.reviews-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.reviews-slider-wrap {
    overflow: hidden;
}
.reviews-track {
    display: flex;
    transition: transform 0.4s ease;
}
.review-card {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-quote i {
    font-size: 1.4rem;
    color: var(--orange);
    opacity: 0.6;
}
.review-text {
    font-size: 0.95rem;
    color: var(--dark-3);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}
.review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    flex-shrink: 0;
    overflow: hidden;
}
/* Platzhalter-Farben bis echte Fotos hochgeladen werden */
.review-avatar--1 { background: linear-gradient(135deg, #3a7bd5, #1a4a8a); }
.review-avatar--2 { background: linear-gradient(135deg, #d4621a, #8a3a10); }
.review-avatar--3 { background: linear-gradient(135deg, #2a8a4a, #1a5a2a); }
.review-author strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
}
.review-stars {
    color: #f5a623;
    font-size: 0.8rem;
    margin-top: 2px;
}
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.reviews-nav-btn {
    width: 32px; height: 32px;
    border-radius: 50% !important;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem;
    min-height: unset;
    padding: 0;
    transition: var(--transition);
}
.reviews-nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.reviews-dots {
    display: flex;
    gap: 6px;
}
.reviews-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.reviews-dot.active {
    background: var(--orange);
    width: 20px;
    border-radius: 4px;
}

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 16px 0 20px;
    max-width: 280px;
}
.footer-logo { height: 48px; width: auto; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.6;
}
.contact-list i {
    color: var(--orange);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 0.83rem; }
.footer-bottom i { color: var(--orange); }

/* ── FOOTER LEGAL HINWEIS ── */
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    background: inherit;
}
.footer-legal p {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.65;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .footer-legal p { font-size: 0.70rem; text-align: left; }
}

/* ── PAGE HEADER (inner pages) ── */
/* ── CHAT & WHATSAPP BLOCK ── */
.chat-wa-section {
    background-color: #3a3a4a;
    background-image: none;
    background-repeat: repeat;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
}
.chat-wa-section .container {
    position: relative;
    z-index: 2;
}
.chat-wa-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* iFrame 16:9 Container */
.chat-iframe-wrap {
    width: 100%;
}
/* iFrame 16:9 Container */
.chat-iframe-wrap {
    width: 100%;
}

/* Desktop: iFrame sichtbar, Mobile-Card versteckt */
.chat-desktop-only { display: block; }
.chat-mobile-card  { display: none; }

/* Mobile-Card Styles */
.chat-mobile-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.chat-mobile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, #c45016 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(212,98,26,0.4);
}
.chat-mobile-icon i {
    font-size: 2rem;
    color: #fff;
}
.chat-mobile-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}
.chat-mobile-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.97rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}
.chat-mobile-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.chat-mobile-hours i {
    color: var(--orange);
    font-size: 0.9rem;
}
.chat-mobile-btn {
    font-size: 1.05rem;
    padding: 14px 36px;
    margin-top: 4px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.chat-iframe-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 42.86%; /* 21:9 – flacher als 16:9, Verhältnis fix */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: var(--dark);
}
.chat-iframe-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}
.chat-iframe-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    text-align: center;
}
.chat-iframe-placeholder i {
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
}

/* WhatsApp Sticker */
.wa-sticker-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.wa-sticker {
    position: relative;
    display: block;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 40% 35%, #2edc72, #25D366 55%, #1aab52);
    border-radius: 50%;                 /* runder Aufkleber */
    text-decoration: none;
    box-shadow:
        0 8px 32px rgba(37,211,102,0.4),
        0 2px 8px rgba(0,0,0,0.2),
        inset 0 2px 6px rgba(255,255,255,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: visible;
}
.wa-sticker:hover {
    transform: translateY(-5px) rotate(-2deg) scale(1.04);
    box-shadow:
        0 20px 52px rgba(37,211,102,0.5),
        0 4px 14px rgba(0,0,0,0.25);
}
/* Abgelöste Ecke – kleines Dreieck unten rechts wie ein Aufkleber */
.wa-sticker-corner {
    position: absolute;
    bottom: -4px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: #0e7a35;
    border-radius: 0 0 6px 0;
    transform: rotate(30deg) skewX(10deg);
    box-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    z-index: -1;
}
/* weißer Glanz-Streifen oben */
.wa-sticker::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 30px;
    width: 60px;
    height: 20px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    transform: rotate(-20deg);
    pointer-events: none;
}
.wa-sticker-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 20px;
}
.wa-sticker-icon {
    font-size: 4.5rem;
    color: #fff;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.wa-sticker-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.wa-sticker-sub {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    line-height: 1.3;
}
.wa-sticker-num {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.18);
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 2px;
}
.wa-sticker-hint {
    font-size: 1rem;
    color: #fff;
    text-align: left;
    line-height: 1.6;
    max-width: 260px;
    font-weight: 600;
}
.wa-sticker-hint i {
    color: #25D366;
    margin-right: 5px;
    font-size: 1rem;
}

/* ── WhatsApp Kanal Banner ─────────────────────────────────── */
.wa-channel-banner {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wa-channel-banner .wa-channel-link {
    width: 100%;
    max-width: 480px;
}
.wa-channel-link {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37,211,102,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}
.wa-channel-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.40);
}
.wa-channel-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.wa-channel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    padding: 20px 16px 14px;
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 0 0 12px 12px;
}
.wa-channel-link:hover .wa-channel-overlay {
    opacity: 1;
}
.wa-channel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}
.wa-channel-cta i {
    font-size: 1.1rem;
}
.wa-channel-hint {
    margin-top: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.wa-channel-hint i {
    color: #25D366;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    /* Ab 900px: iFrame durch Chat-Card ersetzen */
    .chat-desktop-only { display: none !important; }
    .chat-mobile-card  { display: flex !important; }

    /* Grid: auf eine Spalte wechseln, Card + WA-Sticker untereinander */
    .chat-wa-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .wa-sticker-wrap {
        width: 100%;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .wa-channel-banner .wa-channel-link {
        max-width: 100%;
    }
    .wa-channel-hint {
        max-width: 100%;
    }
    .wa-sticker-hint {
        text-align: center;
        max-width: 100%;
    }
    .ph-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .chat-mobile-card {
        padding: 28px 20px;
        gap: 14px;
    }
    .chat-mobile-icon {
        width: 64px;
        height: 64px;
    }
    .chat-mobile-icon i { font-size: 1.6rem; }
    .chat-mobile-title  { font-size: 1.25rem; }
    .wa-sticker-wrap {
        flex-direction: column;
        align-items: center;
    }
    .wa-channel-banner .wa-channel-link {
        max-width: 100%;
    }
}

/* ── HOW IT WORKS – CHAT ── */
.how-chat-section {
    background: var(--dark);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.how-chat-section .container {
    position: relative;
    z-index: 2;
}
.how-chat-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    user-select: text;
}
.how-chat-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}
.how-chat-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.how-chat-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.how-step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
}
.how-step-body strong {
    display: block;
    color: var(--white);
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    user-select: text;
}
.how-step-body p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 6px;
    user-select: text;
}
.how-step-body p:last-child { margin-bottom: 0; }
.how-chat-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.how-chat-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
@media (max-width: 900px) {
    .how-chat-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .how-chat-img-wrap { display: none; }
}


/* Hero-Header mit Hintergrundbild */
.page-header--img::before {
    display: none;
}
.page-header--img {
    padding: 90px 0 70px;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}
/* ph-bg: Hintergrundbild füllt die Section komplett aus */
.ph-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
}
.ph-bg.ph-visible {
    opacity: 1;
}
.ph-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(10,10,10,0.75) 0%,
        rgba(20,20,20,0.55) 50%,
        rgba(10,10,10,0.70) 100%
    );
}
.ph-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(212,98,26,0.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(212,98,26,0.12) 0%, transparent 60%);
}
.ph-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4621A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ph-walk-light {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212,98,26,0.06) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: walkLight 6s ease-in-out infinite;
    pointer-events: none;
}
.ph-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}
.page-header--img .container {
    position: relative;
    z-index: 10;
    user-select: text;
}
.page-header--img h1,
.page-header--img p,
.page-header--img .ph-two-col,
.page-header--img .ph-bullets,
.page-header--img .ph-badge {
    position: relative;
    z-index: 10;
    user-select: text;
    pointer-events: auto;
}

.ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,98,26,0.15);
    border: 1px solid rgba(212,98,26,0.35);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.ph-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 8px;
}
.ph-col-right p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 12px;
}
.ph-col-right p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
    .ph-two-col { grid-template-columns: 1fr; gap: 24px; }
}

.ph-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ph-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 0.97rem;
    font-weight: 500;
}
.ph-bullets li i {
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── PAGE HEADER (Standard) ── */
.page-header {
    background: var(--dark);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(212,98,26,0.12) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    max-width: 560px;
}

/* ── KBA POPUP ── */
.kba-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.kba-popup-overlay.active {
    display: flex;
}
.kba-popup-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    animation: popupIn 0.25s ease;
}
@keyframes popupIn {
    from { opacity: 0; transform: scale(0.92) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.kba-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--lighter);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--mid);
    font-size: 1rem;
    transition: var(--transition);
}
.kba-popup-close:hover {
    background: var(--orange);
    color: #fff;
}
.kba-popup-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.kba-popup-box p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 18px;
}
.kba-popup-img {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ── FORM STYLES ── */
.form-section { background: #3a3a4a; padding: 80px 0; position: relative; overflow: hidden; }
.form-section .container {
    position: relative;
    z-index: 2;
}

/* Form + Sidebar Layout */
.form-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.form-header {
    background: var(--orange);
    padding: 32px 40px;
    color: var(--white);
}
.form-header h2 { font-size: 2.0rem; font-weight: 800; margin-bottom: 6px; }
.form-header p { opacity: 0.85; font-size: 0.95rem; }
.form-body { padding: 40px; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-3);
}
label span { color: var(--orange); }
input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(212,98,26,0.12);
}
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; }
.form-submit {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.form-note { font-size: 0.82rem; color: var(--mid); }

/* SUCCESS MESSAGE */
.success-msg {
    display: none;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    color: #166534;
    font-weight: 500;
    align-items: flex-start;
    gap: 14px;
    margin-top: 16px;
    line-height: 1.6;
}
.sending-msg {
    display: none;
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--dark);
    font-weight: 500;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.error-msg {
    display: none;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #991b1b;
    font-weight: 500;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.success-msg.show { display: flex; }

/* ── KONTAKT PAGE ── */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.contact-card:hover {
    border-color: rgba(212,98,26,0.3);
    transform: translateY(-3px);
}

/* ============================================================
   SCHULUNGSAKADEMIE
   ============================================================ */

/* ── Schulungs-Section ── */
.schulung-section {
    background: #3a3a4a;
    padding: 70px 0 80px;
    position: relative;
    isolation: isolate;
}

/* ── Titel-Leiste ── */
.schulung-titel-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.15);
}
.schulung-section-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 6px;
}
.schulung-section-sub-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    max-width: 780px;
}
.schulung-section-sub-block p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    margin: 0;
    line-height: 1.7;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.schulung-section-sub-block p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.schulung-section-sub-block p:first-child {
    padding-top: 0;
}
.schulung-count {
    font-size: 0.9rem;
    color: var(--mid);
    font-weight: 500;
}

/* ── Karten-Grid ── */
.schulung-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Einzelne Karte ── */
.schulung-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
}
.schulung-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: rgba(212,98,26,0.3);
}

/* Karten-Kopf als Karteikarten-Reiter */
.schulung-card-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: transparent;
    border-bottom: none;
    gap: 0;
}
/* Reiter oben: weißes Tab mit Logo */
.schulung-card-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px 10px 0 0;
    padding: 16px 24px;
    margin: 0 0 0 0;
    min-height: 72px;
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
    position: relative;
}
.schulung-card-tab::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--orange);
}
/* Meta-Zeile unter dem Reiter */
.schulung-card-meta-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 12px 20px 8px;
    background: var(--lighter);
    border-bottom: 1px solid var(--border);
    margin-top: 8px;
}
.schulung-kat-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    background: rgba(212,98,26,0.1);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.schulung-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}
.schulung-hersteller-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.schulung-hersteller-logo {
    max-height: 44px;
    max-width: 130px;
    object-fit: contain;
    filter: none;
}
.schulung-hersteller-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 0.03em;
}

/* Karten-Body */
.schulung-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.schulung-card-titel {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin: 0;
}
.schulung-card-desc {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.6;
    margin: 0;
}
.schulung-card-infos {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 4px;
}
.schulung-info-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.83rem;
    color: var(--dark);
}
.schulung-info-item i {
    color: var(--orange);
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

/* Belegungs-Balken */
.schulung-belegung-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}
.schulung-belegung-bar {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
}
.schulung-belegung-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 0.6s ease;
}
.schulung-belegung-label {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Karten-Footer */
.schulung-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--lighter);
}
.schulung-anmelden-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}
.schulung-anmelden-btn:hover {
    background: #b8521a;
    transform: translateY(-1px);
}
.schulung-kostenlos-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: #16a34a;
    background: rgba(22,163,74,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Keine Ergebnisse ── */
.schulung-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    text-align: center;
    color: var(--mid);
}
.schulung-empty p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.7;
}
.schulung-empty span {
    font-weight: 400;
    color: var(--mid);
    font-size: 0.95rem;
}

/* ── CTA-Banner ── */
.schulung-cta-banner {
    background: var(--dark);
    padding: 48px 0;
}
.schulung-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.schulung-cta-inner h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.schulung-cta-inner p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    max-width: 520px;
}

/* ── Responsive Schulungsakademie ── */
@media (max-width: 1100px) {
    .schulung-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    /* Header zweispaltig → einspaltig */
    .ph-two-col { grid-template-columns: 1fr; gap: 20px; }
    /* Karten: Logo-Reiter etwas kompakter */
    .schulung-card-tab { padding: 12px 16px; min-height: 60px; }
    .schulung-hersteller-logo { max-height: 36px; max-width: 110px; }
    /* CTA-Banner */
    .schulung-cta-inner { flex-direction: column; text-align: center; gap: 20px; }
}
@media (max-width: 700px) {
    /* Grid: eine Spalte */
    .schulung-grid { grid-template-columns: 1fr; }
    /* Sektion Padding reduzieren */
    .schulung-section { padding: 48px 0 56px; }
    /* Titel */
    .schulung-section-title { font-size: 1.4rem; }
    .schulung-section-sub-block { padding: 12px 16px; }
    .schulung-section-sub-block p { font-size: 0.92rem; }
    /* Karteikarten-Reiter */
    .schulung-card-tab { padding: 12px 16px; min-height: 56px; }
    .schulung-hersteller-logo { max-height: 32px; max-width: 100px; }
    /* Karten-Body */
    .schulung-card-body { padding: 16px; }
    .schulung-card-infos { gap: 6px; }
    .schulung-card-footer { flex-direction: column; align-items: stretch; gap: 10px; }
    .schulung-anmelden-btn { justify-content: center; }
    .schulung-kostenlos-badge { justify-content: center; }
    /* CTA Banner */
    .schulung-cta-inner { flex-direction: column; text-align: center; gap: 20px; }
    .schulung-cta-inner h3 { font-size: 1.15rem; }
    /* Header */
    .page-header--img { padding: 60px 0 44px; background-attachment: scroll; }
    .ph-two-col { grid-template-columns: 1fr; gap: 18px; }
}
.contact-card-icon {
    width: 48px; height: 48px;
    background: var(--orange-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card-icon i { font-size: 1.3rem; color: var(--orange); }
.contact-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.contact-card p, .contact-card a {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
    font-weight: 500;
}
.contact-card a:hover { color: var(--orange); }

.map-placeholder {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: var(--mid);
    font-size: 0.9rem;
}
.map-placeholder i { font-size: 2rem; color: var(--orange); margin-bottom: 10px; }

/* ── IMPRESSUM / DATENSCHUTZ ── */
.legal-section { padding: 80px 0; }
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 48px;
}
.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange-bg);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 10px;
}
.legal-content ul { padding-left: 24px; }
.legal-content a { color: var(--orange); }

/* ── LEISTUNGEN PAGE ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover {
    border-color: rgba(212,98,26,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p { color: var(--mid); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   RESPONSIVE DESIGN
   Breakpoints: 1024px (Tablet), 768px (Mobile), 480px (Klein), 360px (XS)
   ══════════════════════════════════════════════════ */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
    .hero .container         { grid-template-columns: 1fr; gap: 40px; }
    .hero-image              { display: none; }
    .hero-content            { max-width: 100%; text-align: center; }
    .hero-actions            { justify-content: center; }
    .hero-stats              { justify-content: center; }
    .hero-badge              { margin: 0 auto 24px; }
    .hero-subtitle           { margin: 0 auto 36px; }
    .why-grid                { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid             { grid-template-columns: 1fr 1fr; gap: 32px; }
    .usp-grid                { grid-template-columns: repeat(3, 1fr); }
    .brands-grid             { grid-template-columns: repeat(4, 1fr); }
    .categories-grid         { grid-template-columns: repeat(2, 1fr); }
    .section                 { padding: 72px 0; }
    .topbar-left             { gap: 12px; }
    /* Slider ausblenden unter Tablet Landscape – Text + Button bleiben sichtbar */
    .slider-wrapper          { display: none; }
    .brands-slider-section   { padding-bottom: 0; }
}

/* ── MOBIL (max 768px) ── */
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .container { padding: 0 16px; max-width: 100%; box-sizing: border-box; }
    p, li, h1, h2, h3, h4 { word-break: break-word; overflow-wrap: break-word; }
    .topbar-right { display: none; }
    .topbar-left  { flex-wrap: wrap; gap: 8px; }
    .topbar       { padding: 6px 0; }

    /* ── Mobile Navigation ── */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--dark-2);
        padding: 12px 16px 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.35);
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .nav.open        { display: block; }
    .nav-list        { flex-direction: column; gap: 2px; }
    .nav-link        { display: block; padding: 12px 16px; font-size: 1rem; }
    .nav-btn         { width: 100%; text-align: center; justify-content: center; margin: 8px 0 0; }
    .burger          { display: flex; }
    .header-inner    { position: relative; }
    .logo-img        { height: 42px; }

    /* ── Hero ── */
    .hero            { min-height: 100svh; padding: 48px 0 80px; }
    .hero-content    { text-align: center; }
    .hero-badge      { margin: 0 auto 20px; font-size: 0.8rem; }
    .hero-actions    { flex-direction: column; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats      { flex-direction: row; flex-wrap: wrap; gap: 16px 24px; justify-content: center; }
    .stat-divider    { display: none; }
    .hero-subtitle   { margin: 0 auto 28px; font-size: 1rem; }
    .hero-dots       { bottom: 20px; }

    /* ── Sektionen ── */
    .categories-grid { grid-template-columns: 1fr; }
    .usp-grid        { grid-template-columns: 1fr; gap: 12px; }
    .usp-banner      { padding: 24px 0; }
    .brands-grid     { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .section-header  { margin-bottom: 36px; }

    /* ── CTA ── */
    .cta-section     { padding: 0; }
    .cta-inner-new   { grid-template-columns: 1fr; padding: 40px 20px; min-height: unset; }
    .cta-left        { padding: 0 0 32px 0; align-self: auto; }
    .cta-image-block { display: none; }
    .cta-right       { padding: 0; justify-content: flex-start; align-self: auto; }
    .cta-form-preview { align-items: flex-start; }
    .cta-form-preview { align-items: center; width: 100%; }
    .cta-steps       { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .cta-steps > i   { display: none; }
    .cta-text p      { max-width: 100%; }

    /* ── Why Us ── */
    .why-grid        { grid-template-columns: 1fr; gap: 32px; }
    .why-text .section-title { text-align: center; }
    .why-text .section-tag { display: block; text-align: center; }
    .why-text .btn   { width: 100%; justify-content: center; }
    .why-us          { overflow-x: hidden; }
    .why-us          { overflow: hidden; }
    .why-text        { overflow: hidden; width: 100%; }
    .why-text .section-title { font-size: 1.6rem; word-break: break-word; }
    .why-intro       { word-break: break-word; overflow-wrap: break-word; }
    .why-list li     { word-break: break-word; font-size: 0.9rem; }
    .why-right       { overflow: hidden; max-width: 100%; width: 100%; }
    .info-card       { max-width: 100%; box-sizing: border-box; }
    .info-card:hover { transform: none; }
    .reviews-box     { padding: 18px 16px; overflow: hidden; max-width: 100%; box-sizing: border-box; }
    .review-text     { font-size: 0.88rem; }
    .newsletter-box  { padding: 20px 16px; max-width: 100%; box-sizing: border-box; overflow: hidden; }
    .newsletter-fields { grid-template-columns: 1fr; }

    /* ── Footer ── */
    .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
    .footer-top      { padding: 48px 0 32px; }
    .footer-brand p  { max-width: 100%; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }

    /* ── Formulare ── */
    .form-grid       { grid-template-columns: 1fr; }
    .form-body       { padding: 20px 16px; }
    .form-header     { padding: 24px 20px; }
    .form-submit     { flex-direction: column; gap: 12px; }
    .form-submit .btn { width: 100%; justify-content: center; }

    /* ── Kontakt ── */
    .contact-grid    { grid-template-columns: 1fr; }

    /* ── Legal ── */
    .legal-content   { padding: 24px 16px; }
    .legal-section   { padding: 48px 0; }

    /* ── Leistungen ── */
    .services-grid   { grid-template-columns: 1fr; }
    .service-card    { padding: 24px 20px; }

    /* ── Page Header ── */
    .page-header     { padding: 48px 0 36px; }

    /* ── Teileanfrage Sidebar ausblenden → unter Form ── */
    .form-layout-grid {
        grid-template-columns: 1fr;
    }

    /* ── Marken-Slider ausblenden ── */
    .brands-slider-section { display: none !important; }

    /* ── News & Angebote Slider ausblenden ── */
    .news-offers-section   { display: none !important; }

    /* ── Partner-Stats 2×2 ── */
    .partner-stats         { grid-template-columns: repeat(2,1fr); gap: 12px; }

    /* ── Hero Titel Größe ── */
    .hero-title            { font-size: 2.2rem; line-height: 1.2; }
    .hero-subtitle         { font-size: 0.95rem; }

    /* ── USP Banner 2 Spalten ── */
    .usp-grid              { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .usp-item              { padding: 16px 12px; }

    /* ── Kategorien 1 Spalte ── */
    .categories-grid       { grid-template-columns: 1fr; gap: 12px; }

    /* ── Section Header zentrieren ── */
    .section-header        { text-align: center; }
    .section-title         { font-size: 1.7rem; }
}

/* ── KLEIN (max 480px) ── */
@media (max-width: 480px) {
    .brands-grid       { grid-template-columns: repeat(2, 1fr); }
    .hero-stats        { gap: 12px 20px; }
    .stat-number       { font-size: 1.4rem; }
    .hero-title        { font-size: 1.9rem; }
    .section-title     { font-size: 1.6rem; }
    .btn-lg            { padding: 14px 24px; font-size: 0.95rem; }
    .usp-item          { gap: 12px; }
    .usp-item i        { font-size: 1.6rem; }
    .category-card     { padding: 24px 20px; }
    .info-card         { padding: 18px 16px; }
    .contact-card      { padding: 20px 16px; }
    .topbar            { font-size: 0.78rem; }
    .logo-img          { height: 38px; }
    .hero              { padding: 40px 0 72px; }
}

/* ── EXTRA KLEIN (max 360px) ── */
@media (max-width: 360px) {
    .container         { padding: 0 12px; }
    .hero-title        { font-size: 1.65rem; }
    .hero-badge        { font-size: 0.75rem; padding: 6px 12px; }
    .btn-lg            { padding: 12px 18px; font-size: 0.88rem; }
    .brands-grid       { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .brand-item        { padding: 12px 8px; font-size: 0.82rem; }
    .footer-logo       { height: 40px; }
    .stat-number       { font-size: 1.2rem; }
}

/* ── TOUCH GERÄTE: Hover-Effekte deaktivieren ── */
@media (hover: none) {
    .category-card:hover,
    .brand-item:hover,
    .info-card:hover,
    .contact-card:hover,
    .service-card:hover { transform: none; }
    .btn-primary:hover  { transform: none; box-shadow: none; }
    .social-links a:hover { transform: none; }
}

/* ── HOHE AUFLÖSUNG (min 1400px) ── */
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

/* ── FLOATING WHATSAPP BUTTON (Mobile) ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: waPulse 2.5s ease-in-out infinite;
    padding: 0 !important;
    min-height: unset !important;
    font-size: unset !important;
}
.whatsapp-float i { font-size: 1.6rem; color: #fff; }
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55) !important;
    background: #25D366 !important;
    color: #fff !important;
}
.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: var(--dark);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── SCROLL-TO-TOP BUTTON ── */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 998;
    width: 44px; height: 44px;
    background: var(--orange);
    border-radius: 50% !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(212,98,26,0.4);
    padding: 0 !important;
    min-height: unset !important;
    font-size: unset !important;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}
.scroll-top:hover { transform: translateY(-3px); background: var(--orange-dark); box-shadow: none !important; }
.scroll-top i { color: #fff; font-size: 1rem; }
