/* ===========================================
   VARIAD - Leistungsseiten Styles
   =========================================== */

/* ---- Animated Page Background Glows ---- */
.page-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
}

.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220,38,38,0.1) 0%, rgba(220,38,38,0) 70%);
    top: -10%;
    left: 0%;
    -webkit-animation: glow1 20s ease-in-out infinite;
    animation: glow1 20s ease-in-out infinite;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251,146,60,0.08) 0%, rgba(251,146,60,0) 70%);
    top: 40%;
    right: -10%;
    -webkit-animation: glow2 25s ease-in-out infinite;
    animation: glow2 25s ease-in-out infinite;
}

.glow-orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, rgba(220,38,38,0) 70%);
    bottom: -10%;
    left: 30%;
    -webkit-animation: glow3 22s ease-in-out infinite;
    animation: glow3 22s ease-in-out infinite;
}

/* Verstecke Orb 4 und 5 */
.glow-orb-4,
.glow-orb-5 {
    display: none;
}

@-webkit-keyframes glow1 {
    0%, 100% { opacity: 0.6; -webkit-transform: translate(0, 0); transform: translate(0, 0); }
    50% { opacity: 1; -webkit-transform: translate(30px, 20px); transform: translate(30px, 20px); }
}
@keyframes glow1 {
    0%, 100% { opacity: 0.6; transform: translate(0, 0); }
    50% { opacity: 1; transform: translate(30px, 20px); }
}

@-webkit-keyframes glow2 {
    0%, 100% { opacity: 0.5; -webkit-transform: translate(0, 0); transform: translate(0, 0); }
    50% { opacity: 0.9; -webkit-transform: translate(-25px, 15px); transform: translate(-25px, 15px); }
}
@keyframes glow2 {
    0%, 100% { opacity: 0.5; transform: translate(0, 0); }
    50% { opacity: 0.9; transform: translate(-25px, 15px); }
}

@-webkit-keyframes glow3 {
    0%, 100% { opacity: 0.5; -webkit-transform: translate(0, 0); transform: translate(0, 0); }
    50% { opacity: 1; -webkit-transform: translate(20px, -25px); transform: translate(20px, -25px); }
}
@keyframes glow3 {
    0%, 100% { opacity: 0.5; transform: translate(0, 0); }
    50% { opacity: 1; transform: translate(20px, -25px); }
}

/* ---- Hero Section ---- */
.leistung-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 80px;
    text-align: center;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.leistung-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    height: 120%;
    background: radial-gradient(ellipse at 50% 0%,
        rgba(220,38,38,0.10) 0%,
        rgba(220,38,38,0.08) 10%,
        rgba(220,38,38,0.06) 20%,
        rgba(220,38,38,0.04) 30%,
        rgba(220,38,38,0.02) 40%,
        rgba(220,38,38,0.01) 50%,
        transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.leistung-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(220,38,38,0.15);
    border: 1px solid rgba(220,38,38,0.3);
    color: var(--brand-red);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.leistung-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    padding-bottom: 0.15em;
    background: linear-gradient(135deg, #fff 0%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.leistung-hero .highlight-orange {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-bottom: 0.1em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-3);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--brand-red);
    color: #fff;
    border: none;
}

.cta-button.primary:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 18px;
}

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

/* ---- Section Styling ---- */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-3);
    font-size: 18px;
    margin-bottom: 60px;
}

/* ---- Problem Section ---- */
.problem-section {
    background: transparent;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.problem-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.problem-text p {
    color: var(--text-3);
    font-size: 17px;
    line-height: 1.7;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

.stat-item .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--brand-orange);
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: var(--text-3);
    font-size: 14px;
}

/* ---- USP Section ---- */
.usp-section {
    background: transparent;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usp-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: rgba(220,38,38,0.5);
    transform: translateY(-5px);
}

.usp-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.usp-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.usp-card p {
    color: var(--text-3);
    font-size: 15px;
    line-height: 1.6;
}

/* ---- Leistungen Section ---- */
.leistungen-section {
    background: rgba(220,38,38,0.03);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.leistung-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.leistung-card:hover {
    border-color: var(--brand-orange);
    background: rgba(255,255,255,0.05);
}

.leistung-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.leistung-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.leistung-card p {
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.leistung-link {
    color: var(--brand-orange);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.leistung-link:hover {
    color: var(--brand-red);
}

/* ---- Leistungen Detail ---- */
.leistungen-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.leistung-detail-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
}

.leistung-detail-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

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

.leistung-list li {
    color: var(--text-3);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-left: 20px;
    position: relative;
}

.leistung-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
}

.leistung-list li:last-child {
    border-bottom: none;
}

/* ---- Intro Section ---- */
.intro-section {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.intro-text p {
    color: var(--text-3);
    font-size: 17px;
    line-height: 1.7;
}

.price-badge {
    background: rgba(220,38,38,0.1);
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--brand-orange);
}

.price-unit {
    display: block;
    font-size: 14px;
    color: var(--text-3);
    margin-top: 4px;
}

/* ---- Prozess Section ---- */
.prozess-section {
    background: transparent;
}

.prozess-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.prozess-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
    opacity: 0.3;
}

.prozess-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.prozess-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.prozess-step p {
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.5;
}

/* ---- Zielgruppen Section ---- */
.zielgruppen-section {
    background: transparent;
}

.zielgruppen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.zielgruppe-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.zielgruppe-card:hover {
    border-color: rgba(220,38,38,0.5);
}

.zielgruppe-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.zielgruppe-card p {
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.5;
}

/* ---- Team Section ---- */
.team-section {
    background: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-badge {
    display: inline-block;
    background: rgba(220,38,38,0.15);
    color: var(--brand-red);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.team-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.team-role {
    color: var(--brand-orange);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-content > p {
    color: var(--text-3);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.team-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.team-stat {
    text-align: left;
}

.team-stat .stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-orange);
}

.team-stat .stat-label {
    color: var(--text-3);
    font-size: 14px;
}

/* ---- FAQ Section ---- */
.faq-section {
    background: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.faq-item p {
    color: var(--text-3);
    font-size: 15px;
    line-height: 1.6;
}

/* ---- Final CTA Section ---- */
.final-cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(220,38,38,0.15) 0%, rgba(251,146,60,0.1) 100%);
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.cta-box > p {
    color: var(--text-3);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-3);
}

/* ---- Plattformen Section ---- */
.plattformen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.plattform-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.plattform-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.plattform-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.plattform-card p {
    color: var(--text-3);
    font-size: 14px;
}

/* ---- Pakete Section ---- */
.pakete-section {
    background: transparent;
}

.pakete-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.paket-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.paket-card.featured {
    border-color: var(--brand-orange);
    background: rgba(251,146,60,0.05);
    transform: scale(1.05);
}

.paket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-orange);
    color: #000;
    padding: 6px 20px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.paket-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.paket-preis {
    margin-bottom: 30px;
}

.paket-preis .preis {
    font-size: 48px;
    font-weight: 900;
    color: var(--brand-orange);
}

.paket-preis .zeitraum {
    font-size: 16px;
    color: var(--text-3);
}

.paket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
    text-align: left;
}

.paket-features li {
    color: var(--text-3);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-left: 24px;
    position: relative;
}

.paket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
}

.paket-features li:last-child {
    border-bottom: none;
}

/* ---- Vorteile Section ---- */
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vorteil-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.vorteil-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.vorteil-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.vorteil-card p {
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.5;
}

/* ---- Kampagnen Section (Simple) ---- */
.kampagnen-section {
    padding: 100px 0;
    background: transparent;
}

.kampagnen-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.kampagne-card-simple {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.kampagne-card-simple:hover {
    border-color: var(--brand-red);
    background: rgba(220,38,38,0.05);
    transform: translateY(-4px);
}

.kampagne-icon-simple {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.kampagne-card-simple h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.kampagne-card-simple p {
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ---- Portfolio Teaser ---- */
.portfolio-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.portfolio-teaser-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.portfolio-teaser-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-teaser-item:hover img {
    transform: scale(1.05);
}

.portfolio-teaser-cta {
    text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .usp-grid,
    .leistungen-grid,
    .leistungen-detail-grid,
    .prozess-timeline,
    .zielgruppen-grid,
    .plattformen-grid,
    .vorteile-grid,
    .kampagnen-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }

    .pakete-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .paket-card.featured {
        transform: none;
    }

    .problem-grid,
    .intro-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        text-align: center;
    }

    .team-stats {
        justify-content: center;
    }

    .team-stat {
        text-align: center;
    }

    .prozess-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .leistung-hero {
        min-height: 60vh;
        padding: 140px 20px 60px;
    }

    section {
        padding: 60px 0;
    }

    .usp-grid,
    .leistungen-grid,
    .leistungen-detail-grid,
    .prozess-timeline,
    .zielgruppen-grid,
    .faq-grid,
    .plattformen-grid,
    .vorteile-grid,
    .kampagnen-grid-simple,
    .portfolio-teaser-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================================
   NEW VARIATION MODULES
   =========================================== */

/* ---- Before/After Slider (Content) ---- */
.before-after-section {
    padding: 100px 0;
    background: transparent;
}

.before-after-slider {
    max-width: 800px;
    margin: 48px auto 0;
}

.ba-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.ba-before, .ba-after {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.ba-before {
    left: 0;
    width: 50%;
    border-right: 2px solid var(--brand-red);
}

.ba-after {
    right: 0;
    width: 50%;
}

.ba-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
}

.ba-placeholder span {
    font-size: 64px;
    margin-bottom: 16px;
}

.ba-label {
    position: absolute;
    top: 16px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.ba-before .ba-label {
    left: 16px;
}

.ba-after .ba-label {
    right: 16px;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: ew-resize;
}

.ba-slider-line {
    width: 3px;
    height: 100%;
    background: var(--brand-red);
}

.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(220,38,38,0.5);
}

/* ---- Equipment Showcase (Content) ---- */
.equipment-section {
    padding: 100px 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    /* Performance-Optimierung */
    will-change: transform;
    transform: translateZ(0);
}

.equipment-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Optimierte Transitions - nur transform und background */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease;
    /* Hardware-Beschleunigung */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.equipment-card:hover {
    transform: translateZ(0) translateY(-8px);
    background: rgba(255,255,255,0.05);
}

.equipment-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.equipment-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    min-height: 1.3em;
}

.equipment-card p {
    color: var(--text-2);
    margin-bottom: 0;
    min-height: 2.6em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.equipment-spec {
    display: inline-block;
    font-size: 12px;
    color: var(--brand-orange);
    background: rgba(220,38,38,0.1);
    padding: 4px 12px;
    border-radius: 99px;
    margin-top: auto;
    margin-block-start: 16px;
}

/* ---- Portfolio Hover Zoom (Content) ---- */
.portfolio-teaser-grid.hover-zoom .portfolio-teaser-item {
    position: relative;
    overflow: hidden;
    /* Hardware-Beschleunigung */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.portfolio-teaser-grid.hover-zoom .portfolio-teaser-item img {
    /* Optimierte Transition - nur transform */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Hardware-Beschleunigung */
    will-change: transform;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
}

.portfolio-teaser-grid.hover-zoom .portfolio-teaser-item:hover img {
    transform: translateZ(0) scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(220,38,38,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Optimierte Transition - nur opacity */
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Hardware-Beschleunigung für Overlay */
    will-change: opacity;
    transform: translateZ(0);
}

.portfolio-teaser-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

/* ---- Platform Animation (SMM) ---- */
.animated-platforms .plattform-card {
    position: relative;
}

.plattform-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.plattform-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

.pulse-pink::before { background: radial-gradient(circle, #E1306C 0%, transparent 70%); }
.pulse-blue::before { background: radial-gradient(circle, #1877F2 0%, transparent 70%); }
.pulse-red::before { background: radial-gradient(circle, #ff0050 0%, transparent 70%); }
.pulse-navy::before { background: radial-gradient(circle, #0A66C2 0%, transparent 70%); }

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

.platform-stats {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.platform-stats span {
    font-size: 13px;
    color: var(--brand-orange);
    font-weight: 600;
}

/* ---- Comparison Table (SMM) ---- */
.comparison-section {
    padding: 100px 0;
    background: transparent;
}

.comparison-table {
    max-width: 900px;
    margin: 48px auto 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-header, .comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
}

.comparison-header {
    background: rgba(255,255,255,0.05);
    font-weight: 600;
}

.comparison-col {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-col.highlight {
    background: rgba(220,38,38,0.1);
}

.comparison-header .comparison-col.highlight {
    background: rgba(220,38,38,0.2);
    color: var(--brand-orange);
}

.comparison-row:last-child .comparison-col {
    border-bottom: none;
}

.comparison-col .good {
    color: #22c55e;
    font-weight: 600;
}

.comparison-col .bad {
    color: var(--text-3);
}

/* ---- Metrics Dashboard (Advertising) ---- */
.metrics-dashboard-section {
    padding: 100px 0;
}

.metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.metric-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card.glow-card {
    position: relative;
}

.metric-card.glow-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card.glow-card:hover::before {
    opacity: 1;
}

.metric-card:hover {
    transform: translateY(-8px);
}

.metric-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.metric-card .metric-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.metric-card .metric-label {
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 20px;
}

.metric-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
    border-radius: 3px;
    transition: width 1s ease-out;
}

.metrics-disclaimer {
    text-align: center;
    color: var(--text-3);
    font-size: 13px;
    margin-top: 24px;
}

/* ---- Video Teaser (Beratung) ---- */
.video-teaser-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(220,38,38,0.05) 50%, transparent 100%);
}

.video-teaser {
    max-width: 900px;
    margin: 48px auto 0;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(220,38,38,0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(220,38,38,0.6);
}

.play-button span {
    font-size: 28px;
    margin-left: 4px;
}

.video-caption {
    position: absolute;
    bottom: 24px;
    color: var(--text-3);
    font-size: 14px;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-2);
    font-size: 15px;
}

.feature-icon {
    font-size: 24px;
}

/* ---- Enhanced Team Section (Beratung) ---- */
.team-section.enhanced .team-image.with-badge {
    position: relative;
}

.availability-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34,197,94,0.9);
    color: #fff;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.booking-widget-teaser {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    text-align: center;
}

.booking-text {
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 8px;
}

.booking-date {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 16px;
}

/* ---- Responsive for New Modules ---- */
@media (max-width: 1024px) {
    .equipment-grid,
    .metrics-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-content {
        padding: 32px 24px;
    }

    .quote-icon {
        font-size: 48px;
        top: 16px;
        left: 16px;
    }

    .ba-container {
        height: 300px;
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Mobile: Modernes Comparison-Redesign */
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-table {
        border: none;
        background: transparent;
        border-radius: 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Header: Spalten-Labels nebeneinander */
    .comparison-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        background: transparent;
        padding: 0 0 20px 0;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .comparison-header .comparison-col:first-child {
        display: none;
    }

    .comparison-header .comparison-col {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 10px;
        padding: 12px 8px;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        border-bottom: none;
        color: rgba(255,255,255,0.5);
    }

    .comparison-header .comparison-col.highlight {
        background: rgba(220,38,38,0.15);
        border-color: rgba(220,38,38,0.4);
        color: #fff;
    }

    /* Rows: Kategorie oben, zwei gleiche Karten darunter */
    .comparison-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .comparison-row:last-child {
        border-bottom: none;
    }

    /* Kategorie-Label */
    .comparison-row .comparison-col:first-child {
        background: transparent;
        border: none;
        padding: 0 0 10px 0;
        font-weight: 600;
        font-size: 13px;
        color: rgba(255,255,255,0.4);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        text-align: left;
    }

    /* Wrapper-Verhalten für die zwei Werte-Spalten */
    .comparison-row .comparison-col:nth-child(2),
    .comparison-row .comparison-col:nth-child(3) {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 10px;
        padding: 14px 12px;
        text-align: center;
        font-size: 14px;
        line-height: 1.3;
        min-height: 48px;
        box-sizing: border-box;
    }

    /* Nebeneinander via Grid auf Row-Level */
    .comparison-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px 10px;
    }

    .comparison-row .comparison-col:first-child {
        grid-column: 1 / -1;
        padding-bottom: 2px;
    }

    /* DIY Spalte */
    .comparison-row .comparison-col:nth-child(2) {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
    }

    /* VARIAD Spalte */
    .comparison-row .comparison-col:nth-child(3).highlight {
        background: rgba(220,38,38,0.08);
        border: 1px solid rgba(220,38,38,0.25);
    }

    .comparison-col .good {
        font-weight: 700;
        color: #22c55e;
    }

    .comparison-col .bad {
        color: rgba(255,255,255,0.35);
        font-weight: 400;
    }

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

    .video-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .availability-badge {
        bottom: 16px;
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ===========================================
   ADDITIONAL VARIATION MODULES - ROUND 2
   =========================================== */

/* ---- Contact Options Card (New) ---- */
.contact-options-card {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
}

.contact-options-title {
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 16px;
    font-weight: 500;
}

.contact-buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateX(4px);
}

.contact-btn .btn-icon {
    font-size: 18px;
}

/* Specific colors on hover */
.contact-btn.email:hover { border-color: var(--brand-red); }
.contact-btn.phone:hover { border-color: var(--brand-green); }
.contact-btn.linkedin:hover { border-color: #0A66C2; }

@media (min-width: 600px) {
    .contact-buttons-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .contact-btn {
        flex: 1;
        justify-content: center;
    }
    /* LinkedIn full width if needed, or keeping flex behavior */
    .contact-btn.linkedin {
        flex-basis: 100%; /* Optional: LinkedIn button wide */
    }
}

/* ===========================================
   RESTORED STYLES - GEMINI DELETION FIX
   =========================================== */

/* ---- Hero Variants ---- */

/* Hero Data-Driven (Advertising) */
.leistung-hero.hero-data-driven {
    position: relative;
    overflow: hidden;
}

.hero-data-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.data-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 50%;
    bottom: 0;
    opacity: 0;
    box-shadow:
        0 0 10px rgba(251, 146, 60, 0.8),
        0 0 20px rgba(220, 38, 38, 0.6);
    animation: fireSpark 4s ease-out infinite;
}

.data-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 3.5s; }
.data-particle:nth-child(2) { left: 25%; animation-delay: 0.5s; animation-duration: 4s; }
.data-particle:nth-child(3) { left: 40%; animation-delay: 1s; animation-duration: 3.8s; }
.data-particle:nth-child(4) { left: 55%; animation-delay: 1.5s; animation-duration: 4.2s; }
.data-particle:nth-child(5) { left: 70%; animation-delay: 2s; animation-duration: 3.6s; }
.data-particle:nth-child(6) { left: 85%; animation-delay: 2.5s; animation-duration: 4s; }
.data-particle:nth-child(7) { left: 15%; animation-delay: 0.8s; animation-duration: 3.7s; }
.data-particle:nth-child(8) { left: 35%; animation-delay: 1.3s; animation-duration: 4.1s; }
.data-particle:nth-child(9) { left: 50%; animation-delay: 1.8s; animation-duration: 3.9s; }
.data-particle:nth-child(10) { left: 65%; animation-delay: 2.3s; animation-duration: 4s; }
.data-particle:nth-child(11) { left: 80%; animation-delay: 0.3s; animation-duration: 3.5s; }
.data-particle:nth-child(12) { left: 20%; animation-delay: 1.1s; animation-duration: 4.3s; }
.data-particle:nth-child(13) { left: 45%; animation-delay: 1.6s; animation-duration: 3.6s; }
.data-particle:nth-child(14) { left: 60%; animation-delay: 2.1s; animation-duration: 4.2s; }
.data-particle:nth-child(15) { left: 75%; animation-delay: 0.6s; animation-duration: 3.8s; }

@keyframes fireSpark {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
        background: var(--brand-orange);
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
        background: var(--brand-red);
        box-shadow:
            0 0 15px rgba(251, 146, 60, 1),
            0 0 30px rgba(220, 38, 38, 0.8);
    }
    100% {
        transform: translateY(-100vh) translateX(20px) rotate(180deg);
        opacity: 0;
        background: var(--brand-red);
        box-shadow:
            0 0 5px rgba(220, 38, 38, 0.4);
    }
}

.badge-glow {
    position: relative;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(220,38,38,0.3); }
    50% { box-shadow: 0 0 25px rgba(220,38,38,0.6); }
}

.roi-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
}

.roi-label {
    font-size: 14px;
    color: var(--text-3);
}

.roi-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-orange);
}

/* Hero Content Centered Variant */
.leistung-hero-content.centered {
    position: relative;
    z-index: 1;
}

.badge-light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.scroll-indicator {
    display: none;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    margin-bottom: 8px;
}

.scroll-arrow {
    font-size: 24px;
    color: var(--brand-orange);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Hero Expertise (Beratung) */
.leistung-hero.hero-expertise {
    position: relative;
}

.expertise-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.expertise-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    font-size: 13px;
    color: var(--text-2);
    transition: all 0.3s ease;
}

.expertise-badge:hover {
    border-color: rgba(220,38,38,0.5);
    background: rgba(220,38,38,0.1);
}

.badge-icon {
    font-size: 16px;
}

/* Hero with Emojis (SMM) */
.leistung-hero.hero-with-emojis {
    position: relative;
    overflow: hidden;
}

/* ---- Why Ads Section (Advertising) ---- */
.why-ads-section {
    padding: 100px 0;
    background: transparent;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.why-ads-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.why-ads-stats .stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-ads-stats .stat-card:hover {
    border-color: rgba(220,38,38,0.5);
    transform: translateY(-5px);
}

.why-ads-stats .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--brand-orange);
    margin-bottom: 8px;
}

.why-ads-stats .stat-label {
    color: var(--text-3);
    font-size: 14px;
}

.why-ads-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.why-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
}

.why-block .why-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.why-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-block p {
    color: var(--text-3);
    font-size: 15px;
    line-height: 1.7;
}

.agency-help-block {
    background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, rgba(251,146,60,0.05) 100%);
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.agency-help-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.agency-help-block p {
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ---- Funnel Section (Advertising) ---- */
.funnel-section {
    padding: 100px 0;
    background: transparent;
}

.funnel-visualization {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: 48px;
}

.funnel-stage {
    flex: 1;
    max-width: 250px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%, 15% 50%);
    margin-left: -20px;
    transition: all 0.3s ease;
}

.funnel-stage:first-child {
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    margin-left: 0;
}

.funnel-stage:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15% 50%);
}

.stage-awareness { background: rgba(220,38,38,0.3); }
.stage-consideration { background: rgba(220,38,38,0.4); }
.stage-conversion { background: rgba(220,38,38,0.5); }
.stage-retention { background: rgba(220,38,38,0.6); }

.funnel-stage:hover {
    transform: translateY(-5px);
}

.stage-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.stage-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.stage-metric {
    display: inline-block;
    background: rgba(0,0,0,0.3);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.funnel-note {
    text-align: center;
    color: var(--text-3);
    font-size: 13px;
    margin-top: 24px;
}

/* ---- Campaign Tabs (Advertising) ---- */
.kampagnen-section.kampagnen-tabs {
    padding: 100px 0;
    background: transparent;
}

.kampagnen-tab-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.tab-btn.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.kampagnen-tab-content {
    max-width: 700px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tab-pane h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.tab-pane > p {
    color: var(--text-3);
    font-size: 16px;
    margin-bottom: 24px;
}

.tab-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tab-features li {
    padding: 8px 16px;
    background: rgba(220,38,38,0.1);
    border-radius: 99px;
    font-size: 13px;
    color: var(--brand-orange);
}

/* ---- Why Social Section (SMM) ---- */
.why-social-section {
    padding: 100px 0;
    background: transparent;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.why-social-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    background: rgba(220,38,38,0.15);
    border: 1px solid rgba(220,38,38,0.3);
    color: var(--brand-red);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.why-social-header .section-title .highlight-orange {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-social-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.why-social-stats .stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-social-stats .stat-card:hover {
    border-color: rgba(220,38,38,0.5);
    transform: translateY(-5px);
}

.why-social-stats .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--brand-orange);
    margin-bottom: 8px;
}

.why-social-stats .stat-label {
    color: var(--text-3);
    font-size: 14px;
}

.why-social-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.why-social-content .why-block {
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
}

.why-social-content .why-block .why-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.why-social-content .why-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-social-content .why-block p {
    color: var(--text-3);
    font-size: 15px;
    line-height: 1.7;
}

/* ---- Calculator Teaser (SMM) ---- */
.calculator-teaser-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(220,38,38,0.05) 0%, transparent 70%);
}

.calculator-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.calculator-content p {
    color: var(--text-3);
    font-size: 17px;
    margin-bottom: 24px;
}

.calculator-mockup {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
    color: var(--text-2);
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-row.total {
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.calc-value {
    font-weight: 600;
    color: #fff;
}

.calc-row.total .calc-value {
    font-size: 20px;
    color: var(--brand-orange);
}

/* ---- Workflow Section (Content) ---- */
.workflow-section {
    padding: 100px 0;
    background: transparent;
}

.workflow-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-step {
    flex: 1;
    max-width: 160px;
    text-align: center;
    position: relative;
}

.workflow-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.workflow-step:hover .workflow-icon {
    border-color: var(--brand-red);
    background: rgba(220,38,38,0.05);
    box-shadow: 0 0 0 8px rgba(220,38,38,0.1);
}

/* Subtile Pfeile zwischen Steps */
.workflow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -24px;
    top: 32px;
    font-size: 20px;
    color: rgba(255,255,255,0.2);
    z-index: 0;
}

/* Connector entfernt */
.workflow-connector {
    display: none;
}

.workflow-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 13px;
    color: var(--text-3);
}

/* ---- Format Grid (Content) ---- */
.format-grid-section {
    padding: 100px 0;
    background: transparent;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    /* Performance-Optimierung */
    will-change: transform;
    transform: translateZ(0);
}

.format-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Optimierte Transitions - nur transform und border-color */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
    /* Hardware-Beschleunigung */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.format-card:hover {
    border-color: var(--brand-red);
    transform: translateZ(0) translateY(-5px);
}

.format-preview-wrapper {
    margin-bottom: 16px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.format-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    margin: 0 auto;
}

.format-reels .format-preview {
    width: 70px;
    height: 124px;
}

.format-feed .format-preview {
    width: 100px;
    height: 100px;
}

.format-story .format-preview {
    width: 70px;
    height: 124px;
}

.format-landscape .format-preview {
    width: 120px;
    height: 68px;
}

.format-ratio {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-3);
}

.format-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.format-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    min-height: 2.4em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.format-duration {
    font-size: 13px;
    color: var(--brand-orange);
}

/* ---- Calendar Preview (Beratung) ---- */
.calendar-preview-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(220,38,38,0.05) 50%, transparent 100%);
}

.calendar-preview {
    max-width: 600px;
    margin: 48px auto 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
}

.calendar-mockup {
    padding: 24px;
}

.calendar-header {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.calendar-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.time-slot {
    padding: 16px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover,
.time-slot.highlighted {
    border-color: var(--brand-red);
    background: rgba(220,38,38,0.1);
}

.slot-day {
    display: block;
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 4px;
}

.slot-time {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.calendar-cta {
    padding: 24px;
    background: rgba(220,38,38,0.1);
    text-align: center;
}

.calendar-cta p {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 16px;
}

/* ---- Responsive for Restored Styles ---- */
@media (max-width: 1024px) {
    .why-ads-stats,
    .why-ads-content,
    .why-social-stats,
    .why-social-content {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .funnel-visualization {
        flex-direction: column;
        align-items: center;
    }

    .funnel-stage {
        clip-path: none !important;
        margin-left: 0;
        margin-top: 12px;
        width: 80%;
        max-width: 260px;
        border-radius: 12px;
        padding: 24px 20px;
    }

    .funnel-stage:first-child {
        margin-top: 0;
    }

    .calculator-teaser {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-ads-stats,
    .why-ads-content,
    .why-social-stats,
    .why-social-content {
        grid-template-columns: 1fr;
    }

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

    .workflow-visualization {
        flex-direction: column;
        align-items: center;
    }

    .workflow-step {
        max-width: 100%;
    }

    .workflow-step:not(:last-child)::after {
        display: none;
    }

    .workflow-connector {
        display: none;
    }

    .expertise-badges {
        flex-direction: column;
        align-items: center;
    }

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

    .roi-indicator {
        flex-direction: column;
        gap: 8px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERAUSFORDERUNGEN & LÖSUNGEN SECTION (beratung.html)
   ═══════════════════════════════════════════════════════════ */

.challenges-solutions-section {
    padding: 100px 0;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.challenge-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.challenge-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(220,38,38,0.2);
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.challenge-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.challenge-icon.problem {
    filter: grayscale(100%);
    opacity: 0.6;
}

.challenge-icon.solution {
    filter: none;
}

.challenge-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0;
}

.challenge-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-2);
    font-style: italic;
    margin: 0 0 24px 0;
    padding-left: 40px;
}

.challenge-divider {
    height: 1px;
    background: linear-gradient(90deg,
        rgba(220,38,38,0.3) 0%,
        rgba(251,146,60,0.2) 50%,
        rgba(220,38,38,0.3) 100%
    );
    margin: 24px 0;
}

.solution-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-3);
    margin: 0;
    padding-left: 40px;
}

.challenges-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.challenges-cta p {
    font-size: 18px;
    color: var(--text-2);
    margin-bottom: 24px;
    font-weight: 500;
}

.challenges-cta .cta-button {
    display: inline-block;
}

/* Reduce glow brightness on Leistungsseiten */
.leistung-hero .glow {
    opacity: 0.10 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .challenges-grid {
        gap: 24px;
    }

    .challenge-item {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .challenges-solutions-section {
        padding: 80px 0;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .challenge-item {
        padding: 28px 24px;
    }

    .challenge-header h3 {
        font-size: 16px;
    }

    .challenge-text,
    .solution-text {
        font-size: 14px;
        padding-left: 0;
    }

    .challenge-icon {
        font-size: 24px;
    }

    .challenges-cta {
        margin-top: 40px;
        padding-top: 40px;
    }

    .challenges-cta p {
        font-size: 16px;
    }
}

/* Desktop-only: Optische Korrektur Abstände Equipment Sektion */
@media (min-width: 1025px) {
    .equipment-card p {
        min-height: auto !important;
        margin-bottom: 4px !important;
    }
    .equipment-spec {
        margin-block-start: 10px !important;
        margin-top: 10px !important;
    }
}
