:root {
    --primary: #E30613;
        --primary-dark: #C00510;
        --dark: #0A0A0A;
        --dark-light: #1A1A1A;
        --gray: #9E9E9E;
        --light: #F5F5F5;
        --white: #FFFFFF;
        --gradient: linear-gradient(135deg, #E30613 0%, #E30613 100%);
        --success: #10B981;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

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

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background: var(--white);
        color: var(--dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Typography */
    h1, h2, h3, h4 {
        line-height: 1.2;
        font-weight: 800;
    }

    h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
    h2 { font-size: clamp(2rem, 4vw, 3rem); }
    h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

    p { font-size: 1.125rem; color: var(--gray); }

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

    /* Announcement Bar */
    .announcement-bar {
        background: var(--primary);
        color: white;
        text-align: center;
        padding: 28px 24px 24px 24px;
        font-weight: 700;
        font-size: 1.35rem;
        letter-spacing: 0.5px;
        margin-top: 73px;
        position: relative;
        z-index: 100;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--dark);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: var(--white);
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        background: var(--gradient);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 900;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .logo-text {
        font-weight: 700;
        font-size: 1.1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        line-height: 1.1;
    }

    .logo-text span {
        color: var(--gray);
        font-weight: 400;
        font-size: 0.85rem;
    }

    .logo-divider {
        width: 1px;
        height: 40px;
        background: var(--white);
        margin-left: 12px;
        align-self: center;
    }

    .logo-tagline {
        color: var(--white);
        font-weight: 500;
        font-size: 1rem;
        margin-left: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.3;
    }

    .logo-tagline span {
        color: var(--white);
        font-weight: 500;
        font-size: 1rem;
    }

    nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    nav a {
        text-decoration: none;
        color: var(--white);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

    nav a:hover {
        color: var(--primary);
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background: var(--primary);
        color: white;
        box-shadow: 0 4px 14px rgba(227, 6, 19, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        background: var(--primary-dark);
        box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
    }

    .btn-secondary {
        background: var(--dark);
        color: white;
    }

    .btn-secondary:hover {
        background: var(--dark-light);
    }

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

    .btn-outline:hover {
        background: var(--dark);
        color: var(--white);
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 100px;
        background: var(--light);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(227, 6, 19, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

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

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(227, 6, 19, 0.1);
        color: var(--primary);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .hero-text .hero-eyecatcher {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 800;
        line-height: 1.2;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .hero-text .hero-eyecatcher .highlight {
        color: var(--primary);
    }

    .hero h1 {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        font-weight: 600;
        margin-bottom: 24px;
        color: var(--gray);
    }

    .hero-highlight {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 16px;
    }

    /* Mobile Video - hidden on desktop */
    .hero-video-mobile {
        display: none;
    }

    .hero-text p {
        font-size: 1.25rem;
        margin-bottom: 32px;
        color: #4A5568;
    }

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

    .hero-visual {
        position: relative;
    }

    .hero-image {
        width: 100%;
        height: 450px;
        background: var(--dark);
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .hero-image iframe {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .video-thumbnail {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .video-thumbnail img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .video-container .video-thumbnail-img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .play-button:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

    .floating-card {
        position: absolute;
        background: white;
        padding: 16px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .floating-card.card-1 {
        bottom: -20px;
        left: -30px;
    }

    .floating-card.card-2 {
        top: -30px;
        right: -20px;
    }

    .floating-card-icon {
        width: 44px;
        height: 44px;
        background: var(--light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }

    .floating-card-text {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--dark);
    }

    .floating-card-text span {
        display: block;
        font-weight: 400;
        color: var(--gray);
        font-size: 0.8rem;
    }

    /* Logos Section */
    .logos-section {
        padding: 60px 0;
        background: var(--white);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .logos-section p {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--gray);
    }

    .logos-grid {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 30px;
        align-items: center;
        justify-items: center;
        opacity: 0.6;
    }

    .logos-grid img {
        height: 28px;
        filter: grayscale(100%);
        transition: all 0.3s;
    }

    .logos-grid img:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    .logo-placeholder {
        padding: 10px 24px;
        background: var(--light);
        border-radius: 6px;
        font-weight: 600;
        color: var(--gray);
        font-size: 0.9rem;
    }

    /* Problem Section */
    .problem-section {
        padding: 100px 0;
        background: var(--dark);
        color: var(--white);
    }

    .problem-section .section-header h2 {
        color: var(--white);
    }

    .problem-section .section-header p {
        color: rgba(255,255,255,0.7);
    }

    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px;
    }

    .section-label {
        display: inline-block;
        color: var(--primary);
        font-weight: 700;
        font-size: 1.125rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .section-header h2 {
        margin-bottom: 20px;
    }

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

    .problem-card {
        padding: 32px;
        background: var(--dark-light);
        border-radius: 16px;
        transition: all 0.3s;
        border: 1px solid rgba(255,255,255,0.1);
        border-top: 3px solid var(--primary);
    }

    .problem-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .problem-card h3 {
        margin-bottom: 12px;
        color: var(--white);
    }

    .problem-card p {
        font-size: 1rem;
        color: rgba(255,255,255,0.7);
    }

    /* Comparison Section */
    .comparison-section {
        padding: 100px 0;
        background: var(--white);
    }

    .comparison-section h2 {
        text-align: center;
        margin-bottom: 60px;
        color: var(--dark);
    }

    .comparison-section h2 .highlight-red {
        color: var(--primary);
        font-style: italic;
    }

    .comparison-section h2 .highlight-green {
        color: var(--success);
    }

    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
    }

    .comparison-card {
        padding: 40px;
        border-radius: 16px;
        border: 2px solid;
    }

    .comparison-card.without {
        background: white;
        border-color: var(--primary);
    }

    .comparison-card.with {
        background: white;
        border-color: var(--success);
    }

    .comparison-card h3 {
        font-size: 1.25rem;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--light);
    }

    .comparison-card.without h3 {
        color: var(--primary);
    }

    .comparison-card.with h3 {
        color: var(--success);
    }

    .comparison-list {
        list-style: none;
    }

    .comparison-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        font-size: 1rem;
        color: var(--dark);
    }

    .comparison-list .icon {
        flex-shrink: 0;
        font-size: 1.1rem;
    }

    .comparison-card.without .icon {
        color: var(--primary);
    }

    .comparison-card.with .icon {
        color: var(--success);
    }

    @media (max-width: 768px) {
        .comparison-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Workshop Section */
    .workshop-section {
        padding: 100px 0;
        background: var(--dark);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .workshop-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .workshop-section .section-label {
        color: var(--primary);
    }

    .workshop-section .section-header {
        color: white;
    }

    .workshop-section .section-header p {
        color: rgba(255,255,255,0.7);
    }

    .workshop-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: stretch;
        position: relative;
        z-index: 1;
    }

    .workshop-day {
        background: var(--dark-light);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(255,255,255,0.1);
    }

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

    .day-number {
        width: 60px;
        height: 60px;
        background: var(--gradient);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .day-title h3 {
        color: white;
        margin-bottom: 4px;
    }

    .day-title span {
        color: var(--gray);
        font-size: 0.9rem;
    }

    .workshop-items {
        list-style: none;
    }

    .workshop-items li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: rgba(255,255,255,0.9);
    }

    .workshop-items li:last-child {
        border-bottom: none;
    }

    .workshop-items .check {
        width: 24px;
        height: 24px;
        background: rgba(227, 6, 19, 0.25);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        flex-shrink: 0;
        font-size: 0.8rem;
    }

    .workshop-cta {
        text-align: center;
        margin-top: 60px;
        position: relative;
        z-index: 1;
    }

    .workshop-cta p {
        color: rgba(255,255,255,0.6);
        margin-top: 16px;
        font-size: 0.95rem;
    }

    /* Target Audience Section */
    .audience-section {
        padding: 100px 0;
        background: var(--white);
    }

    .audience-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .audience-visual {
        position: relative;
    }

    .audience-image {
        width: 100%;
        height: 500px;
        background: var(--light);
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

    .audience-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .audience-image .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .audience-image .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .audience-image .play-button:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

    .checkmark-list {
        list-style: none;
        margin: 30px 0;
    }

    .checkmark-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
        font-size: 1.1rem;
        color: var(--dark);
    }

    .checkmark-list .icon {
        width: 28px;
        height: 28px;
        background: rgba(227, 6, 19, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        flex-shrink: 0;
        font-size: 0.85rem;
    }

    .not-for-list {
        margin-top: 30px;
        padding: 24px;
        background: var(--light);
        border-radius: 12px;
    }

    .not-for-list h4 {
        font-size: 0.9rem;
        color: var(--gray);
        margin-bottom: 12px;
        font-weight: 600;
    }

    .not-for-list p {
        font-size: 0.95rem;
        color: var(--gray);
    }

    /* Results Section */
    .results-section {
        padding: 100px 0;
        background: var(--light);
    }

    .results-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

    .result-card {
        text-align: center;
        padding: 40px 24px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }

    .result-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .result-card h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .result-card p {
        font-size: 0.9rem;
    }

    /* Team Section */
    .team-section {
        padding: 100px 0;
        background: var(--dark);
        color: white;
    }

    .team-section .section-header h2 {
        color: white;
    }

    .team-section .section-header p {
        color: rgba(255,255,255,0.7);
    }

    .coaches-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 80px;
    }

    .coach-card {
        background: var(--dark-light);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .coach-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .coach-image {
        width: 100%;
        height: 320px;
        background: var(--gray);
        position: relative;
        overflow: hidden;
    }

    .coach-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .coach-image-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-light);
        font-size: 0.9rem;
    }

    .coach-info {
        padding: 32px;
    }

    .coach-info h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .coach-role {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .coach-info p {
        color: rgba(255,255,255,0.7);
        font-size: 1rem;
        line-height: 1.6;
    }

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

    .team-support h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .team-support > p {
        color: rgba(255,255,255,0.6);
        margin-bottom: 40px;
    }

    .team-collage {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        max-width: 800px;
        margin: 0 auto;
    }

    .team-collage-item {
        aspect-ratio: 1;
        background: var(--dark-light);
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .team-collage-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-collage-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray);
        font-size: 0.75rem;
    }

    @media (max-width: 768px) {
        .coaches-grid {
            grid-template-columns: 1fr;
        }

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

    /* Desire Section */
    .desire-section {
        padding: 100px 0 40px;
        background: var(--light);
        text-align: center;
    }

    .desire-section h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 50px;
        color: var(--primary);
    }

    .desire-list {
        max-width: 700px;
        margin: 0 auto 50px;
        list-style: none;
    }

    .desire-list li {
        font-size: 1.15rem;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        color: var(--dark);
    }

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

    .desire-list strong {
        color: var(--dark);
    }

    .desire-arrow {
        font-size: 3rem;
        margin: 20px 0 0 0;
        color: var(--dark);
    }

    .desire-section .cta-note {
        color: var(--gray);
    }

    .desire-section + .comparison-section {
        padding-top: 60px;
    }

    /* CTA Section */
    .cta-section {
        padding: 100px 0;
        background: var(--light);
        text-align: center;
    }

    .cta-box {
        max-width: 800px;
        margin: 0 auto;
        padding: 60px;
        background: white;
        border-radius: 24px;
        box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    }

    .cta-box h2 {
        margin-bottom: 16px;
    }

    .cta-box > p {
        margin-bottom: 32px;
        font-size: 1.15rem;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .cta-note {
        margin-top: 20px;
        font-size: 0.9rem;
        color: var(--gray);
    }

    /* Footer */
    footer {
        padding: 60px 0 30px;
        background: var(--dark);
        color: white;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand .logo {
        margin-bottom: 20px;
    }

    .footer-brand p {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-links h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
    }

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

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

    .footer-links a {
        color: var(--gray);
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

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

    .footer-bottom {
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom p {
        color: var(--gray);
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        gap: 30px;
    }

    .footer-legal a {
        color: var(--gray);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

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

/* Utility Classes */
.text-center-mt {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.cta-note-spaced {
    margin-top: 30px;
    margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: white;
    height: 2px;
    width: 24px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    top: -7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Tablet Breakpoint (max-width: 992px) */
@media (max-width: 992px) {
    /* Logo kleiner */
    .logo img {
        height: 40px;
    }

    .logo-divider {
        height: 30px;
    }

    .logo-tagline {
        font-size: 11px;
    }

    /* Announcement Bar für Tablet/Mobile */
    .announcement-bar {
        margin-top: 64px;
    }

    /* Hero für Tablet */
    .hero {
        padding: 50px 0 80px;
    }

    /* Logos Grid für Tablet */
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .logos-grid img {
        height: 24px;
    }

    /* Results Grid für Tablet */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile Navigation - aktiviert bei Tablet */
    .nav-toggle-label {
        display: block;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        display: flex;
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .nav-toggle:checked ~ nav {
        max-height: 500px;
        padding: 20px 24px 30px;
    }

    header nav a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        font-size: 1.1rem;
    }

    header nav a:last-child {
        border-bottom: none;
        margin-top: 15px;
    }

    header nav .btn.btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .nav-toggle:checked + .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .header-inner {
        position: relative;
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-ctas {
        justify-content: center;
    }

    .audience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audience-visual {
        order: 2;
    }

    .audience-text {
        order: 1;
    }

    .workshop-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Breakpoint (max-width: 768px) */
@media (max-width: 768px) {
    /* Logo */
    .logo img {
        height: 40px;
    }

    .logo-divider {
        height: 30px;
    }

    .logo-tagline {
        font-size: 11px;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-eyecatcher {
        font-size: 2.5rem;
    }

    /* Sections padding */
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 20px 0 60px;
    }

    /* Hero */
    .hero-highlight {
        font-size: 1.1rem;
    }

    /* Mobile Video - show on mobile */
    .hero-video-mobile {
        display: block;
        margin: 24px 0;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 16/9;
        position: relative;
        background: var(--dark);
    }

    .hero-video-mobile .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-video-mobile .video-thumbnail-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-video-mobile .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    /* Hide desktop video on mobile */
    .hero-visual {
        display: none;
    }

    .floating-card {
        display: none;
    }

    /* Announcement Bar */
    .announcement-bar {
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    /* Logos */
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .logos-grid img {
        height: 20px;
    }

    /* Problem Cards */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Desire */
    .desire-list li {
        font-size: 1rem;
        padding: 12px 0;
    }

    /* Results */
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .result-number {
        font-size: 2.5rem;
    }

    /* Team */
    .team-collage {
        grid-template-columns: 1fr 1fr;
    }

    /* CTA */
    .cta-box {
        padding: 40px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Small Mobile Breakpoint (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-eyecatcher {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* Logos */
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Results */
    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-number {
        font-size: 2rem;
    }

    /* Buttons */
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

    /* Comparison */
    .comparison-card {
        padding: 24px;
    }

    /* Workshop */
    .workshop-day {
        padding: 24px;
    }

    .day-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    /* Coach cards */
    .coach-card {
        flex-direction: column;
    }

    .coach-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    /* Team collage */
    .team-collage {
        grid-template-columns: 1fr;
    }
}
