:root {
    /* Professional Dark Palette (No distractions) */
    --bg: #020617;
    --card: #0f172a;
    --primary: #3b82f6; /* Classic Tech Blue */
    --primary-light: #60a5fa;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f8fafc;
    --text-dim: #94a3b8;
    --white: #ffffff;
    
    --radius: 16px;
    --container-max: 1200px;

    /* Glassmorphism */
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Responsive Typography */
    --h1: clamp(2.25rem, 6vw, 4rem);
    --h2: clamp(1.75rem, 4vw, 2.75rem);
    --h3: clamp(1.25rem, 3vw, 1.75rem);
}

/* ══════════════════════════════════════
   COMPONENTS & UTILS
   ══════════════════════════════════════ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.tech-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}
.tech-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
}
.tech-card:hover::before { transform: translateX(100%); }

.tech-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 24px;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 80px;
    padding: 0 40px;
}
.timeline-line {
    position: absolute;
    top: 25px;
    left: 80px;
    right: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
    z-index: 0;
}
.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.t-step {
    text-align: center;
    flex: 1;
}
.t-num {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 800;
    color: var(--text-dim);
    transition: 0.4s;
    font-size: 18px;
}
.t-step p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    transition: 0.3s;
}
.t-step:hover .t-num {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}
.t-step:hover p { color: var(--white); }

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr; }
    
    /* Mobile Timeline Vertical */
    .timeline { padding: 0 10px; }
    .timeline-line {
        top: 0;
        bottom: 0;
        left: 35px;
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
        display: block; /* Show vertical on mobile */
    }
    .timeline-steps {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
        padding-left: 15px;
    }
    .t-step {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        background: rgba(255, 255, 255, 0.02);
        padding: 16px 20px;
        border-radius: 16px;
        border: 1px solid var(--border);
    }
    .t-num {
        margin: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .t-step p { margin: 0; font-size: 16px; }

    /* Spacing fixes */
    .logos-section { margin-bottom: 60px; }
    #demo { margin-top: 40px; margin-bottom: 60px; }

    /* Footer Mobile */
    .footer-info {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-sep { display: none; }
    .hidden-desktop { display: inline-flex !important; }
}

.hidden-desktop { display: none; }

/* Audit Design Tweaks */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--text-dim);
    font-size: 13px;
    cursor: pointer;
    margin-top: 32px;
    transition: 0.3s;
}
.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--text-dim);
}

.result-success { color: #10b981 !important; }
.result-warning { color: #fbbf24 !important; }
.result-danger { color: #ef4444 !important; }

/* Features Grid 2.0 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.f-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.f-card p {
    color: rgba(255, 255, 255, 0.5); /* Dimmed text */
    transition: 0.3s;
}
.f-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
}
.f-card:hover p {
    color: var(--white); /* Lights up on hover */
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* Case Study Fixes */
.case-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.case-logo {
    height: 40px; /* Shrunk */
    margin-bottom: 20px;
}
.case-logo img {
    height: 100%;
    width: auto;
}

/* Highlight Box (Demo) */
.highlight-box {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent),
                rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 130, 246, 0.1);
}
.cta-watermark {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px; /* Shrunk */
    opacity: 0.08; /* Slightly more visible */
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1); /* Ensure it is white */
    animation: floatWatermark 12s infinite alternate ease-in-out;
}

@keyframes floatWatermark {
    from { transform: translate(0, 0); }
    to { transform: translate(-40px, -30px); }
}

/* E-book Styles */
.ebook-img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}
.ebook-img:hover {
    transform: scale(1.03) rotate(-1deg);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Trust */
.form-trust {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
    text-align: center;
}
.form-trust i {
    margin-right: 6px;
    color: var(--primary);
}

/* Footer Refinements */
.footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-bottom: 8px; /* Minimal gap */
}
.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 14px;
}
.footer-sep {
    opacity: 0.3;
}
.scroll-top-link {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}
.scroll-top-link:hover {
    color: var(--white);
}

.footer-slogan {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 15px;
    color: var(--text-dim);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.step-item:hover .step-num {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Audit Extra Styles */
.audit-progress-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-weight: 700;
}

.audit-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}
.audit-progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.4s ease;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 14px;
    margin-top: 24px;
    cursor: pointer;
    transition: color 0.3s;
}
.btn-back:hover { color: var(--white); }

.result-warning { color: #fbbf24; }

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
}
.check-list i {
    color: var(--primary);
}

/* ══════════════════════════════════════
   RESET & LAYOUT FIX
   ══════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}
html { scroll-behavior: smooth; background: var(--bg); color: var(--text); overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Fix Containers (No edge-to-edge text) */
.container { 
    max-width: var(--container-max); 
    margin: 0 auto; 
    padding: 0 40px; /* Strong margins */
    width: 100%;
}

.section { padding: clamp(60px, 10vw, 120px) 0; }
.bg-light-alt { background: rgba(255,255,255,0.02); }

.text-primary-light { color: var(--primary-light); }
.text-dim { color: var(--text-dim); }
.center { text-align: center; }

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: var(--h2);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-dim);
    margin-bottom: 48px;
    font-size: 1.1rem;
    max-width: 700px;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════
   LOGOS SECTION
   ══════════════════════════════════════ */
.logos-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03); /* Slightly lighter for contrast */
    text-align: center;
}

.logos-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Outfit', sans-serif;
}

.logos-ticker {
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    width: max-content;
    gap: 40px; /* Reduced gap */
    animation: scrollTicker 40s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-wrapper {
    position: relative;
    height: 80px;
    width: 160px; /* Reduced width */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    flex-shrink: 0;
}

.logo-item {
    max-height: 40px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.logo-color {
    position: absolute;
    opacity: 0;
    z-index: 2;
}

.logo-mono {
    opacity: 0.6;
    z-index: 1;
}

.logo-wrapper:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.1);
}

.logo-wrapper:hover .logo-mono {
    opacity: 0;
}

.logo-wrapper:hover .logo-color {
    opacity: 1;
}

@keyframes scrollTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
#main-nav {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-nav.scrolled {
    padding: 12px 0;
    background: rgba(2, 6, 23, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.logo img { 
    height: 44px; 
    width: auto;
    display: block;
    filter: brightness(0) invert(1); 
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-weight: 500; font-size: 15px; transition: 0.3s; position: relative; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary);
    transition: 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; }

/* ══════════════════════════════════════
   HERO (Original Styles Restored)
   ══════════════════════════════════════ */
.hero {
    padding: clamp(140px, 12vh, 180px) 0 100px;
    background: 
        radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.3) 0%, transparent 80%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 90%);
    pointer-events: none;
    z-index: 0;
    animation: driftGrid 15s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(rgba(59, 130, 246, 0.6) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    opacity: 0.4;
    mask-image: radial-gradient(circle at 50% 30%, black 10%, transparent 80%);
    pointer-events: none;
    z-index: 0;
    animation: floatData 6s ease-in-out infinite;
}

@keyframes driftGrid {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

@keyframes floatData {
    0% { opacity: 0.2; transform: translateY(0) translateX(0); }
    50% { opacity: 0.6; transform: translateY(-30px) translateX(10px); }
    100% { opacity: 0.2; transform: translateY(0) translateX(0); }
}

.hero-content { position: relative; z-index: 10; max-width: 1200px; }
.hero h1 { 
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem); 
    line-height: 1.1; 
    margin-bottom: 24px; 
    font-weight: 800;
    letter-spacing: -1px;
}

/* ══════════════════════════════════════
   HERO LP (New Split Layout)
   ══════════════════════════════════════ */
.hero-lp {
    padding: clamp(140px, 12vh, 180px) 0 100px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero-content-lp {
    max-width: 650px;
}

.hero-lp h1 { 
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem); 
    line-height: 1.1; 
    margin-bottom: 24px; 
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-visual {
    position: relative;
    z-index: 10;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Audit Visualization Card (Hero LP) - Conversion Focused */
.audit-viz-card {
    background: rgba(10, 15, 30, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 28px;
    padding: 35px;
    backdrop-filter: blur(25px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 30px rgba(59, 130, 246, 0.2);
    animation: floatHero 6s ease-in-out infinite;
    max-width: 420px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.viz-shine {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    animation: shineSweep 8s infinite;
}

@keyframes shineSweep {
    0% { left: -100%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.audit-viz-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
.viz-header-text { text-align: left; }
.viz-title { font-weight: 800; color: var(--white); font-size: 1.35rem; display: block; line-height: 1.2; }
.viz-subtitle { font-size: 0.95rem; color: var(--primary-light); margin-top: 4px; font-weight: 600; }

.viz-score { 
    font-size: 3rem; 
    font-weight: 800; 
    color: var(--primary-light); 
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    animation: pulseScore 2s infinite;
}

@keyframes pulseScore {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.audit-viz-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; position: relative; z-index: 2; }

.viz-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.viz-item i { 
    color: rgba(255,255,255,0.2); 
    font-size: 1.2rem; 
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.viz-item.active-done {
    color: var(--white);
    transform: translateX(5px);
}

.viz-item.active-done i {
    color: #10b981;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.audit-viz-footer-cta {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    position: relative;
    z-index: 2;
}

.btn-viz-start {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-viz-start:hover {
    background: var(--primary-light);
    color: var(--bg);
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
}

.hero .hero-actions { margin-top: 32px; }
.hero-lp .hero-actions { margin-top: 32px; }

/* Premium Case Study Card */
.case-study-premium {
    margin-top: -60px;
    position: relative;
    z-index: 30;
}

@media (max-width: 992px) {
    .logo img { height: 39px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content-lp { margin: 0 auto; }
    .hero-lp .hero-actions { display: none; }
    .audit-viz-card { margin: 0 auto; width: 100%; }
    .case-study-premium { margin-top: 40px; margin-bottom: 60px; }
    .logos-section { margin-bottom: 40px; }
    
    .hide-mobile { display: none; }
    
    /* Globální úprava velkých tlačítek pro mobil - přirozená šířka po zkrácení textu */
    .btn-lg { 
        padding: 16px 24px; 
        font-size: 0.95rem; 
        white-space: normal; 
        line-height: 1.4; 
        display: inline-flex; 
        align-items: center; 
        text-align: center; 
        justify-content: center;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .btn-lg i { 
        margin-right: 10px; 
        font-size: 1.1rem; 
        flex-shrink: 0;
    }
    
    .hero-actions, .center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
}

.case-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
}

.case-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.case-logo-inline {
    height: 30px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.case-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary-light);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-grid-new {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.case-main h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.case-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.6;
}

.case-quote {
    padding-left: 24px;
    border-left: 3px solid var(--primary);
}

.case-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.case-quote cite {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
}

.case-results-box {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-big {
    padding: 20px 0;
}

.stat-big .num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.stat-big .lab {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-top: 8px;
}

.stat-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 10px 0;
}

@media (max-width: 992px) {
    .case-card { padding: 30px 20px; border-radius: 20px; margin: 0 10px; }
    .case-grid-new { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .case-main h3 { font-size: 1.5rem; }
    .case-results-box { padding: 25px; margin-top: 10px; }
    .case-quote { padding-left: 0; border-left: none; border-top: 2px solid var(--primary); padding-top: 20px; margin-top: 20px; }
    .case-header-flex { flex-direction: column; gap: 15px; }
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   BENTO GRID (Clean Cards)
   ══════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.bento-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.bento-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.bento-large { grid-column: span 2; }

.bento-card h3 { font-family: 'Outfit', sans-serif; font-size: 24px; margin-bottom: 16px; color: var(--white); }
.bento-card p { color: var(--text-dim); font-size: 16px; }
.card-icon { font-size: 32px; color: var(--primary); margin-bottom: 24px; }

/* ══════════════════════════════════════
   AUDIT (Interaktivní sekce)
   ══════════════════════════════════════ */
.audit-box {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(30px, 5vw, 60px);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.audit-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.audit-step { display: none; }
.audit-step.active { 
    display: block; 
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.audit-question { 
    font-size: clamp(1.2rem, 3vw, 1.8rem); 
    font-weight: 700; 
    margin-bottom: 12px; 
    font-family: 'Outfit', sans-serif; 
    color: var(--white);
    line-height: 1.3;
}

.audit-hint {
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    font-weight: 500;
    opacity: 0.8;
}

.btn-back {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 32px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    color: var(--white);
}

.audit-options { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px; 
    margin-top: 32px;
}

.btn-quiz {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
}

.btn-quiz i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    transition: 0.3s;
    flex-shrink: 0; /* Prevents squashing */
}

.btn-quiz:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-quiz:hover i {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.btn-quiz:active {
    transform: translateY(0) scale(0.98);
}

.btn-quiz[data-choice="0"]:hover { border-color: #10b981; }
.btn-quiz[data-choice="0"]:hover i { background: #10b981; }

.btn-quiz[data-choice="2"]:hover { border-color: #ef4444; }
.btn-quiz[data-choice="2"]:hover i { background: #ef4444; }

@media (max-width: 600px) {
    .audit-options { grid-template-columns: 1fr; }
    .btn-quiz { padding: 16px; font-size: 0.9rem; }
}

.audit-watermark-icon {
    position: absolute;
    bottom: -60px;
    right: -60px;
    font-size: 280px;
    color: #fff;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-15deg);
    animation: rotateSlow 40s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.audit-indicator {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 16px;
    display: block;
}

.audit-result-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}
@media (max-width: 768px) {
    .audit-result-icon {
        font-size: 50px;
        margin-bottom: 16px;
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.result-danger { color: #ef4444; text-shadow: 0 0 30px rgba(239, 68, 68, 0.3); }
.result-success { color: #10b981; text-shadow: 0 0 30px rgba(16, 185, 129, 0.3); }

.result-title {
    font-size: var(--h2);
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.pop-in { animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
    height: 52px; /* Pevná výška pro absolutní sjednocení */
    padding: 0 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 16px; /* Sjednocená velikost písma */
    box-sizing: border-box;
    line-height: 1;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); transform: translateY(-2px); }

.btn-block { width: 100%; }

.btn-link {
    background: transparent !important;
    border: none !important;
    color: var(--text-dim);
    height: auto !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
    box-shadow: none !important;
    text-decoration: underline !important;
}

.btn-link:hover {
    color: var(--white) !important;
    transform: none !important;
}

/* ══════════════════════════════════════
   FORMS (Unified Style)
   ══════════════════════════════════════ */
.form-box {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px;
    border-radius: var(--radius);
    transition: 0.3s;
}
.form-box:hover { border-color: rgba(59, 130, 246, 0.3); }

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-light);
    opacity: 0.6;
    font-size: 14px;
    pointer-events: none;
    z-index: 5;
}

.form-group:has(textarea) i,
.form-group.has-textarea i {
    top: 22px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 16px 16px 16px 52px;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(2, 6, 23, 0.8);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

textarea.form-control {
    height: 120px;
    resize: none;
}

/* Checklist */
.check-list {
    list-style: none !important;
    padding: 0;
    margin: 32px 0;
}

.check-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.check-list i {
    color: #10b981;
    font-size: 18px;
    margin-top: 4px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {
    height: 32px;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
    opacity: 0.9;
}



/* ══════════════════════════════════════
   MOBILE & RESPONSIVITY
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; }
    .split-grid { gap: 40px; }
}

@media (max-width: 768px) {
    #main-nav { padding: 10px 0; }
    #main-nav .container { padding: 0 15px; }
    
    .logo img { height: 28px; width: auto; }
    
    .nav-actions .btn-sm { display: none !important; }
    
    .section { padding: 80px 0; }
    .container { padding: 0 24px; }
    
    /* Mobile Nav Base Styles moved to bottom for priority */

    .hero, .hero-lp { padding: 140px 0 60px; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero h1 { margin-bottom: 24px; }
    .hero-actions { 
        display: flex;
        flex-direction: column; 
        gap: 16px; 
        margin-top: 40px;
    }
    .btn { height: 56px; padding: 0 32px; font-size: 1.05rem; }
    
    .check-list { 
        display: inline-block; 
        max-width: 100%;
        margin: 24px auto;
    }
    .check-list li { justify-content: flex-start; }
    
    .bento-grid { grid-template-columns: 1fr; gap: 16px; }
    .bento-large { grid-column: span 1; }
    .bento-card { padding: 30px 24px; }

    .split-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    
    .audit-box { padding: 40px 20px; margin-top: 24px; }
    .audit-question { margin-bottom: 24px; }
    .audit-options { flex-direction: column; }
    
    .form-box { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero h1, .hero-lp h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); }
    .hero .lead { font-size: 1.1rem; }
    .logo img { height: 24px; }
    
    .section-title { font-size: 1.8rem; }
    .audit-box { border-radius: 0; margin-left: -20px; margin-right: -20px; border-left: none; border-right: none; }
    
    .logo-grid { gap: 40px; }
    .logo-item { height: 28px; }
    
    .logos-ticker {
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    .logos-track { gap: 20px; }
}

@media (max-width: 480px) {
    .hero h1, .hero-lp h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
    .hero .lead { font-size: 1rem; }
    .logo img { height: 26px; }
}

/* Case Study Video Layout */
.case-study-grid-video {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.case-video {
    width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.testimonial-mini {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
    text-align: left;
}

.testimonial-mini p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--text-dim);
}

.testimonial-mini cite {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
    font-style: normal;
}

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
}

.bg-alt {
    background: var(--bg-alt);
}

/* --- JEDNOTNÁ TLAČÍTKA --- */
.btn {
    height: 52px;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Pevná mezera u ikony */
    cursor: pointer;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
    line-height: 1;
    text-transform: none; /* Sjednocení na normální písmo */
}

.btn i {
    font-size: 16px;
    margin: 0; /* Odstranění případných marginů u ikon */
}

/* --- OPRAVA PŘETÉKÁNÍ A JEDNOTNÝ STYL BOXŮ NA MOBILU --- */
@media (max-width: 1024px) {
    .case-study-grid-video, .split-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .audit-box, .form-box, .highlight-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 30px 20px !important;
    }

    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .section-tag, .section-title {
        text-align: center !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    .btn {
        width: 100%;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.4rem !important;
    }
    
    .container {
        padding: 0 16px !important;
    }
}

.check-list-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
    text-align: left;
}

.check-list-contact i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.list-content {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.list-content strong {
    color: var(--white);
}

.list-content span {
    color: var(--text-dim);
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: left;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 600px) {
    .list-content {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}



/* --- SAP Integration Section --- */
.integration-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.integration-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Responsibilities Grid */
.resp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.resp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.resp-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.resp-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
}

.resp-card.techis h3 { color: var(--primary-light); }
.resp-card.sap h3 { color: #f0ab3d; } /* SAP Gold */

.resp-card ul {
    list-style: none;
    padding: 0;
}

.resp-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.resp-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 80px;
}

@media (max-width: 1200px) {
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}


.pillar-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border-top: 3px solid transparent;
}

.pillar-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-top-color: var(--primary);
}

.pillar-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.pillar-item h4 {
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
}

.pillar-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Customer Needs Section */
.needs-grid {
    background: rgba(var(--primary-rgb), 0.05);
    padding: 50px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    border: 1px dashed rgba(var(--primary-rgb), 0.3);
}

.need-item {
    text-align: center;
}

.need-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.need-item h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.need-item p {
    font-size: 0.85rem;
    color: var(--text-dim);
}


/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 800px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 30px;
    z-index: 10000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: cookiePopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cookiePopIn {
    0% { transform: translateX(-50%) translateY(50px); opacity: 0; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--primary);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    flex-shrink: 0;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .logo img { height: 39px !important; }
    /* 1. Mobile Navigation (High Priority) */
    .nav-links { 
        display: none !important; 
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(20px);
        flex-direction: column !important;
        padding: 20px 0 !important; /* Vertikální odsazení celého menu */
        gap: 0 !important; /* Mezery mezi položkami řešíme paddingem odkazů */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-align: center !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
        z-index: 2000 !important;
    }
    
    .nav-links li { 
        width: 100% !important; 
    }
    
    .nav-links a { 
        display: block !important;
        width: 100% !important;
        padding: 18px 0 !important; /* Velká klikatelná plocha na výšku */
        font-size: 1.2rem !important; /* Větší písmo */
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    .nav-links li:last-child a {
        border-bottom: none !important;
    }

    .nav-links.active { 
        display: flex !important; 
        animation: slideDown 0.3s ease-out !important; 
    }
    
    .hamburger { 
        display: flex !important; 
        font-size: 24px !important; 
        color: var(--white) !important; 
        cursor: pointer !important; 
        width: 50px !important;
        height: 50px !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,0.1) !important;
        z-index: 2001 !important;
        position: relative !important;
    }

    @keyframes slideDown {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* 2. Content Grids */
    .pillars-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
    .resp-grid { grid-template-columns: 1fr !important; }
    .needs-grid { grid-template-columns: 1fr !important; padding: 30px 20px !important; }

    /* 3. Cookie Banner Mobile */
    .cookie-banner {
        bottom: 20px !important;
        padding: 20px !important;
    }
    .cookie-content {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
    .cookie-text {
        flex-direction: column !important;
        gap: 10px !important;
    }
}
