@charset "UTF-8";

:root {
    --black: #0c0e0b;
    --red: #d7303b;
    --grey: #f0f0f0;
    --dark-grey: #555;
    --light-grey: #f5f5f5;
    --white: #fff;
    --green: #25D366;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none; }
body { font-family: 'Inter', sans-serif; color: var(--black); line-height: 1.6; background-color: var(--white); }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px; 
}

[x-cloak] { display: none !important; }

/* --- HLAVIČKA --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
}

.logo {
    display: flex;
    align-items: center;
    min-width: 280px;
    margin-top: -10px;
}

.logo-text { 
    font-family: 'Crimson Pro', serif; 
    font-weight: 900; 
    font-style: italic; 
    font-size: 4.8rem; 
    paint-order: stroke fill; 
    letter-spacing: -2px;
}

.stroke-outer { 
    fill: var(--black); 
    stroke: var(--black); 
    stroke-width: 16px; 
    stroke-linejoin: round; 
    stroke-miterlimit: 2; 
}

.stroke-inner { 
    fill: var(--white); 
    stroke: var(--white); 
    stroke-width: 8px; 
    stroke-linejoin: round; 
}

.fill-main { 
    fill: var(--red); 
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

.nav-menu > li > a:not(.btn-action) {
    color: var(--black);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu > li > a:not(.btn-action)::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--red);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8) translateY(5px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-menu > li > a:not(.btn-action):hover {
    color: var(--white);
}

.nav-menu > li > a:not(.btn-action):hover::before {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 2.5rem;
}

.social-wrapper {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--black);
    border: 1.5px solid var(--dark-grey);
    border-radius: 8px;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    background-color: rgba(215, 48, 59, 0.05);
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.icon-svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.cta-nav {
    background: var(--red);
    color: var(--white) !important;
    border: 2px solid var(--red);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(215, 48, 59, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(215, 48, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(215, 48, 59, 0); }
}

.cta-nav::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: var(--red);
    z-index: -1;
    transition: var(--transition);
}

.cta-nav:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 48, 59, 0.3);
}

.cta-nav:hover::after { width: 100%; }
.cta-nav:hover .icon-svg { animation: ring 0.5s ease infinite; }

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-right: 2rem;
}

.mobile-nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--red);
    border-radius: 10px;
}

.mobile-nav-toggle .bar:nth-child(2) {
    height: 3px;
    width: 50%;
}

@media (max-width: 1150px) {
    .nav-container { 
        padding: 1.5rem 0 1.5rem 1.5rem; 
    }

    .mobile-nav-toggle {
        display: flex;
        position: relative;
        z-index: 1100;
        transition: transform 0.3s ease;
    }

    .mobile-nav-toggle .bar {
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        transform-origin: center;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        width: 100% !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 1000;
        margin: 0;
        padding: 2rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu.active li {
        animation: slideInUp 0.5s ease forwards;
        opacity: 0;
    }

    .nav-menu li {
        width: auto;
        text-align: center;
    }

    .nav-menu a:not(.btn-action) {
        font-size: 1.8rem !important;
        font-weight: 800;
        color: var(--black);
        text-transform: uppercase;
        letter-spacing: -1px;
    }

    .nav-actions {
        flex-direction: column;
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }

    .btn-action {
        display: none;
    }

    .social-wrapper {
        gap: 30px;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1151px) {
    .nav-menu {
        display: flex !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}
/* --- HLAVIČKA --- */

/* --- PRODUKTOVÁ SEKCIA --- */
.products-lineup {
    width: 100%;
    margin-top: 134px;
}

.lineup-container {
    display: flex;
    height: 280px;
    gap: 1px;
    padding: 0 1px;
}

.p-col {
    flex: 1;
    background: var(--grey);
    position: relative;
    overflow: hidden;
    transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1), background 0.6s ease;
    cursor: pointer;
}

.p-col:hover {
    flex: 2;
    background: var(--light-grey); 
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.p-col::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
    animation: glassInitialSweep 1.8s ease-in-out forwards;
}

@keyframes glassInitialSweep {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.p-col:hover::after {
    animation: glassHoverSweep 0.8s ease-in-out forwards;
}

@keyframes glassHoverSweep {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.p-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-icon {
    width: 82px;  
    height: 82px;
    margin-bottom: 12px;
    transition: transform 0.6s ease;
}

.p-icon svg {
    width: 100%;
    height: 100%;
    fill: none; 
    stroke: var(--black);
    stroke-width: 3.2px; 
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.6s ease;
}

.p-text-fixed {
    width: 280px;
    text-align: center;
    backface-visibility: hidden;
}

.p-text-fixed h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--black);
    transition: color 0.5s ease, transform 0.5s ease;
}

.p-col:hover .p-text-fixed h3 {
    color: var(--red);
    transform: translateY(-5px);
}

.p-text-fixed p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: 
        max-height 0.6s ease, 
        opacity 0.4s ease 0.2s, 
        transform 0.5s ease 0.1s, 
        margin 0.6s ease;
}

.p-col:hover .p-text-fixed p {
    max-height: 150px;
    margin-top: 10px;
    opacity: 1;
    transform: translateY(-5px);
}

.draw-path, .draw-path-sub, .draw-path-accent, .real-tech-icon svg * {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: redrawEffect 2.5s ease-in-out forwards;
}

.p-col:hover .p-icon svg path,
.p-col:hover .p-icon svg rect,
.p-col:hover .p-icon svg circle,
.p-col:hover .p-icon svg line {
    animation: redrawEffect 2.2s ease-in-out forwards !important;
    stroke: var(--black);
}

@keyframes redrawEffect {
    0% { stroke-dashoffset: 1000; }
    10% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

.draw-path-accent { stroke: var(--red) !important; }
.draw-path-sub { stroke-width: 2px !important; opacity: 0.4; }

.handle { transform-origin: 18px 50px; transition: transform 0.5s ease 0.4s; }
.p-col:hover .handle { transform: rotate(-90deg); }

.door-leaf { transform-origin: 65px center; transition: transform 0.6s ease 0.3s; }
.p-col:hover .door-leaf { transform: perspective(200px) rotateY(-15deg); }

.profil-izom { transition: transform 0.6s ease 0.3s; }
.p-col:hover .profil-izom { transform: translateY(3px) scaleY(1.02); }

.shutter-anim-group { 
    transform: translateY(-40px); 
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s; 
}
.p-col:hover .shutter-anim-group { transform: translateY(0); }

.lamela-real { transform-origin: center; transition: transform 0.4s ease; }
.p-col:hover .lamela-real { transform: rotateX(50deg); }

.mesh-fill { opacity: 0; transition: opacity 0.6s ease 0.4s; }
.p-col:hover .mesh-fill { opacity: 0.25; animation: meshShimmer 2s infinite linear; }
@keyframes meshShimmer {
    0% { transform: translate(0, 0); }
    50% { transform: translate(1px, 1px); }
    100% { transform: translate(0, 0); }
}

.arm { transform-origin: 27px 25px; transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s; }
.p-col:hover .arm { transform: scaleX(1.1) rotate(5deg); }
.predny-profil { transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s; }
.p-col:hover .predny-profil { transform: translate(10px, 5px); }

.glass-fill { fill: var(--red); opacity: 0; transition: opacity 0.8s ease 0.8s; }
.p-col:hover .glass-fill { opacity: 0.1; }

@media (max-width: 1200px) {
    .lineup-container { 
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 2px;
        padding: 0px;
        height: auto;
        min-height: 800px;
    }

    .p-col { 
        transition: height 0.4s ease, background 0.4s ease;
    }

    .p-text-fixed {
        width: 100%; 
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .p-icon {
        width: 55px;
        height: 55px;
    }

    .p-text-fixed h3 {
        font-size: 0.9rem;
        width: 100%;
    }

    .p-text-fixed p {
        font-size: 0.75rem;
        width: 90%; 
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        line-height: 1.6;
    }
}

@media (max-width: 400px) {
    .p-col {
        flex: 0 0 calc(50% - 4px);
    }
}
/* --- PRODUKTOVÁ SEKCIA --- */

/* --- SLUŽOBNÁ SEKCIA --- */
.services {
    padding: 9rem 10rem 6rem 10rem;
    background-color: var(--light-grey);
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--light-grey);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                background 0.4s ease, 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
    opacity: 0;
    will-change: transform, opacity;
    animation: revealEffect 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: calc(var(--card-index) * 0.1s);
}

#sluzby .service-card:hover {
    transform: translateY(-20px);
    background: #ffffff;
    border-color: var(--red);
    box-shadow: 0 30px 60px rgba(215, 48, 59, 0.1);
    z-index: 10;
}

.service-card .s-icon {
    width: 54px;
    height: 54px;
    background: rgba(215, 48, 59, 0.08);
    color: var(--red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                background 0.3s ease, 
                color 0.3s ease;
}

.service-card .s-icon svg {
    width: 26px;
    height: 26px;
}

.service-card:hover .s-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 1rem;
    color: var(--dark-grey);
    line-height: 1.7;
}

.service-card:hover h3 {
    color: var(--red);
}

.service-card.urgent {
    background: var(--black);
    border: none;
}

.service-card.urgent h3 { color: var(--white); }
.service-card.urgent p { color: rgba(255, 255, 255, 0.7); }
.service-card.urgent .s-icon {
    background: var(--red);
    color: var(--white);
}

#sluzby .service-card.urgent:hover {
    background: #111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.service-card.urgent:hover h3 { color: var(--white); }

.fast-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: rgba(215, 48, 59, 0.6);
    padding: 6px 12px;
    border-radius: 8px;
}

.service-card.brand {
    background: var(--red);
    border: none;
}

.service-card.brand h3 { color: var(--white); }
.service-card.brand p { color: rgba(255, 255, 255, 0.9); }
.service-card.brand .s-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

#sluzby .service-card.brand:hover {
    background: #c02a34;
    box-shadow: 0 30px 60px rgba(215, 48, 59, 0.4);
}

.service-card.brand:hover .s-icon {
    background: var(--white);
    color: var(--red);
}

.service-card.brand:hover h3 { color: var(--white); }

@keyframes revealEffect {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .services {
        padding: 10rem 2rem 6rem 2rem;
    }
}

@media (max-width: 992px) {
    
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {

    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card {
        padding: 2rem;
        border-radius: 20px;
    }

    @media (hover: none) {
        #sluzby .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        
        .service-card .s-icon {
            transform: none !important;
        }
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .fast-tag {
        top: 1.5rem;
        right: 1.5rem;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 10rem 2rem 6rem 2rem;
    }
    
    .service-card {
        padding: 1.8rem 1.5rem;
    }
}
/* --- SLUŽOBNÁ SEKCIA --- */

/* --- SEKCIA O NÁS --- */
.about-modern {
    width: 100%;
    margin: 10rem auto 6rem auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.section-intro .cta-nav {
    font-size: 0.95rem;
    padding: 1rem 1.8rem;
}

.intro-content {
    flex: 1;
}

.section-subtitle {
    margin-top: 1rem;
    max-width: 650px;
    margin-bottom: 0;
}

.intro-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .section-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .intro-actions {
        width: 100%;
    }
}

.about-header {
    text-align: center;
    margin-bottom: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-tech {
    background-color: var(--red);
    color: var(--white);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(215, 48, 59, 0.2);
}

.main-title-tech {
    font-size: 3.6rem;
    letter-spacing: -3px;
    line-height: 1.1;
    font-family: 'Lexend', sans-serif;
    color: var(--black);
    max-width: 800px;
    margin-top: 1rem;
}

.main-title-tech span {
    color: var(--red);
    position: relative;
}

.main-title-tech span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(215, 48, 59, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.text-block {
    position: sticky;
    top: 100px;
}

.badge-sub {
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.8rem;
    font-family: 'Lexend', sans-serif;
}

.text-block h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--black);
    font-weight: 700;
    font-family: 'Lexend', sans-serif;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 4rem;
}

.stats-timeline-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.timeline-badge-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: revealEffect 0.6s ease-out forwards;
    animation-delay: calc(var(--badge-index) * 0.15s);
}

.timeline-badge {
    background: var(--light-grey);
    color: var(--black);
    padding: 2rem 1rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-badge:hover {
    transform: translateY(-8px) scale(1.06);
}

.timeline-badge.badge-red {
    background: rgba(215, 48, 59, 0.08);
    color: var(--red);
}

.timeline-badge.badge-red .number { color: var(--red); }

.timeline-badge .number {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 800;
    font-family: 'Lexend', sans-serif;
    color: var(--black);
}

.timeline-badge .text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
}

.badge-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mini-team-row {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    z-index: 5;
}

.mini-card-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: revealEffect 0.6s ease-out forwards;
    animation-delay: calc(var(--card-index) * 0.2s);
    width: 100%;
}

.mini-card-tech {
    display: flex;
    align-items: flex-start;
    gap: 1.0rem;
    padding: 2.2rem;
    border-radius: 20px;
    border: 1px solid var(--grey);
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.mini-card-tech:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 48, 59, 0.2);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(215, 48, 59, 0.1);
}

.card-icon-wrapper {
    width: 55px;
    height: 55px;
    background: rgba(215, 48, 59, 0.08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.card-icon-wrapper svg {
    width: 26px;
    height: 26px;
    stroke-width: 2px;
}

.mini-card-tech:hover .card-icon-wrapper {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(215, 48, 59, 0.2);
    border-color: var(--red);
}

.mini-details strong {
    display: block;
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mini-card-tech:hover .mini-details strong {
    color: var(--red);
}

.mini-details span {
    font-size: 1rem;
    color: var(--dark-grey);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.mini-card-tech:hover .mini-details span {
    color: var(--black);
}

.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mini-card-tech:hover .card-border-glow {
    opacity: 1;
    border: 1px solid rgba(215, 48, 59, 0.15);
    animation: borderGlowPulz 2.5s infinite linear;
}

@keyframes borderGlowPulz {
    0%, 100% {
        box-shadow: inset 0 0 10px rgba(215, 48, 59, 0.05);
    }
    50% {
        box-shadow: inset 0 0 20px rgba(215, 48, 59, 0.15);
    }
}

@keyframes revealEffect {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-shape {
    position: absolute; border-radius: 50%; z-index: 1; pointer-events: none;
}

.shape-1 {
    width: 500px; height: 500px; top: -100px; right: -200px;
    background: radial-gradient(circle, rgba(215, 48, 59, 0.04) 0%, transparent 70%);
}

.shape-2 {
    width: 300px; height: 300px; bottom: -50px; left: -100px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
}

@media (max-width: 1100px) {
    .modern-grid { grid-template-columns: 1fr; gap: 4rem; }
    .text-block { position: static; }
    .stats-timeline-row { max-width: 600px; }
}

@media (max-width: 768px) {
    .stats-timeline-row { grid-template-columns: 1fr; }
    .timeline-badge { flex-direction: row; gap: 20px; padding: 1.5rem; }
    .timeline-badge .number { font-size: 2.5rem; }
    
    .mini-card-tech { 
        padding: 1.8rem 1.5rem; 
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }
    .mini-card-tech:hover {
        transform: translateY(-5px);
    }
}
/* --- SEKCIA O NÁS --- */

/* --- SEKCIA RECENZIE --- */
.reviews-section {
    padding: 9rem 2rem 6rem 2rem;
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--dark-grey);
    max-width: 600px;
    margin-top: 2rem;
    line-height: 1.7;
}

.reviews-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr; 
    gap: 2rem;
}

.review-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 4rem;
}

.review-card:not(.featured) {
    grid-column: span 1;
    grid-row: span 1;
    padding: 2.2rem;
}

.review-card:not(.featured) .review-text {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(238, 238, 238, 0.5);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    transition: var(--transition); 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    
    opacity: 0;
    transform: translateY(30px);
    animation: revealEffect 0.8s ease-out forwards;
    animation-delay: calc(var(--card-index) * 0.2s);
}

.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(215, 48, 59, 0.1);
}

.review-card.accent {
    background: var(--black);
    color: var(--white);
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.review-card.accent .review-text,
.review-card.accent .user-info span { color: rgba(255, 255, 255, 0.5); }
.review-card.accent .user-info strong { color: var(--white); }
.review-card.accent .quote-icon { color: rgba(215, 48, 59, 0.3); }

.review-card.featured .review-text {
    font-size: 1rem;
    line-height: 1.8;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-weight: 900;
    color: rgba(215, 48, 59, 0.08);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.review-card:hover .quote-icon {
    transform: scale(1.1) rotate(-5deg);
    color: rgba(215, 48, 59, 0.15);
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-grey);
    font-style: italic;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.review-card.accent .review-footer { border-top-color: rgba(255, 255, 255, 0.1); }

.user-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.user-avatar {
    width: 50px; height: 50px;
    background: rgba(215, 48, 59, 0.08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.review-card.accent .user-avatar { background: rgba(215, 48, 59, 0.2); color: var(--white); }

.user-details strong {
    display: block;
    font-size: 1.1rem;
    font-family: 'Lexend', sans-serif;
    color: var(--black);
}

.user-details cite {
    font-style: normal;
}

.accent .user-details strong {
    color: rgba(255, 255, 255, 0.7);
}

.user-details span {
    font-size: 0.85rem;
    color: var(--dark-grey);
}

.accent .user-details span {
    color: rgba(255, 255, 255, 0.7);
}

.review-rating {
    text-align: right;
}

.stars {
    color: #ffb400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.rating-verif {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--green);
}

@media (max-width: 1100px) {
    .reviews-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .reviews-section { padding: 10rem 2rem 6rem 2rem; }
    .reviews-bento-grid { grid-template-columns: 1fr; }
    .review-card.featured { grid-column: span 1; padding: 2rem; }
    .review-card { padding: 2rem; }
    .quote-icon { font-size: 6rem; right: 1rem; top: 0; }
    .review-footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .review-rating { text-align: left; }
}

.reviews-cta-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
    background: var(--white);
    border-radius: 25px;
    border: 1px solid var(--grey);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.google-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.google-info span {
    font-size: 1rem;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--grey);
    padding-right: 2rem;
}

.google-rating strong {
    font-size: 4.6rem;
    font-family: 'Lexend', sans-serif;
    color: var(--black);
}

@media (max-width: 768px) {
    .reviews-cta-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    .google-rating {
        border-right: none;
        padding-right: 0;
        flex-direction: column;
    }
}

@media (max-width: 1100px) {
    .reviews-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    .review-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .review-card:not(.featured) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .reviews-bento-grid {
        grid-template-columns: 1fr;
    }
    .review-card.featured, 
    .review-card:not(.featured) {
        grid-column: span 1;
    }
}

.review-card.brand {
    background: var(--red);
    border: none;
    box-shadow: 0 15px 40px rgba(215, 48, 59, 0.25);
    color: var(--white);
}

.review-card.brand .review-text,
.review-card.brand .user-details span {
    color: rgba(255, 255, 255, 0.9);
}

.review-card.brand .user-details strong {
    color: var(--white);
}

.review-card.brand .quote-icon {
    color: rgba(255, 255, 255, 0.15);
}

.review-card.brand .user-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.review-card.brand .review-footer {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.review-card.brand .stars {
    color: var(--white);
}

.review-card:not(.accent):not(.brand):hover {
    background: var(--white);
    border-color: var(--red);
}

.review-card.accent:hover {
    background: #151515;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.review-card.brand:hover {
    background: #c02a34;
    box-shadow: 0 25px 50px rgba(215, 48, 59, 0.4);
}

.review-card.accent .card-glow {
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.review-card.brand .card-glow {
    background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 70%);
}
/* --- SEKCIA RECENZIE --- */

/* --- SEKCIA REFERENCIE --- */
.references {
    padding: 10rem 0 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.section-padding {
    padding: 0 10rem;
}

.infinite-slider {
    width: 100%;
    position: relative;
    cursor: grab;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.infinite-slider:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
    transition: none !important;
}

.ref-card {
    position: relative;
    width: 380px;
    height: 520px;
    flex-shrink: 0;
    border-radius: 40px;
    overflow: hidden;
    background: #111;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.ref-card:hover {
    transform: scale(1);
}

.ref-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.ref-card:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.ref-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
}

.ref-place {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(215, 48, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 12px;
    width: fit-content;
    margin-bottom: 0.8rem;
}

.ref-info h4 {
    font-size: 1.6rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 1200px) { .section-padding { padding: 0 4rem; } }
@media (max-width: 768px) {
    .section-padding { padding: 0 2rem; }
    .ref-card { width: 300px; height: 400px; }
}
/* --- SEKCIA REFERENCIE --- */


/* --- ENERGY SCANNER --- */
.energy-scanner {
    padding: 10rem 0 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.scanner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.scanner-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.scanner-info h2 {
    font-size: 3.2rem;
    font-family: 'Lexend', sans-serif;
    margin: 0.5rem 0 1.5rem 0;
    line-height: 1.1;
    color: var(--black);
    letter-spacing: -1px;
}

.audit-summary {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 24px;
    border-left: 5px solid var(--red);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    animation: fadeIn 0.6s ease;
}

.audit-summary h5 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.summary-item:last-child { border-bottom: none; }
.summary-item strong { color: var(--red); font-weight: 700; }

.audit-steps-list {
    list-style: none;
    margin-top: 3rem;
}

.audit-steps-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #444;
}

.audit-steps-list li svg {
    width: 22px;
    height: 22px;
    color: var(--red);
}

.scanner-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 45px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.audit-progress {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.progress-track {
    flex-grow: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--red);
    width: 33.33%;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#stepCounter {
    font-size: 0.85rem;
    font-weight: 800;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audit-step {
    display: none;
}

.audit-step.active {
    display: block;
    animation: slideIn 0.5s ease forwards;
}

.audit-step h4 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-family: 'Lexend', sans-serif;
    color: var(--black);
}

.audit-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audit-opt {
    padding: 1.5rem 2rem;
    border: 2px solid #f2f2f2;
    background: var(--white);
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.audit-opt:hover {
    border-color: var(--red);
    background: #fffafa;
    transform: translateX(8px);
    box-shadow: 0 10px 20px rgba(215, 48, 59, 0.05);
}

.audit-opt::after {
    content: '→';
    font-size: 1.4rem;
    color: var(--red);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.audit-opt:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.audit-result {
    text-align: center;
    animation: scaleUp 0.6s cubic-bezier(0.17, 0.89, 0.32, 1.2);
}

.gauge-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto 2.5rem;
}

.gauge-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.gauge-bg {
    fill: none;
    stroke: #f2f2f2;
    stroke-width: 6;
}

.gauge-fill {
    fill: none;
    stroke: var(--red);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: 0, 283;
    transition: stroke-dasharray 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-data {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#auditPercent {
    display: block;
    font-size: 4.2rem;
    font-weight: 800;
    font-family: 'Lexend', sans-serif;
    color: var(--black);
    line-height: 1;
}

.gauge-data small {
    display: block;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

#resultText {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    margin-top: 0.5rem;
    color: #444;
    padding: 0 1rem;
}

#resultText strong { color: var(--red); }

.btn-reset {
    background: none;
    border: none;
    color: #aaa;
    margin-top: 2rem;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.btn-reset:hover { color: var(--red); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
    .scanner-content { grid-template-columns: 1fr; gap: 4rem; }
    .scanner-info { text-align: center; }
    .audit-summary { max-width: 500px; margin: 2rem auto; }
    .audit-steps-list { display: inline-block; text-align: left; }
    .scanner-card { padding: 3rem 2rem; }
}

@media (max-width: 480px) {
    .scanner-info h2 { font-size: 2.4rem; }
    .scanner-card { padding: 2.5rem 1.5rem; border-radius: 30px; }
    #auditPercent { font-size: 3.2rem; }
    .gauge-wrapper { width: 180px; height: 180px; }
}
/* --- ENERGY SCANNER --- */

/* --- POPUP SERVISNÁ POHOTOVOSŤ --- */
.urgent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.urgent-overlay.active {
    opacity: 1;
    visibility: visible;
}

.urgent-modal {
    background: var(--red);
    width: 100%;
    max-width: 600px;
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    position: relative;
    transform: translateY(50px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.urgent-overlay.active .urgent-modal {
    transform: translateY(0) scale(1);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: var(--white);
    transform: rotate(90deg);
}

.close-popup svg { width: 20px; height: 20px; }

.urgent-icon-pulse {
    width: 80px;
    height: 80px;
    background: var(--black);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulseBlack 1s infinite;
}

.urgent-icon-pulse svg { width: 35px; height: 35px; }

.urgent-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.4rem;
    font-family: 'Lexend', sans-serif;
    line-height: 2.6rem;
}

.urgent-content p {
    color: var(--black);
    line-height: 1.8rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.urgent-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.u-feat {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    background: var(--black);
    padding: 8px 14px;
    border-radius: 10px;
}

.u-feat span { color: var(--red); margin-right: 5px; }

.btn-urgent-call {
    display: block;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    padding: 1.3rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-urgent-call:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(215, 48, 59, 0.3);
}

.urgent-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--black);
}

@keyframes pulseBlack {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}
/* --- POPUP SERVISNÁ POHOTOVOSŤ --- */

/* --- B2B RIEŠENIA --- */
.b2b-manifest-section {
    padding: 10rem 0 6rem 0;
    background: var(--light-grey);
}

.b2b-header-centered {
    text-align: center;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.b2b-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.b2b-card-item {
    display: flex;
    flex-direction: column;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
    border-radius: 20px;
    border: 1px solid var(--grey);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.layer-meta {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark-grey);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.layer-icon {
    margin-bottom: 2rem;
}

.layer-icon svg {
    width: 45px;
    height: 45px;
    color: var(--black);
    transition: var(--transition);
}

.b2b-card-item h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.b2b-card-item p {
    color: var(--dark-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.b2b-card-item:hover {
    transform: translateY(-12px);
    border-color: rgba(215, 48, 59, 0.2);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(215, 48, 59, 0.12);
}

.b2b-card-item.brand-layer {
    background: var(--red);
    border: none;
}
.b2b-card-item.brand-layer h3, 
.b2b-card-item.brand-layer .layer-meta,
.b2b-card-item.brand-layer p,
.b2b-card-item.brand-layer .layer-icon svg { color: var(--white); }

.b2b-card-item.brand-layer:hover {
    background: #c02a34;
    box-shadow: 0 30px 60px rgba(215, 48, 59, 0.4);
}

.b2b-card-item.dark-layer {
    background: var(--black);
    border: none;
}
.b2b-card-item.dark-layer h3, 
.b2b-card-item.dark-layer .layer-meta,
.b2b-card-item.dark-layer p { color: var(--white); }
.b2b-card-item.dark-layer .layer-icon svg { color: var(--red); }

.b2b-card-item.dark-layer:hover {
    background: #111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1200px) {

    .b2b-manifest-section {
        padding: 10rem 2rem 6rem 2rem;
    }

    .b2b-header-centered {
        margin-bottom: 4rem;
    }

    .b2b-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .b2b-header-centered {
        margin-bottom: 3rem;
    }

    .b2b-grid-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .b2b-card-item {
        padding: 2.5rem 2rem;
    }

    .b2b-card-item h3 {
        font-size: 1.3rem;
    }

    @media (hover: none) {
        .b2b-card-item:hover {
            transform: translateY(-5px);
        }
    }
}

@media (max-width: 480px) {
    .b2b-card-item {
        padding: 2rem 1.5rem;
    }

    .layer-icon svg {
        width: 38px;
        height: 38px;
    }

    .b2b-header-centered .main-title-tech span::after {
        background: rgba(215, 48, 59, 0)!important;
    }
}
/* --- B2B RIEŠENIA --- */

/* --- SEKCIA PRACOVNÁ DOBA --- */
.hours-section {
    max-width: 1400px;
    margin: 10rem 10rem 6rem 10rem;
}

.container-hours {
    width: 100%;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Tabuľka je širšia */
    gap: 4rem;
    align-items: stretch;
    margin-top: 4rem;
}

.hours-table-card {
    background: var(--black);
    color: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.hours-table-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--red);
    filter: blur(120px);
    opacity: 0.2;
}

.table-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.header-icon svg { width: 24px; }
.table-header h3 { font-size: 1.8rem; font-family: 'Lexend', sans-serif; }

.main-hours-list { list-style: none; padding: 0; }

.main-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.1rem;
}

.main-hours-list li .day { color: rgba(255,255,255,0.7); }
.main-hours-list li .time { font-weight: 700; font-family: 'Lexend', sans-serif; }

.main-hours-list li.weekend-active .time { color: var(--red); }
.main-hours-list li.closed { border-bottom: none; opacity: 0.5; }

.admin-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.note-icon {
    width: 30px;
    height: 30px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
    font-size: 0.8rem;
}

.note-text strong { display: block; margin-bottom: 5px; color: var(--white); }
.note-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.instructions-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.instruction-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 40px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.highlight-card {
    background: var(--light-grey);
    position: relative;
}

.ins-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--red);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ins-icon-wrapper svg { width: 30px; }

.ins-text h4 { font-size: 1.8rem; line-height: 1.3; margin-bottom: 2.5rem; font-family: 'Lexend', sans-serif; color: var(--red)}

.contact-row {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.contact-row span { font-size: 0.8rem; text-transform: uppercase; color: var(--dark-grey); letter-spacing: 1px; }
.contact-row a { 
    font-size: 1.4rem; 
    color: var(--black); 
    font-weight: 800; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-row a:hover { color: var(--red); }

.ins-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--dark-grey);
    font-style: italic;
}

.area-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.map-icon { width: 30px; color: var(--red); }
.area-card strong { display: block; font-size: 0.9rem; }
.area-card p { font-size: 0.9rem; color: var(--dark-grey); }

@media (max-width: 1440px) {
    .hours-section {
        margin: 10rem 2rem 6rem 2rem;
    }
}

@media (max-width: 1200px) {

    .hours-grid {
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }

    .hours-table-card, .instruction-card {
        padding: 2.5rem;
        border-radius: 30px;
    }

}

@media (max-width: 992px) {
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .instructions-side {
        order: 2;
    }
    
    .hours-table-card {
        order: 1;
    }
}

@media (max-width: 768px) {

    .main-hours-list li {
        padding: 0.7rem 0;
    }

    .admin-note {
        padding: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }

    .ins-text h4 {
        margin-bottom: 1.5rem;
    }

    .area-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hours-table-card {
        padding: 2rem 1.5rem;
    }

    .header-icon {
        width: 40px;
        height: 40px;
    }

    .instruction-card {
        padding: 2rem 1.5rem;
    }

    .ins-icon-wrapper {
        width: 60px;
        height: 60px;
    }
}
/* --- SEKCIA PRACOVNÁ DOBA --- */

/* --- PÄTIČKA --- */
.main-footer {
    background: var(--black);
    color: var(--white);
    margin-top: 5rem;
    font-family: 'Lexend', sans-serif;
    overflow: hidden;
}

.footer-map-full {
    height: 600px;
    filter: grayscale(1) brightness(1);
    border-bottom: 3px solid var(--red);
    transition: filter 0.5s ease;
}

address {
    font-style: normal;
}

.footer-map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.brand-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-hero {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-giant {
    display: block;
    width: 100%;
    max-width: 400px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-giant:hover {
    transform: scale(1.02);
}

.logo-text {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
}

.main-footer .stroke-outer {
    fill: none;
    stroke: var(--black);
    stroke-width: 6px;
    stroke-linejoin: round;
}

.main-footer .stroke-inner {
    fill: none;
    stroke: var(--light-grey);
    stroke-width: 3px;
    stroke-linejoin: round;
}

.main-footer .fill-main {
    fill: var(--white);
}

.footer-social-left {
    width: 100%;
}

.social-icons-massive {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.s-link-svg {
    color: rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s-link-svg svg {
    width: 30px;
    height: 30px;
}

.s-link-svg:hover {
    color: var(--red);
    transform: scale(1.2) rotate(8deg);
}

.contact-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 4rem;
}

.c-unit label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--dark-grey);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.c-unit p, .c-unit a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.c-unit a:hover {
    color: var(--red);
}

.c-flex-row {
    display: flex;
    gap: 5rem;
    justify-content: flex-end;
}

.footer-legal {
    padding: 3rem 4rem;
    background: var(--black);
    text-align: center;
    font-size: 12px;
    color: var(--dark-grey);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-legal a {
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 700;
}

.footer-legal a:hover {
    color: var(--red);
}

.footer-legal strong {
    color: var(--dark-grey);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 5rem 2rem;
        gap: 5rem;
    }

    .brand-side, .contact-side {
        flex: none;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .c-flex-row {
        justify-content: center;
        gap: 3rem;
    }

    .contact-side {
        gap: 3rem;
    }

    .footer-container .logo-giant {
        max-width: 500px;
    }
}

@media (max-width: 600px) {

    .footer-container {
        padding: 4rem 1rem;
        gap: 4rem;
        overflow: hidden; 
    }

    .footer-brand-hero {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
    }

    .footer-container .logo-giant {
        max-width: none !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-container .logo-giant svg {
        width: 90% !important;
        height: auto;
        flex-shrink: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-container .logo-text {
        font-size: 65px !important; 
    }

    .c-unit label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .c-unit p, .c-unit a {
        font-size: 1.2rem;
    }

    .c-flex-row {
        gap: 2.5rem;
    }

    .footer-social-left {
        margin-top: 1rem;
    }

    .social-icons-massive {
        gap: 1.5rem;
    }

    .footer-legal {
        padding: 2rem 1rem;
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .footer-container .logo-giant svg {
        width: 150% !important;
    }
    
    .footer-container .logo-text {
        font-size: 55px !important;
    }
}
/* --- PÄTIČKA --- */

/* --- DETAIL PRODUKTU --- */
.full-width-catalog {
    background: var(--white) !important;
    color: var(--black) !important;
    max-width: 1250px;
    width: 100%;
    max-height: 92vh;
    border-radius: 30px;
    padding: 0 !important;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--light-grey);
}

.dark-close {
    background: rgba(240, 240, 240, 0.9) !important;
    color: var(--black) !important;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.dark-close:hover {
    background: var(--red) !important;
    color: var(--white) !important;
    transform: rotate(90deg);
}

.catalog-header {
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.catalog-subtitle {
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    display: block;
    margin-bottom: 1rem;
}

.catalog-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.system-entry {
    background: var(--white);
    padding-bottom: 2rem;
}

.system-hero-img {
    height: 500px;
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
}

.system-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.system-entry:hover .system-hero-img img {
    transform: scale(1.08);
}

.glass-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.2rem 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.glass-tag.gold { background: rgba(12, 14, 11, 0.85); color: white; }
.glass-tag.dark { background: rgba(85, 85, 85, 0.85); color: white; }

.tag-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--red);
}

.glass-tag.gold .tag-label, .glass-tag.dark .tag-label { color: #ccc; }

.tag-name {
    font-size: 1.5rem;
    font-weight: 900;
}

.system-details-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    padding: 4rem 6rem;
}

.system-main-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.system-description {
    font-size: 1.1rem!important;
    color: var(--dark-grey)!important;
    line-height: 1.8!important;
}

.system-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feat-card {
    background: #f9f9f9;
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.feat-card:hover {
    background: var(--white);
    border-color: var(--red);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.icon-circle svg {
    width: 24px;
    height: 24px;
}

.feat-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.system-main-info {
    text-align: left;
}

.feat-text strong {
    font-size: 1.1rem;
    color: var(--black);
}

.feat-text span {
    font-size: 0.85rem;
    color: var(--dark-grey);
}

.catalog-cta-v2.premium-card {
    background: linear-gradient(135deg, #0c0e0b 0%, #1a1d19 100%);
    color: white;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem;
    border-radius: 24px;
}

.cta-decoration {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(215, 48, 59, 0.15) 0%, rgba(215, 48, 59, 0) 70%);
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    background: rgba(215, 48, 59, 0.1);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(215, 48, 59, 0.3);
}

.catalog-cta-v2 h3 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.catalog-cta-v2 p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    color: var(--grey);
}

.btn-premium.main-btn {
    background: var(--red);
    color: var(--white);
    padding: 1.3rem 2.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(215, 48, 59, 0.3);
}

.btn-premium.main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(215, 48, 59, 0.5);
    background: #e63642;
}

.btn-premium.main-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-premium.main-btn:hover svg {
    transform: translateX(5px);
}

.cta-note {
    display: block;
    margin-top: 1.2rem;
    font-size: 0.85rem;
    opacity: 0.5;
}

.savings-calculator {
    background: #fcfcfc;
    padding: 5rem 4rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.calc-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calc-header h3 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.input-group {
    margin-bottom: 2rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus { border-color: var(--red); }

.input-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--dark-grey);
    margin-top: 0.5rem;
}

.system-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sys-opt {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: white;
    color: var(--black);
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.sys-opt.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.calc-result-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.result-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--dark-grey);
}

.result-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--black);
    margin: 1rem 0;
}

.result-bar-container {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.result-bar {
    height: 100%;
    width: 0%;
    background: var(--red);
    transition: width 1s ease-out;
}

.result-disclaimer {
    font-size: 0.75rem!important;
    color: #999!important;
    line-height: 1.4!important;
}

@media (max-width: 992px) {
    .system-details-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    
    .system-hero-img {
        height: 350px;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }

    .catalog-cta-v2.premium-card {
        padding: 5rem 2rem;
    }

    .calc-grid { grid-template-columns: 1fr; gap: 2rem; }
    .savings-calculator { padding: 3rem 1.5rem; }
    .full-width-catalog { max-height: 100%; border-radius: 0px; }
    .catalog-subtitle { margin-top: 1rem; }
}
/* --- DETAIL PRODUKTU --- */

/* --- COOKIES --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--grey);
  padding: 0.8em 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {font-size:13px;line-height:22px;color:var(--black);}
.cookie-buttons button {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 0.8em 1.8em;
  margin-left: 2em;
  cursor: pointer;
  font-size: 12px;
  border-radius: 8px;
}
.cookie-buttons button:hover {background:var(--red);border:2px solid var(--red);}
/* --- COOKIES --- */