* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #111;
}

h1 {
    font-size: clamp(46px, 5.5vw, 76px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #05070d;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.02em;
}

    .btn-primary:hover {
        background: #e8e8e8;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(211,47,47,0.4);
    }

    .btn-primary .arrow-circle {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255,255,255,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }

.gjs-row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 10px;
}

.gjs-cell {
    min-height: 75px;
    flex-grow: 1;
    flex-basis: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #e50914;
    --red-dark: #B71C1C;
    --red-glow: rgba(211,47,47,0.18);
    --black: #0A0A0A;
    --surface: #111111;
    --surface-2: #1A1A1A;
    --border: rgba(255,255,255,0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: rgba(255,255,255,0.72);
    --light-bg: #F5F5F7;
    --light-text: #1D1D1F;
    --font: 'Inter', system-ui, sans-serif;
    --dark: #05070d;
    --dark-2: #0b1020;
    --card: rgba(255,255,255,0.06);
    --card-border: rgba(255,255,255,0.12);
    --blue: #2f7cff;
    --white: #ffffff;
    --max-width: 1240px;
}

html {
    scroll-behavior: smooth;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

    .nav-links a:hover {
        color: #fff;
    }

h1 em {
    font-style: normal;
    color: var(--red);
}

.product-img-wrap img {
    width: 260px;
    height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(211,47,47,0.2));
}

.mag-badge-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.mag-badge-text span {
    font-size: 11px;
    color: var(--text-muted);
}

.feature-card:hover::before {
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.use-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.use-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -4px;
    top: 20px;
    color: var(--red);
    font-size: 20px;
}

.specs .section-label {
    color: var(--red);
}

.specs .section-title {
    color: var(--light-text);
}

.specs .section-sub {
    color: #555;
}

.cta-section {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(229,9,20,0.78), rgba(47,124,255,0.55)), url("https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(211,47,47,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .cta-section h2 {
        font-size: clamp(36px, 4.5vw, 60px);
        font-weight: 900;
        letter-spacing: -0.03em;
        line-height: 1.08;
        margin-bottom: 20px;
    }

    .cta-section p {
        color: var(--text-secondary);
        font-size: 17px;
        line-height: 1.65;
        max-width: 500px;
        margin: 0 auto 44px;
    }

footer {
    border-top: 1px solid var(--border);
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-links a:hover {
        color: #ffffff;
    }

.proice-slide-content h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}

.proice-slide-content p {
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.6;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
}

.single-product-slider input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.single-product-content h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 900;
    color: #ffffff;
}

.single-product-content p {
    margin: 10px 0 0;
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 600;
    color: #ffffff;
}

.single-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.75));
    animation: productFloat 4s ease-in-out infinite;
}

#img-slide-1:checked ~ .single-product-window .single-product-track {
    transform: translateX(0%);
}

#img-slide-2:checked ~ .single-product-window .single-product-track {
    transform: translateX(-33.3333%);
}

#img-slide-3:checked ~ .single-product-window .single-product-track {
    transform: translateX(-66.6666%);
}

#img-slide-1:checked ~ .single-product-arrows .arrow-set-1, #img-slide-2:checked ~ .single-product-arrows .arrow-set-2, #img-slide-3:checked ~ .single-product-arrows .arrow-set-3 {
    display: flex;
}

.single-product-dots label {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

#img-slide-1:checked ~ .single-product-dots label:nth-child(1), #img-slide-2:checked ~ .single-product-dots label:nth-child(2), #img-slide-3:checked ~ .single-product-dots label:nth-child(3) {
    width: 36px;
    background: #ffffff;
}

.proice-banner-slider > span {
    position: absolute;
    visibility: hidden;
}

.proice-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.proice-slide-content h2 {
    font-size: clamp(32px, 4vw, 68px);
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 800;
}

#banner-1:target ~ .proice-arrow-default, #banner-2:target ~ .proice-arrow-default, #banner-3:target ~ .proice-arrow-default, #banner-4:target ~ .proice-arrow-default {
    display: none;
}

#banner-1:target ~ .proice-arrow-1 {
    display: block;
}

#banner-2:target ~ .proice-arrow-2 {
    display: block;
}

#banner-3:target ~ .proice-arrow-3 {
    display: block;
}

#banner-4:target ~ .proice-arrow-4 {
    display: block;
}

#banner-1:target ~ .proice-slider-window .proice-slider-track {
    animation: none;
    transform: translateX(0);
}

#banner-2:target ~ .proice-slider-window .proice-slider-track {
    animation: none;
    transform: translateX(-25%);
}

#banner-3:target ~ .proice-slider-window .proice-slider-track {
    animation: none;
    transform: translateX(-50%);
}

#banner-4:target ~ .proice-slider-window .proice-slider-track {
    animation: none;
    transform: translateX(-75%);
}

.pi4-slider {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative !important;
    overflow: hidden !important;
    background: #000;
    box-sizing: border-box;
}

.pi4-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.pi4-content span {
    display: inline-block;
    color: #ff2b2b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pi4-content h2 {
    font-size: clamp(32px, 4vw, 68px);
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 800;
}

.pi4-content p {
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.6;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
}

.pi4-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: #ffffff !important;
    font-size: 30px !important;
    line-height: 52px !important;
    text-align: center !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    user-select: none !important;
    display: block !important;
}

    .pi4-arrow:hover {
        background: rgba(230, 0, 18, 0.95) !important;
    }

.pi4-prev {
    left: 25px !important;
}

.pi4-next {
    right: 25px !important;
}

.pi4-slider input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#pi4-slide-1:checked ~ .pi4-window .pi4-track {
    animation: none;
    transform: translate3d(0, 0, 0);
}

#pi4-slide-2:checked ~ .pi4-window .pi4-track {
    animation: none;
    transform: translate3d(-100%, 0, 0);
}

#pi4-slide-3:checked ~ .pi4-window .pi4-track {
    animation: none;
    transform: translate3d(-200%, 0, 0);
}

#pi4-slide-4:checked ~ .pi4-window .pi4-track {
    animation: none;
    transform: translate3d(-300%, 0, 0);
}

.pi4-arrow-set {
    display: none;
    position: static;
    z-index: 9999;
}

#pi4-auto:checked ~ .pi4-arrow-auto {
    display: block;
}

#pi4-slide-1:checked ~ .pi4-arrow-1 {
    display: block !important;
}

#pi4-slide-2:checked ~ .pi4-arrow-2 {
    display: block !important;
}

#pi4-slide-3:checked ~ .pi4-arrow-3 {
    display: block !important;
}

#pi4-slide-4:checked ~ .pi4-arrow-4 {
    display: block !important;
}

.pi4-arrow-auto {
    display: block !important;
}

#pi4-slide-1:checked ~ .pi4-arrow-auto, #pi4-slide-2:checked ~ .pi4-arrow-auto, #pi4-slide-3:checked ~ .pi4-arrow-auto, #pi4-slide-4:checked ~ .pi4-arrow-auto {
    display: none !important;
}

.proice-hero-slider, .proice-hero-slider * {
    box-sizing: border-box;
}

    .proice-hero-slider input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.proice-slide-content span {
    display: inline-block;
    color: #ff2b2b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#proice-slide-1:checked ~ .proice-slider-window .proice-slider-track {
    animation: none;
    margin-left: 0;
}

#proice-slide-2:checked ~ .proice-slider-window .proice-slider-track {
    animation: none;
    margin-left: -100%;
}

#proice-slide-3:checked ~ .proice-slider-window .proice-slider-track {
    animation: none;
    margin-left: -200%;
}

#proice-slide-4:checked ~ .proice-slider-window .proice-slider-track {
    animation: none;
    margin-left: -300%;
}

#proice-slide-1:checked ~ .proice-arrow-auto, #proice-slide-2:checked ~ .proice-arrow-auto, #proice-slide-3:checked ~ .proice-arrow-auto, #proice-slide-4:checked ~ .proice-arrow-auto {
    display: none !important;
}

#proice-slide-1:checked ~ .proice-arrow-1 {
    display: block !important;
}

#proice-slide-2:checked ~ .proice-arrow-2 {
    display: block !important;
}

#proice-slide-3:checked ~ .proice-arrow-3 {
    display: block !important;
}

#proice-slide-4:checked ~ .proice-arrow-4 {
    display: block !important;
}

.proice-target-slider, .proice-target-slider * {
    box-sizing: border-box;
}

    .proice-target-slider > span {
        position: absolute;
        top: 0;
        left: 0;
        visibility: hidden;
    }

.proice-target-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.proice-target-content span {
    display: inline-block;
    color: #ff2b2b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.proice-target-content h2 {
    font-size: clamp(32px, 4vw, 68px);
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 800;
}

.proice-target-content p {
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.6;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
}

#proice-banner-1:target ~ .proice-target-window .proice-target-track {
    animation: none;
    margin-left: 0;
}

#proice-banner-2:target ~ .proice-target-window .proice-target-track {
    animation: none;
    margin-left: -100%;
}

#proice-banner-3:target ~ .proice-target-window .proice-target-track {
    animation: none;
    margin-left: -200%;
}

#proice-banner-4:target ~ .proice-target-window .proice-target-track {
    animation: none;
    margin-left: -300%;
}

#proice-banner-1:target ~ .proice-arrows-default, #proice-banner-2:target ~ .proice-arrows-default, #proice-banner-3:target ~ .proice-arrows-default, #proice-banner-4:target ~ .proice-arrows-default {
    display: none;
}

#proice-banner-1:target ~ .proice-arrows-1 {
    display: block;
}

#proice-banner-2:target ~ .proice-arrows-2 {
    display: block;
}

#proice-banner-3:target ~ .proice-arrows-3 {
    display: block;
}

#proice-banner-4:target ~ .proice-arrows-4 {
    display: block;
}

.proice-css-slider, .proice-css-slider * {
    box-sizing: border-box;
}

    .proice-css-slider input[type="radio"] {
        position: absolute !important;
        opacity: 0 !important;
        width: 1px !important;
        height: 1px !important;
        left: -9999px !important;
    }

.pcs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.pcs-content span {
    display: inline-block;
    color: #ff2b2b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pcs-content h2 {
    font-size: clamp(32px, 4vw, 68px);
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 800;
}

.pcs-content p {
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.6;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
}

#pcs-slide-1:checked ~ .pcs-window .pcs-track {
    animation: none;
    transform: translateX(0);
}

#pcs-slide-2:checked ~ .pcs-window .pcs-track {
    animation: none;
    transform: translateX(-25%);
}

#pcs-slide-3:checked ~ .pcs-window .pcs-track {
    animation: none;
    transform: translateX(-50%);
}

#pcs-slide-4:checked ~ .pcs-window .pcs-track {
    animation: none;
    transform: translateX(-75%);
}

#pcs-slide-1:checked ~ .pcs-arrows-1 {
    display: block !important;
}

#pcs-slide-2:checked ~ .pcs-arrows-2 {
    display: block !important;
}

#pcs-slide-3:checked ~ .pcs-arrows-3 {
    display: block !important;
}

#pcs-slide-4:checked ~ .pcs-arrows-4 {
    display: block !important;
}

#pcs-auto:checked ~ .pcs-arrows-auto {
    display: block !important;
}

#pcs-auto:checked ~ .pcs-auto-1 {
    animation: pcsArrowOne 20s infinite;
}

#pcs-auto:checked ~ .pcs-auto-2 {
    animation: pcsArrowTwo 20s infinite;
}

#pcs-auto:checked ~ .pcs-auto-3 {
    animation: pcsArrowThree 20s infinite;
}

#pcs-auto:checked ~ .pcs-auto-4 {
    animation: pcsArrowFour 20s infinite;
}

#pcs-slide-1:checked ~ .pcs-manual-1, #pcs-slide-2:checked ~ .pcs-manual-2, #pcs-slide-3:checked ~ .pcs-manual-3, #pcs-slide-4:checked ~ .pcs-manual-4 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pfade-slider, .pfade-slider * {
    box-sizing: border-box;
}

    .pfade-slider input[type="radio"] {
        position: absolute !important;
        opacity: 0 !important;
        width: 1px !important;
        height: 1px !important;
        left: -9999px !important;
    }

.pfade-slide img {
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pfade-content span {
    display: inline-block;
    color: #ff2b2b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pfade-content h2 {
    font-size: clamp(32px, 4vw, 68px);
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 800;
}

.pfade-content p {
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.6;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
}

#pfade-slide-1:checked ~ .pfade-window .pfade-slide, #pfade-slide-2:checked ~ .pfade-window .pfade-slide, #pfade-slide-3:checked ~ .pfade-window .pfade-slide, #pfade-slide-4:checked ~ .pfade-window .pfade-slide {
    animation: none;
    opacity: 0;
}

#pfade-slide-1:checked ~ .pfade-window .pfade-s1 {
    opacity: 1;
}

#pfade-slide-2:checked ~ .pfade-window .pfade-s2 {
    opacity: 1;
}

#pfade-slide-3:checked ~ .pfade-window .pfade-s3 {
    opacity: 1;
}

#pfade-slide-4:checked ~ .pfade-window .pfade-s4 {
    opacity: 1;
}

#pfade-auto:checked ~ .pfade-auto-arrows {
    display: block !important;
}

#pfade-slide-1:checked ~ .pfade-arrows-1 {
    display: block !important;
}

#pfade-slide-2:checked ~ .pfade-arrows-2 {
    display: block !important;
}

#pfade-slide-3:checked ~ .pfade-arrows-3 {
    display: block !important;
}

#pfade-slide-4:checked ~ .pfade-arrows-4 {
    display: block !important;
}

.proice-category-card h3 {
    margin: 0 0 10px 0;
    font-size: clamp(28px, 2.6vw, 46px);
    line-height: 1.05;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.8px;
    color: #ffffff;
    font-family: "Arial Narrow", Impact, Arial, sans-serif;
    text-align: center;
}

.proice-card-link span {
    transition: transform 0.3s ease;
}

.proice-category-card:hover .proice-card-link span {
    transform: translateX(5px);
}

html, body {
    margin: 0;
    padding: 0;
}

.pfade-slider > span {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#pfade-target-1:target ~ .pfade-window .pfade-slide, #pfade-target-2:target ~ .pfade-window .pfade-slide, #pfade-target-3:target ~ .pfade-window .pfade-slide, #pfade-target-4:target ~ .pfade-window .pfade-slide {
    animation: none !important;
    opacity: 0 !important;
}

#pfade-target-1:target ~ .pfade-window .pfade-s1 {
    opacity: 1 !important;
}

#pfade-target-2:target ~ .pfade-window .pfade-s2 {
    opacity: 1 !important;
}

#pfade-target-3:target ~ .pfade-window .pfade-s3 {
    opacity: 1 !important;
}

#pfade-target-4:target ~ .pfade-window .pfade-s4 {
    opacity: 1 !important;
}

#pfade-target-1:target ~ .pfade-auto-arrows, #pfade-target-2:target ~ .pfade-auto-arrows, #pfade-target-3:target ~ .pfade-auto-arrows, #pfade-target-4:target ~ .pfade-auto-arrows {
    display: none !important;
}

#pfade-target-1:target ~ .pfade-arrows-1 {
    display: block !important;
}

#pfade-target-2:target ~ .pfade-arrows-2 {
    display: block !important;
}

#pfade-target-3:target ~ .pfade-arrows-3 {
    display: block !important;
}

#pfade-target-4:target ~ .pfade-arrows-4 {
    display: block !important;
}

.proice-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    transition: transform 0.45s ease;
}

.proice-category-card:hover .proice-card-image img {
    transform: scale(1.04);
}

.proice-card-bg img {
    width: 100%;
    height: 100%;
    undefined: undefined;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.45s ease;
}

.proice-category-card:hover .proice-card-bg img {
    transform: scale(1.06);
}

.proice-road-title em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
}

.proice-road-desc p {
    margin: 0;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.proice-reveal-line > span {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: proiceTextReveal 1s ease forwards;
}

.proice-road-title .proice-reveal-line:nth-child(1) > span {
    animation-delay: 0.1s;
}

.proice-road-title .proice-reveal-line:nth-child(2) > span {
    animation-delay: 0.25s;
}

.proice-road-desc .proice-reveal-line:nth-child(1) > span {
    animation-delay: 0.45s;
}

.proice-road-desc .proice-reveal-line:nth-child(2) > span {
    animation-delay: 0.6s;
}

.proice-road-desc .proice-reveal-line:nth-child(3) > span {
    animation-delay: 0.75s;
}

.proice-road-desc .proice-reveal-line:nth-child(4) > span {
    animation-delay: 0.9s;
}

#i6cwhe {
    height: 1px;
    color: white;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.proice-logo span {
    color: var(--red);
}

.proice-menu a:hover {
    color: #ffffff;
}

.mobile-toggle span {
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.hero-bg video, .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 26px;
}

.hero p {
    max-width: 560px;
    font-size: clamp(17px, 2vw, 22px);
    color: var(--text-muted);
    margin-bottom: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    background: rgba(255,255,255,0.06);
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-2px);
    }

.hero-bottom-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.hero-bottom-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.section-heading h2 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 18px;
    color: var(--text-muted);
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.category-card:hover::after {
    transform: scale(1.08);
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 650px;
    padding-left: 13%;
    padding-top: 115px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .category-content span {
        margin-bottom: 14px;
        color: #ed001c;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .category-content h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .category-content p {
        color: rgba(255,255,255,0.72);
        font-size: 14px;
    }

.featured-content h2 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
}

.featured-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.76);
    margin-bottom: 30px;
}

.feature-tags span {
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}

.tech-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.tech-step p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.tech-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.42);
    font-size: 24px;
    z-index: 2;
}

.driver-card:hover::after {
    transform: scale(1.08);
}

.driver-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.driver-content p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.moment-card:hover::after {
    transform: scale(1.08);
}

.moment-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moment-content h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.moment-content p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.news-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.news-content p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.cta-inner {
    position: relative !important;
    z-index: 10 !important;
}

    .cta-inner h2 {
        font-size: clamp(38px, 6vw, 72px);
        line-height: 1.02;
        letter-spacing: -2px;
        margin-bottom: 18px;
    }

    .cta-inner p {
        font-size: 19px;
        color: rgba(255,255,255,0.82);
        margin-bottom: 34px;
    }

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-logo span {
    color: var(--red);
}

.reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.section-label, .hero h1, .hero p, .section-heading h2, .section-heading p, .why-card h3, .why-card p, .category-content h3, .category-content p, .featured-content h2, .featured-content p, .tech-step h3, .tech-step p, .driver-content h3, .driver-content p, .moment-content h3, .moment-content p, .news-content h3, .news-content p, .cta-inner h2, .cta-inner p {
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit;
}

.proice-tab-slider input {
    display: none;
}

.proice-tab-header h2 {
    max-width: 980px;
    margin: 0 auto;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 800;
    color: #050505;
}

.proice-tab-nav label {
    position: relative;
    padding: 18px 10px;
    text-align: center;
    font-size: 16px;
    color: #111;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .proice-tab-nav label::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 2px;
        background: #e4002b;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

.proice-tab-text h2 {
    max-width: 560px;
    margin: 0 0 20px;
    font-size: 34px;
    line-height: 1.12;
    color: #000;
    font-weight: 700;
}

.proice-tab-text p {
    max-width: 590px;
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    color: #555;
}

.proice-tab-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.proice-product-card img {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
}

.proice-product-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #111;
}

.proice-product-card strong {
    display: block;
    font-size: 17px;
    color: #000;
}

#proice-tab-1:checked ~ .proice-tab-nav label:nth-child(1), #proice-tab-2:checked ~ .proice-tab-nav label:nth-child(2), #proice-tab-3:checked ~ .proice-tab-nav label:nth-child(3), #proice-tab-4:checked ~ .proice-tab-nav label:nth-child(4) {
    color: #e4002b;
}

    #proice-tab-1:checked ~ .proice-tab-nav label:nth-child(1)::after, #proice-tab-2:checked ~ .proice-tab-nav label:nth-child(2)::after, #proice-tab-3:checked ~ .proice-tab-nav label:nth-child(3)::after, #proice-tab-4:checked ~ .proice-tab-nav label:nth-child(4)::after {
        transform: scaleX(1);
    }

#proice-tab-1:checked ~ .proice-content-1, #proice-tab-2:checked ~ .proice-content-2, #proice-tab-3:checked ~ .proice-content-3, #proice-tab-4:checked ~ .proice-content-4 {
    display: grid;
}

.intro h1 {
    font-size: clamp(42px, 8vw, 110px);
    font-weight: 700;
    letter-spacing: -4px;
}

.stack-section {
    width: 100%;
    padding: 80px 0 120px;
    background: #f4f4f4;
}

.stack-wrapper {
    width: min(92%, 1180px);
    margin: 0 auto;
}

.stack-card {
    position: sticky;
    top: 80px;
    min-height: 620px;
    margin-bottom: 70px;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

    .stack-card img {
        position: relative;
        z-index: 3;
        max-width: 38%;
        max-height: 470px;
        object-fit: contain;
        filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.35));
        transform: rotate(-8deg);
    }

.card-content h2 {
    font-size: clamp(42px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: -4px;
    color: #fff;
    margin-bottom: 18px;
}

.card-content p {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.card-content a {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    background: #4f6cff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.stack-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1), rgba(0,0,0,0) );
    z-index: 1;
}

.outro h2 {
    font-size: clamp(36px, 6vw, 78px);
    letter-spacing: -3px;
}

.stack-intro {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 24px;
    text-align: center;
}

    .stack-intro p {
        margin: 0 0 12px;
        font-size: 14px;
        font-weight: 700;
        color: #d71920;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stack-intro h2 {
        margin: 0;
        font-size: clamp(38px, 7vw, 92px);
        line-height: 0.95;
        font-weight: 800;
        letter-spacing: -2px;
    }

.stack-card:nth-child(1) {
    z-index: 1;
}

.stack-card:nth-child(2) {
    z-index: 2;
}

.stack-card:nth-child(3) {
    z-index: 3;
}

.stack-card:nth-child(4) {
    z-index: 4;
}

.card-dark {
    color: #fff;
}

.card-light {
    color: #111;
}

.stack-content {
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 34px;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
}

    .stack-content h3 {
        position: absolute;
        left: 0;
        bottom: 130px;
        width: 100%;
        margin: 0;
        font-size: clamp(46px, 9vw, 60px);
        line-height: 0.9;
        font-weight: 800;
        letter-spacing: -4px;
        opacity: 0.95;
    }

.card-dark .stack-content h3 {
    color: #fff;
}

.card-light .stack-content h3 {
    color: #fff;
}

.stack-content p {
    max-width: 540px;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.stack-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: #4f6cff;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.stack-card:nth-child(even) img {
    transform: rotate(7deg);
}

.card-1 {
    background-image: url("/assets/titan/images/1-360.jpg");
    z-index: 1;
}

.card-2 {
    background-image: url("/assets/titan/images/2-split-screen.jpg");
    z-index: 2;
}

.card-3 {
    background-image: url("/assets/titan/images/3-aura.jpg");
    z-index: 3;
}

.card-4 {
    background-image: url("/assets/titan/images/4-asmr.jpg");
    z-index: 4;
}

.stack-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35) );
}

.card-light .stack-overlay {
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.25) );
}

.stack-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(160, 160, 160, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(160, 160, 160, 0.22) 1px, transparent 1px);
    background-size: 33.33% 33.33%;
    opacity: 0.7;
}

.stack-overlay::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(160, 160, 160, 0.45);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.proice-video-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background: #000;
}

.proice-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proice-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(120, 0, 0, 0.28) 100% ), linear-gradient( 180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100% );
    z-index: 1;
}

.proice-hero-content {
    position: relative;
    z-index: 2;
    width: min(900px, 90%);
    text-align: center;
    color: #fff;
    padding: 80px 20px;
}

.proice-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #e60012;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.proice-hero-content h1 {
    margin: 0 0 24px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
}

    .proice-hero-content h1 em {
        font-style: italic;
        font-weight: 300;
        color: #ffffff;
    }

.proice-hero-content p {
    max-width: 680px;
    margin: 0 auto 10px;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.proice-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 14px 34px;
    border-radius: 999px;
    background: #e60012;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

    .proice-hero-btn:hover {
        background: #ffffff;
        color: #e60012;
    }

.proice-category-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: #000;
}

    .proice-category-hero input {
        display: none;
    }

.category-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: proiceFadeSlide 24s infinite;
}

    .category-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.25) 100% );
    }

.category-content h2 {
    margin: 0 0 34px;
    color: #fff;
    font-size: clamp(46px, 5.4vw, 82px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.category-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    height: 48px;
    padding: 0 26px;
    background: #ed001c;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

    .category-content a:hover {
        background: #fff;
        color: #111;
    }

#cat-1:checked ~ .category-slider {
    transform: translateX(0);
}

#cat-2:checked ~ .category-slider {
    transform: translateX(-25%);
}

#cat-3:checked ~ .category-slider {
    transform: translateX(-50%);
}

#cat-4:checked ~ .category-slider {
    transform: translateX(-75%);
}

#cat-1:checked ~ .category-arrows .prev-1, #cat-1:checked ~ .category-arrows .next-1, #cat-2:checked ~ .category-arrows .prev-2, #cat-2:checked ~ .category-arrows .next-2, #cat-3:checked ~ .category-arrows .prev-3, #cat-3:checked ~ .category-arrows .next-3, #cat-4:checked ~ .category-arrows .prev-4, #cat-4:checked ~ .category-arrows .next-4 {
    display: block;
}

.proice-category-hero:hover .category-slider {
    animation-play-state: paused;
}

.category-progress {
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-line span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #ed001c;
    animation: progressFill 24s linear infinite;
}

.progress-dots span {
    width: 5px;
    height: 5px;
    background: #e8e8e8;
    border-radius: 50%;
    display: block;
}

.progress-item {
    position: relative;
    width: 34px;
    height: 4px;
    background: #e8e8e8;
    overflow: hidden;
}

    .progress-item span {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #ed001c;
        transform: scaleX(0);
        transform-origin: left center;
    }

.item-1 span {
    animation: lineOne 24s linear infinite;
}

.item-2 span {
    animation: lineTwo 24s linear infinite;
}

.item-3 span {
    animation: lineThree 24s linear infinite;
}

.item-4 span {
    animation: lineFour 24s linear infinite;
}

.category-slide:nth-child(1) {
    animation-delay: 0s;
}

.category-slide:nth-child(2) {
    animation-delay: 6s;
}

.category-slide:nth-child(3) {
    animation-delay: 12s;
}

.category-slide:nth-child(4) {
    animation-delay: 18s;
}

.category-1 {
    background-image: url("/assets/titan/images/IC-1.jpg");
    animation-delay: 0s;
}

.category-2 {
    background-image: url("/assets/titan/images/CS-1.jpg");
    animation-delay: 6s;
}

.category-3 {
    background-image: url("/assets/titan/images/GPS-1.jpg");
    animation-delay: 12s;
}

.category-4 {
    background-image: url("/assets/titan/images/SA-1.jpg");
    animation-delay: 18s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

@keyframes productFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes proiceAutoSlide {
    0%, 20% {
        transform: translateX(0);
    }

    25%, 45% {
        transform: translateX(-20%);
    }

    50%, 70% {
        transform: translateX(-40%);
    }

    75%, 95% {
        transform: translateX(-60%);
    }

    100% {
        transform: translateX(0);
    }

    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-25%);
    }

    45% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    70% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-75%);
    }

    95% {
        transform: translateX(-75%);
    }

    0%, 22% {
        transform: translateX(0);
    }

    25%, 47% {
        transform: translateX(-25%);
    }

    50%, 72% {
        transform: translateX(-50%);
    }

    75%, 97% {
        transform: translateX(-75%);
    }

    0%, 23% {
        transform: translateX(0);
    }

    25%, 48% {
        transform: translateX(-25%);
    }

    50%, 73% {
        transform: translateX(-50%);
    }

    75%, 98% {
        transform: translateX(-75%);
    }

    0%, 18% {
        transform: translateX(0);
    }

    20%, 38% {
        transform: translateX(-20%);
    }

    40%, 58% {
        transform: translateX(-40%);
    }

    60%, 78% {
        transform: translateX(-60%);
    }

    80%, 98% {
        transform: translateX(-80%);
    }

    99.8% {
        transform: translateX(-80%);
    }

    99.9%, 100% {
        transform: translateX(0);
    }
}

@keyframes proiceSlideAuto {
    0%, 20% {
        margin-left: 0;
    }

    25%, 45% {
        margin-left: -100%;
    }

    50%, 70% {
        margin-left: -200%;
    }

    75%, 95% {
        margin-left: -300%;
    }

    100% {
        margin-left: -400%;
    }
}

@keyframes proiceTargetAuto {
    0%, 20% {
        margin-left: 0;
    }

    25%, 45% {
        margin-left: -100%;
    }

    50%, 70% {
        margin-left: -200%;
    }

    75%, 95% {
        margin-left: -300%;
    }

    100% {
        margin-left: -400%;
    }
}

@keyframes pcsAutoSlide {
    0%, 20% {
        transform: translateX(0);
    }

    25%, 45% {
        transform: translateX(-25%);
    }

    50%, 70% {
        transform: translateX(-50%);
    }

    75%, 95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes pcsArrowOne {
    0%, 24.99% {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    25%, 100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes pcsArrowTwo {
    0%, 24.99% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    25%, 49.99% {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    50%, 100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes pcsArrowThree {
    0%, 49.99% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    50%, 74.99% {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    75%, 100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes pcsArrowFour {
    0%, 74.99% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    75%, 100% {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@keyframes pfadeAuto {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes proiceTextReveal {
    from {
        opacity: 0;
        transform: translateY(120%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes proiceBgZoomOut {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

@keyframes proiceFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    100% {
        width: 0%;
    }

    23% {
        width: 100%;
    }

    24.9% {
        width: 100%;
    }

    25% {
        width: 0%;
    }

    48% {
        width: 100%;
    }

    49.9% {
        width: 100%;
    }

    50% {
        width: 0%;
    }

    73% {
        width: 100%;
    }

    74.9% {
        width: 100%;
    }

    75% {
        width: 0%;
    }

    98% {
        width: 100%;
    }

    99.9% {
        width: 100%;
    }

    18% {
        width: 100%;
    }

    19.9% {
        width: 100%;
    }

    20% {
        width: 0%;
    }

    38% {
        width: 100%;
    }

    39.9% {
        width: 100%;
    }

    40% {
        width: 0%;
    }

    58% {
        width: 100%;
    }

    59.9% {
        width: 100%;
    }

    60% {
        width: 0%;
    }

    78% {
        width: 100%;
    }

    79.9% {
        width: 100%;
    }

    80% {
        width: 0%;
    }

    85% {
        width: 100%;
    }

    24.8% {
        width: 100%;
    }

    49.8% {
        width: 100%;
    }

    74.8% {
        width: 100%;
    }

    99.8% {
        width: 100%;
    }
}

@keyframes proiceFadeSlide {
    0% {
        opacity: 0;
        transform: scale(1.03);
    }

    4% {
        opacity: 1;
        transform: scale(1);
    }

    23% {
        opacity: 1;
        transform: scale(1);
    }

    27% {
        opacity: 0;
        transform: scale(1.02);
    }

    100% {
        opacity: 0;
        transform: scale(1.02);
    }

    3% {
        opacity: 1;
        transform: scale(1);
    }

    25% {
        opacity: 0;
        transform: scale(1.02);
    }

    22% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes progressTurn {
    0% {
        width: 0;
    }

    24.8% {
        width: 100%;
    }

    25% {
        width: 0;
    }

    100% {
        width: 0;
    }
}

@keyframes lineOne {
    0% {
        transform: scaleX(0);
    }

    25% {
        transform: scaleX(1);
    }

    25.01%, 100% {
        transform: scaleX(0);
    }
}

@keyframes lineTwo {
    0%, 25% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(1);
    }

    50.01%, 100% {
        transform: scaleX(0);
    }
}

@keyframes lineThree {
    0%, 50% {
        transform: scaleX(0);
    }

    75% {
        transform: scaleX(1);
    }

    75.01%, 100% {
        transform: scaleX(0);
    }
}

@keyframes lineFour {
    0%, 75% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@media (max-width: 1100px) {
    .tech-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .proice-tab-header h2 {
        font-size: 44px;
    }

    .proice-tab-text h2 {
        font-size: 30px;
    }

    .proice-tab-image img {
        height: 380px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .product-img-wrap img {
        width: 160px;
        height: 160px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .step:not(:last-child)::after {
        content: '↓';
        right: auto;
        top: auto;
        bottom: -26px;
        left: 20px;
    }

    footer {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .gjs-row {
        flex-wrap: wrap;
    }

    .proice-slide-content h1 {
        font-size: 34px;
    }

    .proice-slide-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .single-product-content h2 {
        font-size: 36px;
    }

    .single-product-content p {
        font-size: 15px;
    }

    .proice-slide-content h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .pi4-content span {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .pi4-content h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .pi4-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .pi4-arrow {
        width: 40px !important;
        height: 40px !important;
        font-size: 22px !important;
        line-height: 40px !important;
    }

    .pi4-prev {
        left: 12px !important;
    }

    .pi4-next {
        right: 12px !important;
    }

    .proice-slide-content span {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .proice-target-content span {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .proice-target-content h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .proice-target-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .pcs-content span {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .pcs-content h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .pcs-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .pfade-content span {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .pfade-content h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .pfade-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .proice-road-desc p {
        font-size: 14px;
        line-height: 1.7;
    }

    .pfade-slide img {
        height: 100svh !important;
        min-height: 100svh !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .stack-card {
        top: 40px;
        min-height: 540px;
        margin-bottom: 45px;
        border-radius: 20px;
    }

    .card-content h2 {
        letter-spacing: -2px;
    }

    .stack-section {
        padding: 60px 0 90px;
    }

    .stack-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
        grid-template-columns: 1fr;
    }

        .stack-content h3 {
            bottom: 170px;
            font-size: clamp(44px, 16vw, 50px);
            letter-spacing: -2px;
        }

        .stack-content p {
            font-size: 14px;
        }

        .stack-content a {
            width: fit-content;
        }

    .stack-card img {
        max-width: 62%;
        max-height: 320px;
    }

    .stack-intro h2 {
        letter-spacing: -1px;
    }

    .stack-overlay::after {
        width: 300px;
        height: 300px;
    }

    .proice-video-hero {
        min-height: 92vh;
    }

    .proice-hero-content {
        width: 92%;
        padding: 60px 16px;
    }

        .proice-hero-content h1 {
            font-size: 42px;
        }

        .proice-hero-content p {
            font-size: 14px;
        }

    .proice-category-hero {
        height: 88vh;
        min-height: 560px;
    }

    .category-content {
        max-width: 420px;
        padding-left: 28px;
        padding-right: 28px;
        padding-top: 110px;
    }

        .category-content span {
            margin-bottom: 12px;
            font-size: 12px;
            letter-spacing: 2px;
        }

        .category-content h2 {
            margin-bottom: 26px;
            font-size: 42px;
            line-height: 1;
        }

    .category-slide {
        background-position: center;
    }

    .category-content a {
        min-width: 126px;
        height: 44px;
        padding: 0 22px;
        font-size: 13px;
    }

    .category-progress {
        bottom: 34px;
    }

    .progress-item {
        width: 26px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        letter-spacing: -1.6px;
    }

    .cta-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-heading h2, .featured-content h2, .cta-inner h2 {
        letter-spacing: -1.3px;
    }
}

@media (max-width: 600px) {
    .proice-tab-header h2 {
        font-size: 34px;
        line-height: 1.1;
    }

    .proice-tab-nav label {
        font-size: 14px;
        padding: 15px 8px;
    }

    .proice-tab-text h2 {
        font-size: 26px;
    }

    .proice-tab-text p {
        font-size: 16px;
    }

    .proice-tab-image img {
        height: 280px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .proice-category-card h3 {
        font-size: 24px;
    }

    .proice-road-desc p {
        font-size: 13px;
        line-height: 1.7;
    }

    .category-content {
        padding-top: 95px;
    }

        .category-content h2 {
            font-size: 36px;
        }

    .progress-item {
        width: 22px;
    }
}

@keyframes pi4AutoSlide {
    0%, 20% {
        transform: translate3d(0, 0, 0);
    }

    25%, 45% {
        transform: translate3d(-100%, 0, 0);
    }

    50%, 70% {
        transform: translate3d(-200%, 0, 0);
    }

    75%, 95% {
        transform: translate3d(-300%, 0, 0);
    }

    100% {
        transform: translate3d(-400%, 0, 0);
    }
}

@keyframes pi4SmoothSlide {
    0%, 21% {
        transform: translate3d(0, 0, 0);
    }

    25%, 46% {
        transform: translate3d(-20%, 0, 0);
    }

    50%, 71% {
        transform: translate3d(-40%, 0, 0);
    }

    75%, 96% {
        transform: translate3d(-60%, 0, 0);
    }

    100% {
        transform: translate3d(-80%, 0, 0);
    }
}
