:root {
    --bg-color: #050505;
    --card-bg: #0f0f0f;
    --input-bg: #141414;
    --border-color: #222;
    --accent-red: #f9404c;
    /* Pinkish red from screenshot */
    --accent-hover: #c9183b;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --font-family: 'Inter', sans-serif;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
    /* Legacy support */
}

* {
    box-sizing: border-box;
}

/* Lucide Icon Placeholder to prevent CLS */
[data-lucide] {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.testimonial-rating [data-lucide] {
    width: 20px;
    height: 20px;
}

.nav-logo [data-lucide],
.footer-logo [data-lucide] {
    width: 30px;
    height: 30px;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled,
body.nav-open .navbar {
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-logo-img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.nav-logo:hover {
    color: var(--accent-red);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.mobile-only {
    display: none !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-color);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        display: block;
        padding: 16px 20px;

    }

    /* Mobile Menu Overlay */
    .nav-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-logo {
        font-size: 0.8rem;
    }

    .nav-logo-img {
        height: 20px;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Body Scroll Lock when menu is open */
body.nav-open {
    overflow: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    /* Typography safety for German words */
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    text-wrap: balance;
}

h1 {
    font-size: 6rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 4rem;
    margin-bottom: 10px;
}

h4 {
    font-size: 3rem;
    margin-bottom: 10px;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.highlight {
    background: linear-gradient(90deg, #ff4d4d, #ea234b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tag,
.section-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.tag {
    background-color: rgba(234, 35, 75, 0.1);
    color: var(--accent-red);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.section-tag {
    color: var(--accent-red);
    display: block;
    margin-bottom: 10px;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 12px;
    border-radius: 99px;
    /* Pill shape */
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid transparent;
}

.btn-secondary:hover {
    text-decoration: underline;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #444;
}

.full-width {
    width: 100%;
}

.icon-right {
    margin-left: 8px;
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(234, 35, 75, 0.1) 0%, rgba(5, 5, 5, 0) 70%);
    padding: 80px 20px;
    /* Reduced top/bottom padding as height is handled by 100vh */
}

/*-- Canvas Overlay für subtilen Effekt */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}


.hero-content {
    max-width: 900px;
}

.hero-section .subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 40px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #080808;
    /* Slightly lighter than body */
}

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

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    color: var(--accent-red);
    font-weight: 500;
    margin-bottom: 15px;
}

.about-list li svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--text-primary);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    color: rgb(0, 0, 0);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.footer-logo-img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.footer-links a {
    color: var(--accent-red);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 0.8rem;
}

/* Legal Pages (Impressum, Datenschutz) */
.legal-section {
    padding: 100px 0;
}

.legal-content {
    max-width: 800px;
    margin-top: 40px;
}

.legal-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

.legal-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: white;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content a {
    overflow-wrap: break-word;
    word-break: break-all;
    /* Ensure links break if too long */
}

.legal-content a:hover {
    text-decoration: underline;
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    margin: 5% auto;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-content.small {
    max-width: 450px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #666;
    font-size: 28px;
    font-weight: lighter;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: white;
}

.modal h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-header-badge {
    background-color: var(--accent-red);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 99px;
    font-weight: 700;
    margin-bottom: 20px;
    /* Removed absolute positioning to avoid overlap with long headlines */
}

/* Spezielle Badge-Styles für Popular und Premium - keep absolute if desired for certain designs, but base is now static */
.modal-header-badge.popular-badge,
.modal-header-badge.premium-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.85rem;
    padding: 10px 18px;
    z-index: 10;
}

.modal-header-badge.popular-badge {
    background: linear-gradient(135deg, #ea234b, #c9183b);
}

.modal-header-badge.premium-badge {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

/* Extra top padding für Modals mit Badges */
.modal-content:has(.popular-badge),
.modal-content:has(.premium-badge),
.modal-content:has(.icon-badge) {
    padding-top: 60px;
}

/* For small modals without top badge, icon layout */
.modal-header-icon-only {
    color: var(--accent-red);
    margin-bottom: 20px;
    background: rgba(234, 35, 75, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 2px rgba(234, 35, 75, 0.2);
}

textarea {
    height: 120px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links a {
        margin: 0 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .modal-header-badge {
        position: static;
        margin-bottom: 15px;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 10% auto;
    }

    /* Legal Pages (Impressum, Datenschutz) - Mobil-Optimierung */
    .legal-section {
        padding: 100px 0;
    }

    .legal-content h3 {
        font-size: 1.5rem;
    }
}

/* Offer Section Landingpages*/
.offer-section {
    padding: 100px 0;
    background: #0a0a0a;
    /* Dunkel wie im Screenshot */
    position: relative;
}

/* Optionaler Gradient-Overlay wie im Screenshot */
.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(220, 53, 69, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-eyebrow {
    text-align: center;
    color: #dc3545;
    /* Rot wie "UNSERE ANGEBOTE" */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.section-title .highlight {
    color: #dc3545;
    /* Rot für "verkaufen" */
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: #1a1a1a;
    /* Dunkelgrau wie im Screenshot */
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Glow-Effekt bei Hover */
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(220, 53, 69, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 53, 69, 0.3);
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.2);
}

/* Featured Card - Mittlere Karte hervorgehoben */
.offer-card.featured {
    background: #1f1f1f;
    border: 2px solid #dc3545;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(220, 53, 69, 0.25);
}

.offer-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 70px rgba(220, 53, 69, 0.35);
}

.offer-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    width: fit-content;
}

.offer-badge.free {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.offer-badge.popular {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

.offer-badge.premium {
    background: rgba(138, 43, 226, 0.2);
    color: #a855f7;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.offer-title {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.span {
    color: #888888;
    /* grauer Text, zentriert */
}

.offer-description {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.offer-price {
    text-align: left;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-label {
    font-size: 0.85rem;
    color: #707070;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #707070;
    font-weight: 500;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.offer-features li {
    padding: 10px 0;
    color: #d0d0d0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.check-icon {
    color: #dc3545;
    /* Rot wie im Design */
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-cta {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 30px;
    /* Mehr abgerundet wie im Screenshot */
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* Button Hover-Effekt */
.offer-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.offer-cta:hover::before {
    width: 300px;
    height: 300px;
}

.offer-cta span {
    position: relative;
    z-index: 1;
}

.free-cta {
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
    border: 2px solid #2ecc71;
}

.free-cta:hover {
    background: #2ecc71;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.professional-cta {
    background: #dc3545;
    /* Rot wie im Screenshot */
    color: white;
    border: 2px solid #dc3545;
}

.professional-cta:hover {
    background: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.5);
}

.premium-cta {
    background: rgba(138, 43, 226, 0.15);
    color: #a855f7;
    border: 2px solid #a855f7;
}

.premium-cta:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

/* Icon im Button (Optional) */
.offer-cta .arrow-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.offer-cta:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .offer-card.featured {
        transform: scale(1);
    }

    .offer-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .price {
        font-size: 2.8rem;
    }

    .offer-card {
        padding: 35px 25px;
    }

    .social-proof-section {
        padding: 60px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo-showcase {
        padding: 30px 0;
        text-align: center;
        justify-content: center;
    }

    .contact-section {
        padding: 100px 0 60px;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    #contactForm {
        padding: 30px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #scrollTop {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .price {
        font-size: 2.4rem;
    }

    .offer-cta {
        font-size: 0.95rem;
        padding: 14px 20px;
    }
}

/* Extra Safety for Ultra-Small Screens (mini-mobiles like iPhone SE 1st Gen) */
@media (max-width: 360px) {
    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 0.8rem;
    }

    h4 {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1rem;
    }

    .subtitle,
    .section-subtitle {
        font-size: 0.8rem;
    }
}

/* Scroll-triggered fade-in for offer cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.offer-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.offer-card:nth-child(1).is-visible {
    transition-delay: 0.1s;
}

.offer-card:nth-child(2).is-visible {
    transition-delay: 0.2s;
}

.offer-card:nth-child(3).is-visible {
    transition-delay: 0.3s;
}

/* Scroll-to-top Button */
#scrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--accent-red);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(234, 35, 75, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    /* Verhindert Abschneiden durch overflow auf Elternelementen */
    -webkit-transform: translateY(10px);
    will-change: opacity, transform;
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(234, 35, 75, 0.6);
    transform: translateY(-2px);
}

#scrollTop svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================
   CONTACT PAGE (kontakt.html)
   ============================================ */

.contact-section {
    min-height: 100vh;
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(234, 35, 75, 0.05) 0%, rgba(5, 5, 5, 0) 70%);
}

.contact {
    max-width: 1200px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

#contactForm {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.speed-promise {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, border-color 0.2s;
}

.info-card:hover {
    transform: translateY(-2px);
    border-color: #333;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(234, 35, 75, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-icon svg {
    color: var(--accent-red);
    width: 24px;
    height: 24px;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.info-card a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.info-card a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.info-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(234, 35, 75, 0.1), rgba(234, 35, 75, 0.05));
    border-color: var(--accent-red);
}

.highlight-card .info-icon {
    background: var(--accent-red);
}

.highlight-card .info-icon svg {
    color: white;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* ============================================
   ANIMATIONS & NOTIFICATIONS
   ============================================ */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-message {
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    color: white;
    animation: slideIn 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.form-message-success {
    background: #28a745;
}

.form-message-error {
    background: #dc3545;
}

.subtitle strong {
    color: var(--text-primary);
}

/* ============================================
   BENEFITS SECTION (reusable)
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefits-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, border-color 0.2s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(234, 35, 75, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon-wrapper svg {
    color: var(--accent-red);
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    padding: 100px 0;
    background: #080808;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.testimonial-card {
    background: #121212;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 35, 75, 0.3);
    background: #181818;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: rgba(234, 35, 75, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonial-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content strong {
    color: var(--text-primary);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: auto;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    color: #f59e0b;
}

.testimonial-full-width {
    margin-top: 40px;
    width: 100%;
}

.testimonial-full-width .testimonial-card {
    max-width: 100%;
    border-color: rgba(234, 35, 75, 0.2);
    background: linear-gradient(135deg, #121212 0%, #0d0d0d 100%);
}

.testimonial-footer {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.testimonial-link:hover {
    color: var(--accent-hover);
}

.testimonial-link svg {
    width: 14px;
    height: 14px;
}

.logo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 800;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.logo-item:hover {
    color: var(--text-secondary);
}

.trust-signals {
    text-align: center;
    margin-top: 40px;
}

.trust-signals p {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    color: var(--accent-red);
    width: 18px;
    height: 18px;
}

/* ============================================
   MOBILE OVERRIDES (TESTIMONIALS)
   ============================================ */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Maigné (Testimonial 1) soll UNTER Radtke-Bonk (Testimonial 2) rutschen */
    .testimonial-grid .testimonial-card:nth-child(1) {
        order: 2;
    }

    .testimonial-grid .testimonial-card:nth-child(2) {
        order: 1;
    }
}