/* ==========================================
   Responsive Styles - Mobile First Approach
   ========================================== */

/* ===== Mobile Navigation ===== */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        padding: 100px var(--space-8) var(--space-8);
        background: var(--color-surface);
        box-shadow: var(--shadow-xl);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
        transition: right var(--transition-slow);
        z-index: var(--z-fixed);
        overflow-y: auto;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        font-size: var(--text-lg);
        width: 100%;
        padding-block: var(--space-3);
        border-bottom: 1px solid var(--color-border);
    }

    .nav__link::after {
        display: none;
    }

    .nav__link--cta {
        margin-top: var(--space-4);
        text-align: center;
        border-bottom: none;
    }

    .nav__actions {
        display: flex;
    }

    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: calc(var(--z-fixed) + 1);
    }

    .nav__toggle.active .hamburger {
        background: transparent;
    }

    .nav__toggle.active .hamburger::before {
        top: 0;
        transform: translateX(-50%) rotate(45deg);
    }

    .nav__toggle.active .hamburger::after {
        top: 0;
        transform: translateX(-50%) rotate(-45deg);
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: calc(var(--z-fixed) - 1);
        backdrop-filter: blur(4px);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* ===== Tablet Styles ===== */
@media (max-width: 992px) {
    /* Hero */
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }

    .hero__content {
        max-width: 100%;
        order: 1;
    }

    .hero__visual {
        order: 0;
    }

    .hero__graphic {
        max-width: 350px;
        margin-inline: auto;
    }

    .hero__description {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__scroll-indicator {
        display: none;
    }

    /* DSGVO */
    .dsgvo__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }

    .dsgvo__checklist {
        align-items: center;
    }

    .dsgvo__badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-4);
    }

    .trust-badge {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    /* FAQ Section */
    .faq-section__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .lead-magnet {
        position: static;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer__brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

/* ===== Mobile Styles - REDESIGNED VERSION ===== */
@media (max-width: 576px) {
    /* ===== Global Mobile Settings ===== */
    :root {
        --section-padding: clamp(2rem, 6vw, 3rem);
    }

    section {
        padding-block: var(--space-10);
    }

    .container {
        padding-inline: var(--space-4);
        max-width: 100%;
        box-sizing: border-box;
    }

    /* ===== Navigation ===== */
    .nav {
        height: 60px;
    }

    .logo-text {
        font-size: var(--text-base);
    }

    /* ===== Hero Section - Mobile Redesign ===== */
    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: var(--space-10);
        background: 
            linear-gradient(135deg, rgba(0, 255, 163, 0.08) 0%, transparent 50%),
            linear-gradient(225deg, rgba(13, 115, 119, 0.1) 0%, transparent 50%),
            var(--color-background);
        position: relative;
        overflow: hidden;
    }

    /* Decorative gradient orb */
    .hero::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(0, 255, 163, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .hero__container {
        gap: var(--space-6);
        position: relative;
        z-index: 1;
    }

    /* Hero Visual - Visible but compact on Mobile */
    .hero__visual {
        display: block !important;
        order: -1;
        margin-bottom: var(--space-4);
    }

    .hero-3d-wrapper {
        max-width: 180px;
        margin-inline: auto;
    }

    /* Hero Tag with gradient border – Farbe wie Desktop */
    .hero__tag {
        font-size: 0.7rem;
        padding: var(--space-2) var(--space-4);
        margin-bottom: var(--space-4);
        background: linear-gradient(135deg, rgba(0, 255, 163, 0.15) 0%, rgba(13, 115, 119, 0.1) 100%);
        border: 1px solid rgba(0, 255, 163, 0.3);
        color: var(--color-neon-cyan);
    }

    .hero__tag .tag-icon {
        font-size: 0.9rem;
    }

    .hero__title {
        font-size: clamp(1.5rem, 7vw, 1.875rem);
        margin-bottom: var(--space-4);
        line-height: 1.15;
        color: var(--color-neutral-900);
    }

    .hero__title em {
        background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-style: normal;
    }

    .hero__description {
        font-size: var(--text-sm);
        margin-bottom: var(--space-6);
        line-height: 1.6;
        color: var(--color-text-muted);
    }

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

    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-3);
    }

    .hero__actions .btn {
        width: 100%;
        padding: var(--space-4) var(--space-5);
        font-size: var(--text-sm);
        border-radius: var(--radius-xl);
    }

    .hero__actions .btn--neon {
        background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-neon-hover) 100%);
        box-shadow: 
            0 4px 20px rgba(0, 255, 163, 0.3),
            0 0 40px rgba(0, 255, 163, 0.1);
    }

    /* Show secondary button with different style – Farbe wie Desktop */
    .hero__actions .btn--glass {
        display: flex;
        background: rgba(13, 115, 119, 0.08);
        border: 1px solid var(--color-primary-200);
        color: var(--color-text);
    }

    /* Stats with accent colors – Angaben + Trennstriche vertikal mittig in der Box */
    .hero__stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        align-items: center;
        margin-top: var(--space-8);
        padding: var(--space-5);
        height: 9rem;
        min-height: 9rem;
        background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(0, 255, 163, 0.03) 100%);
        border-radius: var(--radius-xl);
        border: 1px solid var(--color-primary-100);
    }

    .hero__stats .stat {
        display: flex;
        align-items: center;
        justify-content: center !important;
        align-self: center !important;
        min-height: 0 !important;
        text-align: center;
        padding: var(--space-2) var(--space-3);
        position: relative;
    }

    .hero__stats .stat__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: max-content;
        margin: 0 auto;
        transform: translateX(-15px);
    }

    .hero__stats .stat:last-child .stat__inner {
        max-width: 100%;
        min-width: 0;
        transform: translateX(-10px);
    }
    .hero__stats .stat:last-child .stat__label {
        display: block;
        width: 100%;
        min-height: 2.75rem;
        height: 2.75rem;
        text-align: center;
        line-height: 1.35;
    }

    /* Trennlinien vertikal mittig */
    .stat:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 1px;
        background: linear-gradient(180deg, transparent, var(--color-primary-200), transparent);
    }

    .stat__number {
        height: 2.25rem;
        min-height: 2.25rem;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        font-size: var(--text-xl);
        font-weight: var(--font-bold);
        background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat:first-child .stat__number {
        font-size: 1.15rem;
    }

    .hero__stats .stat__label {
        height: 2.5rem;
        min-height: 2.5rem;
        margin-top: var(--space-3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        line-height: 1.3;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .hero__stats .stat:nth-child(1) .stat__label,
    .hero__stats .stat:nth-child(2) .stat__label {
        margin-top: var(--space-4);
    }

    /* ===== Trust Bar - Redesigned ===== */
    .trust-bar {
        padding-block: var(--space-5);
        background: linear-gradient(180deg, rgba(0, 255, 163, 0.03) 0%, var(--color-neutral-50) 100%);
        border-bottom: 1px solid var(--color-primary-100);
    }

    .trust-bar .container {
        gap: var(--space-4);
    }

    .trust-bar__text {
        font-size: 0.8rem;
        text-align: center;
        color: var(--color-text);
        line-height: 1.5;
    }

    .trust-bar__text strong {
        color: var(--color-primary);
        font-weight: var(--font-bold);
    }

    .trust-bar__text em {
        color: var(--color-neon-dark);
        font-style: normal;
        font-weight: var(--font-semibold);
    }

    /* Show logos with horizontal scroll */
    .trust-bar__logos {
        display: flex;
        gap: var(--space-3);
        overflow-x: auto;
        padding-bottom: var(--space-2);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .trust-bar__logos::-webkit-scrollbar {
        display: none;
    }

    .logo-placeholder {
        flex-shrink: 0;
        padding: var(--space-2) var(--space-4);
        font-size: 0.7rem;
        background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-neutral-100) 100%);
        border: 1px solid var(--color-primary-100);
        color: var(--color-primary);
        border-radius: var(--radius-lg);
        font-weight: var(--font-semibold);
    }

    /* ===== Section Headers - Compact ===== */
    .section__header {
        margin-bottom: var(--space-6);
    }

    .section__tag {
        font-size: 0.6rem;
        margin-bottom: var(--space-2);
    }

    .section__title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: var(--space-2);
        line-height: 1.2;
    }

    .section__description {
        font-size: var(--text-sm);
        line-height: 1.4;
    }

    /* ===== Problem/Solution Cards - Compact ===== */
    .problems__grid,
    .solutions__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .problem-card,
    .solution-card {
        padding: var(--space-4);
    }

    .problem-card__icon,
    .solution-card__icon {
        font-size: 1.5rem;
        margin-bottom: var(--space-2);
    }

    .problem-card__title,
    .solution-card__title {
        font-size: var(--text-base);
        margin-bottom: var(--space-2);
    }

    .problem-card__text,
    .solution-card__text {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Hide Before/After on mobile - too complex */
    .before-after-showcase {
        display: none;
    }

    .solutions-connector {
        margin-block: var(--space-5);
    }

    .connector-text {
        font-size: 0.7rem;
    }

    /* ===== Use Cases - Compact ===== */
    .usecases__grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .usecase-card {
        padding: var(--space-4);
    }

    .usecase-card__header {
        margin-bottom: var(--space-2);
    }

    .usecase-card__icon {
        font-size: 1.2rem;
    }

    .usecase-card__category {
        font-size: 0.6rem;
        padding: 2px var(--space-2);
    }

    .usecase-card__title {
        font-size: var(--text-sm);
        margin-bottom: var(--space-2);
    }

    .usecase-card__result {
        margin-bottom: var(--space-3);
    }

    .result-number {
        font-size: var(--text-lg);
    }

    .result-text {
        font-size: 0.7rem;
    }

    .usecase-card__description {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: var(--space-3);
    }

    /* Simplified flow on mobile */
    .usecase-card__flow {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-2);
        padding: var(--space-2);
    }

    .flow-step {
        flex-direction: column;
        gap: 2px;
    }

    .flow-step__icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .flow-step__label {
        font-size: 0.55rem;
    }

    .flow-arrow {
        font-size: 0.8rem;
    }

    /* ===== DSGVO Section - Compact ===== */
    .dsgvo {
        padding-block: var(--space-10);
    }

    .dsgvo__wrapper {
        gap: var(--space-6);
    }

    .dsgvo__title {
        font-size: var(--text-xl);
        margin-bottom: var(--space-2);
    }

    .dsgvo__description {
        font-size: var(--text-sm);
        margin-bottom: var(--space-4);
        line-height: 1.4;
    }

    .dsgvo__checklist {
        gap: var(--space-2);
    }

    .checklist-item {
        font-size: var(--text-sm);
    }

    .checklist-icon {
        font-size: 1rem;
    }

    /* Horizontal scrollable badges on mobile */
    .dsgvo__badges {
        flex-direction: row;
        overflow-x: auto;
        gap: var(--space-3);
        padding-bottom: var(--space-2);
        -webkit-overflow-scrolling: touch;
    }

    .trust-badge {
        min-width: auto;
        flex-shrink: 0;
        padding: var(--space-3);
    }

    .trust-badge__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .trust-badge__title {
        font-size: var(--text-sm);
    }

    .trust-badge__subtitle {
        font-size: 0.65rem;
    }

    /* ===== Pricing - Compact ===== */
    .pricing {
        padding-block: var(--space-10);
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .pricing-card {
        padding: var(--space-5);
    }

    .pricing-card__badge {
        top: -8px;
        font-size: 0.65rem;
        padding: var(--space-1) var(--space-3);
    }

    .pricing-card__header {
        margin-bottom: var(--space-3);
    }

    .pricing-card__name {
        font-size: var(--text-lg);
    }

    .pricing-card__tagline {
        font-size: 0.75rem;
    }

    .pricing-card__price {
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-4);
    }

    .price-currency {
        font-size: var(--text-base);
    }

    .price-amount {
        font-size: var(--text-2xl);
    }

    .price-period {
        font-size: 0.7rem;
    }

    .pricing-card__features {
        gap: var(--space-2);
        margin-bottom: var(--space-5);
    }

    .pricing-card__features li {
        font-size: 0.75rem;
    }

    .feature-check {
        font-size: 0.8rem;
    }

    .pricing__guarantee {
        font-size: var(--text-sm);
        padding: var(--space-4);
        margin-top: var(--space-6);
    }

    /* ===== Testimonials - Show only 1 on mobile ===== */
    .testimonials {
        padding-block: var(--space-10);
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    /* Hide 2nd and 3rd testimonial on mobile */
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        display: none;
    }

    .testimonial-card__video {
        aspect-ratio: 16/10; /* Slightly smaller */
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .testimonial-card__quote {
        padding: var(--space-4);
        font-size: var(--text-sm);
        line-height: 1.5;
    }

    .testimonial-card__author {
        padding: var(--space-3) var(--space-4);
    }

    .author-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .author-name {
        font-size: 0.8rem;
    }

    .author-role {
        font-size: 0.65rem;
    }

    /* Client logos - horizontal scroll */
    .client-logos {
        gap: var(--space-3);
        overflow-x: auto;
        padding-bottom: var(--space-2);
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .logo-item {
        flex-shrink: 0;
    }

    .logo-item img {
        height: 24px;
    }

    /* ===== FAQ - Compact ===== */
    .faq-section {
        padding-block: var(--space-10);
    }

    .faq__header {
        margin-bottom: var(--space-5);
    }

    .faq__list {
        gap: var(--space-2);
    }

    .faq-item__question {
        padding: var(--space-3);
        font-size: var(--text-sm);
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .faq-item__answer p {
        padding: 0 var(--space-3) var(--space-3);
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Lead Magnet - Compact */
    .lead-magnet__content {
        padding: var(--space-5);
    }

    .lead-magnet__icon {
        font-size: 1.75rem;
        margin-bottom: var(--space-3);
    }

    .lead-magnet__title {
        font-size: var(--text-lg);
        margin-bottom: var(--space-2);
    }

    .lead-magnet__description {
        font-size: 0.8rem;
        margin-bottom: var(--space-4);
        line-height: 1.4;
    }

    .lead-magnet__form {
        gap: var(--space-2);
    }

    .form__input {
        padding: var(--space-3);
        font-size: var(--text-sm);
    }

    .form__group--checkbox label {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .lead-magnet__trust {
        font-size: 0.65rem;
        gap: var(--space-3);
    }

    /* ===== Final CTA - Compact ===== */
    .final-cta {
        padding-block: var(--space-10);
    }

    .final-cta__icon {
        font-size: 2rem;
        margin-bottom: var(--space-3);
    }

    .final-cta__urgency {
        margin-bottom: var(--space-4);
    }

    .urgency-badge {
        font-size: 0.7rem;
        padding: var(--space-1) var(--space-3);
    }

    .urgency-pulse {
        width: 6px;
        height: 6px;
    }

    .final-cta__title {
        font-size: var(--text-xl);
        margin-bottom: var(--space-3);
        line-height: 1.25;
    }

    .final-cta__description {
        font-size: var(--text-sm);
        margin-bottom: var(--space-5);
        line-height: 1.5;
    }

    .final-cta__social-proof {
        gap: var(--space-4);
        margin-bottom: var(--space-5);
    }

    .social-proof-number {
        font-size: var(--text-lg);
    }

    .social-proof-label {
        font-size: 0.6rem;
    }

    .social-proof-divider {
        display: none;
    }

    .btn--large {
        padding: var(--space-3) var(--space-5);
        font-size: var(--text-sm);
    }

    .final-cta__trust {
        flex-direction: column;
        gap: var(--space-1);
        font-size: 0.7rem;
        margin-top: var(--space-4);
    }

    /* ===== Footer - Compact ===== */
    .footer {
        padding-block: var(--space-8) var(--space-4);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
        text-align: center;
        margin-bottom: var(--space-6);
    }

    .footer__logo .logo-text {
        font-size: var(--text-lg);
    }

    .footer__tagline {
        font-size: 0.75rem;
        margin-bottom: var(--space-3);
    }

    .footer__social {
        justify-content: center;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: var(--text-sm);
    }

    .footer__heading {
        font-size: 0.7rem;
        margin-bottom: var(--space-2);
    }

    .footer__links {
        gap: var(--space-2);
    }

    .footer__links a {
        font-size: 0.75rem;
    }

    /* Hide some footer sections on mobile */
    .footer__links-group:nth-child(3) {
        display: none; /* Hide "Unternehmen" section */
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-3);
        padding-top: var(--space-4);
        font-size: 0.7rem;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
    }

    .scroll-to-top__icon {
        font-size: 1.2rem;
    }

    /* ===== Notifications ===== */
    .notification {
        left: 0.75rem !important;
        right: 0.75rem !important;
        bottom: 0.75rem !important;
        max-width: none !important;
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
}

/* ===== Extra Small Devices - ULTRA COMPACT ===== */
@media (max-width: 375px) {
    :root {
        --container-padding: 0.75rem;
    }

    section {
        padding-block: var(--space-8); /* Even more compact */
    }

    /* ===== Navigation ===== */
    .nav {
        height: 56px;
    }

    .logo-text {
        font-size: var(--text-sm);
    }

    /* ===== Hero ===== */
    .hero {
        padding-top: 56px;
        padding-bottom: var(--space-6);
    }

    .hero__tag {
        font-size: 0.6rem;
        padding: 3px var(--space-2);
    }

    .hero__title {
        font-size: 1.2rem;
        line-height: 1.15;
        margin-bottom: var(--space-2);
    }

    .hero__description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: var(--space-4);
    }

    .hero__actions .btn {
        padding: var(--space-2) var(--space-3);
        font-size: 0.8rem;
        min-height: 44px;
    }

    .hero__stats {
        margin-top: var(--space-4);
        padding-top: var(--space-3);
        gap: var(--space-3);
    }

    .stat__number {
        font-size: var(--text-base);
    }

    .stat__label {
        font-size: 0.6rem;
    }

    /* ===== Section Headers ===== */
    .section__header {
        margin-bottom: var(--space-5);
    }

    .section__tag {
        font-size: 0.55rem;
    }

    .section__title {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .section__description {
        font-size: 0.75rem;
    }

    /* ===== Cards ===== */
    .problem-card,
    .solution-card,
    .usecase-card {
        padding: var(--space-3);
    }

    .problem-card__icon,
    .solution-card__icon {
        font-size: 1.25rem;
        margin-bottom: var(--space-2);
    }

    .problem-card__title,
    .solution-card__title {
        font-size: var(--text-sm);
        margin-bottom: var(--space-1);
    }

    .problem-card__text,
    .solution-card__text {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    /* ===== Use Cases ===== */
    .usecase-card__icon {
        font-size: 1rem;
    }

    .usecase-card__category {
        font-size: 0.55rem;
    }

    .usecase-card__title {
        font-size: 0.85rem;
    }

    .result-number {
        font-size: var(--text-base);
    }

    .result-text {
        font-size: 0.65rem;
    }

    .usecase-card__description {
        font-size: 0.7rem;
    }

    .flow-step__icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .flow-step__label {
        font-size: 0.5rem;
    }

    /* ===== DSGVO ===== */
    .dsgvo__title {
        font-size: var(--text-lg);
    }

    .dsgvo__description {
        font-size: 0.75rem;
    }

    .checklist-item {
        font-size: 0.75rem;
    }

    .checklist-icon {
        font-size: 0.9rem;
    }

    .trust-badge {
        padding: var(--space-2);
    }

    .trust-badge__icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .trust-badge__title {
        font-size: 0.75rem;
    }

    .trust-badge__subtitle {
        font-size: 0.6rem;
    }

    /* ===== Pricing ===== */
    .pricing-card {
        padding: var(--space-4);
    }

    .pricing-card__name {
        font-size: var(--text-base);
    }

    .pricing-card__tagline {
        font-size: 0.7rem;
    }

    .price-amount {
        font-size: var(--text-xl);
    }

    .pricing-card__features li {
        font-size: 0.7rem;
    }

    .feature-check {
        font-size: 0.7rem;
    }

    /* Ensure touch targets */
    .btn,
    .nav__link--cta,
    .faq-item__question {
        min-height: 44px;
    }

    /* ===== Testimonials ===== */
    .testimonial-card__quote {
        font-size: 0.8rem;
        padding: var(--space-3);
    }

    .author-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }

    .author-name {
        font-size: 0.75rem;
    }

    .author-role {
        font-size: 0.6rem;
    }

    /* ===== FAQ ===== */
    .faq-item__question {
        padding: var(--space-3);
        font-size: 0.8rem;
    }

    .faq-icon {
        font-size: 1rem;
    }

    .faq-item__answer p {
        font-size: 0.75rem;
        padding: 0 var(--space-3) var(--space-3);
    }

    /* ===== Lead Magnet ===== */
    .lead-magnet__content {
        padding: var(--space-4);
    }

    .lead-magnet__icon {
        font-size: 1.5rem;
    }

    .lead-magnet__title {
        font-size: var(--text-base);
    }

    .lead-magnet__description {
        font-size: 0.75rem;
    }

    /* ===== Final CTA ===== */
    .final-cta__icon {
        font-size: 1.75rem;
    }

    .final-cta__title {
        font-size: var(--text-lg);
        line-height: 1.2;
    }

    .final-cta__description {
        font-size: 0.8rem;
    }

    .social-proof-number {
        font-size: var(--text-base);
    }

    .social-proof-label {
        font-size: 0.55rem;
    }

    .btn--large {
        padding: var(--space-3) var(--space-4);
        font-size: 0.8rem;
    }

    /* ===== Footer ===== */
    .footer {
        padding-block: var(--space-6) var(--space-3);
    }

    .footer__grid {
        gap: var(--space-4);
    }

    .footer__tagline {
        font-size: 0.7rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .footer__heading {
        font-size: 0.65rem;
    }

    .footer__links a {
        font-size: 0.7rem;
    }

    .footer__bottom {
        font-size: 0.65rem;
    }

    .scroll-to-top {
        width: 36px;
        height: 36px;
    }

    .scroll-to-top__icon {
        font-size: 1rem;
    }
}

/* ===== Large Screens ===== */
@media (min-width: 1400px) {
    :root {
        --container-max: 1320px;
    }

    .hero__container {
        gap: var(--space-24);
    }

    .hero__graphic {
        max-width: 550px;
    }
}

/* ===== Extra Large Screens ===== */
@media (min-width: 1600px) {
    :root {
        --container-max: 1440px;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    .hero__graphic,
    .orbit-icons,
    .final-cta__icon {
        animation: none !important;
    }

    .typewriter::after {
        animation: none !important;
        display: none;
    }

    .animate-hidden {
        opacity: 1;
        transform: none;
    }

    .animate-visible {
        transition: none !important;
    }
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .nav__toggle,
    .hero__visual,
    .hero__scroll-indicator,
    .trust-bar,
    .testimonials__grid .video-placeholder,
    .play-button,
    .final-cta,
    .scroll-to-top,
    .lead-magnet__form button {
        display: none !important;
    }

    body {
        font-size: 11pt;
        color: black;
        background: white;
    }

    section {
        page-break-inside: avoid;
        padding-block: 1.5rem;
    }

    .section__title {
        font-size: 18pt;
    }

    a {
        text-decoration: underline;
    }

    .pricing-card,
    .usecase-card,
    .problem-card,
    .solution-card,
    .testimonial-card {
        border: 1px solid #ccc;
        box-shadow: none;
    }

    .dsgvo {
        background: #f5f5f5 !important;
        color: black !important;
    }

    .dsgvo__title,
    .checklist-text {
        color: black !important;
    }
}

/* ===== High Contrast Mode ===== */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #006666;
        --color-accent: #cc0000;
        --color-border: #000;
    }

    .btn--primary {
        border: 2px solid #000;
    }

    .pricing-card,
    .usecase-card,
    .problem-card,
    .solution-card {
        border-width: 2px;
    }
}

/* ===== Dark Mode (Optional) ===== */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable automatic dark mode
    :root {
        --color-background: #0f172a;
        --color-surface: #1e293b;
        --color-text: #e2e8f0;
        --color-text-muted: #94a3b8;
        --color-border: #334155;
        --color-neutral-50: #1e293b;
        --color-neutral-100: #334155;
    }

    .header {
        background: rgba(15, 23, 42, 0.9);
    }

    .problem-card,
    .solution-card,
    .usecase-card,
    .pricing-card,
    .testimonial-card,
    .faq-item {
        background: var(--color-surface);
    }

    .logo-placeholder,
    .logo-item {
        background: var(--color-neutral-100);
        color: var(--color-text-muted);
    }
    */
}
