    /* ===== Entry animations - bardziej dynamiczne ===== */
    @keyframes heroFadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes heroSlideInLeft {
        from {
            opacity: 0;
            transform: translateX(-80px) rotate(-10deg) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateX(0) rotate(-10deg) scale(1);
        }
    }

    @keyframes heroSlideInRight {
        from {
            opacity: 0;
            transform: translateX(80px) rotate(10deg) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateX(0) rotate(10deg) scale(1);
        }
    }

    @keyframes heroPhoneCenter {
        from {
            opacity: 0;
            transform: scale(0.7) translateY(40px);
        }
        60% {
            opacity: 1;
            transform: scale(1.03) translateY(-5px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    @keyframes heroFadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes heroButtonPop {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(20px);
        }
        70% {
            opacity: 1;
            transform: scale(1.05) translateY(0);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    /* ===== Apply animations - sekwencyjne opóźnienia ===== */

    /* 1. Nagłówek "Wszystko w jednej aplikacji" - pojawia się PIERWSZY */
    .hero-headline-animate {
        animation: heroFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.1s;
        opacity: 0;
    }

    /* 2. Subtitle "Kontroluj proces wędzenia" - pojawia się DRUGI */
    .hero-subtitle-animate {
        animation: heroFadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.3s;
        opacity: 0;
    }

    /* 3. Środkowy telefon - pojawia się TRZECI z bounce */
    .hero-phone-center-animate {
        animation: heroPhoneCenter 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        animation-delay: 0.5s;
        opacity: 0;
    }

    /* 4. Boczne telefony - pojawiają się CZWARTE (równocześnie) */
    .hero-phone-left-animate {
        animation: heroSlideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.7s;
        opacity: 0;
    }

    .hero-phone-right-animate {
        animation: heroSlideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.7s;
        opacity: 0;
    }

    /* 5. Przyciski App Store/Google Play - pojawiają się PIĄTE z pop */
    .hero-buttons-animate {
        animation: heroButtonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        animation-delay: 1s;
        opacity: 0;
    }

    /* 6. "W pełni darmowa aplikacja" - pojawia się OSTATNIA */
    .hero-freeapp-animate {
        animation: heroFadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 1.2s;
        opacity: 0;
    }

    /* Social media icons - na końcu */
    .hero-social-animate {
        animation: heroFadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.9s;
        opacity: 0;
    }

    /* Stara klasa dla kompatybilności */
    .hero-text-animate {
        animation: heroFadeInUp 0.8s ease-out forwards;
        animation-delay: 0.2s;
        opacity: 0;
    }

    /* Shadow animation - pojawia się i rozszerza */
    @keyframes heroShadowExpand {
        from {
            opacity: 0;
            transform: scaleX(0.5) scaleY(0.7);
        }
        to {
            opacity: 0.65;
            transform: scaleX(1) scaleY(1);
        }
    }

    .hero-shadow-animate {
        animation: heroShadowExpand 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.8s;
        opacity: 0;
    }

    /* ===== Lepszy rendering obrazków telefonów ===== */
    .phone-screen-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-font-smoothing: subpixel-antialiased;
    }

    /* Dla ekranów Retina/HiDPI - lepsza jakość skalowania */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .phone-screen-img {
            image-rendering: auto;
            image-rendering: high-quality;
        }
    }

    /* ===== Tab Button Styles ===== */
    .tab-button {
        transition: all 0.3s ease;
        opacity: 0.7;
        cursor: pointer;
        border: none;
        outline: none;
    }

    .tab-button:hover {
        opacity: 1;
    }

    .tab-button.active {
        opacity: 1;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Ensure images in buttons don't grow */
    .tab-button img {
        flex-shrink: 0 !important;
        object-fit: contain !important;
    }

    /* ===== Tab View Transitions - Clean Fade ===== */
    .tab-views-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .tab-view {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: scale(0.96);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
        pointer-events: none;
        visibility: hidden;
    }

    .tab-view.active {
        position: relative;
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
        visibility: visible;
    }

    .tab-view.fade-out {
        opacity: 0;
        transform: scale(0.96);
    }

    .tab-view.fade-in {
        opacity: 1;
        transform: scale(1);
    }

    /* ===== Scroll Reveal Animations dla sekcji "Zaprojektowane" ===== */

    /* Elementy przed ujawnieniem */
    .scroll-reveal .reveal-title,
    .scroll-reveal .reveal-subtitle,
    .reveal-buttons,
    .reveal-content {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Stan po ujawnieniu */
    .scroll-reveal.revealed .reveal-title {
        opacity: 1;
        transform: translateY(0);
    }

    .scroll-reveal.revealed .reveal-subtitle {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.15s;
    }

    .reveal-buttons.revealed {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .reveal-content.revealed {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    /* Dodatkowe opóźnienia dla subtitle */
    .scroll-reveal.revealed .reveal-subtitle:nth-child(3) {
        transition-delay: 0.2s;
    }
    .scroll-reveal.revealed .reveal-subtitle:nth-child(4) {
        transition-delay: 0.25s;
    }

    /* ===== Progress bar na przełącznikach ===== */
    .btn-switcher {
        position: relative;
        overflow: hidden;
    }

    .btn-switcher::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 0%;
        background: linear-gradient(90deg, #942940, #b33a52);
        border-radius: 0 0 12px 12px;
    }

    .btn-switcher.tab-button.active::after {
        animation: progressBar 5s linear forwards;
    }

    @keyframes progressBar {
        from { width: 0%; }
        to { width: 100%; }
    }

    /* ===== Responsywne przyciski przełączników ===== */
    /* MOBILE: Duże przyciski rozłożone na szerokość */
    .btn-switcher {
        gap: 6px;
        padding: 8px 12px;
        border-radius: 20px;
        flex: 1;
        justify-content: center;
    }
    .btn-switcher-text {
        font-size: 14px;
        font-weight: 500;
        color: #000;
        font-family: 'dinpro-condensed', sans-serif;
        white-space: nowrap;
        transition: color 0.2s ease;
    }
    /* Ikony domyślnie czarno-białe (grayscale) */
    .btn-switcher img {
        filter: grayscale(100%);
        transition: filter 0.2s ease;
    }
    /* Aktywny przełącznik - ikona BC kolorowa (bez filtra) */
    .btn-switcher.tab-button.active .btn-switcher-icon-bc {
        filter: grayscale(0%);
    }
    /* Aktywny przełącznik - ikony dragon/hawkstill w kolorze browin (czarny -> #942940) */
    .btn-switcher.tab-button.active .btn-switcher-icon-dragon,
    .btn-switcher.tab-button.active .btn-switcher-icon-hawk {
        filter: invert(17%) sepia(50%) saturate(3000%) hue-rotate(325deg) brightness(95%);
    }
    .btn-switcher.tab-button.active .btn-switcher-text {
        color: #942940;
        font-weight: 700;
    }
    .btn-switcher-icon-bc {
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important;
        border-radius: 50%;
        flex-shrink: 0;
        object-fit: contain;
    }
    .btn-switcher-icon-dragon {
        width: 29px !important;
        height: 22px !important;
        max-width: 29px !important;
        max-height: 22px !important;
        flex-shrink: 0;
        object-fit: contain;
    }
    .btn-switcher-icon-hawk {
        width: 35px !important;
        height: 22px !important;
        max-width: 35px !important;
        max-height: 22px !important;
        flex-shrink: 0;
        object-fit: contain;
    }

    /* sm (576px) */
    @media (min-width: 576px) {
        .btn-switcher {
            gap: 8px;
            padding: 10px 16px;
            border-radius: 24px;
        }
        .btn-switcher-text { font-size: 16px; }
        .btn-switcher-icon-bc { width: 26px !important; height: 26px !important; max-width: 26px !important; max-height: 26px !important; border-radius: 50%; }
        .btn-switcher-icon-dragon { width: 33px !important; height: 26px !important; max-width: 33px !important; max-height: 26px !important; }
        .btn-switcher-icon-hawk { width: 40px !important; height: 26px !important; max-width: 40px !important; max-height: 26px !important; }
    }

    /* md (768px) */
    @media (min-width: 768px) {
        .btn-switcher {
            gap: 8px;
            padding: 10px 18px;
            border-radius: 26px;
        }
        .btn-switcher-text { font-size: 16px; }
        .btn-switcher-icon-bc { width: 28px !important; height: 28px !important; max-width: 28px !important; max-height: 28px !important; border-radius: 50%; }
        .btn-switcher-icon-dragon { width: 36px !important; height: 28px !important; max-width: 36px !important; max-height: 28px !important; }
        .btn-switcher-icon-hawk { width: 44px !important; height: 28px !important; max-width: 44px !important; max-height: 28px !important; }
    }

    /* lg (992px) - Desktop: wyłącz flex:1, mniejsze przyciski */
    @media (min-width: 992px) {
        .btn-switcher {
            flex: none;
            gap: 4px;
            padding: 4px 8px;
            border-radius: 20px;
        }
        .btn-switcher-text { font-size: 11px; }
        .btn-switcher-icon-bc { width: 18px !important; height: 18px !important; max-width: 18px !important; max-height: 18px !important; border-radius: 50%; }
        .btn-switcher-icon-dragon { width: 23px !important; height: 18px !important; max-width: 23px !important; max-height: 18px !important; }
        .btn-switcher-icon-hawk { width: 28px !important; height: 18px !important; max-width: 28px !important; max-height: 18px !important; }
    }

    /* xl (1200px) - zmniejszone przyciski */
    @media (min-width: 1200px) {
        .btn-switcher {
            gap: 4px;
            padding: 4px 8px;
            border-radius: 20px;
        }
        .btn-switcher-text { font-size: 12px; }
        .btn-switcher-icon-bc { width: 20px !important; height: 20px !important; max-width: 20px !important; max-height: 20px !important; border-radius: 50%; }
        .btn-switcher-icon-dragon { width: 26px !important; height: 20px !important; max-width: 26px !important; max-height: 20px !important; }
        .btn-switcher-icon-hawk { width: 32px !important; height: 20px !important; max-width: 32px !important; max-height: 20px !important; }
    }

    /* xxl (1400px) */
    @media (min-width: 1400px) {
        .btn-switcher {
            gap: 6px;
            padding: 6px 12px;
            border-radius: 28px;
        }
        .btn-switcher-text { font-size: 16px; }
        .btn-switcher-icon-bc { width: 28px !important; height: 28px !important; max-width: 28px !important; max-height: 28px !important; border-radius: 50%; }
        .btn-switcher-icon-dragon { width: 36px !important; height: 28px !important; max-width: 36px !important; max-height: 28px !important; }
        .btn-switcher-icon-hawk { width: 44px !important; height: 28px !important; max-width: 44px !important; max-height: 28px !important; }
    }

    /* xxxl (1600px) */
    @media (min-width: 1600px) {
        .btn-switcher {
            gap: 8px;
            padding: 8px 16px;
            border-radius: 32px;
        }
        .btn-switcher-text { font-size: 20px; }
        .btn-switcher-icon-bc { width: 36px !important; height: 36px !important; max-width: 36px !important; max-height: 36px !important; border-radius: 50%; }
        .btn-switcher-icon-dragon { width: 47px !important; height: 36px !important; max-width: 47px !important; max-height: 36px !important; }
        .btn-switcher-icon-hawk { width: 57px !important; height: 36px !important; max-width: 57px !important; max-height: 36px !important; }
    }

    /* ===== Layout telefonu z panelami bocznymi ===== */
    .phone-layout {
        display: flex !important;
        justify-content: center;
        align-items: flex-start;
        width: 100% !important;
        height: auto; /* auto żeby wysokość była określona przez telefon, nie całą sekcję */
        padding-top: 0;
    }

    /* ===== Responsywne telefony w sekcji "Zaprojektowane z myślą o Tobie" ===== */
    /* Telefon - zmniejszone rozmiary żeby się mieściły */
    .phone-container {
        max-height: calc(32vh - 20px);
        flex-shrink: 0;
    }
    .phone-size {
        height: calc(32vh);
        max-height: 220px;
        width: auto;
        aspect-ratio: 167.791 / 338.361;
    }
    .phone-shadow-size {
        width: calc(32vh - 20px);
        max-width: 220px;
        margin-top: 2px;
    }
    /* Cień pod telefonem - w pełni responsywny (translateY w % skaluje się z rozmiarem cienia) */
    .inteligent-phone-shadow {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 100%;
        /* translateY(-50%) przesuwa cień w górę o 50% jego własnej wysokości - uniwersalne dla wszystkich rozmiarów */
        transform: translateX(-50%) translateY(-50%) scaleX(1.4);
    }
    .inteligent-phone-shadow img {
        width: 100%;
        height: auto;
        opacity: 0.35;
    }
    .phone-screen-radius {
        border-radius: 8px;
    }

    /* sm (576px) */
    @media (min-width: 576px) {
        .phone-layout { gap: 0; }
        .phone-size {
            height: calc(34vh);
            max-height: 240px;
        }
        .phone-shadow-size {
            width: calc(38vh - 35px);
            max-width: 260px;
        }
        .phone-screen-radius { border-radius: 10px; }
    }

    /* md (768px) */
    @media (min-width: 768px) {
        .phone-layout { gap: 0; }
        .phone-size {
            height: calc(36vh);
            max-height: 260px;
        }
        .phone-shadow-size {
            width: calc(40vh - 30px);
            max-width: 280px;
        }
        .phone-screen-radius { border-radius: 12px; }
    }

    /* lg (992px) */
    @media (min-width: 992px) {
        .phone-size {
            height: calc(38vh);
            max-height: 280px;
        }
        .phone-shadow-size {
            width: calc(42vh - 25px);
            max-width: 300px;
        }
        .phone-screen-radius { border-radius: 14px; }
    }

    /* xl (1200px) */
    @media (min-width: 1200px) {
        .phone-size {
            height: calc(42vh);
            max-height: 320px;
        }
        .phone-shadow-size {
            width: calc(46vh - 20px);
            max-width: 340px;
        }
        .phone-screen-radius { border-radius: 16px; }
    }

    /* xxl (1400px) */
    @media (min-width: 1400px) {
        .phone-size {
            height: calc(48vh);
            max-height: 400px;
        }
        .phone-shadow-size {
            width: calc(50vh - 10px);
            max-width: 420px;
        }
        .phone-screen-radius { border-radius: 18px; }
    }

    /* xxxl (1600px) */
    @media (min-width: 1600px) {
        .phone-size {
            height: calc(52vh);
            max-height: 460px;
        }
        .phone-shadow-size {
            width: calc(54vh);
            max-width: 480px;
        }
        .phone-screen-radius { border-radius: 20px; }
    }

    /* ===== Panele boczne - responsywne, proporcjonalne do telefonu ===== */
    .side-panel {
        display: none;
        flex-direction: column;
        flex: 1; /* Zajmuje dostępną przestrzeń */
        padding-top: 0; /* Bez padding-top żeby ikonki były wyrównane do góry telefonu */
    }
    .side-panel-left {
        text-align: right;
        padding-right: 16px; /* Odstęp od telefonu */
    }
    .side-panel-right {
        text-align: left;
        padding-left: 16px; /* Odstęp od telefonu */
    }
    .side-panel-item {
        margin-bottom: 12px;
    }
    .side-panel-item:last-child {
        margin-bottom: 0;
    }
    /* Dolne elementy w panelach - STAŁA wysokość żeby ikonki były wyrównane */
    .side-panel-item-bottom {
        height: 60px;
        display: flex !important;
        flex-direction: column !important;
        overflow: visible;
    }
    .side-panel-item-bottom .side-panel-desc {
        flex: 1;
        overflow: visible;
    }

    /* Responsywne stałe wysokości dla różnych ekranów - proporcjonalne do telefonu */
    @media (min-width: 576px) {
        .side-panel-item-bottom { height: 65px; }
    }
    @media (min-width: 768px) {
        .side-panel-item-bottom { height: 70px; }
    }
    @media (min-width: 992px) {
        .side-panel-item-bottom { height: 80px; }
    }
    @media (min-width: 1200px) {
        .side-panel-item-bottom { height: 95px; }
    }
    @media (min-width: 1400px) {
        .side-panel-item-bottom { height: 115px; }
    }
    @media (min-width: 1600px) {
        .side-panel-item-bottom { height: 130px; }
    }
    .side-panel-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }
    .side-panel-icon svg,
    .side-panel-icon img {
        width: 60% !important;
        height: auto !important;
        max-width: 60% !important;
        object-fit: contain;
    }
    /* Zmiana koloru ikon logo na browin (#942940) tylko w panelach bocznych */
    .side-panel-icon img[src*="logo_dragon"],
    .side-panel-icon img[src*="logo_hawkstill"] {
        filter: invert(17%) sepia(50%) saturate(3000%) hue-rotate(325deg) brightness(95%);
    }
    .side-panel-title {
        font-size: 14px;
    }
    .side-panel-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    /* lg (992px) - panele się pokazują - zmniejszone żeby się mieściło */
    @media (min-width: 992px) {
        .side-panel {
            display: flex;
            padding-top: 0; /* Bez padding - wyrównanie do góry telefonu */
        }
        .side-panel-left {
            padding-right: 12px;
        }
        .side-panel-left .side-panel-item {
            width: fit-content !important;
            margin-left: auto !important;
        }
        .side-panel-right {
            padding-left: 12px;
        }
        .side-panel-right .side-panel-item {
            width: fit-content !important;
            margin-right: auto !important;
        }
        .side-panel-item {
            margin-bottom: 10px;
        }
        .side-panel-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            min-height: 32px;
        }
        .side-panel-title {
            font-size: 13px;
        }
        .side-panel-desc {
            font-size: 10px;
        }
    }

    /* xl (1200px) */
    @media (min-width: 1200px) {
        .side-panel {
            padding-top: 0;
        }
        .side-panel-left { padding-right: 16px; }
        .side-panel-right { padding-left: 16px; }
        .side-panel-item {
            margin-bottom: 14px;
        }
        .side-panel-icon {
            width: 38px;
            height: 38px;
            min-width: 38px;
            min-height: 38px;
        }
        .side-panel-title {
            font-size: 16px;
        }
        .side-panel-desc {
            font-size: 12px;
        }
    }

    /* xxl (1400px) */
    @media (min-width: 1400px) {
        .side-panel {
            padding-top: 0;
        }
        .side-panel-left { padding-right: 20px; }
        .side-panel-right { padding-left: 20px; }
        .side-panel-item {
            margin-bottom: 18px;
        }
        .side-panel-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
        }
        .side-panel-title {
            font-size: 20px;
        }
        .side-panel-desc {
            font-size: 14px;
        }
    }

    /* xxxl (1600px) */
    @media (min-width: 1600px) {
        .side-panel {
            padding-top: 0;
        }
        .side-panel-left { padding-right: 24px; }
        .side-panel-right { padding-left: 24px; }
        .side-panel-item {
            margin-bottom: 22px;
        }
        .side-panel-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            min-height: 52px;
        }
        .side-panel-title {
            font-size: 24px;
        }
        .side-panel-desc {
            font-size: 17px;
        }
    }

    /* ===== SEKCJA dragON - Style ===== */

    /* Produkty dragON - używamy vh dla skalowania z wysokością ekranu */
    .dragon-product-card {
        transition: transform 0.3s ease;
    }
    .dragon-product-card:hover {
        transform: translateY(-5px);
    }

    /* ===== MOBILE STYLES dla produktów Dragon (< 992px) ===== */
    /* Bazowe style - MOBILE FIRST */
    .dragon-product-img-wrapper {
        width: 280px;
        height: 280px;
        max-width: calc(100vw - 64px); /* Dopasuj do szerokości ekranu z paddingiem */
    }
    .dragon-product-img {
        transition: transform 0.3s ease;
    }
    .dragon-product-card:hover .dragon-product-img {
        transform: scale(1.05);
    }
    .dragon-product-text {
        font-size: 18px;
        line-height: 23px;
        max-width: 280px;
        text-align: center;
    }

    /* sm (576px) - nieco większe na większych telefonach */
    @media (min-width: 576px) {
        .dragon-product-img-wrapper {
            width: 300px;
            height: 300px;
        }
        .dragon-product-text {
            font-size: 20px;
            line-height: 25px;
            max-width: 300px;
        }
    }

    /* ===== DESKTOP STYLES dla produktów Dragon (>= 992px) ===== */
    @media (min-width: 992px) {
        .dragon-product-img-wrapper {
            width: calc(28vh - 20px);
            height: calc(28vh - 20px);
            min-width: 80px;
            min-height: 80px;
            max-width: 300px;
            max-height: 300px;
        }
        .dragon-product-text {
            font-size: calc(9px + 0.6vh);
            line-height: 1.35;
            max-width: calc(28vh);
            min-width: 150px;
            text-align: center;
        }
    }
    @media (min-width: 1200px) {
        .dragon-product-img-wrapper {
            width: calc(32vh - 20px);
            height: calc(32vh - 20px);
        }
        .dragon-product-text {
            font-size: calc(10px + 0.8vh);
            max-width: calc(32vh + 20px);
            min-width: 200px;
        }
    }
    @media (min-width: 1400px) {
        .dragon-product-img-wrapper {
            width: calc(34vh - 20px);
            height: calc(34vh - 20px);
        }
        .dragon-product-text {
            font-size: calc(11px + 0.9vh);
            max-width: calc(34vh + 30px);
            min-width: 240px;
        }
    }
    @media (min-width: 1600px) {
        .dragon-product-img-wrapper {
            width: calc(36vh - 20px);
            height: calc(36vh - 20px);
        }
        .dragon-product-text {
            font-size: calc(12px + 1vh);
            max-width: calc(36vh + 40px);
            min-width: 280px;
        }
    }

    /* ===== SEKCJA hawkSTILL - Style (większe produkty - tylko 2 zamiast 3) ===== */

    .hawkstill-product-card {
        transition: transform 0.3s ease;
    }
    .hawkstill-product-card:hover {
        transform: translateY(-5px);
    }
    .hawkstill-product-img-wrapper {
        /* Większe rozmiary - tylko 2 produkty */
        width: calc(25vh - 20px);
        height: calc(25vh - 20px);
        min-width: 100px;
        min-height: 100px;
        max-width: 350px;
        max-height: 350px;
    }
    .hawkstill-product-img {
        transition: transform 0.3s ease;
    }
    .hawkstill-product-card:hover .hawkstill-product-img {
        transform: scale(1.05);
    }
    .hawkstill-product-text {
        font-size: calc(7px + 0.5vh);
        max-width: calc(25vh);
        min-width: 110px;
        line-height: 1.35;
    }

    @media (min-width: 576px) {
        .hawkstill-product-img-wrapper {
            width: calc(28vh - 20px);
            height: calc(28vh - 20px);
        }
        .hawkstill-product-text {
            font-size: calc(8px + 0.5vh);
            max-width: calc(28vh);
            min-width: 120px;
        }
    }
    @media (min-width: 768px) {
        .hawkstill-product-img-wrapper {
            width: calc(30vh - 20px);
            height: calc(30vh - 20px);
        }
        .hawkstill-product-text {
            font-size: calc(9px + 0.5vh);
            max-width: calc(30vh);
            min-width: 140px;
        }
    }
    @media (min-width: 992px) {
        .hawkstill-product-img-wrapper {
            width: calc(34vh - 20px);
            height: calc(34vh - 20px);
        }
        .hawkstill-product-text {
            font-size: calc(10px + 0.6vh);
            max-width: calc(34vh + 20px);
            min-width: 180px;
        }
    }
    @media (min-width: 1200px) {
        .hawkstill-product-img-wrapper {
            width: calc(38vh - 20px);
            height: calc(38vh - 20px);
        }
        .hawkstill-product-text {
            font-size: calc(11px + 0.8vh);
            max-width: calc(38vh + 40px);
            min-width: 240px;
        }
    }
    @media (min-width: 1400px) {
        .hawkstill-product-img-wrapper {
            width: calc(42vh - 20px);
            height: calc(42vh - 20px);
        }
        .hawkstill-product-text {
            font-size: calc(12px + 0.9vh);
            max-width: calc(42vh + 50px);
            min-width: 280px;
        }
    }
    @media (min-width: 1600px) {
        .hawkstill-product-img-wrapper {
            width: calc(44vh - 20px);
            height: calc(44vh - 20px);
        }
        .hawkstill-product-text {
            font-size: calc(13px + 1vh);
            max-width: calc(44vh + 60px);
            min-width: 320px;
        }
    }

    /* ===== Karuzela telefonów dragON ===== */

    /* Strzałki nawigacji - UKRYTE na mobile, widoczne na desktop */
    .dragon-carousel-arrow {
        display: none; /* Domyślnie ukryte (mobile) */
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
    }
    /* Pokaż strzałki na desktop (>= 992px) */
    @media (min-width: 992px) {
        .dragon-carousel-arrow {
            display: flex;
        }
    }
    .dragon-carousel-arrow:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.08);
    }
    .dragon-carousel-arrow:active {
        transform: scale(0.95);
    }
    @media (min-width: 1200px) {
        .dragon-carousel-arrow {
            width: 56px;
            height: 56px;
        }
        .dragon-carousel-arrow svg {
            width: 28px;
            height: 28px;
        }
    }
    @media (min-width: 1400px) {
        .dragon-carousel-arrow {
            width: 64px;
            height: 64px;
        }
        .dragon-carousel-arrow svg {
            width: 32px;
            height: 32px;
        }
    }

    /* Viewport karuzeli - 100% szerokości, overflow hidden */
    .dragon-carousel-viewport {
        width: 100%;
        overflow: hidden;
    }

    /* Track karuzeli */
    .dragon-carousel-track {
        display: flex;
        align-items: center;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    .dragon-carousel-track.no-transition {
        transition: none;
    }

    /* Telefony - MOBILE: 50% (2 telefony widoczne), DESKTOP: 25% (4 telefony widoczne) */
    .dragon-phone-item {
        flex: 0 0 50%;
        width: 50%;
        display: flex;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.3s ease;
        padding: 0 8px;
    }
    .dragon-phone-item:hover {
        transform: scale(1.02);
    }
    /* Desktop: 4 telefony widoczne */
    @media (min-width: 992px) {
        .dragon-phone-item {
            flex: 0 0 25%;
            width: 25%;
            padding: 0;
        }
    }

    /* Kontener telefonu - BARDZO DUŻE na mobile (względem szerokości ekranu) */
    .dragon-phone-size-vh {
        width: calc(46vw - 12px); /* ~46% szerokości ekranu */
        max-width: 220px;
        height: auto;
        aspect-ratio: 167.791 / 338.361;
    }
    /* Większe telefony na średnich ekranach */
    @media (min-width: 500px) {
        .dragon-phone-size-vh {
            width: calc(44vw - 12px);
            max-width: 260px;
        }
    }
    /* Tablety */
    @media (min-width: 768px) {
        .dragon-phone-size-vh {
            width: calc(40vw - 16px);
            max-width: 300px;
        }
    }
    /* Desktop - powrót do proporcjonalnych */
    @media (min-width: 992px) {
        .dragon-phone-size-vh {
            width: 85%;
            max-width: none;
        }
    }

    .dragon-phone-screen-radius {
        border-radius: 12px;
    }
    @media (min-width: 768px) {
        .dragon-phone-screen-radius { border-radius: 14px; }
    }
    @media (min-width: 1200px) {
        .dragon-phone-screen-radius { border-radius: 16px; }
    }

    /* Ukryj przed inicjalizacją */
    .dragon-carousel-viewport:not(.initialized) {
        visibility: hidden;
    }
    .dragon-carousel-viewport.initialized {
        visibility: visible;
    }

    /* ===== Przycisk KUP - animacja hover ===== */
    .cta-buy-button {
        transform: translateY(0);
    }
    .cta-buy-button:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 16px rgba(0,0,0,0.3) !important;
    }
    .cta-buy-button:active {
        transform: translateY(-2px);
        box-shadow: 0px 4px 8px rgba(0,0,0,0.25) !important;
    }

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

        .hero-phone-center-animate,
        .hero-phone-left-animate,
        .hero-phone-right-animate,
        .hero-headline-animate,
        .hero-subtitle-animate,
        .hero-buttons-animate,
        .hero-freeapp-animate,
        .hero-social-animate,
        .hero-shadow-animate,
        .hero-text-animate {
            animation: none !important;
            opacity: 1 !important;
        }

        .hero-phone-left-animate,
        .hero-phone-right-animate {
            transform: rotate(-10deg) !important;
        }

        .hero-phone-right-animate {
            transform: rotate(10deg) !important;
        }

        .tab-view {
            transition: none !important;
        }

        .scroll-reveal .reveal-title,
        .scroll-reveal .reveal-subtitle,
        .reveal-buttons,
        .reveal-content {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }

        .btn-switcher::after {
            animation: none !important;
        }

        .dragon-carousel-track {
            transition: none !important;
        }

        .dragon-product-card:hover,
        .hawkstill-product-card:hover,
        .cta-buy-button:hover {
            transform: none !important;
        }
    }
