/* === GLOBAL VARIABLES === */
:root {
    /* Modern gradients 2025 */
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-pink: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --gradient-amber: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #06b6d4 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --dark-bg: #0f172a;
    --light-text: rgba(255, 255, 255, 0.9);
}

/* === HERO SECTION - COMPACT (ABOVE THE FOLD) === */
.hero-section-compact {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    padding: 2rem 1rem;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.video-background.loaded {
    opacity: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(15, 23, 42, 0.5) 0%, 
            rgba(30, 41, 59, 0.3) 50%, 
            rgba(2, 6, 23, 0.6) 100%);
    z-index: 2;
}

/* Animated Particles */
.particles-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.6;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: particleFloat var(--duration, 20s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translate(var(--x1, 50px), var(--y1, -80px)) scale(1.2);
        opacity: 0.8;
    }
    50% { 
        transform: translate(var(--x2, -30px), var(--y2, -120px)) scale(0.8);
        opacity: 0.5;
    }
    75% { 
        transform: translate(var(--x3, 80px), var(--y3, -60px)) scale(1.1);
        opacity: 0.7;
    }
}

/* === HERO CONTENT - COMPACT LAYOUT === */
.hero-content-compact {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    animation: heroFadeIn 1.2s ease-out 0.3s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Large Hero Title */
.hero-title-large {
    font-size: clamp(2rem, 8vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
    text-shadow: 
        0 0 40px rgba(102, 126, 234, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.7);
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 400;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

/* Short Subtitle - Max 2 Lines */
.hero-subtitle-short {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* === MINI FEATURES - 4 KEY SERVICES === */
.hero-features-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 700px;
}

.feature-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-mini:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-mini-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
    transition: transform 0.3s ease;
}

.feature-mini:hover .feature-mini-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-mini-icon i {
    color: white;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.feature-mini-label {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* === CTA BUTTONS - LARGE & PROMINENT === */
.hero-cta-compact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.cta-btn-large {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 200px;
    white-space: nowrap;
}

.cta-btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn-large:hover::before {
    width: 400px;
    height: 400px;
}

.cta-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.5);
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.7);
    color: white;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-5px);
    color: white;
}

/* === TRUST BADGE - SUBTLE === */
.trust-badge-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    opacity: 0.9;
}

.trust-badge-mini i {
    color: #10b981;
    font-size: 1.1rem;
}

/* === SCROLL HINT - SUBTLE === */
/* === SCROLL HINT - OPRAVENÁ POZICE === */
    .scroll-hint {
        position: absolute;
        bottom: 100px; /* ZVÝŠENO z 2rem na 100px, aby byl vidět */
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .scroll-hint:hover {
        opacity: 1;
    }

    .scroll-hint-icon {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(247, 12, 12, 0.883);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: scrollBounce 2s ease-in-out infinite;
    }

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

    .scroll-hint-icon i {
        color: rgb(47, 251, 6);
        font-size: 1.8rem;
    }

    .scroll-hint-text {
        font-size: 1.0rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.9); /* Přidána barva textu pro jistotu */
    }

/* === FEATURES SECTION === */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #64748b;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--feature-color, var(--gradient-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--feature-color, var(--gradient-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.feature-icon i {
    color: white;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon i {
    animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.feature-title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.feature-list li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    color: #667eea;
    font-weight: 700;
    flex-shrink: 0;
}

/* === PORTFOLIO SECTION === */
.portfolio-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

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

.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.warehouse-mockup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ev-mockup {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.work-mockup {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.mockup-content {
    padding: 2rem;
    color: white;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.mockup-header i {
    font-size: 1.5rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.mockup-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.badge-expedited {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-prepared {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 80px;
    padding: 0 1rem;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .chart-bar {
    background: rgba(255, 255, 255, 0.5);
}

.mockup-buttons {
    display: flex;
    gap: 1rem;
}

.action-btn {
    flex: 1;
    padding: 0.875rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.action-btn.primary {
    background: rgba(255, 255, 255, 0.25);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* === TECH STACK === */
.tech-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.tech-icon i {
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

.tech-item:hover .tech-icon i {
    animation: iconSpin 0.6s ease-in-out;
}

.tech-name {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    color: white;
    opacity: 0.9;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.contact-card {
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gradient);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #f59e0b;
    gap: 1rem;
}

/* === RESPONSIVE BREAKPOINTS === */

/* Tablet Portrait (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .hero-features-compact {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Small Tablets (below 768px) */
@media (max-width: 767px) {
    .hero-section-compact {
        padding: 1.5rem 1rem;
    }
    
    .hero-title-large {
        font-size: clamp(1.75rem, 10vw, 3rem);
        letter-spacing: -1px;
    }
    
    .hero-subtitle-short {
        font-size: clamp(0.95rem, 4vw, 1.15rem);
        line-height: 1.5;
    }
    
    .hero-features-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .feature-mini {
        padding: 1rem 0.75rem;
    }
    
    .feature-mini-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-mini-label {
        font-size: 0.85rem;
    }
    
    .hero-cta-compact {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-btn-large {
        width: 100%;
        min-width: unset;
        padding: 1.15rem 2rem;
    }
    
    .trust-badge-mini {
        font-size: 0.8rem;
        padding: 0.65rem 1.25rem;
        text-align: center;
    }
    
    .scroll-hint {
        bottom: 1rem;
    }
    
    .scroll-hint-text {
        font-size: 0.75rem;
    }
    
    .features-section,
    .portfolio-section,
    .tech-section,
    .contact-section {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .features-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .mockup-stats {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
    .hero-features-compact {
        gap: 0.5rem;
    }
    
    .feature-mini {
        padding: 0.875rem 0.5rem;
    }
    
    .feature-mini-icon {
        width: 45px;
        height: 45px;
        font-size: 1.35rem;
    }
    
    .feature-mini-label {
        font-size: 0.8rem;
    }
    
    .cta-btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .trust-badge-mini {
        flex-direction: column;
        font-size: 0.75rem;
    }
}

/* Landscape Mobile (height < 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section-compact {
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .hero-content-compact {
        gap: 1rem;
    }
    
    .hero-title-large {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle-short {
        display: none; /* Hide subtitle in landscape to save space */
    }
    
    .hero-features-compact {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .feature-mini {
        padding: 0.75rem 0.5rem;
    }
    
    .feature-mini-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-mini-label {
        font-size: 0.75rem;
    }
    
    .hero-cta-compact {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .cta-btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-width: 150px;
    }
    
    .trust-badge-mini {
        display: none; /* Hide trust badge in landscape */
    }
    
    .scroll-hint {
        display: none; /* Hide scroll hint in landscape */
    }
}

/* Large Desktop (above 1920px) */
@media (min-width: 1920px) {
    .hero-title-large {
        font-size: 6rem;
    }
    
    .hero-subtitle-short {
        font-size: 1.5rem;
        max-width: 900px;
    }
    
    .hero-features-compact {
        max-width: 900px;
    }
    
    .feature-mini {
        padding: 2rem 1.5rem;
    }
    
    .feature-mini-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* === PERFORMANCE === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .video-background,
    .particles-layer,
    .scroll-hint,
    .cta-btn-large {
        display: none;
    }
}