/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fafafa;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #818cf8;
    --accent: #e11d48;
    --accent-light: #fb7185;
    --bg-dark: #0f0d1a;
    --bg-dark-2: #1a1730;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-1: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #e11d48 100%);
    --gradient-2: linear-gradient(135deg, #0f0d1a 0%, #1e1b3a 100%);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-2xl: 0 32px 64px -16px rgba(0,0,0,0.35);
}

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

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.scrolled {
    background: rgba(15, 13, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent-light); }
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: white; }
.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-2);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225,29,72,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.05); }
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,0.15);
    border: 1px solid rgba(79,70,229,0.3);
    color: var(--primary-light);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 32px rgba(79,70,229,0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(79,70,229,0.45);
}
.btn-outline {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}
.hero-ipad {
    position: relative;
    width: 380px;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-ipad:hover {
    transform: rotateY(-2deg) rotateX(1deg);
}
.hero-ipad img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl), 0 0 80px rgba(79,70,229,0.15);
}
.hero-ipad-secondary {
    position: absolute;
    width: 280px;
    right: -60px;
    bottom: -40px;
    transform: rotateY(-5deg) rotateX(2deg);
    z-index: -1;
    opacity: 0.7;
}
.hero-ipad-secondary img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 48px 0;
    position: relative;
    z-index: 3;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

/* ===== SECTION BASE ===== */
section {
    padding: 120px 0;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
}

/* ===== FEATURES ===== */
.features { background: #fafafa; }
.features-header {
    text-align: center;
    margin-bottom: 80px;
}
.features-header .section-subtitle { margin: 0 auto; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}
.feature-icon.purple { background: rgba(79,70,229,0.1); color: var(--primary); }
.feature-icon.rose { background: rgba(225,29,72,0.1); color: var(--accent); }
.feature-icon.amber { background: rgba(245,158,11,0.1); color: #f59e0b; }
.feature-icon.emerald { background: rgba(16,185,129,0.1); color: #10b981; }
.feature-icon.sky { background: rgba(14,165,233,0.1); color: #0ea5e9; }
.feature-icon.violet { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== WORKFLOW ===== */
.workflow {
    background: var(--gradient-2);
    color: white;
    position: relative;
    overflow: hidden;
}
.workflow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.workflow .container { position: relative; z-index: 2; }
.workflow-header { text-align: center; margin-bottom: 80px; }
.workflow-header .section-label { color: var(--primary-light); }
.workflow-header .section-label::before { background: var(--primary-light); }
.workflow-header .section-title { color: white; }
.workflow-header .section-subtitle { color: var(--text-muted); margin: 0 auto; }
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
.workflow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(50% + 58px);
    width: calc(100% - 116px + 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
    z-index: 0;
}
.workflow-step {
    text-align: center;
    position: relative;
}
.step-number {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: rgba(79,70,229,0.12);
    border: 2px solid rgba(79,70,229,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}
.workflow-step:hover .step-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(79,70,229,0.3);
}
.workflow-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.workflow-step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== APP SHOWCASE (PARALLAX) ===== */
.showcase {
    background: white;
    position: relative;
}
.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}
.showcase-header .section-subtitle { margin: 0 auto; }

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }
.showcase-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}
.showcase-text p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}
.showcase-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(79,70,229,0.1);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.showcase-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.showcase-image-wrap img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid #e2e8f0;
}
.showcase-ipad-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
}
.showcase-ipad-wrap img {
    width: 48%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid #e2e8f0;
}
.showcase-ipad-wrap img:nth-child(2) {
    margin-top: 40px;
}

/* ===== LABEL SHOWCASE ===== */
.label-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}
.label-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.label-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.label-image {
    position: relative;
}
.label-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
}
.label-image::after {
    content: 'Reálný výstup z aplikace';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.label-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
.label-feature {
    background: white;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}
.label-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.label-feature p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* ===== WEB APP SECTION ===== */
.webapp {
    background: var(--gradient-2);
    color: white;
    position: relative;
    overflow: hidden;
}
.webapp::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.webapp .container { position: relative; z-index: 2; }
.webapp-header {
    text-align: center;
    margin-bottom: 60px;
}
.webapp-header .section-label { color: var(--primary-light); }
.webapp-header .section-label::before { background: var(--primary-light); }
.webapp-header .section-title { color: white; }
.webapp-header .section-subtitle { color: var(--text-muted); margin: 0 auto; }
.webapp-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.webapp-screenshot {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
.webapp-screenshot:hover {
    transform: translateY(-8px);
    z-index: 2;
}
.webapp-screenshot img {
    width: 100%;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}
.webapp-screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    border-radius: 0 0 16px 16px;
}
.webapp-screenshot-label h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}
.webapp-screenshot-label p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ===== PLATFORMS ===== */
.platforms { background: white; }
.platforms-header {
    text-align: center;
    margin-bottom: 60px;
}
.platforms-header .section-subtitle { margin: 0 auto; }
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.platform-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s;
    background: #fafafa;
}
.platform-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(79,70,229,0.1);
}
.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.platform-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.platform-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== CTA ===== */
.cta {
    background: white;
    padding: 120px 0;
}
.cta-box {
    background: var(--gradient-2);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225,29,72,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box > * { position: relative; z-index: 2; }
.cta-box .section-label { color: var(--primary-light); }
.cta-box .section-label::before { background: var(--primary-light); }
.cta-box .section-title {
    color: white;
    max-width: 600px;
    margin: 0 auto 16px;
}
.cta-box .section-subtitle {
    color: var(--text-muted);
    margin: 0 auto 40px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-contact {
    margin-top: 32px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.cta-contact a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}
.cta-contact a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 60px 0 32px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-brand .nav-logo {
    display: block;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}
.footer-links h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ===== PARALLAX ELEMENTS ===== */
.parallax-section {
    position: relative;
}
[data-parallax] {
    transition: transform 0.1s linear;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .hero-ipad { width: 300px; transform: none; }
    .hero-ipad:hover { transform: none; }
    .hero-ipad-secondary { width: 220px; right: -30px; bottom: -20px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-row { grid-template-columns: 1fr; gap: 40px; }
    .showcase-row.reverse { direction: ltr; }
    .webapp-screenshots { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
    .label-content { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    section { padding: 80px 0; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15,13,26,0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
    }
    .nav-toggle { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .workflow-steps { grid-template-columns: 1fr; gap: 32px; }
    .workflow-step:not(:last-child)::after { display: none; }
    .platforms-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .cta-box { padding: 48px 24px; border-radius: 24px; }
    .hero-ipad { width: 260px; }
    .hero-ipad-secondary { display: none; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .label-features { grid-template-columns: 1fr; }
}
