@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500&display=swap');

/* ============================================
   CSS PREMENNÉ — na základe Figma dizajnu
   ============================================ */
:root {
    /* Farby */
    --color-bg-dark:       #000934;
    --color-bg-navy:       #050086;
    --color-bg-blue:       #0020db;
    --color-bg-light:      #f2f6ff;
    --color-bg-white:      #ffffff;
    --color-bg-gray:       #d9d9d9;

    --color-primary:       #00cda4;
    --color-text-white:    #ffffff;
    --color-text-muted:    #8f9bae;
    --color-text-dark:     #000934;

    /* Typografia */
    --font-heading:        'Poppins', sans-serif;
    --font-body:           'Montserrat', sans-serif;

    --fs-hero:             72px;
    --fs-h2:               48px;
    --fs-h3:               32px;
    --fs-h4:               24px;
    --fs-nav:              16px;
    --fs-body:             17px;
    --fs-small:            14px;

    --fw-regular:          400;
    --fw-medium:           500;
    --fw-semibold:         600;
    --fw-bold:             700;

    /* Layout */
    --container-max:       1512px;
    --container-px:        112px;
    --header-h:            86px;

    /* Border radius */
    --radius-card:         16px;
    --radius-btn:          50px;

    --transition:          0.25s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    background-color: var(--color-bg-dark);
    padding: 24px 0 40px;
}

/* --- Mobile base --- */

.hero__inner {
    display: block;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 8vw, 48px);
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__title::before,
.hero__title::after {
    display: none;
}

.hero__media {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    min-height: 320px;
}

.hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 79, 255, 0.13) 35.56%, rgba(115, 255, 224, 0.65) 108.75%);
    z-index: 1;
    pointer-events: none;
}

.hero__video {
    width: 100%;
    display: block;
    min-height: 320px;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-bg-blue);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: normal;
    max-width: calc(100% - 32px);
    z-index: 3;
}

.hero__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--color-primary);
}

.hero__badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__badge-text strong {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
}

.hero__badge-text span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--fw-regular);
    color: rgba(255,255,255,0.7);
}

/* --- Desktop (992px+) --- */

@media (min-width: 992px) {
    .hero__inner {
        position: relative;
    }

    .hero__title {
        position: absolute;
        top: 0;
        left: 0;
        font-size: var(--fs-hero);
        background-color: var(--color-bg-dark);
        padding: 32px 45px 40px 0px;
        border-radius: 0 0 var(--radius-card) 0;
        margin-bottom: 0;
        z-index: 2;
    }

    .hero__title::before,
    .hero__title::after {
        display: block;
        content: '';
        position: absolute;
        width: var(--radius-card);
        height: var(--radius-card);
    }

    .hero__title::before {
        top: 0;
        right: calc(-1 * var(--radius-card));
        background: radial-gradient(circle at 0% 100%, transparent var(--radius-card), var(--color-bg-dark) calc(var(--radius-card) + 1px));
        transform: rotate(270deg);
    }

    .hero__title::after {
        bottom: calc(-1 * var(--radius-card));
        left: 0;
        background: radial-gradient(circle at 100% 0%, transparent var(--radius-card), var(--color-bg-dark) calc(var(--radius-card) + 1px));
        transform: rotate(90deg);
    }

    .hero__video {
        min-height: unset;
        max-height: 680px;
    }

    .hero__badge {
        padding: 20px 28px;
        gap: 18px;
        white-space: nowrap;
        max-width: unset;
    }

    .hero__badge-icon {
        width: 52px;
        height: 52px;
    }

    .hero__badge-text strong {
        font-size: 18px;
    }

    .hero__badge-text span {
        font-size: 15px;
    }
}

/* ============================================
   PRODUCTS
   ============================================ */

.products {
    background-color: var(--color-bg-dark);
    padding: 100px 0 80px;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    padding: 5px 16px;
    border-radius: var(--radius-btn);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Grid */
.products__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.products__grid .product-card {
    flex: 0 0 calc(25% - 15px);
}

/* Card */
.product-card {
    background-color: rgba(243, 246, 255, 0.05);
    border-radius: 20px 20px 40px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card__img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 16px;
    min-height: 210px;
    background-color: rgba(243, 246, 255, 0.05);
}

.product-card__img img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}

.product-card__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    background-color: rgba(243, 246, 255, 0.05);
}

.product-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-card__desc {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
}

.product-card__btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color var(--transition), transform var(--transition);
    flex-shrink: 0;
    align-self: flex-end;
    margin-top: 16px;
}

.product-card__btn:hover {
    background-color: #00b890;
    transform: scale(1.08);
}

/* ============================================
   RESPONSIVE – PRODUCTS
   ============================================ */

@media (max-width: 1199px) {
    .products__grid .product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .products {
        padding: 64px 0 56px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 40px);
    }

    .products__grid {
        gap: 16px;
    }

    .products__grid .product-card {
        flex: 0 0 100%;
    }
}

/* ============================================
   SOLUTIONS
   ============================================ */

.solutions {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

.solution-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.solution-card:last-child {
    margin-bottom: 0;
}

.solution-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    width: 95%;
    margin: 0 auto;
    padding: 64px 24px;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    box-shadow: 0 4px 40px rgba(0, 9, 52, 0.08);
    order: -1;
}

@media (min-width: 992px) {
    .solution-card {
        flex-direction: row;
        align-items: center;
        margin-bottom: 56px;
    }

    .solution-card__content {
        width: auto;
        min-width: 40%;
        margin: 0;
        padding: 105px 48px;
        border-radius: var(--radius-card) 0 0 var(--radius-card);
        order: 0;
    }

    .solution-card--reverse .solution-card__content {
        border-radius: 0 var(--radius-card) var(--radius-card) 0;
    }
}

.solution-card__title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
}

.solution-card__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-regular);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.btn-solution {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    padding: 11px 22px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
    align-self: flex-start;
    white-space: nowrap;
}

.btn-solution:hover {
    background-color: #00b890;
}

.solution-card__img {
    width: 100%;
    margin: 0 auto;
    height: 380px;
    border-radius: var(--radius-card);
    overflow: hidden;
}

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

@media (min-width: 992px) {
    .solution-card__img {
        flex: 1;
        width: auto;
        margin: 0;
        height: 500px;
        border-radius: var(--radius-card);
    }
}

/* ============================================
   RESPONSIVE – SOLUTIONS (small screens)
   ============================================ */

@media (max-width: 576px) {
    .solutions {
        padding: 56px 0;
    }

    .solution-card__title {
        font-size: 26px;
    }

    .solution-card__img {
        height: 320px;
    }
}

/* ============================================
   WHY CHOICE (PARTNERS)
   ============================================ */

.why-choice {
    background-color: var(--color-bg-white);
    padding: 100px 0;
}

.why-choice__header {
    max-width: 480px;
    margin-bottom: 56px;
}

.why-choice__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--fw-medium);
    color: #00CDA4;
    background-color: #00CDA40F;
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 20px;
}

.why-choice__title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.why-choice__subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-regular);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.why-choice__subtitle strong {
    color: var(--color-text-dark);
    font-weight: var(--fw-semibold);
}

.why-choice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-choice__card {
    background-color: #00CDA40F;
    border-radius: var(--radius-card);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-choice__icon {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.why-choice__card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.3;
}

.why-choice__card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--fw-regular);
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (max-width: 786px) {
    .why-choice__card-title {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .why-choice__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choice__title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .why-choice {
        padding: 64px 0;
    }

    .why-choice__grid {
        grid-template-columns: 1fr;
    }

    .why-choice__title {
        font-size: 28px;
    }
}

/* ============================================
   PRODUCT BANNER — shared hero component
   ============================================ */
.product-banner {
    background-color: var(--color-bg-dark);
    padding: 24px 0 40px;
}

.product-banner__inner {
    display: block;
}

.product-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    width: 100%;
}
.product-banner__breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition);
}
.product-banner__breadcrumb a:hover { color: var(--color-primary); }
.product-banner__breadcrumb span:last-child { color: rgba(255,255,255,0.9); }

.product-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 7vw, 72px);
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.1;
    margin-bottom: 0;
}

.product-banner__tagline {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-bottom: 16px;
}

.product-banner__desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}

.product-banner__media {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    min-height: 320px;
    margin-top: 32px;
}

.product-banner__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21,79,255,0.13) 35.56%, rgba(115,255,224,0.65) 108.75%);
    pointer-events: none;
}

.product-banner__img {
    width: 100%;
    display: block;
    min-height: 320px;
    object-fit: cover;
}

/* Desktop */
@media (min-width: 992px) {
    .product-banner__inner {
        position: relative;
        display: flex;
        align-items: flex-start;
    }

    .product-banner__text {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 60%;
        gap: 0;
        position: static;
        z-index: 2;
    }

    .product-banner__text .product-banner__breadcrumb {
        background-color: var(--color-bg-dark);
        padding: 20px 40px 12px 0;
        margin-bottom: 0;
        position: relative;
    }

    .product-banner__text .product-banner__breadcrumb::before {
        content: '';
        position: absolute;
        top: 0;
        right: -20px;
        width: 20px;
        height: 20px;
        transform: rotate(180deg);
        background: radial-gradient(circle at 0% 0%, transparent 20px, var(--color-bg-dark) calc(20px + 1px));
    }

    .product-banner__title {
        position: relative;
        background-color: var(--color-bg-dark);
        padding: 12px 40px 40px 0;
        border-radius: 0 0 var(--radius-card) 0;
        font-size: 62px;
        width: 100%;
    }

    .product-banner__body {
        background-color: var(--color-bg-dark);
        padding: 0 40px 28px 0;
        width: fit-content;
        position: relative;
    }

    .product-banner__body::before {
        content: '';
        position: absolute;
        top: 0;
        right: -20px;
        width: 20px;
        height: 20px;
        transform: rotate(180deg);
        background: radial-gradient(circle at 0% 0%, transparent 20px, var(--color-bg-dark) calc(20px + 1px));
    }

    .product-banner__body::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: -20px;
        width: 20px;
        height: 20px;
        transform: rotate(90deg);
        background: radial-gradient(circle at 0% 0%, transparent 20px, var(--color-bg-dark) calc(20px + 1px));
    }

    .product-banner__media {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 60%;
        min-height: unset;
        z-index: 1;
    }

    .product-banner__img {
        min-height: unset;
        height: 100%;
    }
}

@media (min-width: 1600px) {
    .product-banner__title { font-size: 72px; }
}

/* ============================================
   HEADER
   ============================================ */

#header {
    background-color: var(--color-bg-dark);
    height: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__logo img {
    display: block;
}

.header__collapse {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 1.5rem;
    justify-content: space-between;
}

/* Nav */
.header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__btn {
    display: inline-block;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: var(--fs-nav);
    font-weight: var(--fw-medium);
    padding: 0.5rem 1rem;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav__btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition);
}

.nav__btn--active::after,
.nav__btn:hover::after {
    width: calc(100% - 2rem);
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 8px;
    min-width: 240px;
    z-index: 999;
    background-color: transparent;
}

.nav__dropdown-menu-inner {
    background-color: #00CDA4;
    border-radius: 20px;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nav__dropdown:hover .nav__dropdown-menu {
    display: block;
}

.nav__dropdown-item {
    display: block;
    padding: 14px 24px;
    color: var(--color-text-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: var(--fs-nav);
    font-weight: var(--fw-medium);
    transition: background-color var(--transition);
    white-space: nowrap;
}

.nav__dropdown-item:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--color-text-white);
}

/* Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-outline-teal,
.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--fw-semibold);
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-outline-teal {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline-teal:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.btn-teal {
    background: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    color: var(--color-bg-dark);
}

.btn-teal:hover {
    background: transparent;
    color: var(--color-primary);
}

/* Language switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 1rem;
    background: transparent;
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-btn);
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.lang-switcher__btn:hover {
    background: rgba(0, 205, 164, 0.08);
}

.lang-switcher__icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.lang-switcher__chevron {
    color: var(--color-primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.lang-switcher.is-open .lang-switcher__chevron {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #0a1330;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 4px;
    min-width: 90px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lang-switcher.is-open .lang-switcher__dropdown {
    display: block;
}

.lang-switcher__option {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    border-radius: 8px;
    transition: all var(--transition);
}

.lang-switcher__option:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-text-white);
}

.lang-switcher__option--active {
    color: var(--color-primary);
}

/* Hamburger */
.header__toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    margin-left: auto;
}

.header__toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text-white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Hamburger → X */
.header__toggler.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__toggler.is-open span:nth-child(2) {
    opacity: 0;
}
.header__toggler.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   RESPONSIVE – HEADER
   ============================================ */

@media (max-width: 991px) {
    #header {
        height: auto;
        padding: 1rem 0;
    }

    .header__inner {
        flex-wrap: wrap;
        gap: 0;
    }

    .header__logo {
        flex: 1;
    }

    .header__toggler {
        display: flex;
    }

    /* Menu vypadne dole pod logo riadok */
    .header__collapse {
        display: none;
        flex: 0 0 100%;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0 0 0.75rem;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .header__collapse.is-open {
        display: flex;
        margin-top: 24px;
    }

    /* Nav linky v mobilnom menu */
    .header__nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    /* Skryť dropdown na mobile — Products je priamy link */
    .nav__dropdown-menu {
        display: none !important;
    }

    .nav__btn {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-decoration: none;
    }

    .nav__btn::after {
        display: none;
    }

    /* Akčné tlačidlá */
    .header__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn-outline-teal,
    .btn-teal {
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .lang-switcher {
        width: 100%;
    }

    .lang-switcher__btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .lang-switcher__dropdown {
        position: static;
        box-shadow: none;
        margin-top: 4px;
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
    background-color: var(--color-bg-dark);
    padding: 72px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 24px;
}

.footer__label {
    display: block;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__address p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-regular);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer__address a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__address a:hover {
    color: var(--color-primary);
}

.footer__col--logo {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer__logo {
    max-width: 180px;
    display: block;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
}

.footer__copy {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--fw-regular);
    color: rgba(255, 255, 255, 0.4);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__social-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 8px;
    color: var(--color-bg-dark);
    transition: opacity var(--transition);
}

.footer__social-link:hover {
    opacity: 0.8;
}

/* RESPONSIVE – FOOTER */

@media (max-width: 576px) {
    .footer__col--logo {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    #footer {
        padding: 56px 0 0;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 0 32px;
    }
}


/* ============================================
   PRODUCTS PAGE — Hero
   ============================================ */

.products-page__hero {
    background-color: var(--color-bg-dark);
    padding: 56px 0 48px;
}

.products-page__title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.05;
    margin: 0;
}

/* ============================================
   PRODUCTS PAGE — Card list
   ============================================ */

.products-page__list {
    background-color: var(--color-bg-dark);
    padding: 0 0 100px;
}

/* ============================================
   PCARD — dark solution-card variant
   ============================================ */

.pcard {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.pcard:last-child {
    margin-bottom: 0;
}

/* ---- Content side ---- */
.pcard__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    width: 95%;
    margin: 0 auto;
    padding: 64px 24px;
    background-color: #131D44;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    box-shadow: 0 4px 40px rgba(0, 9, 52, 0.08);
    order: -1;
}

.pcard__title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: var(--fw-bold);
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.pcard__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-regular);
    color: #ffffff;
    line-height: 1.7;
    max-width: 300px;
    margin: 0;
}

.pcard__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    padding: 11px 22px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color var(--transition);
    align-self: flex-start;
    white-space: nowrap;
    margin-top: 4px;
}

.pcard__btn:hover {
    background-color: #00b890;
}

/* ---- Image side ---- */
.pcard__img {
    width: 100%;
    margin: 0 auto;
    height: 380px;
    border-radius: var(--radius-card);
    overflow: hidden;
}

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

/* ============================================
   PCARD — Desktop layout (768px+)
   ============================================ */

@media (min-width: 992px) {
    .pcard {
        flex-direction: row;
        align-items: center;
        margin-bottom: 56px;
    }

    .pcard__content {
        width: auto;
        min-width: 40%;
        margin: 0;
        padding: 105px 48px;
        border-radius: var(--radius-card) 0 0 var(--radius-card);
        order: 0;
    }

    .pcard__img {
        flex: 1;
        width: auto;
        margin: 0;
        height: 500px;
        border-radius: var(--radius-card);
        overflow: hidden;
    }

    /* Reverse: image left, text right */
    .pcard--reverse .pcard__content {
        order: 1;
        border-radius: 0 var(--radius-card) var(--radius-card) 0;
    }

    .pcard--reverse .pcard__img {
        order: 0;
    }
}


/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 576px) {
    .products-page__list {
        padding: 0 0 56px;
    }

    .pcard__title {
        font-size: 26px;
    }

    .pcard__img {
        height: 320px;
    }
}

/* ============================================
   ACCESSORIES PAGE — Category headings
   ============================================ */

.acc-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.15;
    text-align: center;
    padding-top: 80px;
    margin-bottom: 16px;
}

.acc-section__desc {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--color-text-muted);
    line-height: 1.7;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* ============================================
   1. MAIN BANNER 3
   ============================================ */
.main-banner-3 {
    background-color: var(--color-bg-dark);
    padding: 80px 0;
}

.main-banner-3 .product-banner__breadcrumb {
    margin-bottom: 0;
}

.main-banner-3__content {
    padding: 40px 0 60px;
}

.main-banner-3__title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    color: var(--color-text-white);
    line-height: 1.1;
    margin-bottom: 48px;
    padding-top: 24px;
}

.main-banner-3__desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
    margin: 0;
    max-width: 320px;
}

.main-banner-3__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.main-banner-3__img {
    margin-bottom: -130px;
}

.main-banner-3__img img {
    width: 100%;
    display: block;
    border-radius: var(--radius-card);
}

/* ============================================
   2. CONTACTS
   ============================================ */
.ct-contacts {
    padding: 180px 0 100px;
    background-color: var(--color-bg-white);
}

.ct-contacts__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.ct-contacts__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.1;
    margin: 0;
}

.ct-contacts__list {
    @media (min-width: 992px) {
        min-width: 630px;
    }
}

.ct-contact-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    padding: 40px 0;
    border-bottom: 1px solid #E8EAF0;
}

.ct-contact-row:first-child {
    padding-top: 0;
}

.ct-contact-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ct-contact-row__label {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

.ct-contact-row__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-contact-info__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ct-contact-info__label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
}

.ct-contact-info__value {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
}

.ct-contact-info__value:hover {
    color: var(--color-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .main-banner-3__content {
        padding: 0 0 40px;
    }

    .main-banner-3__img {
        max-width: 85%;
        width: 85%;
        margin: 0 auto -30px;
    }

    .ct-contacts {
        padding-top: 120px;
    }

    .ct-contacts__inner {
        flex-direction: column;
        gap: 40px;
    }

    .ct-contact-row {
        grid-template-columns: 160px 1fr;
    }
    .ct-contacts__list {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .main-banner-3 {
        padding: 56px 0 0;
    }

    .ct-contacts {
        padding: 100px 0;
    }

    .ct-contact-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


/* ============================================
   ALL-IN-ONE HEATING & HOT WATER — PAGE STYLES
   ============================================ */

/* ============================================
   1. PERFORMANCE & EFFICIENCY
   ============================================ */
.hw-features {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}
.hw-features__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 56px;
    align-items: flex-start;
}
.hw-features__heading {
    flex: 0 0 36%;
}
.hw-features__heading h2 {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
}
.hw-features__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: fit-content;
}
.hw-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.hw-feature-item__icon {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hw-feature-item__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 6px;
}
.hw-feature-item__desc {
    font-family: var(--font-body);
    font-size: 17px;
    max-width: 420px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   2. SUSTAINABLE & FUTURE-READY
   ============================================ */
.hw-sustainable {
    padding: 80px 0;
}
.hw-sustainable__inner {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 64px 56px;
    min-height: 460px;
}
.hw-sustainable__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.hw-sustainable__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000A34 4.81%, rgba(0, 10, 52, 0.7) 40%, rgba(240, 246, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
.hw-sustainable__content {
    position: relative;
    z-index: 2;
    flex: 0 0 48%;
}
.hw-sustainable__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: 32px;
}
.hw-sustainable__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hw-sustainable__list li p {
    font-family: var(--font-body);
    font-size: 17px;
    color: #ffffff;
    line-height: 1.2;
    margin: 4px 0 0;
    max-width: 420px;
}
.hw-sustainable__highlight {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}
.hw-sustainable__certs {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ============================================
   3. SMART CONTROL — reuses hw-features layout
   ============================================ */
.hw-smart {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

/* ============================================
   4. VIDEO SECTION
   ============================================ */
.hw-solutions-visual {
    background-color: var(--color-bg-white);
    padding: 80px 0;
    text-align: center;
}
.hw-solutions-visual__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 40px;
}
.hw-solutions-visual__video {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 48px rgba(0, 9, 52, 0.12);
}
.hw-solutions-visual__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.hw-solutions-visual__caption {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 20px;
}

/* ============================================
   5. TECHNICAL SPECIFICATIONS TABLE
   ============================================ */
.hw-table {
    background-color: var(--color-bg-white);
    padding: 80px 0;
    border-top: 1px solid #eef1f7;
}
.hw-table__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 32px;
}
.hw-table__wrap {
    position: relative;
    overflow-x: auto;
    border-radius: var(--radius-card);
    border: 1px solid #eef1f7;
    max-width: 100%;
}
.hw-table__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--color-bg-white));
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.hw-table__wrap.is-open .hw-table__fade {
    opacity: 0;
}
.hw-table__body-wrap {
    max-height: 320px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.hw-table__body-wrap.is-open {
    max-height: 9999px;
}
.hw-table__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 13px;
}
.hw-table__table th {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-weight: var(--fw-semibold);
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}
.hw-table__table td {
    padding: 12px 16px;
    color: var(--color-text-dark);
    border-bottom: 1px solid #eef1f7;
    white-space: nowrap;
}
.hw-table__table tbody tr:last-child td { border-bottom: none; }
.hw-table__table tbody tr:nth-child(even) td { background-color: #f9fafb; }
.hw-table__subhead {
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    background-color: #f2f6ff !important;
}
.hw-table__footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* ============================================
   6. RELATED PRODUCTS
   ============================================ */
.hw-related {
    background-color: var(--color-bg-dark);
    padding: 80px 0;
}
.hw-related__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    margin-bottom: 40px;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hw-features__inner,
    .hw-sustainable__inner {
        flex-direction: column;
        gap: 40px;
    }
    .hw-features__heading,
    .hw-sustainable__content {
        flex: unset;
        width: 100%;
    }
    .hw-sustainable__inner { padding: 48px 32px; min-height: unset; }
    .hw-features__inner { padding: 0; }
    .hw-table__wrap { max-width: 100%; }
}

@media (max-width: 576px) {
    .hw-features,
    .hw-sustainable,
    .hw-smart,
    .hw-solutions-visual,
    .hw-table,
    .hw-related {
        padding: 56px 0;
    }
    .hw-features__heading h2,
    .hw-sustainable__title,
    .hw-solutions-visual__title,
    .hw-table__title,
    .hw-related__title { font-size: 26px; }
    .hw-feature-item__title { font-size: 18px; }
}

/* ============================================
   ALL-IN-ONE WATER HEATER — PAGE STYLES
   ============================================ */

/* ============================================
   1. PERFORMANCE & EFFICIENCY
   ============================================ */
.wh-features {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}
.wh-features__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 56px;
    align-items: flex-start;
}
.wh-features__heading {
    flex: 0 0 36%;
}
.wh-features__heading h2 {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
}
.wh-features__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: fit-content;
}
.wh-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.wh-feature-item__icon {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wh-feature-item__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 6px;
}
.wh-feature-item__desc {
    font-family: var(--font-body);
    font-size: 17px;
    max-width: 420px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   2. SUSTAINABLE & FUTURE-READY
   ============================================ */
.wh-sustainable {
    padding: 80px 0;
}
.wh-sustainable__inner {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 64px 56px;
    min-height: 460px;
}
.wh-sustainable__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.wh-sustainable__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000A34 4.81%, rgba(0, 10, 52, 0.7) 40%, rgba(240, 246, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
.wh-sustainable__content {
    position: relative;
    z-index: 2;
    flex: 0 0 48%;
}
.wh-sustainable__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: 32px;
}
.wh-sustainable__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.wh-sustainable__list li p {
    font-family: var(--font-body);
    font-size: 17px;
    color: #ffffff;
    line-height: 1.2;
    margin: 4px 0 0;
    max-width: 420px;
}
.wh-sustainable__highlight {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}
.wh-sustainable__certs {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ============================================
   3. SMART CONTROL
   ============================================ */
.wh-smart {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

/* ============================================
   4. TECHNICAL SPECIFICATIONS TABLE
   ============================================ */
.wh-table {
    background-color: var(--color-bg-white);
    padding: 80px 0;
    border-top: 1px solid #eef1f7;
}
.wh-table__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 32px;
}
.wh-table__wrap {
    position: relative;
    overflow-x: auto;
    border-radius: var(--radius-card);
    border: 1px solid #eef1f7;
    max-width: 100%;
}
.wh-table__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--color-bg-white));
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.wh-table__wrap.is-open .wh-table__fade {
    opacity: 0;
}
.wh-table__body-wrap {
    max-height: 320px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.wh-table__body-wrap.is-open {
    max-height: 9999px;
}
.wh-table__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 13px;
}
.wh-table__table th {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-weight: var(--fw-semibold);
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}
.wh-table__table td {
    padding: 12px 16px;
    color: var(--color-text-dark);
    border-bottom: 1px solid #eef1f7;
    white-space: nowrap;
}
.wh-table__table tbody tr:last-child td { border-bottom: none; }
.wh-table__table tbody tr:nth-child(even) td { background-color: #f9fafb; }
.wh-table__subhead {
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    background-color: #f2f6ff !important;
}
.wh-table__footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* ============================================
   5. RELATED PRODUCTS
   ============================================ */
.wh-related {
    background-color: var(--color-bg-dark);
    padding: 80px 0;
}
.wh-related__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    margin-bottom: 40px;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .wh-features__inner,
    .wh-sustainable__inner {
        flex-direction: column;
        gap: 40px;
    }
    .wh-features__heading,
    .wh-sustainable__content {
        flex: unset;
        width: 100%;
    }
    .wh-sustainable__inner { padding: 48px 32px; min-height: unset; }
    .wh-features__inner { padding: 0; }
}

@media (max-width: 576px) {
    .wh-features,
    .wh-sustainable,
    .wh-smart,
    .wh-table,
    .wh-related {
        padding: 56px 0;
    }
    .wh-features__heading h2,
    .wh-sustainable__title,
    .wh-table__title,
    .wh-related__title { font-size: 26px; }
    .wh-feature-item__title { font-size: 18px; }
}

/* ============================================
   SKY TOP-BLOW MONOBLOCK — PAGE STYLES
   ============================================ */

/* ============================================
   2. PERFORMANCE & EFFICIENCY
   ============================================ */
.pd-features {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}
.pd-features__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 56px;
    align-items: flex-start;
}
.pd-features__heading {
    flex: 0 0 36%;
}
.pd-features__heading h2 {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
}
.pd-features__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: fit-content;
}
.pd-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.pd-feature-item__icon {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-feature-item__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 6px;
}
.pd-feature-item__desc {
    font-family: var(--font-body);
    font-size: 17px;
    max-width: 420px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   3. SUSTAINABLE & FUTURE-READY
   ============================================ */
.pd-sustainable {
    padding: 80px 0;
}
.pd-sustainable__inner {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 64px 56px;
    min-height: 460px;
}

.pd-sustainable__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.pd-sustainable__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000A34 4.81%, rgba(0, 10, 52, 0.7) 40%, rgba(240, 246, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.pd-sustainable__content {
    position: relative;
    z-index: 2;
    flex: 0 0 48%;
}
.pd-sustainable__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: 32px;
}
.pd-sustainable__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pd-sustainable__list li p {
    font-family: var(--font-body);
    font-size: 17px;
    color: #ffffff;
    line-height: 1.2;
    margin: 4px 0 0;
    max-width: 420px;
}
.pd-sustainable__highlight {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

/* ============================================
   4. SMART CONTROL — reuses pd-features layout
   ============================================ */
.pd-smart {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

/* ============================================
   5. COMFORT & QUIET OPERATION
   ============================================ */
.pd-comfort {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}
.pd-comfort__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.pd-comfort__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.pd-comfort__content {
    width: 45%;
}
.pd-comfort__title {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: 32px;
}
.pd-comfort__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pd-comfort__feature p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin: 4px 0 0;
}
.pd-comfort__highlight {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

/* ============================================
   6. HEAT PUMP SOLUTIONS VISUAL
   ============================================ */
.pd-solutions-visual {
    background-color: var(--color-bg-white);
    padding: 80px 0;
    text-align: center;
}
.pd-solutions-visual__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 40px;
}
.pd-solutions-visual__media {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-card);
    overflow: hidden;
    max-width: 680px;
    width: 100%;
}
.pd-solutions-visual__video {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 48px rgba(0, 9, 52, 0.12);
}

.pd-solutions-visual__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.pd-annotation {
    position: absolute;
    background-color: var(--color-bg-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    white-space: nowrap;
    line-height: 1.4;
}
.pd-annotation--1 { top: 18%; right: 6%; }
.pd-annotation--2 { top: 42%; right: 4%; }
.pd-annotation--3 { top: 66%; right: 6%; }
.pd-solutions-visual__caption {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 20px;
}

/* ============================================
   7. PRODUCT LINE TABLE
   ============================================ */
.pd-table {
    background-color: var(--color-bg-white);
    padding: 80px 0;
    border-top: 1px solid #eef1f7;
}
.pd-table__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 32px;
}
.pd-table__wrap {
    position: relative;
    overflow-x: auto;
    border-radius: var(--radius-card);
    border: 1px solid #eef1f7;
}
.pd-table__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--color-bg-white));
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.pd-table__wrap.is-open .pd-table__fade {
    opacity: 0;
}
.pd-table__body-wrap {
    max-height: 320px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.pd-table__body-wrap.is-open {
    max-height: 9999px;
}
.pd-table__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 13px;
}
.pd-table__table th {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-weight: var(--fw-semibold);
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}
.pd-table__table td {
    padding: 12px 16px;
    color: var(--color-text-dark);
    border-bottom: 1px solid #eef1f7;
    white-space: nowrap;
}
.pd-table__table tbody tr:last-child td { border-bottom: none; }
.pd-table__table tbody tr:nth-child(even) td { background-color: #f9fafb; }
.pd-table__subhead {
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    background-color: #f2f6ff !important;
}
.pd-table__footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* ============================================
   8. RELATED PRODUCTS — reuses product-card
   ============================================ */
.pd-related {
    background-color: var(--color-bg-dark);
    padding: 80px 0;
}
.pd-related .products__grid,
.sb-related .products__grid {
    justify-content: flex-start;
}
.pd-related__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    margin-bottom: 40px;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .pd-hero__inner,
    .pd-features__inner,
    .pd-sustainable__inner,
    .pd-comfort__inner {
        flex-direction: column;
        gap: 40px;
    }
    .pd-hero__content,
    .pd-features__heading,
    .pd-sustainable__content {
        flex: unset;
        width: 100%;
    }
    .pd-hero__img img { max-height: 300px; }
    .pd-sustainable__inner { padding: 48px 32px; min-height: unset; }
}

@media (max-width: 576px) {
    .pd-hero,
    .pd-features,
    .pd-sustainable,
    .pd-smart,
    .pd-comfort,
    .pd-solutions-visual,
    .pd-table,
    .pd-related {
        padding: 56px 0;
    }
    .pd-hero__title { font-size: 32px; }
    .pd-features__heading h2,
    .pd-sustainable__title,
    .pd-comfort__title,
    .pd-solutions-visual__title,
    .pd-table__title,
    .pd-related__title { font-size: 26px; }
}

/* ============================================
   SKY SIDE-BLOW MONOBLOCK — PAGE STYLES
   ============================================ */

/* ============================================
   2. PERFORMANCE & EFFICIENCY
   ============================================ */
.sb-features {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}
.sb-features__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 56px;
    align-items: flex-start;
}
.sb-features__heading {
    flex: 0 0 36%;
}
.sb-features__heading h2 {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
}
.sb-features__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: fit-content;
}
.sb-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.sb-feature-item__icon {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sb-feature-item__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 6px;
}
.sb-feature-item__desc {
    font-family: var(--font-body);
    font-size: 17px;
    max-width: 420px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   3. SUSTAINABLE & FUTURE-READY
   ============================================ */
.sb-sustainable {
    padding: 80px 0;
}
.sb-sustainable__inner {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 64px 56px;
    min-height: 460px;
}
.sb-sustainable__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.sb-sustainable__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000A34 4.81%, rgba(0, 10, 52, 0.7) 40%, rgba(240, 246, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
.sb-sustainable__content {
    position: relative;
    z-index: 2;
    flex: 0 0 48%;
}
.sb-sustainable__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: 32px;
}
.sb-sustainable__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sb-sustainable__list li p {
    font-family: var(--font-body);
    font-size: 17px;
    color: #ffffff;
    line-height: 1.2;
    margin: 4px 0 0;
    max-width: 420px;
}
.sb-sustainable__highlight {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

/* ============================================
   4. SMART CONTROL — reuses sb-features layout
   ============================================ */
.sb-smart {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

/* ============================================
   5. COMFORT & QUIET OPERATION
   ============================================ */
.sb-comfort {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}
.sb-comfort__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.sb-comfort__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.sb-comfort__content {
    width: 45%;
}
.sb-comfort__title {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: 32px;
}
.sb-comfort__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sb-comfort__feature p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin: 4px 0 0;
}
.sb-comfort__highlight {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

/* ============================================
   6. HEAT PUMP SOLUTIONS VISUAL
   ============================================ */
.sb-solutions-visual {
    background-color: var(--color-bg-white);
    padding: 80px 0;
    text-align: center;
}
.sb-solutions-visual__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 40px;
}
.sb-solutions-visual__video {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 48px rgba(0, 9, 52, 0.12);
}
.sb-solutions-visual__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.sb-solutions-visual__caption {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 20px;
}

/* ============================================
   7. PRODUCT LINE TABLE
   ============================================ */
.sb-table {
    background-color: var(--color-bg-white);
    padding: 80px 0;
    border-top: 1px solid #eef1f7;
}
.sb-table__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 32px;
}
.sb-table__wrap {
    position: relative;
    overflow-x: auto;
    border-radius: var(--radius-card);
    border: 1px solid #eef1f7;
}

.sb-table__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--color-bg-white));
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sb-table__wrap.is-open .sb-table__fade {
    opacity: 0;
}

.sb-table__body-wrap {
    max-height: 320px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.sb-table__body-wrap.is-open {
    max-height: 9999px;
}
.sb-table__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 13px;
}
.sb-table__table th {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-weight: var(--fw-semibold);
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}
.sb-table__table td {
    padding: 12px 16px;
    color: var(--color-text-dark);
    border-bottom: 1px solid #eef1f7;
    white-space: nowrap;
}
.sb-table__table tbody tr:last-child td { border-bottom: none; }
.sb-table__table tbody tr:nth-child(even) td { background-color: #f9fafb; }
.sb-table__subhead {
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    background-color: #f2f6ff !important;
}
.sb-table__footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* ============================================
   7b. SUSTAINABLE — certifikáty
   ============================================ */
.sb-sustainable__certs {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.sb-cert {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.05em;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.sb-certifications {
    background-color: var(--color-bg-light);
    padding: 80px 0;
}

.sb-certifications__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 56px;
}

.sb-certifications__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sb-cert-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-card);
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.sb-cert-card__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    margin-bottom: 12px;
}

.sb-cert-card__desc {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================
   8. RELATED PRODUCTS — reuses product-card
   ============================================ */
.sb-related {
    background-color: var(--color-bg-dark);
    padding: 80px 0;
}
.sb-related__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    margin-bottom: 40px;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .sb-hero__inner,
    .sb-features__inner,
    .sb-sustainable__inner,
    .sb-comfort__inner {
        flex-direction: column;
        gap: 40px;
    }
    .sb-hero__text,
    .sb-features__heading,
    .sb-sustainable__content {
        flex: unset;
        width: 100%;
    }
    .sb-comfort__content { width: 100%; }
    .sb-sustainable__inner { padding: 48px 32px; min-height: unset; }
    .sb-features__inner { padding: 0; }
}

@media (max-width: 576px) {
    .sb-hero,
    .sb-features,
    .sb-sustainable,
    .sb-smart,
    .sb-comfort,
    .sb-solutions-visual,
    .sb-table,
    .sb-related {
        padding: 56px 0;
    }
    .sb-hero__title { font-size: 32px; }
    .sb-features__heading h2,
    .sb-sustainable__title,
    .sb-comfort__title,
    .sb-solutions-visual__title,
    .sb-table__title,
    .sb-related__title { font-size: 26px; }
    .sb-feature-item__title { font-size: 18px; }
}

/* ============================================
   MODELS & SOLUTIONS PAGE
   ============================================ */

/* Banner */
.ms-banner {
    padding: 80px 0;
}
.ms-banner__breadcrumb {
    padding-bottom: 24px;
}
.ms-banner__img {
    border-radius: 20px;
}
@media (max-width: 991px) {
    .ms-banner__img {
        margin-top: 32px;
    }
}
.ms-banner__subtitle {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Features */
.ms-features {
    padding: 80px 0;
    background-color: var(--color-bg-white);
}
.ms-features__inner {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}
.ms-features__heading {
    flex: 0 0 340px;
}
.ms-features__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin: 0;
}
.ms-features__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ms-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.ms-feature-item__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
}
.ms-feature-item__icon svg {
    width: 64px;
    height: 64px;
    object-fit: contain;
}
.ms-feature-item__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin: 0 0 4px;
}
.ms-feature-item__desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Product Line */
.ms-lineup {
    background-color: var(--color-bg-dark);
    padding: 80px 0;
}
.ms-lineup__heading {
    text-align: center;
    margin-bottom: 48px;
}
.ms-lineup__title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    margin: 0 0 12px;
}
.ms-lineup__desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.ms-lineup__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.ms-lineup-card {
    flex: 0 0 calc(25% - 15px);
    background-color: rgba(255,255,255,0.05);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ms-lineup-card__img {
    height: 200px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.03);
}
.ms-lineup-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}
.ms-lineup-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.ms-lineup-card__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    margin: 0;
    line-height: 1.3;
}
.ms-lineup-card__desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.ms-lineup-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin-top: 8px;
    transition: background-color 0.2s;
}
.ms-lineup-card__btn:hover {
    background-color: #00b890;
}

/* Applications */
.ms-applications {
    padding: 80px 0;
    background-color: var(--color-bg-white);
}
.ms-applications__heading {
    text-align: center;
    margin-bottom: 48px;
}
.ms-applications__title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.2;
}
.ms-applications__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ms-app-tile {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 430px;
}
.ms-app-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 22.6%, #000A34 100%);
    border-radius: var(--radius-card);
}
.ms-app-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ms-app-tile__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 44px;
    background: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ms-app-tile__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: var(--fw-semibold);
    color: #fff;
    line-height: 1.2;
}
.ms-app-tile__desc {
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.2;
}

/* Comparison Table */
.ms-compare {
    padding: 80px 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid #E8EAF0;
}
.ms-compare__title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
    margin: 0 0 48px;
    line-height: 1.2;
}
.ms-compare__table-wrap {
    overflow-x: auto;
}
.ms-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 14px;
}
.ms-compare__table thead th {
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: 24px;
    color: var(--color-text-dark);
    text-align: center;
}
.ms-compare__table thead th:first-child {
    width: 200px;
}
.ms-compare__table thead th:nth-child(2) {
    background: #F3F6FF;
    border-radius: 20px 20px 0 0;
}
.ms-compare__table tbody td {
    padding: 16px 20px;
    color: #374151;
    border-bottom: 1px dashed #E8EAF0;
    line-height: 1.5;
}

.ms-compare__table tbody tr:last-child td {
    border-bottom: none;

}

.ms-compare__table tbody tr:last-child td:nth-child(2) {
    border-radius: 0 0 20px 20px;
}

.ms-compare__table tbody tr td:first-child {
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
}

.ms-compare__table tbody tr td:last-child,
.ms-compare__table tbody tr td:nth-child(2) {
    text-align: center;
}

.ms-compare__table tbody tr td:nth-child(2) {
    background: #F3F6FF;
}

/* Responsive */
@media (max-width: 1199px) {
    .ms-lineup-card {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 991px) {
    .ms-features__inner {
        flex-direction: column;
        gap: 40px;
    }
    .ms-features__heading {
        flex: unset;
    }
    .ms-applications__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .ms-features,
    .ms-lineup,
    .ms-applications,
    .ms-compare {
        padding: 56px 0;
    }
    .ms-lineup-card {
        flex: 0 0 100%;
    }
    .ms-applications__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SALES, SERVICE & PARTNERSHIP — PAGE STYLES
   ============================================ */

/* ===== AUTHORIZED SALES PARTNERS ===== */
.sp-partners {
    padding: 180px 0;
    background-color: var(--color-bg-white);
}
.sp-partners__header {
    margin-bottom: 48px;
}
.sp-partners__title {
    font-family: var(--font-body);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.sp-partners__desc {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 480px;
}
.sp-partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sp-partner-card {
    background: rgba(0, 205, 164, 0.06);
    transition: box-shadow var(--transition);
    border-radius: var(--radius-card);
    padding: 32px 24px;
}

.sp-partner-card__svg {
    width: 100%;
    height: 100px;
    display: block;
    margin-bottom: 16px;
}

.sp-partner-card__map {
    margin-bottom: 32px;
}

.sp-partner-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    color: #8F9BAE;
    margin-bottom: 0;
    font-weight: bold;
}
.sp-partner-card__area {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===== TECHNICAL SUPPORT ===== */
.sp-tech-support {
    padding: 120px 0;
    background-color: var(--color-bg-light);
}
.sp-tech-support__heading {
    padding-right: 40px;
}
.sp-tech-support__title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.sp-tech-support__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.sp-tech-support__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sp-support-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.sp-support-item__icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-support-item__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
    margin-bottom: 4px;
}
.sp-support-item__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== FROM COMPONENTS TO LONG-TERM SUPPORT ===== */
.sp-components {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.sp-components__heading {
    margin-bottom: 100px;
}
.sp-components__title {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.2;
}
.sp-components__desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
    margin-bottom: 32px;
}
.sp-components__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    padding: 14px 24px;
    border-radius: var(--radius-btn);
    transition: all var(--transition);
}
.sp-components__btn:hover {
    color: var(--color-primary);
    background: transparent;
}
.sp-components__steps {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.sp-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    padding: 24px 16px;
    height: auto;
}
.sp-step__arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
}
.sp-step__arrow svg path {
    stroke: #fff;
}
.sp-step__num {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}
.sp-step__title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: var(--fw-semibold);
    color: var(--color-text-white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.sp-step__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}
/* Swiper – arrow between slides (all devices) */
.sp-components__steps .swiper-slide,
.swiper-authorized .swiper-slide {
    position: relative;
}
.sp-slide-arrow {
    position: absolute;
    right: -42px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    flex-shrink: 0;
}
.swiper-slide:last-child .sp-slide-arrow {
    display: none;
}
/* Swiper – desktop ≥1200: show all 6 in normal flex row */
@media (min-width: 1200px) {
    .sp-components__steps {
        overflow: visible;
    }
    .sp-components__steps .swiper-wrapper {
        display: flex;
        align-items: stretch;
        gap: 44px;
        transform: none !important;
        width: 100%;
        box-sizing: border-box;
    }
    .sp-components__steps .swiper-slide {
        flex: 1;
        width: auto !important;
        height: auto;
    }
    .sp-steps-pagination {
        display: none;
    }
}
/* Swiper – slider <1200 */
@media (max-width: 1199px) {
    .sp-components__steps {
        display: block;
        overflow: hidden;
    }
    .sp-components__steps .sp-step {
        flex: none;
    }
    .sp-steps-pagination {
        margin-top: 20px;
        text-align: center;
    }
    .sp-steps-pagination .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.3);
        opacity: 1;
    }
    .sp-steps-pagination .swiper-pagination-bullet-active {
        background: var(--color-primary);
    }
}
/* Swiper authorized – equal slide heights */
.swiper-authorized .swiper-wrapper {
    align-items: stretch;
}
.swiper-authorized .swiper-slide {
    height: auto;
}
/* Swiper authorized – desktop ≥768: show all 3 in normal flex row */
@media (min-width: 768px) {
    .swiper-authorized {
        overflow: visible;
    }
    .swiper-authorized .swiper-wrapper {
        display: flex;
        align-items: stretch;
        gap: 44px;
        transform: none !important;
        width: 100%;
        box-sizing: border-box;
    }
    .swiper-authorized .swiper-slide {
        flex: 1;
        width: auto !important;
        height: auto;
    }
    .sp-authorized-pagination {
        display: none;
    }
}
/* Swiper authorized – slider <768 */
@media (max-width: 767px) {
    .swiper-authorized {
        display: block;
        overflow: hidden;
    }
    .sp-authorized-pagination {
        margin-top: 20px;
        text-align: center;
    }
    .sp-authorized-pagination .swiper-pagination-bullet {
        background: rgba(0, 9, 52, 0.2);
        opacity: 1;
    }
    .sp-authorized-pagination .swiper-pagination-bullet-active {
        background: var(--color-primary);
    }
}

/* ===== WHY CHOOSE SKY ===== */
.sp-why-choose {
    padding: 100px 0;
}
.sp-why-choose__heading {
    flex: 0 0 40%;
}
.sp-why-choose__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.sp-why-choose__title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.sp-why-choose__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.sp-why-choose__stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.sp-stat {
    background: #F3F6FF;
    border-radius: var(--radius-card);
    padding: 28px 24px;
}
.sp-stat:first-child {
    grid-column: 2;
}
.sp-stat__value {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: 53px;
}
.sp-stat__desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== PART OF ENERGYSUN TECHNOLOGY ECOSYSTEM ===== */
.sp-ecosystem {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.sp-ecosystem__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.sp-ecosystem__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 9, 52, 0.72);
}
.sp-ecosystem__container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 80px;
    align-items: center;
}
.sp-ecosystem__content {
    flex: 0 0 48%;
}
.sp-ecosystem__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.sp-ecosystem__title {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: var(--fw-semibold);
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.sp-ecosystem__desc {
    font-size: 20px;
    color: #ffffff;
    line-height: 24px;
    max-width: 410px;
}
.sp-ecosystem__logos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sp-eco-logo__icon {
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-eco-logo__name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    letter-spacing: 0.05em;
}

/* ===== BUILT TO SUPPORT YOUR BUSINESS ===== */
.sp-built {
    padding: 80px 0;
    background-color: var(--color-bg-white);
}
.sp-built__header {
    padding-right: 40px;
}
.sp-built__title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.sp-built__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.sp-built__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.sp-built-card {
    padding: 36px 32px;
    border-radius: var(--radius-card);
    background: rgba(0, 205, 164, 0.06);
    transition: box-shadow var(--transition);
}
.sp-built-card:hover {
    box-shadow: 0 8px 32px rgba(0, 9, 52, 0.07);
}
.sp-built-card__icon {
    margin-bottom: 20px;
}
.sp-built-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.sp-built-card__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== BECOME AN AUTHORIZED PARTNER ===== */
.sp-become {
    padding: 80px 0;
    background: #000A34;
}
.sp-become__heading {
    padding-right: 20px;
}
.sp-become__title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: var(--fw-semibold);
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.sp-become__desc {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.2;
    margin-bottom: 12px;
}
.sp-become__note {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.2;
}
.sp-become__steps {
    width: 100%;
}
.sp-become-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    padding: 28px 24px;
}
.sp-become-step__num {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-bottom: 8px;
}
.sp-become-step__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: #ffffff;
    margin-bottom: 8px;
}
.sp-become-step__desc {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.2;
}

/* ===== PARTNER REGISTRATION ===== */
.sp-registration {
    padding: 80px 0;
    background-color: var(--color-bg-white);
}
.sp-registration__inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.sp-registration__heading {
    flex: 0 0 36%;
}
.sp-registration__title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.sp-registration__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.sp-registration__form {
    flex: 1;
}

/* ===== SP RESPONSIVE ===== */
@media (max-width: 991px) {
    .sp-partners__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .sp-components__inner,
    .sp-ecosystem__container,
    .sp-registration__inner {
        flex-direction: column;
        gap: 40px;
    }
    .sp-components__heading,
    .sp-ecosystem__content,
    .sp-registration__heading {
        flex: unset;
        width: 100%;
    }
    .sp-components__steps .sp-step__arrow {
        display: none;
    }
}
@media (max-width: 768px) {
    .sp-built__grid {
        grid-template-columns: 1fr;
    }
    .sp-why-choose__stats {
        grid-template-columns: 1fr;
    }
    .sp-stat:first-child {
        grid-column: 1;
    }
}
@media (max-width: 576px) {
    .sp-partners,
    .sp-tech-support,
    .sp-components,
    .sp-why-choose,
    .sp-ecosystem,
    .sp-built,
    .sp-become,
    .sp-registration {
        padding: 56px 0;
    }
    .sp-partners__grid {
        max-width: 100%;
    }
}
