/* style.css */
:root {
    --bg-dark: #040406;
    --neon-purple: #a122ff;
    --neon-blue: #00bfff;
    --glass-bg: rgba(12, 12, 20, 0.5);
    --glass-border: rgba(255, 255, 255, 0.07);
    --text-white: #ffffff;
    --text-gray: #9494a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img, video { max-width: 100%; }

/* --- Tło: światło --- */
.light-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.55;
    animation: floatCycle 18s infinite alternate ease-in-out;
}

.blob-purple {
    background: var(--neon-purple);
    width: 550px;
    height: 550px;
    top: 15%;
    left: 5%;
}

.blob-blue {
    background: var(--neon-blue);
    width: 650px;
    height: 650px;
    bottom: -10%;
    right: 5%;
    animation-delay: -6s;
    animation-duration: 22s;
}

@keyframes floatCycle {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 60px) scale(1.15); }
    100% { transform: translate(-40px, 120px) scale(0.9); }
}

/* --- Efekt szkła --- */
.glass-viewport {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 30%, rgba(10, 10, 15, 0.1) 0%, rgba(4, 4, 6, 0.7) 100%);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow-x: hidden;
}

.glass-viewport > * {
    min-width: 0;
    max-width: 100%;
}

/* --- Nawigacja --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 65px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--glass-border);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.5px;
}
.brand-logo span b { color: var(--neon-blue); }

.center-nav {
    display: flex;
    align-items: center;
}

.center-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin: 0 18px;
    transition: color 0.2s;
}
.center-nav a:hover, .center-nav a.nav-active-tab {
    color: var(--text-white);
}

.right-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

#langSelect {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
}
#langSelect option { background: var(--bg-dark); }

/* --- Sekcja główna --- */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8% 60px 8%;
    gap: 40px;
}

.hero-info { max-width: 50%; }

.hero-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(120deg, #ffffff 40%, #dcd0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-cta-download {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.btn-cta-download:hover {
    transform: translateY(-2px);
    background: #e6e6e6;
}

/* Okno w stylu Windows */
.hero-visual {
    width: 45%;
    display: flex;
    justify-content: center;
}

.software-preview-window {
    width: 100%;
    max-width: 520px;
    height: 320px;
    background: rgba(20, 20, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px; /* Nieco ostrzejsze narożniki pasujące do Windows */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.window-header-win {
    height: 32px;
    background: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-title-win {
    font-size: 12px;
    color: #aaa;
    margin-left: 15px;
    font-weight: 500;
}

.win-controls {
    display: flex;
    height: 100%;
}

.win-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.1s;
}

.win-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.win-btn.close:hover {
    background: #e81123;
    color: #fff;
}

.window-body-mock {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(161, 34, 255, 0.05), rgba(0, 191, 255, 0.05));
}

.play-icon-mesh {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding-left: 6px;
    cursor: pointer;
    transition: all 0.3s;
}
.play-icon-mesh:hover {
    color: var(--text-white);
    border-color: var(--neon-blue);
    background: rgba(0, 191, 255, 0.1);
}

/* --- Sekcja najważniejszych funkcji --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 8%;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* --- Informacje o programie --- */
.about-app-section {
    padding: 80px 8% 120px 8%;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.step-card {
    flex: 1;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 15px;
    right: 20px;
}
.text-glow-cyan {
    color: rgba(0, 191, 255, 0.2);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--neon-purple);
}
.step-card:last-child .step-title {
    color: var(--neon-blue);
}

.step-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.step-arrow {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.2);
    align-self: center;
    padding-top: 30px;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: #fff;
    transition: transform .2s, opacity .2s;
}

.main-header.menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.main-header.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.main-header.menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- Otwarty kod źródłowy --- */
.opensource-section {
    padding: 80px 8%;
    border-top: 1px solid var(--glass-border);
}

.opensource-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 55px;
    align-items: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(161,34,255,0.12), rgba(0,191,255,0.07));
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.opensource-card::after {
    content: "</>";
    position: absolute;
    right: -18px;
    bottom: -55px;
    color: rgba(255,255,255,0.025);
    font-size: 190px;
    font-weight: 900;
    pointer-events: none;
}

.opensource-copy { position: relative; z-index: 1; }
.opensource-title { font-size: 34px; line-height: 1.15; margin-bottom: 18px; }
.opensource-desc { color: var(--text-gray); font-size: 16px; line-height: 1.7; max-width: 650px; }
.btn-opensource {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 22px;
    color: #fff;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.btn-opensource:hover { transform: translateY(-2px); background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.25); }

.opensource-points { position: relative; z-index: 1; display: grid; gap: 12px; }
.opensource-point {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 16px;
    align-items: start;
    padding: 17px 18px;
    background: rgba(5,5,10,0.42);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
}
.opensource-point-number { color: var(--neon-blue); font-size: 12px; font-weight: 800; letter-spacing: 1px; padding-top: 3px; }
.opensource-point h3 { font-size: 15px; margin-bottom: 5px; }
.opensource-point p { color: var(--text-gray); font-size: 12px; line-height: 1.5; }

/* --- Pływający pasek dolny --- */
.floating-bottom-bar {
    position: fixed;
    bottom: 20px;
    left: 30px;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 10;
}

.status-indicator-dot {
    width: 8px;
    height: 8px;
    background-color: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 8px #27c93f;
}

.bottom-bar-text {
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
}

/* --- Rozmiary --- */

.front-svg{
    width: 50px;
    height: 50px;
}

/* --- Zweryfikowane możliwości --- */
.screenshots-section { padding: 80px 8%; border-top: 1px solid var(--glass-border); }
.screenshots-row { display: flex; gap: 20px; align-items: stretch; }
.shot-big {
    flex: 2; min-height: 230px;
    background: rgba(20,20,35,0.7); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; overflow: hidden; display: flex; flex-direction: column;
}
.shot-sm-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.shot-sm {
    flex: 1; min-height: 100px;
    background: rgba(20,20,35,0.7); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; overflow: hidden; display: flex; flex-direction: column;
}
.shot-body { flex: 1; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 20px; }
.shot-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--text-gray); text-transform: uppercase; }
.shot-label { font-size: 15px; font-weight: 700; color: #fff; text-align: center; }
.shot-sub { font-size: 12px; color: var(--text-gray); text-align: center; line-height: 1.5; }
.spec-facts { width: 100%; display: grid; gap: 8px; margin-top: 8px; }
.spec-fact {
    display: grid;
    grid-template-columns: minmax(90px, 0.4fr) minmax(180px, 1fr);
    gap: 14px;
    align-items: center;
    padding: 9px 12px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 7px;
}
.spec-fact-label { font-size: 12px; color: var(--text-gray); }
.spec-fact-value { font-size: 12px; color: #fff; text-align: right; font-weight: 600; }

/* --- Najczęstsze pytania --- */
.faq-section { padding: 80px 8%; background: rgba(0,0,0,0.2); border-top: 1px solid var(--glass-border); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.faq-q {
    width: 100%; background: rgba(255,255,255,0.02); border: none; color: #fff;
    padding: 18px 22px; font-size: 15px; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; text-align: left; gap: 16px;
    font-family: inherit;
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-arrow { color: var(--text-gray); font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--text-gray); line-height: 1.7; background: rgba(255,255,255,0.01); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--neon-blue); }

/* --- Wezwanie do działania --- */
.cta-section {
    padding: 100px 8%; text-align: center;
    border-top: 1px solid var(--glass-border);
    background: radial-gradient(ellipse at 50% 0%, rgba(161,34,255,0.1) 0%, transparent 70%);
}
.cta-tag { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--neon-purple); text-transform: uppercase; margin-bottom: 20px; }
.cta-title { font-size: 38px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; background: linear-gradient(120deg,#fff 40%,#dcd0ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-sub { font-size: 16px; color: var(--text-gray); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-main { background: #fff; color: #000; border: none; padding: 15px 34px; font-size: 15px; font-weight: 800; border-radius: 4px; cursor: pointer; }
.btn-cta-main:hover { background: #e6e6e6; }
.btn-cta-ghost { display: inline-flex; align-items: center; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.15); padding: 15px 34px; font-size: 15px; font-weight: 600; border-radius: 4px; cursor: pointer; transition: 0.2s; text-decoration: none; }
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.35); }
.cta-note { margin-top: 18px; font-size: 12px; color: var(--text-gray); }
.cta-dot { display: inline-block; width: 6px; height: 6px; background: #27c93f; border-radius: 50%; margin-right: 6px; vertical-align: middle; }

/* Etykieta sekcji */
.section-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--neon-blue); background: rgba(0,191,255,0.08); border: 1px solid rgba(0,191,255,0.2); padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; }

/* --- Film w sekcji głównej --- */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Wypełnia blok bez zniekształcania proporcji */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    opacity: 0.85; /* Delikatne przyciemnienie filmu */
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding-left: 5px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.window-body-mock:hover .play-icon-overlay {
    color: var(--text-white);
    border-color: var(--neon-blue);
    background: rgba(0, 191, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- Podgląd przykładowych klipów --- */
.showcase-section {
    padding: 80px 8%;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.1);
}

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

.clip-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
    aspect-ratio: 16 / 9; /* Stałe proporcje filmu */
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.clip-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
}

.clip-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.clip-card:hover .clip-video {
    opacity: 1; /* Rozjaśnienie filmu po najechaniu */
}

.clip-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.clip-game {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.clip-author {
    font-size: 12px;
    color: #ccc;
}

/* Układ tabletowy i mobilny */
@media (max-width: 900px) {
    .main-header {
        position: sticky;
        top: 0;
        z-index: 50;
        height: 68px;
        padding: 0 24px;
        background: rgba(4, 4, 8, 0.94);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .main-header > *,
    .hero-section > *,
    .opensource-card > *,
    .screenshots > * {
        min-width: 0;
    }

    .right-actions {
        flex: 0 0 auto;
        gap: 10px;
        margin-left: auto;
    }
    .mobile-menu-toggle { display: block; }

    .center-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 18px 16px;
        background: rgba(4, 4, 8, 0.98);
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 18px 35px rgba(0, 0, 0, .45);
    }

    .main-header.menu-open .center-nav { display: flex; }

    .center-nav a {
        width: 100%;
        margin: 0;
        padding: 13px 10px;
        border-radius: 8px;
        font-size: 15px;
    }

    .center-nav a:hover { background: rgba(255, 255, 255, .05); }

    .hero-section {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 64px 6% 70px;
        gap: 48px;
    }

    .hero-info {
        width: 100%;
        min-width: 0;
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-title { font-size: clamp(40px, 8vw, 58px); }
    .hero-description { max-width: 650px; margin-left: auto; margin-right: auto; }
    .hero-visual { width: 100%; min-width: 0; }
    .software-preview-window { width: 100%; min-width: 0; max-width: 720px; height: auto; aspect-ratio: 16 / 10; }

    .features-grid { grid-template-columns: 1fr; padding: 64px 6%; gap: 18px; }
    .feature-card { max-width: 720px; width: 100%; margin: 0 auto; }

    .about-app-section { padding: 70px 6%; }
    .steps-container { flex-direction: column; max-width: 720px; margin: 0 auto; }
    .step-card { width: 100%; }
    .step-arrow { display: none; }

    .opensource-section { padding: 70px 6%; }
    .opensource-card { grid-template-columns: 1fr; gap: 35px; }

    .screenshots-section, .showcase-section, .faq-section { padding: 70px 6%; }
    .screenshots-row { flex-direction: column; max-width: 720px; margin: 0 auto; }
    .shot-big { min-height: 280px; }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    html { scroll-padding-top: 70px; }

    .main-header {
        height: 64px;
        padding: 0 16px;
    }

    .brand-logo { flex: 0 1 auto; min-width: 0; gap: 9px; font-size: 18px; letter-spacing: 1px; }
    .brand-logo img { width: 30px; height: 30px; }
    .brand-logo span { white-space: nowrap; }
    #langSelect { min-height: 42px; padding: 7px 10px; border-radius: 8px; }

    .hero-section {
        padding: 48px 18px 60px;
        gap: 36px;
    }

    .hero-title {
        font-size: clamp(34px, 10.4vw, 44px);
        line-height: 1.06;
        margin-bottom: 20px;
        overflow-wrap: anywhere;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 30px;
        overflow-wrap: anywhere;
    }

    .btn-cta-download {
        width: 100%;
        max-width: 340px;
        padding: 15px 20px;
    }

    .software-preview-window { aspect-ratio: 16 / 10; border-radius: 10px; }
    .window-header-win { min-height: 30px; }
    .win-btn { width: 36px; }

    .features-grid,
    .about-app-section,
    .opensource-section,
    .screenshots-section,
    .showcase-section,
    .faq-section,
    .cta-section {
        padding: 56px 18px;
    }

    .feature-card, .step-card { padding: 24px 20px; }
    .section-heading { font-size: 28px; margin-bottom: 34px; }

    .opensource-card { padding: 28px 20px; gap: 28px; }
    .opensource-title { font-size: 28px; }
    .opensource-desc { font-size: 15px; }
    .opensource-point { grid-template-columns: 34px 1fr; gap: 10px; padding: 15px 13px; }

    .spec-fact {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .spec-fact-value { text-align: left; overflow-wrap: anywhere; }

    .faq-q { padding: 17px 16px; font-size: 14px; }
    .faq-a { padding: 0 16px 17px; }

    .cta-title { font-size: 32px; }
    .cta-btns { flex-direction: column; align-items: stretch; }
    .btn-cta-main, .btn-cta-ghost { justify-content: center; width: 100%; }

    .floating-bottom-bar {
        position: static;
        justify-content: center;
        margin: 0 18px 18px;
        text-align: center;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .light-blob { animation: none; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
