﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --container-width: 1440px;
    --radius-xl: 999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
/* =========================================
   PANDA PLAY HEADER
========================================= */

.site-header {
    background: #ffffff;
    width: 100%;
    z-index: 1000;
    position: relative;
}

/* ===== DESKTOP ===== */

.header-desktop {
    display: block;
}

.header-bottom {
    min-height: 88px;
    border-bottom: 1px solid #5429CE26;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    width: 100%;
    gap: 36px;
}

.header-bottom > .container.header-row {
    max-width: 1620px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}


.header-logo {
    flex: 0 0 auto;
}

    .header-logo img {
        height: 45px;
        display: block;
    }

.main-nav--desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
}

    .main-nav--desktop a {
        font-family: "IBM Plex Sans Condensed", sans-serif;
        font-weight: 600;
        font-size: 19px;
        line-height: 100%;
        letter-spacing: 0;
        color: #2D117C;
        text-decoration: none;
        white-space: nowrap;
        display: inline-block;
        position: relative;
    }

        .main-nav--desktop a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -14px;
            width: 100%;
            height: 4px;
            background: #5429CE;
            transform: translateX(-50%) scaleX(0);
            transform-origin: center;
            transition: transform 0.25s ease;
        }

        .main-nav--desktop a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

.dot {
    width: 4px;
    height: 4px;
    background: #5429CE;
    border-radius: 50%;
    flex: 0 0 auto;
}

.header-actions--desktop {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 0 0 auto;
}

    .header-actions--desktop img {
        height: 28px;
        display: block;
        filter: brightness(0) saturate(100%) invert(23%) sepia(79%) saturate(3637%) hue-rotate(250deg) brightness(91%) contrast(94%);
        transition: transform 0.2s ease;
    }

    .header-actions--desktop a:hover img {
        transform: translateY(-1px);
    }

/* ===== MOBILE HEADER ===== */

.header-bar,
.mobile-nav-panel {
    display: none;
}

.mobile-searchbar,
.main-nav__link--mobile-only {
    display: none;
}

.nav-toggle {
    display: none;
    padding: 0;
    border: none;
    background: transparent;
    width: 28px;
    height: 28px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.nav-toggle__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 19px;
    line-height: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-actions__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .header-actions__icon img {
        display: block;
        filter: brightness(0) saturate(100%) invert(23%) sepia(79%) saturate(3637%) hue-rotate(250deg) brightness(91%) contrast(94%);
    }

body.menu-open {
    overflow: hidden;
}

/* ===== TABLET + MOBILE ===== */

@media (max-width: 1100px) {
    .header-desktop {
        display: none;
    }

    .header-bar {
        display: block;
        border-bottom: none;
    }

    .header-bar__inner {
        min-height: auto;
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 12px;
        padding-top: 18px;
        padding-bottom: 12px;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }

    .header-bar .header-logo {
        grid-column: 1;
        grid-row: 1;
    }

        .header-bar .header-logo img {
            height: auto;
            width: 220px;
        }

    .header-actions {
        grid-column: 3;
        grid-row: 1;
        gap: 14px;
        margin-left: 0;
    }

    .header-actions__icon--search,
    .header-actions__icon--profile {
        display: none;
    }

    .header-actions__icon--cart {
        width: 28px;
        height: 28px;
    }

        .header-actions__icon--cart img {
            width: 24px;
            height: 24px;
        }

    .nav-toggle {
        display: inline-flex;
        grid-column: 4;
        grid-row: 1;
        justify-self: end;
    }

    .mobile-searchbar {
        display: block;
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 6px;
        width: 100%;
    }

    .mobile-searchbar__form {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 50px;
        border-radius: 999px;
        background: #EEE9FA;
        overflow: hidden;
    }

    .mobile-searchbar__button {
        width: 48px;
        height: 50px;
        border: none;
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        cursor: pointer;
    }

    .mobile-searchbar__form input {
        width: 100%;
        height: 50px;
        border: none;
        outline: none;
        background: transparent;
        padding: 0 16px 0 0;
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 14px;
        line-height: 1.2;
        color: #2D117C;
    }

        .mobile-searchbar__form input::placeholder {
            color: #9D90C5;
            opacity: 1;
        }

    .mobile-nav-panel {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #5429CE26;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 1100;
    }

    .site-header.is-nav-open .mobile-nav-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav-panel__inner {
        padding: 18px 24px 24px;
    }

    .mobile-nav-panel .main-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        white-space: normal;
    }

    .mobile-nav-panel .main-nav__link {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-family: "IBM Plex Sans Condensed", sans-serif;
        font-weight: 600;
        font-size: 18px;
        line-height: 1.2;
        color: #2D117C;
        text-decoration: none;
        padding: 8px 0;
    }

    .main-nav__link--mobile-only {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .header-bar__inner {
        gap: 10px;
        padding-top: 20px;
        padding-bottom: 12px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .header-bar .header-logo img {
        width: 170px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions__icon--cart {
        width: 26px;
        height: 26px;
    }

        .header-actions__icon--cart img {
            width: 22px;
            height: 22px;
        }

    .mobile-searchbar {
        margin-top: 4px;
    }

    .mobile-searchbar__form {
        height: 48px;
    }

    .mobile-searchbar__button {
        width: 44px;
        height: 48px;
    }

    .mobile-searchbar__form input {
        height: 48px;
        font-size: 14px;
    }

    .mobile-nav-panel__inner {
        padding: 16px 18px 18px;
    }

    .mobile-nav-panel .main-nav__link {
        font-size: 17px;
        min-height: 40px;
    }
}
/* FOOTER */
.site-footer {
    margin-top: 80px;
    padding-bottom: 40px;
}

.footer {
    background: #EAE3FF;
    border-radius: 20px;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.2fr 0.9fr 1.05fr;
    gap: 0;
}

/* oszlop */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

    /* elválasztó vonalak */
    .footer-col:not(:first-child) {
        border-left: 1px solid rgba(0, 164, 88, 0.15);
        padding-left: 32px;
    }

/* logo */
.footer-logo {
    width: 220px;
    height: auto;
}

/* bal blokk */
.footer-col--brand {
    gap: 28px;
    padding-right: 24px;
}

/* kontakt */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-contact p {
        font-size: 15px;
        line-height: 1.6;
        color: #000000;
        margin: 0;
    }

/* social */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #E0D7FA;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

        .footer-social a:hover {
            transform: translateY(-2px);
        }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

/* cím */
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #5429CE;
    margin: 0;
}

/* lista */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.footer-col a {
    font-size: 15px;
    color: #000000;
    transition: color 0.2s ease;
}

    .footer-col a:hover {
        color: #5429CE;
    }

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 26px;
}

.footer-bottom__bg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 42px;
    pointer-events: none;
}

    .footer-bottom__bg img {
        width: min(1080px, 78%);
        height: auto;
        display: block;
    }

.footer-bottom__content {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-bottom__copyright,
.footer-bottom__credit {
    font-size: 12px;
    line-height: 1.4;
    color: #2f2f2f;
    margin: 0;
}

.footer-bottom__copyright {
    text-align: left;
}

.footer-bottom__credit {
    text-align: right;
}

.footer-bottom__payments {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .footer-bottom__payments img {
        width: 265px;
        height: auto;
        display: block;
    }

@media (max-width: 1200px) {
    .footer-bottom__bg img {
        width: min(900px, 82%);
    }

    .footer-bottom__content {
        max-width: 900px;
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        margin-top: 18px;
    }

    .footer-bottom__bg {
        margin-bottom: 18px;
    }

        .footer-bottom__bg img {
            width: 92%;
        }

    .footer-bottom__content {
        max-width: 100%;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom__copyright,
    .footer-bottom__credit {
        text-align: center;
        font-size: 11px;
    }

    .footer-bottom__payments img {
        width: 210px;
    }
}

/*---------------------------------------------------------------------------HOME----------------------------------------------------------------------------------------------------------*/

/* HOME HERO */


.home-page .header-bottom {
    border-bottom: none;
}

.hero {
    position: relative;
    overflow: visible;
    background: #ffffff;
}

.hero-media {
    position: relative;
    height: calc(100vh + 140px);
    min-height: 980px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(-200px);
}

.hero-title {
    margin: 0;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 210px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.16);
}

.hero-subtitle {
    margin: 8px 0 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 151%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #ffffff;
}

.hero-button {
    min-height: 56px;
    padding: 0 30px;
    margin-top: 42px;
    border-radius: 999px;
    background: #5429CE;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(84, 41, 206, 0.22);
}

    .hero-button:hover {
        background: #ffffff;
        color: #5429CE;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(84, 41, 206, 0.20);
    }

.hero-button__arrow {
    font-size: 16px;
    line-height: 1;
}

.hero-intro-wrap {
    position: relative;
    z-index: 3;
    margin-top: -110px;
    padding-bottom: 54px;
}

.hero-intro-card {
    position: relative;
    max-width: 1430px;
    margin: 0 auto;
    background: #EAE3FF;
    border-radius: 14px;
    /* minden oldalon padding, plusz alul több hely a plecsninek */
    padding: 96px 140px 114px 140px;
    overflow: visible;
}

.hero-intro-text p {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 190%;
    letter-spacing: 0;
    color: #2F2852;
}

.hero-intro-link {
    display: inline;
    margin-left: 10px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #5429CE;
    text-decoration: none;
    white-space: nowrap;
}

    .hero-intro-link:hover {
        text-decoration: underline;
        text-decoration-color: #5429CE;
        text-underline-offset: 3px;
    }

.hero-intro-link__arrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}

.hero-intro-badge {
    position: absolute;
    right: 156px;
    bottom: -78px;
    width: 204px;
    height: 204px;
    object-fit: contain;
    display: block;
}
/* laptop */
@media (max-width: 1200px) {
    .hero-media {
        height: 760px;
        min-height: 760px;
    }

    .hero-content {
        transform: translateY(-38px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 128px;
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.92);
    }

    .hero-subtitle {
        font-size: 34px;
    }

    .hero-button {
        margin-top: 34px;
    }

    .hero-intro-wrap {
        margin-top: -88px;
    }

    .hero-intro-card {
        padding: 34px 170px 34px 34px;
    }

    .hero-intro-text p {
        font-size: 18px;
        line-height: 180%;
    }

    .hero-intro-link {
        font-size: 17px;
    }

    .hero-intro-badge {
        width: 124px;
        height: 124px;
        right: 34px;
        bottom: -26px;
    }
}

/* tablet */
@media (max-width: 900px) {
    .hero-media {
        height: 660px;
        min-height: 660px;
    }

    .hero-content {
        transform: translateY(-18px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 86px;
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.92);
    }

    .hero-subtitle {
        font-size: 28px;
        line-height: 135%;
    }

    .hero-button {
        min-height: 52px;
        padding: 0 24px;
        margin-top: 28px;
        font-size: 17px;
    }

    .hero-intro-wrap {
        margin-top: -54px;
        padding-bottom: 34px;
    }

    .hero-intro-card {
        padding: 30px 24px 90px;
    }

    .hero-intro-text p {
        font-size: 17px;
        line-height: 175%;
    }

    .hero-intro-link {
        font-size: 16px;
        white-space: normal;
    }

    .hero-intro-badge {
        right: 18px;
        bottom: -20px;
        width: 104px;
        height: 104px;
    }
}

/* mobil */
@media (max-width: 640px) {
    .hero-media {
        height: 580px;
        min-height: 580px;
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 140px;
        transform: none;
    }

    .hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 96px;
        line-height: 1;
        -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.92);
    }

        .hero-title span + span {
            margin-top: 26px;
        }

    .hero-subtitle {
        margin-top: 18px;
        font-size: 24px;
        line-height: 1.25;
        max-width: 340px;
    }

    .hero-button {
        margin-top: 44px;
    }

    .hero-intro-wrap {
        margin-top: -34px;
    }

    .hero-intro-card {
        border-radius: 12px;
        padding: 22px 18px 76px;
    }

    .hero-intro-text p {
        font-size: 15px;
        line-height: 170%;
    }

    .hero-intro-link {
        font-size: 15px;
    }

    .hero-intro-badge {
        width: 88px;
        height: 88px;
        right: 14px;
        bottom: -16px;
    }
}




.reliability-section {
    padding: 120px 0 110px;
    background: #ffffff;
}

.reliability-title {
    margin: 0 0 72px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: #5429CE;
}

.reliability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
    align-items: start;
}

.reliability-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reliability-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #EAE3FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    overflow: visible;
}

    .reliability-icon-circle img {
        max-width: 150px;
        height: auto;
        display: block;
        position: relative;
        top: -8px;
    }

.reliability-card:nth-child(2) .reliability-icon-circle img {
    left: -22px;
}

.reliability-card__title {
    margin: 0 0 18px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    color: #2D117C;
}

.reliability-card__text {
    margin: 0;
    max-width: 360px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

/* tablet */
@media (max-width: 991px) {
    .reliability-section {
        padding: 90px 0 90px;
    }

    .reliability-title {
        font-size: 48px;
        margin-bottom: 56px;
    }

    .reliability-grid {
        grid-template-columns: 1fr;
        gap: 52px;
        max-width: 560px;
        margin: 0 auto;
    }

    .reliability-card__text {
        max-width: 100%;
    }
}

/* mobil */
@media (max-width: 640px) {
    .reliability-section {
        padding: 72px 0 72px;
    }

    .reliability-title {
        font-size: 36px;
        margin-bottom: 42px;
    }

    .reliability-icon-circle {
        width: 104px;
        height: 104px;
        margin-bottom: 22px;
    }

        .reliability-icon-circle img {
            max-width: 80px;
            max-height: 80px;
        }

    .reliability-card__title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .reliability-card__text {
        font-size: 15px;
    }
}


.solutions-section {
    padding: 120px 0;
    background: #ffffff;
}

.solutions-title {
    margin: 0 0 70px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    text-align: center;
    color: #5429CE;
}

/* layout */
.solutions-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* kép */
.solutions-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* szöveg blokk */
.solutions-content {
    display: flex;
    flex-direction: column;
}

/* alcím */
.solutions-subtitle {
    margin: 0 0 20px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #5429CE;
}

/* bekezdés */
.solutions-text {
    margin: 0 0 28px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    color: #000000;
}

/* gombok */
.solutions-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* outline gomb */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* keretes */
.btn-outline {
    border: 2px solid #5429CE;
    color: #5429CE;
    background: transparent;
}

    .btn-outline:hover {
        background: #5429CE;
        color: #ffffff;
    }

/* sima link gomb */
.btn-link {
    color: #5429CE;
}

    .btn-link:hover {
        text-decoration: underline;
    }



.featured-products-section {
    padding: 50px 0 30px;
    background: #ffffff;
}

.featured-products-title {
    margin: 0 0 42px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #2D117C;
}

.featured-products-slider {
    align-items: center;
    gap: 18px;
    position: relative;
    display: block;
    z-index: 10;
    overflow:visible;
}

.featured-products-viewport {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.featured-products-track {
    display: flex;
    gap: 18px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.featured-products-arrow {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #5429CE;
    background: #ffffff;
    color: #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, opacity 0.25s ease;
    padding: 0;
    z-index: 20; 
}

    .featured-products-arrow span {
        font-size: 24px;
        line-height: 1;
    }

    .featured-products-arrow:hover {
        background: #5429CE;
        color: #ffffff;
        transform: translateY(-50%) scale(1.05);
    }

    .featured-products-arrow.is-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

.featured-products-arrow--prev {
    left: -70px;
}

.featured-products-arrow--next {
    right: -70px;
}

.product-card {
    padding: 2px;
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.product-card__image-wrap {
    height: 240px;
    border-radius: 10px;
    background: #F2EEF9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin-bottom: 16px;
}

.product-card__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-card__title {
    margin: 0 0 8px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: -0.03em;
    color: #2D117C;
}

.product-card__text {
    margin: 0 0 14px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.product-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    overflow: visible;
}

.product-card__button {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #5429CE;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

    .product-card__button:hover {
        background: #ffffff;
        color: #5429CE;
        text-decoration: none;
    }

    .product-card__button img {
        width: 16px;
        height: 16px;
        display: block;
        flex: 0 0 auto;
        transition: filter 0.25s ease;
    }

    .product-card__button:hover img {
        filter: brightness(0) saturate(100%) invert(23%) sepia(79%) saturate(3637%) hue-rotate(250deg) brightness(91%) contrast(94%);
    }

.product-card__price {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: -0.03em;
    color: #5429CE;
}

.featured-products-all {
    margin-top: 44px;
    text-align: center;
}

.featured-products-all__link {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 170%;
    color: #5429CE;
    text-decoration: none;
}

    .featured-products-all__link:hover {
        text-decoration: underline;
        text-decoration-color: #5429CE;
        text-underline-offset: 3px;
    }

/* tablet */
@media (max-width: 991px) {
    .featured-products-slider {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        gap: 12px;
    }

    .product-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }
}

/* mobil */
@media (max-width: 640px) {
    .featured-products-section {
        padding: 72px 0;
    }

    .featured-products-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .featured-products-slider {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 8px;
    }

    .featured-products-arrow {
        width: 40px;
        height: 40px;
    }

    .product-card {
        flex: 0 0 100%;
    }

    .product-card__image-wrap {
        height: 220px;
    }

    .product-card__title {
        font-size: 22px;
    }

    .product-card__price {
        font-size: 22px;
    }
}

.solutions-block--with-divider {
    position: relative;
}

    .solutions-block--with-divider::before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient( to right, #5429CE 0 8px, transparent 8px 16px );
        opacity: 0.15;
    }

.community-cta-section {
    padding: 120px 0 70px;
    background: #ffffff;
}

.community-cta-card {
    position: relative;
    background: #B7EFBB;
    border-radius: 24px;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 92px 48px;
}

.community-cta-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

    .community-cta-bg img {
        width: 860px;
        max-width: 56%;
        height: auto;
        display: block;
    }

.community-cta-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    text-align: center;
}

.community-cta-title {
    margin: 0 0 28px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: #5429CE;
}

.community-cta-text {
    margin: 0 auto 36px;
    max-width: 1440px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.community-cta-button {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #5429CE;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

    .community-cta-button:hover {
        background: #5429CE;
        color: #ffffff;
        text-decoration: none;
    }

.community-cta-button__arrow {
    font-size: 16px;
    line-height: 1;
}

/* tablet */
@media (max-width: 991px) {
    .community-cta-section {
        padding: 90px 0 110px;
    }

    .community-cta-card {
        min-height: 420px;
        padding: 68px 32px;
    }

    .community-cta-bg img {
        width: 440px;
        max-width: 66%;
        opacity: 0.18;
    }

    .community-cta-title {
        font-size: 48px;
        margin-bottom: 22px;
    }

    .community-cta-text {
        margin-bottom: 30px;
        font-size: 17px;
    }
}

/* mobil */
@media (max-width: 767px) {
    .community-cta-section {
        padding: 72px 0 84px;
    }

        .community-cta-section .container {
            max-width: none;
            padding-left: 0;
            padding-right: 0;
        }

    .community-cta-card {
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: 360px;
        border-radius: 20px;
        padding: 46px 22px;
    }

    /* ugyanúgy maradjon látható, mint desktopon */
    .community-cta-bg {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 0;
    }

        .community-cta-bg img {
            width: 860px;
            max-width: 130%;
            height: auto;
            display: block;
            opacity: 1;
            padding-bottom: 30px;
        }

    .community-cta-title {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .community-cta-text {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .community-cta-button {
        min-height: 48px;
        padding: 0 20px;
        font-size: 16px;
    }
}


.process-section {
    padding: 110px 0 0;
    background: #ffffff;
}

.process-section__inner {
    position: relative;
    padding: 0 0 86px;
}

    .process-section__inner::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 265px;
        bottom: 0;
        background: #EAE3FF;
        z-index: 0;
    }

    .process-section__inner > .container {
        position: relative;
        z-index: 1;
    }

.process-section__header {
    text-align: center;
    transform: translateY(-18px);
    margin-bottom: 10px;
}

.process-section__title {
    margin: 0;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: #5429CE;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
}

.process-card {
    position: relative;
    min-height: 724px;
    border-radius: 10px;
    overflow: hidden;
}

.process-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 360deg, rgba(45, 17, 124, 0.9) 0%, rgba(45, 17, 124, 0) 76.44% );
}

.process-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}

.process-card__title {
    margin: 0 0 8px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #ffffff;
}

.process-card__text {
    margin: 0 auto;
    max-width: 320px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}

.process-cta {
    margin: 34px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    text-align: center;
}

.process-cta__text {
    margin: 20px 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: -0.03em;
    color: #2D117C;
}

.process-cta__button {
    min-height: 54px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #5429CE;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

    .process-cta__button:hover {
        background: #5429CE;
        color: #ffffff;
        text-decoration: none;
    }

    .process-cta__button span {
        font-size: 15px;
        line-height: 1;
    }

/* laptop */
@media (max-width: 1400px) {
    .process-section {
        padding-top: 90px;
    }

    .process-section__inner::before {
        top: 220px;
    }

    .process-section__title {
        font-size: 58px;
    }

    .process-card {
        min-height: 460px;
    }

    .process-card__title {
        font-size: 28px;
    }
}

/* tablet */
@media (max-width: 1100px) {
    .process-section__inner {
        background: #EAE3FF;
        padding: 48px 0 72px;
    }

        .process-section__inner::before {
            display: none;
        }

    .process-section__header {
        transform: none;
        margin-bottom: 28px;
    }

    .process-section__title {
        font-size: 48px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-card {
        min-height: 420px;
        border-radius: 12px;
    }

    .process-cta {
        margin-top: 28px;
        flex-direction: column;
        gap: 16px;
    }
}

/* PROCESS SECTION – mobil finomhangolás */
@media (max-width: 767px) {
    .process-section {
        padding-top: 34px;
    }

    .process-section__inner {
        position: relative;
        padding: 0 0 56px;
        background: transparent;
    }

        .process-section__inner::before {
            display: block;
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 350px;
            bottom: 0;
            background: #EAE3FF;
            z-index: 0;
        }

        .process-section__inner > .container {
            position: relative;
            z-index: 1;
        }

    .process-section__header {
        transform: none;
        margin-bottom: 26px;
        position: relative;
        z-index: 2;
    }

    .process-section__title {
        font-size: 38px;
        line-height: 1.2;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-card {
        min-height: 500px;
        border-radius: 10px;
        overflow: hidden;
    }

    .process-card__content {
        padding: 0 20px 26px;
    }

    .process-card__title {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .process-card__text {
        max-width: 320px;
        font-size: 15px;
        line-height: 1.65;
    }

    .process-cta {
        margin-top: 28px;
        flex-direction: column;
        gap: 16px;
    }

    .process-cta__text {
        font-size: 20px;
        line-height: 1.5;
        margin: 8px 0 0;
    }

    .process-cta__button {
        min-height: 46px;
        padding: 0 18px;
        font-size: 15px;
    }
}

/* REFERENCES SHOWCASE SECTION */
.references-showcase-section {
    padding: 96px 0 110px;
    overflow: hidden;
    background: #ffffff;
}

.references-showcase-section__header {
    max-width: 1200px;
    margin: 0 auto 34px;
    padding: 0 24px;
    text-align: center;
}

.references-showcase-section__title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: #5429CE;
    margin: 0;
}

.references-showcase-slider {
    position: relative;
    width: 100%;
}

.references-showcase-slider__track-wrap {
    position: relative;
    overflow: hidden;
    max-width: calc(1000px * 3 + 18px * 2);
    margin: 0 auto;
}

.references-showcase-slider__track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    will-change: transform;
    transition: transform 0.5s ease;
    padding: 0;
}

.references-showcase-slider__slide {
    width: 1000px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #f2eef9;
    flex: 0 0 auto;
}

    .references-showcase-slider__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.references-showcase-slider__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border: 2px solid #5429CE;
    border-radius: 50%;
    background: #ffffff;
    color: #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.13s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    padding: 0;
}

    .references-showcase-slider__nav:hover {
        background: #5429CE;
        color: #ffffff;
    }


.references-showcase-slider__nav-icon {
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
}

.references-showcase-slider__nav.is-hiding {
    opacity: 0;
    pointer-events: none;
}

.references-showcase-slider__nav.is-showing {
    opacity: 1;
}

.references-showcase-section__content {
    max-width: 1200px;
    margin: 18px auto 0;
    padding: 0 24px;
    text-align: center;
}

.references-showcase-section__subtitle {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #2D117C;
    margin: 0 0 6px;
}

.references-showcase-section__text {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    margin: 0 auto;
    max-width: none;
}

@media (min-width: 1930px) {
    .references-showcase-slider__fade {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 140px;
        z-index: 4;
        pointer-events: none;
    }

    .references-showcase-slider__fade--left {
        left: 0;
        background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    }

    .references-showcase-slider__fade--right {
        right: 0;
        background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    }
}

/* LAPTOP */
@media (max-width: 1600px) {
    .references-showcase-slider__slide {
        width: 880px;
    }

    
}

/* TABLET */
@media (max-width: 1100px) {
    .references-showcase-section {
        padding: 72px 0 84px;
    }

    .references-showcase-section__title {
        font-size: 48px;
    }

    .references-showcase-section__subtitle {
        font-size: 22px;
    }

    .references-showcase-section__text {
        font-size: 16px;
    }

    .references-showcase-slider__slide {
        width: 78vw;
        max-width: 760px;
        border-radius: 12px;
    }

    .references-showcase-slider__nav {
        width: 60px;
        height: 60px;
    }


}

/* MOBILE */
@media (max-width: 767px) {
    .references-showcase-section {
        padding: 56px 0 64px;
    }

    .references-showcase-section__header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .references-showcase-section__title {
        font-size: 38px;
    }

    .references-showcase-section__subtitle {
        font-size: 21px;
    }

    .references-showcase-section__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .references-showcase-slider__slide {
        width: 82vw;
        border-radius: 10px;
    }

    .references-showcase-slider__nav {
        width: 52px;
        height: 52px;
    }

    .references-showcase-slider__nav-icon {
        font-size: 28px;
    }
}
.references-showcase-slider__fade {
    display: none;
}

@media (max-width: 767px) {
    .references-showcase-section__content {
        display: none;
    }
}

/* csak széles kijelzőn jelenjen meg */
@media (min-width: 1930px) {
    .references-showcase-slider__fade {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 160px;
        z-index: 4;
        pointer-events: none;
    }

    .references-showcase-slider__fade--left {
        left: 0;
        background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
    }

    .references-showcase-slider__fade--right {
        right: 0;
        background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
    }
}


.grant-slider-section {
    background: #ffffff;
    padding: 0;
}

.grant-slider-section__inner {
    position: relative;
    padding: 28px 0 38px;
}

    .grant-slider-section__inner::before,
    .grant-slider-section__inner::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient( to right, #5429CE26 0 8px, transparent 8px 16px );
    }

    .grant-slider-section__inner::before {
        top: 0;
    }

    .grant-slider-section__inner::after {
        bottom: 0;
    }

.grant-slider-section__header {
    text-align: center;
    margin-bottom: 34px;
}

.grant-slider-section__title {
    margin: 0;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: #5429CE;
}

.grant-slider {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 22px;
}

.grant-slider__viewport {
    overflow: hidden;
    width: 100%;
}

.grant-slider__track {
    display: flex;
    align-items: stretch;
    gap: 0;
    transition: transform 0.5s ease;
    will-change: transform;
}

.grant-slider__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.grant-slider__card {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 42px;
    align-items: center;
}

.grant-slider__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .grant-slider__media img {
        max-width: 100%;
        max-height: 180px;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
    }

.grant-slider__content {
    text-align: left;
}

.grant-slider__subtitle {
    margin: 0 0 12px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #2D117C;
}

.grant-slider__text {
    margin: 0 0 18px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.grant-slider__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    color: #5429CE;
    text-decoration: none;
}

    .grant-slider__link:hover {
        text-decoration: underline;
        text-decoration-color: #5429CE;
        text-underline-offset: 3px;
    }

.grant-slider__nav {
    width: 46px;
    height: 46px;
    border: 1.5px solid #5429CE;
    border-radius: 50%;
    background: #ffffff;
    color: #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    justify-self: center;
}

    .grant-slider__nav:hover {
        background: #5429CE;
        color: #ffffff;
    }

.grant-slider__nav-icon {
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

/* tablet */
@media (max-width: 1100px) {
    .grant-slider-section__inner {
        padding: 24px 0 34px;
    }

    .grant-slider-section__title {
        font-size: 48px;
    }

    .grant-slider {
        grid-template-columns: 56px minmax(0, 1fr) 56px;
        gap: 16px;
    }

    .grant-slider__card {
        grid-template-columns: 180px 1fr;
        gap: 28px;
        max-width: 860px;
    }

    .grant-slider__subtitle {
        font-size: 26px;
    }

    .grant-slider__text {
        font-size: 16px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .grant-slider-section__inner {
        padding: 22px 0 30px;
    }

    .grant-slider-section__header {
        margin-bottom: 24px;
    }

    .grant-slider-section__title {
        font-size: 38px;
    }

    .grant-slider {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 10px;
    }

    .grant-slider__nav {
        width: 40px;
        height: 40px;
    }

    .grant-slider__nav-icon {
        font-size: 22px;
    }

    .grant-slider__card {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .grant-slider__media img {
        max-height: 140px;
    }

    .grant-slider__content {
        text-align: center;
    }

    .grant-slider__subtitle {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .grant-slider__text {
        font-size: 15px;
        line-height: 1.65;
    }
}

.blog-preview-section {
    padding: 110px 0 30px;
    background: #ffffff;
}

.blog-preview-section__header {
    text-align: center;
    margin-bottom: 42px;
}

.blog-preview-section__title {
    margin: 0 0 6px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: #5429CE;
}

.blog-preview-section__subtitle {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #2D117C;
    padding: 0 0 20px;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.blog-preview-card {
    display: flex;
    flex-direction: column;
}

.blog-preview-card__image-link {
    display: block;
    text-decoration: none;
}

.blog-preview-card__image {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.blog-preview-card__content {
    padding: 38px 8px 26px;
}

.blog-preview-card__title {
    margin: 0 0 10px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #2D117C;
}

.blog-preview-card__text {
    margin: 0 0 18px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.blog-preview-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    color: #5429CE;
    text-decoration: none;
}

.blog-preview-card__link {
    position: relative;
}

    .blog-preview-card__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background: #5429CE;
        transition: width 0.25s ease;
    }

    .blog-preview-card__link:hover::after {
        width: 100%;
    }


.blog-preview-section__footer {
    margin-top: 46px;
    display: flex;
    justify-content: center;
}

.blog-preview-section__button {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    color: #5429CE;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

    .blog-preview-section__button:hover {
        background: #5429CE;
        color: #ffffff;
        text-decoration: none;
    }

    .blog-preview-section__button span,
    .blog-preview-card__link span {
        font-size: 16px;
        line-height: 1;
    }

/* tablet */
@media (max-width: 1100px) {
    .blog-preview-section {
        padding: 86px 0 96px;
    }

    .blog-preview-section__title {
        font-size: 48px;
    }

    .blog-preview-section__subtitle {
        font-size: 24px;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 760px;
        margin: 0 auto;
    }

    .blog-preview-card__title {
        font-size: 22px;
    }

    .blog-preview-card__text {
        font-size: 16px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .blog-preview-section {
        padding: 68px 0 76px;
    }

    .blog-preview-section__header {
        margin-bottom: 30px;
    }

    .blog-preview-section__title {
        font-size: 38px;
    }

    .blog-preview-section__subtitle {
        font-size: 21px;
    }

    .blog-preview-card__content {
        padding: 16px 4px 0;
    }

    .blog-preview-card__title {
        font-size: 21px;
    }

    .blog-preview-card__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .blog-preview-card__link,
    .blog-preview-section__button {
        font-size: 16px;
    }

    .blog-preview-section__button {
        min-height: 46px;
        padding: 0 20px;
    }
}

@media (max-width: 767px) {

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-preview-card:nth-child(n+2) {
        display: none;
    }
}

.newsletter-cta-section {
    padding: 40px 0 120px;
    background: #ffffff;
}

.newsletter-cta-card {
    position: relative;
    background: #B7EFBB;
    border-radius: 24px;
    min-height: 430px;
    padding: 104px 120px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.newsletter-cta-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.newsletter-cta-title {
    margin: 0 0 22px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    color: #5429CE;
}

.newsletter-cta-text {
    margin: 0 0 28px;
    max-width: 470px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.newsletter-cta-button {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    color: #5429CE;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

    .newsletter-cta-button:hover {
        background: #5429CE;
        color: #ffffff;
        text-decoration: none;
    }

    .newsletter-cta-button span {
        font-size: 16px;
        line-height: 1;
    }

.newsletter-cta-visual {
    position: absolute;
    right: 38px;
    bottom: -28px;
    top: -24px;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

    .newsletter-cta-visual img {
        max-width: 120%;
        max-height: none;
        width: 120%;
        height: auto;
        display: block;
        object-fit: contain;
            filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.35));
    }

.newsletter-cta-visual {
    position: absolute;
}



/* laptop */
@media (max-width: 1400px) {
    .newsletter-cta-card {
        min-height: 390px;
        padding: 54px 64px;
    }

    .newsletter-cta-title {
        font-size: 54px;
    }

    .newsletter-cta-visual {
        right: 24px;
        width: 46%;
        top: -18px;
        bottom: -20px;
    }
}

/* tablet */
@media (max-width: 1100px) {
    .newsletter-cta-section {
        padding: 32px 0 96px;
    }

    .newsletter-cta-card {
        min-height: 360px;
        padding: 48px 40px;
    }

    .newsletter-cta-content {
        max-width: 430px;
    }

    .newsletter-cta-title {
        font-size: 44px;
    }

    .newsletter-cta-text {
        font-size: 17px;
    }

    .newsletter-cta-visual {
        width: 44%;
        right: 10px;
        top: -12px;
        bottom: -16px;
    }
}

@media (max-width: 767px) {
    .newsletter-cta-section {
        padding: 60px 0 76px;
        overflow: visible;
    }

        .newsletter-cta-section .container {
            max-width: none;
            padding-left: 0;
            padding-right: 0;
        }

    .newsletter-cta-card {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: auto;
        border-radius: 20px;
        padding: 170px 22px 32px;
        overflow: visible;
        display: block;
    }

    .newsletter-cta-visual {
        position: absolute;
        top: -72px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        z-index: 3;
        pointer-events: none;
    }

        .newsletter-cta-visual img {
            width: min(92vw, 340px);
            max-width: none;
            max-height: none;
            height: auto;
            display: block;
            object-fit: contain;
        }

    .newsletter-cta-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
        text-align: center;
    }

    .newsletter-cta-title {
        margin: 0 0 18px;
        font-size: 36px;
        line-height: 1.18;
        text-align: center;
    }

    .newsletter-cta-text {
        max-width: 100%;
        margin: 0 0 24px;
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
    }

    .newsletter-cta-button {
        min-height: 48px;
        padding: 0 22px;
        display: inline-flex;
        justify-content: center;
        text-align: center;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .newsletter-cta-section,
    .newsletter-cta-section .container,
    .newsletter-cta-card {
        overflow: visible !important;
    }

    .newsletter-cta-section {
        padding: 70px 0 76px;
    }

        .newsletter-cta-section .container {
            max-width: none;
            padding-left: 0;
            padding-right: 0;
        }

    .newsletter-cta-card {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: auto;
        border-radius: 20px;
        padding: 200px 22px 42px;
    }

    .newsletter-cta-visual {
        position: absolute;
        top: -58px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        z-index: 3;
        pointer-events: none;
    }

        .newsletter-cta-visual img {
            width: min(92vw, 340px);
            max-width: none;
            height: auto;
            display: block;
            object-fit: contain;
        }

    .newsletter-cta-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
        text-align: center;
    }

    .newsletter-cta-title {
        margin: 0 0 18px;
        font-size: 36px;
        line-height: 1.18;
        text-align: center;
    }

    .newsletter-cta-text {
        max-width: 100%;
        margin: 0 0 24px;
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
    }

    .newsletter-cta-button {
        min-height: 48px;
        padding: 0 22px;
        display: inline-flex;
        justify-content: center;
        text-align: center;
        font-size: 16px;
    }
}

.pp-header {
    padding: 34px 0 40px;
    background: #ffffff;
}

.pp-header__breadcrumb {
    margin-bottom: 18px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    color: #8D7DB9;
}

    .pp-header__breadcrumb a {
        color: #8D7DB9;
        text-decoration: none;
    }

    .pp-header__breadcrumb span {
        margin: 0 6px;
    }

.pp-header__title {
    margin: 0 0 22px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    color: #5429CE;
}

.pp-header__text {
    max-width: 1440px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.pp-category-nav {
    padding: 18px 0 56px;
    background: #ffffff;
}

.pp-category-nav__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pp-category-nav__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pp-category-nav__item {
    min-height: 100px;
    background: #F6F4FC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #5429CE;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

    .pp-category-nav__item:hover {
        background: #ede8fb;
        color: #5429CE;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .pp-category-nav__item:focus-visible {
        outline: 2px solid #5429CE;
        outline-offset: 2px;
    }

/* tablet */
@media (max-width: 1100px) {
    .pp-category-nav {
        padding: 14px 0 42px;
    }

    .pp-category-nav__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pp-category-nav__grid--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pp-category-nav__item {
        min-height: 88px;
        font-size: 22px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .pp-category-nav {
        padding: 12px 0 34px;
    }

    .pp-category-nav__grid,
    .pp-category-nav__grid--2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pp-category-nav__item {
        min-height: 76px;
        font-size: 20px;
        padding: 0 16px;
    }
}

.pp-brand-showcase {
    padding: 12px 0 110px;
    background: #ffffff;
}

.pp-brand-showcase__list {
    display: flex;
    flex-direction: column;
    gap: 74px;
}

.pp-brand-showcase__item {
    display: grid;
    grid-template-columns: 1fr 590px;
    gap: 64px;
    align-items: center;
}

.pp-brand-showcase__item--reverse {
    grid-template-columns: 590px 1fr;
}

    .pp-brand-showcase__item--reverse .pp-brand-showcase__content {
        order: 1;
    }

    .pp-brand-showcase__item--reverse .pp-brand-showcase__media {
        order: 2;
    }

.pp-brand-showcase__media {
    display: block;
}

.pp-brand-showcase__image {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #d9d9d9;
}

.pp-brand-showcase__content {
    max-width: 590px;
}

.pp-brand-showcase__title {
    margin: 0 0 16px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #5429CE;
}

.pp-brand-showcase__text {
    margin: 0 0 26px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.pp-brand-showcase__button {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    color: #5429CE;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

    .pp-brand-showcase__button:hover {
        background: #5429CE;
        color: #ffffff;
        text-decoration: none;
    }

    .pp-brand-showcase__button span {
        font-size: 16px;
        line-height: 1;
    }

/* tablet */
@media (max-width: 1100px) {
    .pp-brand-showcase {
        padding: 8px 0 88px;
    }

    .pp-brand-showcase__list {
        gap: 34px;
    }

    .pp-brand-showcase__item,
    .pp-brand-showcase__item--reverse {
        grid-template-columns: 1fr;
        gap: 22px;
    }

        .pp-brand-showcase__item--reverse .pp-brand-showcase__content,
        .pp-brand-showcase__item--reverse .pp-brand-showcase__media {
            order: initial;
        }

    .pp-brand-showcase__content {
        max-width: 100%;
    }

    .pp-brand-showcase__title {
        margin-bottom: 12px;
    }

    .pp-brand-showcase__text {
        margin-bottom: 22px;
        font-size: 16px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .pp-brand-showcase {
        padding: 0 0 72px;
    }

    .pp-brand-showcase__list {
        gap: 28px;
    }

    .pp-brand-showcase__item,
    .pp-brand-showcase__item--reverse {
        gap: 18px;
    }

    .pp-brand-showcase__title {
        font-size: 22px;
    }

    .pp-brand-showcase__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .pp-brand-showcase__button {
        min-height: 46px;
        padding: 0 18px;
        font-size: 16px;
    }

    .pp-brand-showcase__content {
        text-align: center;
    }

    .pp-brand-showcase__button {
        display: inline-flex;
        margin: 0 auto;
        margin-bottom: 14px;
    }

}

.pp-product-grid-section {
    padding: 8px 0 100px;
    background: #ffffff;
}

.pp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 18px;
}

.pp-product-grid__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.pp-product-grid__image-wrap {
    aspect-ratio: 1 / 1;
    background: #F6F4FC;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pp-product-grid__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
}

.pp-product-grid__title {
    margin-top: 10px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #5429CE;
}

.pp-product-grid__item:hover {
    text-decoration: none;
}

    .pp-product-grid__item:hover .pp-product-grid__image-wrap {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(84, 41, 206, 0.08);
    }

/* tablet */
@media (max-width: 1100px) {
    .pp-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pp-product-grid__title {
        font-size: 17px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .pp-product-grid-section {
        padding: 0 0 72px;
    }

    .pp-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 14px;
    }

    .pp-product-grid__image-wrap {
        padding: 14px;
    }

    .pp-product-grid__title {
        margin-top: 8px;
        font-size: 15px;
        line-height: 155%;
    }
}

.about-intro-section {
    padding: 34px 0 88px;
    background: #ffffff;
}

.about-intro-section__breadcrumb {
    margin-bottom: 18px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0;
    color: #8D7DB9;
}

    .about-intro-section__breadcrumb a {
        color: #8D7DB9;
        text-decoration: none;
    }

    .about-intro-section__breadcrumb span {
        margin: 0 6px;
    }

.about-intro-section__title {
    margin: 0 0 18px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    color: #5429CE;
}

.about-intro-section__lead {
    max-width: 1440px;
    margin: 0 0 28px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.about-intro-section__image-wrap {
    width: 100%;
    margin-bottom: 22px;
    border-radius: 8px;
    overflow: hidden;
    background: #d9d9d9;
}

.about-intro-section__image {
    width: 100%;
    aspect-ratio: 2.25 / 1;
    object-fit: cover;
    display: block;
}

.about-intro-section__text {
    max-width: 1440px;
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

/* tablet */
@media (max-width: 1100px) {
    .about-intro-section {
        padding: 52px 0 72px;
    }

    .about-intro-section__title {
        font-size: 48px;
    }

    .about-intro-section__lead,
    .about-intro-section__text {
        font-size: 16px;
    }

    .about-intro-section__image {
        aspect-ratio: 2 / 1;
    }
}

/* mobile */
@media (max-width: 767px) {
    .about-intro-section {
        padding: 42px 0 56px;
    }

    .about-intro-section__breadcrumb {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .about-intro-section__title {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .about-intro-section__lead {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.65;
    }

    .about-intro-section__image-wrap {
        margin-bottom: 18px;
    }

    .about-intro-section__image {
        aspect-ratio: 1.7 / 1;
    }

    .about-intro-section__text {
        font-size: 15px;
        line-height: 1.65;
    }
}


/* ABOUT VALUES */
.about-values {
    padding: 92px 0 90px;
    background-color: #ffffff;
}

.about-values__header {
    text-align: center;
    margin-bottom: 52px;
}

.about-values__title {
    margin: 0;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    color: #5429CE;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 42px;
}

.about-values__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: start;
    gap: 18px;
}

.about-values__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #EEE8FB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .about-values__icon img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        display: block;
        filter: brightness(0) saturate(100%) invert(24%) sepia(84%) saturate(2195%) hue-rotate(249deg) brightness(90%) contrast(96%);
        /* töröld, ha eleve lila SVG-t használsz */
    }

.about-values__content {
    padding-top: 2px;
}

.about-values__item-title {
    margin: 0 0 10px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: -0.03em;
    color: #2D117C;
}

.about-values__text {
    margin: 0;
    max-width: 320px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

/* LAPTOP */
@media (max-width: 1400px) {
    .about-values__title {
        font-size: 56px;
    }

    .about-values__grid {
        column-gap: 34px;
    }

    .about-values__item-title {
        font-size: 22px;
    }

    .about-values__text {
        font-size: 17px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .about-values {
        padding: 74px 0;
    }

    .about-values__header {
        margin-bottom: 38px;
    }

    .about-values__title {
        font-size: 48px;
    }

    .about-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
        row-gap: 32px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .about-values {
        padding: 56px 0;
    }

    .about-values__header {
        margin-bottom: 28px;
    }

    .about-values__title {
        font-size: 38px;
        line-height: 130%;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .about-values__item {
        grid-template-columns: 56px 1fr;
        gap: 14px;
    }

    .about-values__icon {
        width: 56px;
        height: 56px;
    }

        .about-values__icon img {
            width: 26px;
            height: 26px;
        }

    .about-values__item-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .about-values__text {
        font-size: 16px;
        line-height: 165%;
        max-width: none;
    }
}

.pp-stats-section {
    padding: 96px 0 100px;
    background: #ffffff;
}

.pp-stats-section__header {
    text-align: center;
    margin-bottom: 54px;
}

.pp-stats-section__title {
    margin: 0;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    color: #5429CE;
}

.pp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
}

.pp-stats-card {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.pp-stats-card__number {
    margin: 0 0 10px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #000000;
}

.pp-stats-card__label {
    margin: 0 0 12px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: -0.03em;
    color: #2D117C;
}

.pp-stats-card__text {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

/* laptop */
@media (max-width: 1400px) {
    .pp-stats-section__title {
        font-size: 56px;
    }

    .pp-stats-card__number {
        font-size: 42px;
    }

    .pp-stats-card__label {
        font-size: 22px;
    }

    .pp-stats-card__text {
        font-size: 17px;
    }
}

/* tablet */
@media (max-width: 1100px) {
    .pp-stats-section {
        padding: 78px 0 84px;
    }

    .pp-stats-section__header {
        margin-bottom: 40px;
    }

    .pp-stats-section__title {
        font-size: 48px;
    }

    .pp-stats-grid {
        gap: 28px;
    }

    .pp-stats-card__number {
        font-size: 38px;
    }

    .pp-stats-card__label {
        font-size: 21px;
    }

    .pp-stats-card__text {
        font-size: 16px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .pp-stats-section {
        padding: 58px 0 62px;
    }

    .pp-stats-section__header {
        margin-bottom: 30px;
    }

    .pp-stats-section__title {
        font-size: 38px;
    }

    .pp-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pp-stats-card {
        max-width: 360px;
    }

    .pp-stats-card__number {
        font-size: 34px;
        margin-bottom: 8px;
    }

    .pp-stats-card__label {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .pp-stats-card__text {
        font-size: 15px;
        line-height: 165%;
    }
}

.pp-brands-section {
    padding: 96px 0 110px;
    background: #ffffff;
}

.pp-brand-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 54px;
    align-items: center;
    margin-bottom: 108px;
}

.pp-brand-feature__media img {
    width: 100%;
    aspect-ratio: 1.15 / 0.82;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.pp-brand-feature__title {
    margin: 0 0 22px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    color: #5429CE;
}

.pp-brand-feature__text {
    margin: 0 0 16px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.pp-brand-feature__link {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #5429CE;
    text-decoration: none;
    position: relative;
}

    .pp-brand-feature__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background: #5429CE;
        transition: width 0.25s ease;
    }

    .pp-brand-feature__link:hover::after {
        width: 100%;
    }

.pp-brands-section__header {
    text-align: center;
    margin-bottom: 44px;
}

.pp-brands-section__title {
    margin: 0;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    color: #5429CE;
}

.pp-sister-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
}

.pp-sister-brand-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 28px;
    align-items: center;
}

.pp-sister-brand-card__media img {
    width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.pp-sister-brand-card__title {
    margin: 0 0 12px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #2D117C;
}

.pp-sister-brand-card__text {
    margin: 0 0 18px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.pp-sister-brand-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #5429CE;
    text-decoration: none;
    position: relative;
}

    .pp-sister-brand-card__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background: #5429CE;
        transition: width 0.25s ease;
    }

    .pp-sister-brand-card__link:hover::after {
        width: 100%;
    }

/* laptop */
@media (max-width: 1400px) {
    .pp-brands-section__title {
        font-size: 56px;
    }

    .pp-brand-feature {
        gap: 40px;
        margin-bottom: 92px;
    }

    .pp-brand-feature__title {
        font-size: 34px;
    }

    .pp-sister-brand-card__title {
        font-size: 28px;
    }

    .pp-brand-feature__text,
    .pp-sister-brand-card__text {
        font-size: 17px;
    }
}

/* tablet */
@media (max-width: 1100px) {
    .pp-brands-section {
        padding: 78px 0 92px;
    }

    .pp-brand-feature {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 76px;
    }

    .pp-brand-feature__title {
        font-size: 30px;
    }

    .pp-brands-section__title {
        font-size: 48px;
    }

    .pp-sister-brands-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 860px;
        margin: 0 auto;
    }

    .pp-sister-brand-card__title {
        font-size: 26px;
    }

    .pp-brand-feature__text,
    .pp-sister-brand-card__text {
        font-size: 16px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .pp-brands-section {
        padding: 58px 0 72px;
    }

    .pp-brand-feature {
        gap: 24px;
        margin-bottom: 58px;
    }

    .pp-brand-feature__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .pp-brand-feature__text {
        font-size: 15px;
        line-height: 165%;
        margin-bottom: 14px;
    }

    .pp-brand-feature__link {
        font-size: 16px;
    }

    .pp-brands-section__header {
        margin-bottom: 28px;
    }

    .pp-brands-section__title {
        font-size: 38px;
    }

    .pp-sister-brands-grid {
        gap: 28px;
    }

    .pp-sister-brand-card {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .pp-sister-brand-card__media img {
        aspect-ratio: 1.3 / 1;
    }

    .pp-sister-brand-card__title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .pp-sister-brand-card__text {
        font-size: 15px;
        line-height: 165%;
        margin-bottom: 16px;
    }

    .pp-sister-brand-card__link {
        font-size: 16px;
    }
}

/* PRODUCT HERO */
.pp-product-hero {
    padding: 34px 0 30px;
    background: #ffffff;
}

.pp-product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 670px) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.pp-product-hero__gallery {
    min-width: 0;
    padding-top: 12px;
}

/* MAIN IMAGE */
.pp-product-hero__main-image-wrap {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    overflow: visible;
}

.pp-product-hero__main-image-bg {
    position: absolute;
    width: 78%;
    max-width: 430px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(84, 41, 206, 0.18);
    z-index: 1;
}

.pp-product-hero__main-image {
    position: relative;
    z-index: 2;
    max-width: 160%;
    max-height: 720px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.30)) drop-shadow(0 34px 28px rgba(0, 0, 0, 0.20));
}

.pp-product-hero__main-image {
    transform: translateX(+12px);
}

/* ZOOM ICON */
.pp-product-hero__zoom {
    position: absolute;
    right: -4px;
    bottom: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    font-size: 34px;
    line-height: 1;
}

/* THUMBS */
.pp-product-hero__thumbs {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
    padding-left: 0;
    flex-wrap: wrap;
    max-width: 100%;
}

.pp-product-hero__thumb {
    width: 150px;
    height: 120px;
    border-radius: 10px;
    border: 1px solid #E8E0FA;
    background: #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
}

    .pp-product-hero__thumb:hover {
        border-color: #5429CE;
    }

    .pp-product-hero__thumb.is-active {
        border-color: #5429CE;
        box-shadow: 0 0 0 1px #5429CE inset;
    }

    .pp-product-hero__thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 4px;
    }

/* RIGHT SIDE */
.pp-product-hero__content {
    min-width: 0;
    max-width: 760px;
}

/* BREADCRUMB */
.pp-product-hero__breadcrumbs {
    margin-bottom: 12px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0;
    color: #8D7DB9;
}

    .pp-product-hero__breadcrumbs a,
    .pp-product-hero__breadcrumbs-current {
        color: #8D7DB9;
        text-decoration: none;
    }

        .pp-product-hero__breadcrumbs a:hover {
            text-decoration: underline;
        }

    .pp-product-hero__breadcrumbs span {
        margin: 0 6px;
    }

/* TITLE */
.pp-product-hero__title {
    margin: 0 0 20px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0;
    color: #5429CE;
}

/* TEXT */
.pp-product-hero__intro {
    margin: 0 0 28px;
    max-width: 100%;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

/* INFO ROW */
.pp-product-hero__info-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 28px;
    align-items: start;
    margin-bottom: 22px;
}

/* SPECS */
.pp-product-hero__specs {
    display: grid;
    gap: 8px;
}

.pp-product-hero__spec {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 16px;
    min-height: 38px;
    padding: 0 10px;
    border-radius: 4px;
}

    .pp-product-hero__spec:nth-child(even) {
        background: rgba(84, 41, 206, 0.04);
    }

.pp-product-hero__spec-label {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

.pp-product-hero__spec-value {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

/* CTA BOX */
.pp-product-hero__cta-box {
    background: rgba(234, 227, 255, 0.7);
    border-radius: 16px;
    padding: 34px 22px;
    min-height: 262px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pp-product-hero__cta-title {
    margin: 0 0 24px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #5429CE;
}

.pp-product-hero__cta-button {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    background: #5429CE;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .pp-product-hero__cta-button:hover {
        background: #ffffff;
        color: #5429CE;
    }

.pp-product-hero__cta-button-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .pp-product-hero__cta-button-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transition: filter 0.25s ease;
    }

.pp-product-hero__cta-button:hover .pp-product-hero__cta-button-icon img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(84%) saturate(2195%) hue-rotate(249deg) brightness(90%) contrast(96%);
}

/* ACTIONS */
.pp-product-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pp-product-hero__action {
    min-height: 58px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.pp-product-hero__action--planner {
    background: #B7EFBB;
    padding: 0 18px;
    gap: 14px;
}

.pp-product-hero__action--download {
    background: #A8E7AE;
    padding: 0 18px;
    justify-content: center;
    gap: 8px;
}

.pp-product-hero__action-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .pp-product-hero__action-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.pp-product-hero__action-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #2D117C;
}

.pp-product-hero__download-text {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #5429CE;
}

.pp-product-hero__download-arrow {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: #5429CE;
}

/* BOTTOM TEXT */
.pp-product-hero__bottom-text {
    margin: 0;
    max-width: 100%;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0;
    color: #000000;
}

/* LAPTOP */
@media (max-width: 1400px) {
    .pp-product-hero__grid {
        grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
        gap: 52px;
    }

    .pp-product-hero__main-image-wrap {
        min-height: 360px;
    }

    .pp-product-hero__main-image {
        max-height: 320px;
    }

    .pp-product-hero__main-image-bg {
        max-width: 380px;
    }

    .pp-product-hero__title {
        font-size: 56px;
    }

    .pp-product-hero__content {
        max-width: 720px;
    }

    .pp-product-hero__info-row {
        grid-template-columns: minmax(0, 1fr) 230px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .pp-product-hero {
        padding: 24px 0 64px;
    }

    .pp-product-hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pp-product-hero__gallery {
        padding-top: 0;
    }

    .pp-product-hero__main-image-wrap {
        min-height: 340px;
    }

    .pp-product-hero__main-image {
        max-height: 300px;
    }

    .pp-product-hero__content {
        max-width: none;
    }

    .pp-product-hero__title {
        font-size: 48px;
    }

    .pp-product-hero__info-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pp-product-hero__cta-box {
        max-width: 360px;
    }

    .pp-product-hero__actions {
        grid-template-columns: 1fr;
    }

    .pp-product-hero__action--planner,
    .pp-product-hero__action--download {
        justify-content: space-between;
        padding: 14px 18px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .pp-product-hero {
        padding: 20px 0 54px;
    }

    .pp-product-hero__main-image-wrap {
        min-height: 280px;
        margin-bottom: 20px;
    }

    .pp-product-hero__main-image-bg {
        width: 82%;
        max-width: 300px;
    }

    .pp-product-hero__main-image {
        max-height: 240px;
    }

    .pp-product-hero__zoom {
        right: -2px;
        bottom: 8px;
        font-size: 28px;
    }

    .pp-product-hero__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pp-product-hero__title {
        font-size: 38px;
        margin-bottom: 16px;
    }

    .pp-product-hero__intro {
        font-size: 16px;
        line-height: 165%;
        margin-bottom: 22px;
    }

    .pp-product-hero__spec {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 12px;
    }

    .pp-product-hero__cta-box {
        max-width: none;
        min-height: auto;
        padding: 28px 20px;
    }

    .pp-product-hero__cta-title {
        font-size: 22px;
    }

    .pp-product-hero__action-text,
    .pp-product-hero__download-text {
        font-size: 16px;
    }

    .pp-product-hero__bottom-text {
        font-size: 15px;
        line-height: 165%;
    }
}

.featured-products-section__title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    color: #5429CE;
    text-align: center;
    margin-bottom: 42px;
}


/* --- CONTACT --- */

.contact-section {
    padding: 60px 20px 40px;
    background-color: #ffffff;
    color: #000000;
}

.contact-title {
    font-family: "Anton SC", sans-serif;
    text-align: center;
    font-size: 64px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 50px;
    color: #5429CE;
}

.contact-subtitle {
    font-family: 'Barlow', sans-serif;
    text-align: center;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 400;
    color: #000000;
    margin-top: -25px;
    margin-bottom: 50px;
}

    .contact-subtitle::after {
        content: "";
        display: block;
        width: 240px;
        height: 4px;
        margin: 18px auto 32px;
        border-radius: 999px;
        background: linear-gradient( to right, rgba(84, 41, 206, 0), #8B6CF6, #5429CE, #8B6CF6, rgba(84, 41, 206, 0) );
    }

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-form,
.contact-map {
    flex: 1 1 45%;
    min-width: 320px;
}

    .contact-form label {
        display: block;
        font-family: 'IBM Plex Sans Condensed', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.1;
        letter-spacing: -0.03em;
        margin-bottom: 8px;
        color: #2D117C;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #E6E0F5;
        border-radius: 10px;
        font-size: 1rem;
        margin-bottom: 20px;
        font-family: 'Barlow', sans-serif;
        color: #000000;
        resize: none;
        background: #ffffff;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

        .contact-form input.error,
        .contact-form textarea.error {
            border: 2px solid #d93025;
            outline: none;
        }

        .contact-form input:focus:not(.error),
        .contact-form textarea:focus:not(.error) {
            border-color: #5429CE;
            box-shadow: 0 0 0 4px rgba(84, 41, 206, 0.12);
            outline: none;
        }

        .contact-form input.error:focus,
        .contact-form textarea.error:focus {
            border-color: #b30000;
            box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12);
            outline: none;
        }

.submit-btn {
    min-height: 52px;
    padding: 0 28px;
    border: 2px solid #5429CE;
    border-radius: 999px;
    background: transparent;
    color: #5429CE;
    cursor: pointer;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    margin-top: 16px;
}

    .submit-btn:hover {
        transform: translateY(-1px);
        background: #5429CE;
        color: #ffffff;
    }

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.form-message {
    margin-top: 10px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: #2D117C;
}

/* TABLET */
@media (max-width: 1100px) {
    .contact-title {
        font-size: 48px;
    }

    .contact-subtitle {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .contact-section {
        padding: 48px 16px 32px;
    }

    .contact-title {
        font-size: 38px;
        line-height: 1.08;
        margin-bottom: 34px;
    }

    .contact-subtitle {
        font-size: 16px;
        margin-top: -12px;
        margin-bottom: 34px;
    }

        .contact-subtitle::after {
            width: 140px;
            margin: 14px auto 22px;
        }

    .contact-form label {
        font-size: 22px;
    }

    .submit-btn {
        width: 100%;
    }
}




















































































































































/* =========================
   GLOBAL OVERFLOW SAFETY
========================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-header,
.site-footer,
.hero,
.featured-products-section,
.references-showcase-section,
.newsletter-cta-section,
.pp-product-hero,
.grant-slider-section {
    overflow-x: clip;
}

.container {
    width: min(100%, var(--container-width));
}

/* hosszú szövegek, gombok, címek biztonságosabb tördelése */
h1, h2, h3, h4, h5, h6,
p,
a,
span {
    overflow-wrap: break-word;
}

/* =========================
   HEADER / NAV BASE FIXES
========================= */

.header-row {
    min-width: 0;
}

.main-nav,
.header-actions,
.header-logo {
    min-width: 0;
}

    .main-nav a::after {
        bottom: -10px;
    }

/* =========================
   FOOTER FIXES
========================= */

.footer {
    gap: 0;
}

.footer-col {
    min-width: 0;
}

    .footer-col ul,
    .footer-contact,
    .footer-col a,
    .footer-contact p {
        min-width: 0;
    }

@media (max-width: 1100px) {
    .footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
        padding: 40px 28px;
    }

    .footer-col:not(:first-child) {
        border-left: none;
        padding-left: 0;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .site-footer {
        margin-top: 56px;
        padding-bottom: 24px;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 20px;
        border-radius: 16px;
    }

    .footer-col,
    .footer-col--brand {
        gap: 14px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col a,
    .footer-contact p {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* =========================
   HERO FIXES
========================= */

@media (max-width: 767px) {
    .hero-title {
        line-height: 0.95;
        word-break: break-word;
    }

    .hero-subtitle {
        padding: 0 10px;
    }

    .hero-intro-card {
        overflow: visible;
    }

    .hero-intro-badge {
        right: 10px;
    }
}

/* =========================
   SOLUTIONS SECTION
========================= */

@media (max-width: 991px) {
    .solutions-section {
        padding: 80px 0;
    }

    .solutions-title {
        font-size: 48px;
        margin-bottom: 42px;
    }

    .solutions-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .solutions-content {
        order: 2;
    }

    .solutions-image {
        order: 1;
    }

    .solutions-subtitle {
        font-size: 26px;
        line-height: 1.35;
    }

    .solutions-text {
        font-size: 16px;
    }

    .solutions-actions {
        flex-wrap: wrap;
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .solutions-section {
        padding: 64px 0;
    }

    .solutions-title {
        font-size: 36px;
    }

    .solutions-subtitle {
        font-size: 22px;
    }

    .solutions-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .btn {
        width: 100%;
        min-height: 46px;
        padding: 0 18px;
        font-size: 16px;
    }

    .solutions-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================
   FEATURED PRODUCTS SLIDER
========================= */

.featured-products-viewport {
    overflow: hidden;
}

@media (max-width: 991px) {
    .featured-products-slider {
        padding: 0 56px;
    }

    .featured-products-arrow--prev {
        left: 0;
    }

    .featured-products-arrow--next {
        right: 0;
    }
}

@media (max-width: 640px) {
    .featured-products-slider {
        padding: 0 44px;
    }

    .featured-products-arrow {
        width: 38px;
        height: 38px;
    }

        .featured-products-arrow span {
            font-size: 20px;
        }

    .featured-products-arrow--prev {
        left: 0;
    }

    .featured-products-arrow--next {
        right: 0;
    }

    .product-card__footer {
        gap: 10px;
    }

    .product-card__button {
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   REFERENCES SHOWCASE
========================= */

.references-showcase-slider {
    overflow: hidden;
}

.references-showcase-slider__track-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: calc(1000px * 3 + 18px * 2);
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 1100px) {
    .references-showcase-slider__nav--prev {
        left: 20px;
        right: auto;
        transform: translateY(-50%);
    }

    .references-showcase-slider__nav--next {
        left: auto;
        right: 20px;
        transform: translateY(-50%);
    }
}

@media (max-width: 767px) {
    .references-showcase-slider__track-wrap {
        max-width: 100%;
        padding: 0;
    }

    .references-showcase-slider__track {
        gap: 12px;
    }

    .references-showcase-slider__slide {
        width: 74vw;
        max-width: 74vw;
        border-radius: 10px;
    }

    .references-showcase-slider__nav {
        width: 44px;
        height: 44px;
    }

    .references-showcase-slider__nav--prev {
        left: calc(50% - 37vw);
        right: auto;
        transform: translate(-50%, -50%);
    }

    .references-showcase-slider__nav--next {
        left: calc(50% + 37vw);
        right: auto;
        transform: translate(-50%, -50%);
    }

    .references-showcase-slider__nav-icon {
        font-size: 22px;
    }
}

/* =========================
   GRANT SLIDER
========================= */

@media (max-width: 767px) {
    .grant-slider {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 8px;
    }

    .grant-slider__card {
        min-width: 0;
    }
}

/* =========================
   NEWSLETTER CTA
========================= */

.newsletter-cta-card {
    min-width: 0;
}

.newsletter-cta-content,
.newsletter-cta-visual {
    min-width: 0;
}

@media (max-width: 1100px) {
    .newsletter-cta-visual img {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .newsletter-cta-card {
        overflow: hidden;
    }

    .newsletter-cta-visual {
        width: 76%;
        max-width: 280px;
        height: 190px;
        bottom: -8px;
    }

        .newsletter-cta-visual img {
            width: 100%;
            max-width: 100%;
            height: auto;
        }
}

/* =========================
   PRODUCT HERO FIXES
========================= */

.pp-product-hero__grid,
.pp-product-hero__info-row,
.pp-product-hero__actions {
    min-width: 0;
}

.pp-product-hero__main-image-wrap {
    overflow: visible;
}

.pp-product-hero__main-image {
    max-width: 100%;
}

.pp-product-hero__thumbs {
    padding-left: 0;
    margin-top: 32px;
    max-width: 100%;
    justify-content: center;
}

@media (max-width: 1100px) {
    .pp-product-hero__main-image {
        transform: none;
    }

    .pp-product-hero__thumbs {
        gap: 12px;
        margin-top: 24px;
    }

    .pp-product-hero__thumb {
        width: 120px;
        height: 96px;
    }
}

@media (max-width: 767px) {
    .pp-product-hero__main-image-wrap {
        min-height: 240px;
    }

    .pp-product-hero__main-image-bg {
        width: 78%;
        max-width: 240px;
    }

    .pp-product-hero__main-image {
        max-width: 92%;
        max-height: 220px;
        transform: none;
    }

    .pp-product-hero__thumbs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
        justify-content: center;
    }

    .pp-product-hero__thumb {
        width: calc(33.333% - 7px);
        min-width: 92px;
        max-width: 112px;
        height: 84px;
    }

    .pp-product-hero__action {
        min-width: 0;
    }

    .pp-product-hero__action-text,
    .pp-product-hero__download-text {
        line-height: 1.3;
    }
}

/* =========================
   CATEGORY / BRAND / BLOG SAFETY
========================= */

@media (max-width: 767px) {
    .pp-header__title,
    .about-intro-section__title,
    .pp-brands-section__title,
    .pp-stats-section__title,
    .featured-products-section__title {
        word-break: break-word;
    }

    .blog-preview-grid,
    .pp-product-grid,
    .pp-category-nav__grid,
    .pp-brand-showcase__item,
    .pp-brand-feature,
    .pp-sister-brands-grid {
        min-width: 0;
    }
}


@media (max-width: 767px) {
    .footer,
    .footer-col,
    .footer-col--brand {
        text-align: center;
        align-items: center;
    }

        .footer-col ul {
            align-items: center;
        }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col:not(:first-child) {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 1100px) {
    .main-nav {
        align-items: center;
        text-align: center;
    }

        .main-nav a {
            text-align: center;
        }
}

@media (max-width: 1100px) {
    .header-row {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 640px) {
    .header-row {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 1100px) {
    .header-row {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-nav {
        align-items: center;
        text-align: center;
    }

        .main-nav a {
            text-align: center;
        }
}

@media (max-width: 767px) {
    .footer,
    .footer-col,
    .footer-col--brand {
        text-align: center;
        align-items: center;
    }

        .footer-col ul {
            align-items: center;
        }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col:not(:first-child) {
        border-left: none;
        padding-left: 0;
    }

    .pp-product-hero {
        padding-top: 16px;
    }

    .pp-product-hero__grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .pp-product-hero__content {
        display: contents;
    }

    .pp-product-hero__breadcrumbs {
        order: 1;
        margin-bottom: 0;
        font-size: 13px;
        line-height: 1.6;
        word-break: break-word;
    }

    .pp-product-hero__gallery {
        order: 2;
    }

    .pp-product-hero__title {
        order: 3;
    }

    .pp-product-hero__intro {
        order: 4;
    }

    .pp-product-hero__info-row {
        order: 5;
    }

    .pp-product-hero__actions {
        order: 6;
    }

    .pp-product-hero__bottom-text {
        order: 7;
    }
}

@media (max-width: 640px) {
    .header-row {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.grant-slider.is-single .grant-slider__nav {
    display: none;
}

@media (max-width: 767px) {
    .grant-slider__media {
        display: none;
    }
}

@media (max-width: 767px) {
    .grant-slider {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-areas:
            "viewport viewport"
            "prev next";
        justify-content: center;
        align-items: center;
        column-gap: 32px;
        row-gap: 18px;
    }

    .grant-slider__viewport {
        grid-area: viewport;
        width: 100%;
    }

    .grant-slider__nav {
        position: static;
        transform: none;
        width: 40px;
        height: 40px;
    }

    .grant-slider__nav--prev {
        grid-area: prev;
        justify-self: end;
    }

    .grant-slider__nav--next {
        grid-area: next;
        justify-self: start;
    }

    .grant-slider__nav-icon {
        font-size: 22px;
    }

    .grant-slider__card {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }

    .grant-slider__media {
        display: none;
    }

    .grant-slider__content {
        text-align: left;
    }

    .grant-slider__subtitle {
        font-size: 24px;
        margin-bottom: 10px;
        text-align: left;
    }

    .grant-slider__text {
        font-size: 15px;
        line-height: 1.65;
        text-align: left;
    }

    .grant-slider__link {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .grant-slider__content {
        text-align: left;
    }

    .grant-slider__subtitle {
        text-align: left;
    }

    .grant-slider__text {
        text-align: left;
    }

    .grant-slider__link {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .grant-slider__card {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }
}

.grant-slider.is-single .grant-slider__nav {
    display: none;
}

.grant-slider-section.is-single .grant-slider {
    grid-template-columns: 1fr;
}

.grant-slider-section.is-single .grant-slider__nav {
    display: none;
}

.grant-slider-section.is-single .grant-slider__viewport {
    grid-column: 1 / -1;
}


/* =========================================
   PANDA PLAY FOOTER – MOBIL HARD RESET
========================================= */

@media (max-width: 767px) {
    .site-footer .footer,
    .site-footer .footer-col,
    .site-footer .footer-col--brand,
    .site-footer .footer-contact,
    .site-footer .footer-col ul,
    .site-footer .footer-col li,
    .site-footer .footer-social {
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .site-footer .footer {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 22px;
        padding: 32px 24px 34px;
        border-radius: 18px;
    }

    .site-footer .footer-col:not(:first-child) {
        border-left: none;
        padding-left: 0;
    }

    .site-footer .footer-col--brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 14px;
        padding-left: 20px;
        padding-right: 0;
        margin-bottom: 8px;
    }

    .site-footer .footer-logo {
        width: 190px;
        margin: 0;
    }

    .site-footer .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0;
    }

        .site-footer .footer-contact p {
            margin: 0;
            font-size: 14px;
            line-height: 1.45;
            text-align: left;
        }

    .site-footer .footer-social {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        margin-top: 10px;
    }

        .site-footer .footer-social a {
            width: 40px;
            height: 40px;
            min-width: 40px;
            min-height: 40px;
            flex: 0 0 40px;
            border-radius: 50%;
            background: #E0D7FA;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            line-height: 0;
        }

        .site-footer .footer-social img {
            width: 18px;
            height: 18px;
            display: block;
            object-fit: contain;
            margin: 0;
        }

    .site-footer .footer-col h4 {
        margin: 0 0 14px;
        font-size: 15px;
        line-height: 1.35;
        text-align: left;
    }

    .site-footer .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .site-footer .footer-col li {
        width: 100%;
    }

    .site-footer .footer-col a {
        display: inline-block;
        text-align: left;
        font-size: 14px;
        line-height: 1.45;
    }

    .site-footer .footer-bottom__bg {
        display: none;
    }

    .site-footer .footer-bottom {
        margin-top: 18px;
        padding: 18px 16px 0;
    }

    .site-footer .footer-bottom__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        text-align: center;
    }

    .site-footer .footer-bottom__payments {
        order: 1;
    }

    .site-footer .footer-bottom__copyright {
        order: 2;
        margin: 0;
        text-align: center;
    }
}

/* =========================================
   PANDA PLAY FOOTER – MOBILE FINAL OVERRIDE
========================================= */

@media (max-width: 767px) {
    .site-footer {
        margin-top: 56px;
        padding-bottom: 24px;
    }

        .site-footer > .container {
            width: 100%;
            max-width: 100%;
            padding-left: 0;
            padding-right: 0;
        }

        .site-footer .footer {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            margin: 0;
            padding: 32px 24px 34px;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px 22px;
            border-radius: 18px;
            background: #EAE3FF;
        }

        .site-footer .footer-col,
        .site-footer .footer-col--brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            text-align: left;
            min-width: 0;
            gap: 0;
        }

            .site-footer .footer-col:not(:first-child) {
                border-left: none;
                padding-left: 0;
            }

        .site-footer .footer-col--brand {
            grid-column: 1 / -1;
            padding-left: 20px;
            padding-right: 0;
            margin-bottom: 6px;
        }

        .site-footer .footer-logo {
            width: 190px;
            max-width: 100%;
            height: auto;
            margin: 0 0 22px;
            display: block;
        }

        .site-footer .footer-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 10px;
            margin: 0 0 20px;
        }

            .site-footer .footer-contact p {
                margin: 0;
                font-size: 14px;
                line-height: 1.45;
                text-align: left;
            }

        .site-footer .footer-social {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: flex-start;
            gap: 16px;
            margin: 0;
        }

            .site-footer .footer-social a {
                width: 40px;
                height: 40px;
                min-width: 40px;
                min-height: 40px;
                flex: 0 0 40px;
                border-radius: 50%;
                background: #E0D7FA;
                display: grid;
                place-items: center;
                padding: 0;
                margin: 0;
                line-height: 0;
                box-sizing: border-box;
            }

            .site-footer .footer-social img {
                width: 18px;
                height: 18px;
                display: block;
                object-fit: contain;
                margin: 0;
            }

        .site-footer .footer-col h4 {
            margin: 0 0 14px;
            font-size: 15px;
            line-height: 1.35;
            text-align: left;
            color: #5429CE;
        }

        .site-footer .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 14px;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-col li {
            width: 100%;
            margin: 0;
            text-align: left;
        }

        .site-footer .footer-col a {
            display: inline-block;
            font-size: 14px;
            line-height: 1.45;
            text-align: left;
            color: #000000;
        }

        .site-footer .footer-bottom {
            margin-top: 18px;
            padding: 18px 16px 0;
        }

        .site-footer .footer-bottom__bg {
            display: none;
        }

        .site-footer .footer-bottom__content {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
            text-align: center;
        }

        .site-footer .footer-bottom__payments {
            order: 1;
        }

            .site-footer .footer-bottom__payments img {
                width: 210px;
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }

        .site-footer .footer-bottom__copyright {
            order: 2;
            margin: 0;
            font-size: 12px;
            line-height: 1.45;
            text-align: center;
        }
}

@media (max-width: 767px) {
    .site-footer .footer-social a {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        flex: 0 0 40px;
        border-radius: 50%;
        background: #E0D7FA;
        display: grid;
        place-items: center;
        padding: 0;
        margin: 0;
        line-height: 0;
        box-sizing: border-box;
    }

    .site-footer .footer-social img {
        display: block;
        object-fit: contain;
        margin: 0;
    }

    /* Facebook */
    .site-footer .footer-social a:nth-child(1) img {
        width: 20px;
        height: 20px;
        transform: translateY(-1px);
    }

    /* Instagram */
    .site-footer .footer-social a:nth-child(2) img {
        width: 18px;
        height: 18px;
        transform: translateY(0);
    }

    /* TikTok */
    .site-footer .footer-social a:nth-child(3) img {
        width: 17px;
        height: 17px;
        transform: translateY(-1px);
    }

    /* YouTube */
    .site-footer .footer-social a:nth-child(4) img {
        width: 23px;
        height: 23px;
        transform: translateY(-1px);
    }
}

/* HERO INTRO – mobil fix */
@media (max-width: 767px) {

    .hero-intro-wrap .container {
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-intro-card {
        max-width: none;
        width: 100%;
        margin: 0;
        border-radius: 14px; 
        padding: 22px 18px 100px;
    }

    .hero-intro-badge {
        width: 140px;
        height: 140px;
        right: 34px;
        bottom: -58px;
    }
}

@media (max-width: 767px) {
    .pp-product-hero {
        padding: 16px 0 54px;
    }

        .pp-product-hero .container {
            width: 100%;
            max-width: none;
            padding-left: 14px;
            padding-right: 14px;
        }

    .pp-product-hero__grid,
    .pp-product-hero__info-row,
    .pp-product-hero__actions {
        min-width: 0;
    }

    .pp-product-hero__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    .pp-product-hero__content {
        display: contents !important;
        max-width: none !important;
        width: auto !important;
    }

    /* sorrend */
    .pp-product-hero__breadcrumbs {
        order: 1;
        margin: 0 !important;
        font-size: 13px;
        line-height: 1.6;
        word-break: break-word;
    }

    .pp-product-hero__title {
        order: 2;
        margin: 0 0 2px !important;
        font-size: 38px;
        line-height: 1.15;
    }

    .pp-product-hero__gallery {
        order: 3;
        padding-top: 0 !important;
        min-width: 0;
    }

    .pp-product-hero__intro {
        order: 4;
        margin: 0 0 20px !important;
        font-size: 16px;
        line-height: 1.65;
        max-width: none !important;
    }

    .pp-product-hero__info-row {
        order: 5;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .pp-product-hero__actions {
        order: 6;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin: 0 !important;
        border-radius: 0 !important;
        overflow: visible !important;
        width: 100% !important;
    }

    .pp-product-hero__bottom-text {
        order: 7;
    }

    /* galéria */
    .pp-product-hero__main-image-wrap {
        min-height: 250px !important;
        margin-bottom: 16px !important;
    }

    .pp-product-hero__main-image-bg {
        width: 82% !important;
        max-width: 250px !important;
    }

    .pp-product-hero__main-image {
        max-width: 92% !important;
        max-height: 220px !important;
        transform: none !important;
    }

    .pp-product-hero__thumbs {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        margin-top: 14px !important;
        justify-content: space-between !important;
        padding-left: 0 !important;
        max-width: 100% !important;
    }

    .pp-product-hero__thumb {
        width: calc(33.333% - 6px) !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 76px !important;
    }

    /* adatok */
    .pp-product-hero__specs {
        display: grid !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .pp-product-hero__spec {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        gap: 12px !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 40px !important;
        padding: 10px 14px !important;
        border-radius: 6px !important;
        margin: 0 !important;
    }

    .pp-product-hero__spec-label,
    .pp-product-hero__spec-value {
        font-size: 15px !important;
        line-height: 1.45 !important;
    }

    .pp-product-hero__spec-label {
        font-weight: 700 !important;
    }

    .pp-product-hero__spec-value {
        text-align: right !important;
        white-space: nowrap !important;
    }

    /* CTA blokk teljes szélesség */
    .pp-product-hero__cta-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: none !important;
        min-height: auto !important;
        padding: 32px 18px 28px !important;
        margin: 0 !important;
        border-radius: 16px !important;
        background: rgba(234, 227, 255, 0.7) !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .pp-product-hero__cta-title {
        width: 100% !important;
        margin: 0 0 18px !important;
        font-size: 22px !important;
        line-height: 1.35 !important;
        text-align: center !important;
    }

    .pp-product-hero__cta-button {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: none !important;
        min-height: 48px !important;
        padding: 0 18px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* alsó két zöld blokk */
    .pp-product-hero__action {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 62px !important;
        margin: 0 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .pp-product-hero__action--planner,
    .pp-product-hero__action--download {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 18px 16px !important;
        gap: 10px !important;
    }

    .pp-product-hero__action-icon {
        width: 28px !important;
        height: 28px !important;
        flex: 0 0 28px !important;
    }

    .pp-product-hero__action-text,
    .pp-product-hero__download-text {
        font-size: 16px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }

    .pp-product-hero__download-arrow {
        font-size: 16px !important;
        line-height: 1 !important;
    }
}

@media (max-width: 767px) {
    .pp-product-hero__actions {
        position: relative !important;
        display: block !important;
        background: #A8E7AE !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        padding-top: 10px !important;
    }

    .pp-product-hero__action {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .pp-product-hero__action--planner {
        position: relative !important;
        z-index: 2 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        min-height: 84px !important;
        padding: 12px 16px !important;
        margin: -10px 0 -10px 0 !important;
        background: #B7EFBB !important;
        border-radius: 16px !important;
    }

    .pp-product-hero__action--download {
        position: relative !important;
        z-index: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        min-height: 64px !important;
        padding: 22px 16px 18px !important;
        background: #A8E7AE !important;
        border-radius: 0 0 16px 16px !important;
        border-top: none !important;
    }
}

.pp-product-hero__extra-info {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.pp-product-hero__extra-item {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

    .pp-product-hero__extra-item strong {
        font-weight: 700;
    }

.pp-product-hero__cta-box {
    background: #EDE6FA;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    text-align: center;
}

.pp-product-hero__price {
    font-family: "Anton SC", sans-serif;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #5429CE;
    margin-bottom: 10px;
}

.pp-product-hero__price-note {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #5429CE;
    margin-bottom: 24px;
}

.pp-product-hero__cta-title {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    color: #5429CE;
    margin-bottom: 24px;
}

.pp-product-hero__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #5429CE;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .pp-product-hero__cta-button:hover {
        opacity: 0.92;
        transform: translateY(-1px);
    }

.pp-product-hero__cta-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .pp-product-hero__cta-button-icon img {
        width: 18px;
        height: 18px;
        display: block;
    }


.pp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.pp-product-card {
    display: flex;
    flex-direction: column;
}

.pp-product-card__image-link {
    text-decoration: none;
}

.pp-product-card__image-wrap {
    background: #F3EEFB;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.pp-product-card__image {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.pp-product-card__content {
    padding-top: 14px;
}

.pp-product-card__title {
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0 0 10px;
}

    .pp-product-card__title a {
        color: #5429CE;
        text-decoration: none;
    }

.pp-product-card__price {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #000000;
    margin-bottom: 14px;
}

.pp-product-card__price--inquiry {
    color: #5429CE;
}

.pp-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #5429CE;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .pp-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pp-product-grid {
        grid-template-columns: 1fr;
    }
}

.pp-category-page {
    padding: 40px 0 80px;
    background: #ffffff;
}

.pp-category-page__header {
    margin-bottom: 32px;
}

.pp-category-page__title {
    font-family: "Anton SC", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 400; 
    color: #5429CE;
    margin: 0;
}

@media (max-width: 767px) {
    .pp-category-page {
        padding: 24px 0 56px;
    }

    .pp-category-page__title {
        font-size: 42px;
    }
}

.pp-cart-page {
    padding: 40px 0 80px;
    background: #ffffff;
}

.pp-cart-page__header {
    margin-bottom: 28px;
}

.pp-cart-page__title {
    font-family: "Anton SC", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    color: #5429CE;
    margin: 0;
}

.pp-cart-page__empty {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.pp-cart-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
}

.pp-cart-page__items {
    display: grid;
    gap: 20px;
}

.pp-cart-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
    border: 1px solid #ece6fa;
    border-radius: 16px;
    background: #ffffff;
}

.pp-cart-item__image-wrap {
    background: #f3eefb;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.pp-cart-item__image {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    display: block;
}

.pp-cart-item__title {
    margin: 0 0 10px;
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

    .pp-cart-item__title a {
        color: #5429CE;
        text-decoration: none;
    }

.pp-cart-item__price {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 16px;
}

.pp-cart-item__price--inquiry {
    color: #5429CE;
}

.pp-cart-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.pp-cart-item__quantity-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pp-cart-item__quantity-input {
    width: 84px;
    height: 42px;
    border: 1px solid #d8cffa;
    border-radius: 999px;
    padding: 0 14px;
    font-family: "Barlow", sans-serif;
}

.pp-cart-item__update-button,
.pp-cart-item__remove-button,
.pp-cart-summary__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.pp-cart-item__update-button,
.pp-cart-summary__button--primary {
    background: #5429CE;
    color: #ffffff;
}

.pp-cart-item__remove-button,
.pp-cart-summary__button--secondary {
    background: #F3EEFB;
    color: #5429CE;
}

.pp-cart-summary__card {
    background: #f8f5fe;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 110px;
}

.pp-cart-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.pp-cart-summary__notice {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #efe8fd;
    color: #5429CE;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.pp-cart-summary__buttons {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .pp-cart-page__layout {
        grid-template-columns: 1fr;
    }

    .pp-cart-summary__card {
        position: static;
    }
}

@media (max-width: 767px) {
    .pp-cart-page {
        padding: 24px 0 56px;
    }

    .pp-cart-page__title {
        font-size: 42px;
    }

    .pp-cart-item {
        grid-template-columns: 1fr;
    }
}

.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cart__badge {
    position: absolute;
    left: 18px;
    bottom: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #5429CE;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
}

.pp-cart-item__price-note {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #5429CE;
    margin-bottom: 10px;
}

.pp-cart-item__line-total {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.pp-cart-summary__subrow {
    margin-top: -6px;
    margin-bottom: 16px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #5429CE;
    text-align: right;
}

@media (max-width: 767px) {
    .header-cart__badge {
        left: auto;
        right: 12px;
        bottom: -6px;
    }
}

.pp-product-hero__intro {
    white-space: pre-line;
}

.pp-webshop-page {
    padding: 56px 0 90px;
    background: #ffffff;
}

.pp-webshop-page__header {
    max-width: 980px;
    margin-bottom: 42px;
}

.pp-webshop-page__title {
    font-family: "Anton SC", sans-serif;
    font-size: 72px;
    line-height: 1;
    font-weight: 400;
    color: #5429CE;
    margin: 0 0 22px;
}

.pp-webshop-page__text {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.pp-webshop-page__empty {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}

@media (max-width: 767px) {
    .pp-webshop-page {
        padding: 32px 0 64px;
    }

    .pp-webshop-page__header {
        margin-bottom: 30px;
    }

    .pp-webshop-page__title {
        font-size: 46px;
    }

    .pp-webshop-page__text {
        font-size: 16px;
    }
}

.header-cart__badge.is-hidden {
    display: none;
}

.webshop-drawer-toggle {
    position: fixed;
    left: 0;
    top: 140px;
    z-index: 5000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0 999px 999px 0;
    background: #5429CE;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
}

.webshop-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 45, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 6000;
}

    .webshop-drawer-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

.webshop-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(390px, 92vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    z-index: 6001;
    box-shadow: 18px 0 45px rgba(20, 10, 45, 0.18);
}

    .webshop-drawer.is-open {
        transform: translateX(0);
    }

.webshop-drawer__inner {
    height: 100%;
    overflow-y: auto;
    padding: 28px 26px 40px;
}

.webshop-drawer__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #F3EEFB;
    color: #5429CE;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 22px;
}

.webshop-drawer__main-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: #5429CE;
    color: #ffffff;
    text-decoration: none;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 28px;
}

.webshop-drawer__block {
    border-top: 1px solid #E8E0FA;
    padding-top: 22px;
    margin-top: 22px;
}

.webshop-drawer__heading {
    font-family: "Anton SC", sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    color: #5429CE;
    margin: 0 0 18px;
}

.webshop-drawer__group,
.webshop-drawer__subgroup {
    margin-bottom: 12px;
}

    .webshop-drawer__group > summary,
    .webshop-drawer__subgroup > summary {
        cursor: pointer;
        font-family: "Barlow", sans-serif;
        font-weight: 700;
        color: #2D117C;
        padding: 8px 0;
    }

.webshop-drawer__subgroup {
    padding-left: 14px;
}

.webshop-drawer__links {
    display: grid;
    gap: 8px;
    padding: 6px 0 8px 14px;
}

    .webshop-drawer__links a {
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        line-height: 1.4;
        color: #5429CE;
        text-decoration: none;
    }

.webshop-drawer__placeholder {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #6B5E92;
    background: #F6F4FC;
    border-radius: 14px;
    padding: 16px;
}

.webshop-drawer-is-open {
    overflow: hidden;
}

.header-actions__icon--filter {
    display: none;
}

/* mobil */
@media (max-width: 767px) {
    .header-actions__icon--filter {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 0;
        background: #5429CE;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 26px;
        line-height: 1;
        font-weight: 600;
        padding: 0;
    }

    .header-actions__filter-icon {
        display: block;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .webshop-drawer-toggle {
        display: none;
    }
}

@media (max-width: 767px) {

    .webshop-drawer {
        left: auto;
        right: 0;
        transform: translateX(100%); /* KÍVÜL JOBBRA */
        box-shadow: -18px 0 45px rgba(20, 10, 45, 0.18);
    }

        .webshop-drawer.is-open {
            transform: translateX(0); /* BECSÚSZIK */
        }
}

.webshop-drawer__filter-form {
    display: grid;
    gap: 14px;
}

.webshop-drawer__filter-label {
    display: grid;
    gap: 6px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2D117C;
}

    .webshop-drawer__filter-label input {
        width: 100%;
        height: 44px;
        border: 1px solid #E8E0FA;
        border-radius: 999px;
        padding: 0 16px;
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        color: #000000;
        outline: none;
    }

.webshop-drawer__filter-submit,
.webshop-drawer__filter-reset {
    min-height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.webshop-drawer__filter-submit {
    border: 0;
    background: #5429CE;
    color: #ffffff;
    cursor: pointer;
}

.webshop-drawer__filter-reset {
    background: #F6F4FC;
    color: #5429CE;
}

.pp-product-list-empty {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #5429CE;
    background: #F6F4FC;
    border-radius: 16px;
    padding: 22px 24px;
    margin: 0;
}

.webshop-drawer__active-filter {
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #5429CE;
    background: #F6F4FC;
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-block;
    margin-bottom: 10px;
}


[data-product-list] {
    transition: opacity 0.2s ease;
}

    [data-product-list].is-loading {
        opacity: 0.45;
        pointer-events: none;
    }


.pp-product-offer-notice {
    margin-top: 48px;
    padding: 22px 26px;
    border-radius: 18px;
    background: #F6F4FC;
    color: #5429CE;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 767px) {
    .pp-product-offer-notice {
        margin-top: 32px;
        padding: 18px 20px;
        font-size: 16px;
    }
}

.pp-form-page {
    padding: 56px 0 90px;
    background: #ffffff;
}

.pp-form-page__header {
    margin-bottom: 34px;
}

.pp-form-page__title {
    font-family: "Anton SC", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    color: #5429CE;
    margin: 0;
}

.pp-order-form {
    max-width: 980px;
    display: grid;
    gap: 22px;
}

.pp-form-card {
    background: #F6F4FC;
    border-radius: 20px;
    padding: 28px;
}

.pp-form-card__title {
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #5429CE;
    margin: 0 0 20px;
}

.pp-form-card__text {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.pp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pp-form-grid__wide {
    grid-column: 1 / -1;
}

.pp-order-form label {
    gap: 8px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #2D117C;
}

    .pp-order-form label span {
        font-weight: 500;
        color: #6B5E92;
        margin-left: 4px;
    }

.pp-order-form input,
.pp-order-form textarea {
    width: 100%;
    border: 1px solid #E3DAFA;
    border-radius: 14px;
    background: #ffffff;
    padding: 14px 16px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    color: #000000;
    outline: none;
}

.pp-order-form input {
    height: 50px;
}

.pp-order-form textarea {
    resize: vertical;
    min-height: 140px;
}

.pp-form-checkbox {
    display: flex !important;
    grid-template-columns: unset !important;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

    .pp-form-checkbox input {
        width: 20px;
        height: 20px;
    }

.pp-billing-fields {
    margin-top: 24px;
}

    .pp-billing-fields.is-hidden {
        display: none;
    }

.pp-form-submit {
    justify-self: start;
    min-height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #5429CE;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 767px) {
    .pp-form-page {
        padding: 32px 0 64px;
    }

    .pp-form-page__title {
        font-size: 44px;
    }

    .pp-form-card {
        padding: 22px;
    }

    .pp-form-grid {
        grid-template-columns: 1fr;
    }

    .pp-form-submit {
        width: 100%;
    }
}

.cookie-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 9999;
    width: min(720px, calc(100% - 32px));
    transform: translate(-50%, calc(100% + 40px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

    .cookie-bar.is-visible {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: auto;
    }

    .cookie-bar.is-hiding {
        transform: translate(-50%, calc(100% + 40px));
        opacity: 0;
        pointer-events: none;
    }

.cookie-bar__inner {
    min-height: 46px;
    padding: 8px 12px 8px 18px;
    border-radius: 999px;
    background: #f4e7b8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-bar__text {
    margin: 0;
    color: #000000;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.cookie-bar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-bar__accept {
    border: 0;
    border-radius: 999px;
    padding: 8px 18px;
    background: #000000;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .cookie-bar__accept:hover {
        background: #222222;
        transform: translateY(-1px);
    }

.cookie-bar__close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .cookie-bar__close:hover {
        background: rgba(0, 0, 0, 0.14);
        transform: translateY(-1px);
    }

@media (max-width: 767px) {
    .cookie-bar {
        bottom: 14px;
        width: calc(100% - 24px);
    }

    .cookie-bar__inner {
        border-radius: 22px;
        padding: 10px 10px 10px 16px;
        gap: 12px;
    }

    .cookie-bar__text {
        font-size: 14px;
    }

    .cookie-bar__accept {
        padding: 8px 14px;
        font-size: 13px;
    }

    .cookie-bar__close {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
}


@media (max-width: 767px) {
    .pp-header__title {
        font-size: 38px;
    }
}

/* PARTNERS SECTION */
.partners-section {
    padding: 100px 0 80px;
}

/* TITLE */
.partners-section__title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    color: #5429CE;
    margin: 0 0 46px;
}

/* GRID */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
}

/* CARD */
.partner-card {
    flex: 0 0 318px;
    height: 115px;
    background: #ffffff;
    border: 1px solid #E8E0FA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* LOGO */
    .partner-card img {
        max-width: 200px;
        max-height: 70px;
        object-fit: contain;
        opacity: 0.75;
        filter: grayscale(100%);
        transition: opacity 0.2s ease, filter 0.2s ease;
    }

    /* HOVER */
    .partner-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(84, 41, 206, 0.10);
    }

        .partner-card:hover img {
            opacity: 1;
            filter: grayscale(0%);
        }

/* TABLET */
@media (max-width: 1100px) {
    .partners-section__title {
        font-size: 48px;
    }

    .partners-grid {
        gap: 20px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .partners-section {
        padding: 0;
        overflow: hidden;
    }

        .partners-section .container {
            padding-right: 0;
        }

    .partners-section__title {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .partners-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 6px 0;
        margin: 0;
        scrollbar-width: none;
    }

        .partners-grid::-webkit-scrollbar {
            display: none;
        }

    .partner-card {
        flex: 0 0 82%;
        height: 80px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

        .partner-card img {
            max-width: 120px;
            max-height: 34px;
        }
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 96px 0 88px;
}

.reviews-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-section__title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    color: #5429CE;
    margin: 0;
}

.reviews-fullbleed {
    width: 100%;
    max-width: 1930px;
    margin: 0 auto;
    overflow: hidden;
}

@media (min-width: 1921px) {
    .reviews-fullbleed {
        max-width: 1920px;
    }
}

/* GRID (NEM SLIDER) */
.reviews-track {
    display: flex;
    gap: 24px;
}

/* CARD */
.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    display: flex;
    flex-direction: column;
}

/* BUBBLE */
.review-card__bubble {
    position: relative;
    background: #F6F4FC;
    border-radius: 20px;
    height: 365px;
    padding: 56px 36px 78px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

    .review-card__bubble::after {
        content: "";
        position: absolute;
        left: 68px;
        bottom: -10px;
        width: 22px;
        height: 22px;
        background: #F6F4FC;
        transform: rotate(45deg);
        border-radius: 4px;
        z-index: 0;
    }

/* TEXT (LEVÁGÁS) */
.review-card__quote {
    position: relative;
    z-index: 1;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #2D117C;
    margin: 0;
    padding: 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* READ MORE */
.review-card__read-more {
    position: absolute;
    right: 32px;
    bottom: 24px;
    z-index: 2;
    border: 0;
    background: transparent;
    color: #5429CE;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

    .review-card__read-more:hover {
        text-decoration: underline;
    }

/* AUTHOR */
.review-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
}

.review-card__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
}

    .review-card__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-card__name {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.review-card__role {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #444;
    margin: 0;
}

/* BUTTON */
.reviews-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}

.reviews-section__button {
    min-height: 52px;
    padding: 0 28px;
    border: 2px solid #5429CE;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "IBM Plex Sans Condensed", 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5429CE;
    text-decoration: none;
    transition: 0.2s;
}

    .reviews-section__button:hover {
        background: #5429CE;
        color: #fff;
    }

/* LIGHTBOX */
.review-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

    .review-lightbox.is-open {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 32px;
    }

.review-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.review-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: #fff;
    padding: 44px 42px;
    border-radius: 20px;
    margin: 0;
}
.review-lightbox__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2D117C;
    margin: 0;
}

.review-lightbox__close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 32px;
    line-height: 1;
    border: 0;
    background: none;
    cursor: pointer;
    color: #5429CE;
}

/* TABLET */
@media (max-width: 1100px) {
    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .reviews-section {
        padding: 72px 0 40px;
    }

    .reviews-section__title {
        font-size: 36px;
    }

    .reviews-track {
        flex-direction: column;
        gap: 24px;
    }

    .review-card {
        flex: 1 1 100%;
    }

    .review-card__bubble {
        height: auto;
        min-height: 300px;
        padding: 36px 20px 64px;
    }

    .review-card__quote {
        -webkit-line-clamp: 6;
        font-size: 16px;
        padding: 0;
    }

    .review-card__read-more {
        right: 24px;
        bottom: 22px;
    }

    .review-lightbox.is-open {
        padding: 16px;
    }

    .review-lightbox__dialog {
        max-width: 100%;
        max-height: calc(100vh - 32px);
        padding: 40px 24px 28px;
    }

    .review-lightbox__text {
        font-size: 16px;
        line-height: 1.75;
    }
}

.mobile-header-right {
    display: none;
}

@media (max-width: 767px) {
    .header-bar__inner {
        display: flex;
        align-items: center;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 8px;
    }

    .lang-switcher--mobile-icons {
        display: flex;
        align-items: center;
        font-size: 13px;
        gap: 5px;
    }

    .nav-toggle {
        flex: 0 0 auto;
    }
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #5429CE;
    white-space: nowrap;
}

    .lang-switcher a {
        color: inherit;
        text-decoration: none;
        opacity: 0.45;
        transition: opacity 0.2s ease;
    }

        .lang-switcher a:hover,
        .lang-switcher a.active {
            opacity: 1;
        }

    .lang-switcher span {
        opacity: 0.35;
    }

.lang-switcher--mobile-icons {
    display: none;
}

@media (max-width: 767px) {
    .lang-switcher {
        font-size: 13px;
    }

    .header-actions--desktop .lang-switcher {
        display: none;
    }

    .lang-switcher--mobile-icons {
        display: flex;
    }
}

.lang-switcher a.active {
    opacity: 1;
    pointer-events: none;
    cursor: default;
}

/* =========================================
   PANDA PLAY HEADER – MOBILE WEBSHOP ICON FIX
========================================= */

@media (max-width: 767px) {
    .header-bar__inner {
        display: flex;
        align-items: center;
        gap: 7px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-bar .header-logo {
        flex: 1 1 auto;
        min-width: 0;
    }

        .header-bar .header-logo img {
            width: clamp(118px, 38vw, 170px);
            height: auto;
            max-width: 100%;
        }

    .header-actions {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 7px;
        margin-left: auto;
        min-width: max-content;
    }

    .header-actions__icon,
    .header-actions__icon--cart,
    .header-actions__icon--filter,
    .header-cart {
        flex: 0 0 auto;
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
    }

        .header-actions__icon--cart img,
        .header-cart img {
            width: 22px;
            height: 22px;
            flex: 0 0 auto;
        }

    .header-actions__icon--filter {
        font-size: 22px;
    }

    .header-cart__badge {
        right: -5px;
        bottom: -7px;
        left: auto;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        font-size: 10px;
        line-height: 18px;
    }

    .mobile-header-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: 2px;
        min-width: max-content;
    }

    .lang-switcher--mobile-icons {
        flex: 0 0 auto;
        font-size: 12px;
        gap: 4px;
    }

    .nav-toggle {
        flex: 0 0 auto;
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .nav-toggle__burger {
        width: 22px;
        height: 17px;
    }

        .nav-toggle__burger svg {
            width: 22px;
            height: 17px;
            display: block;
        }
}

@media (max-width: 380px) {
    .header-bar__inner {
        gap: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-bar .header-logo img {
        width: clamp(104px, 34vw, 140px);
    }

    .header-actions {
        gap: 5px;
    }

    .header-actions__icon,
    .header-actions__icon--cart,
    .header-actions__icon--filter,
    .header-cart {
        width: 31px;
        height: 31px;
        min-width: 31px;
        min-height: 31px;
    }

        .header-actions__icon--cart img,
        .header-cart img {
            width: 20px;
            height: 20px;
        }

    .header-actions__icon--filter {
        font-size: 20px;
    }

    .lang-switcher--mobile-icons {
        font-size: 11px;
        gap: 3px;
    }

    .nav-toggle,
    .nav-toggle__burger svg {
        width: 21px;
    }
}

/* =========================================
   PANDA PLAY RUBBER ACCORDION
========================================= */

.pp-rubber-accordion-section {
    padding: 24px 0 88px;
}

.pp-rubber-accordion {
    display: grid;
    gap: 18px;
}

.pp-rubber-accordion__item {
    border-radius: 24px;
    background: #F6F4FC;
    border: 1px solid rgba(84, 41, 206, 0.14);
    overflow: hidden;
}

.pp-rubber-accordion__button {
    width: 100%;
    min-height: 82px;
    padding: 24px 32px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    font-family: "Anton SC", sans-serif;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #5429CE;
    text-align: left;
}

.pp-rubber-accordion__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 999px;
    background: #5429CE;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pp-rubber-accordion__button:hover .pp-rubber-accordion__icon {
    background: #2D117C;
}

.pp-rubber-accordion__item.is-open .pp-rubber-accordion__icon {
    transform: rotate(45deg);
}

.pp-rubber-accordion__content {
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.pp-rubber-accordion__item.is-open .pp-rubber-accordion__content {
    padding: 0 32px 30px;
}

.pp-rubber-accordion__content p {
    max-width: 1120px;
    margin: 0 0 18px;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: #21124A;
}

    .pp-rubber-accordion__content p:last-child {
        margin-bottom: 0;
    }

@media (max-width: 767px) {
    .pp-rubber-accordion-section {
        padding: 8px 0 56px;
    }

    .pp-rubber-accordion {
        gap: 14px;
    }

    .pp-rubber-accordion__item {
        border-radius: 18px;
    }

    .pp-rubber-accordion__button {
        min-height: 68px;
        padding: 20px;
        font-size: 25px;
        gap: 16px;
    }

    .pp-rubber-accordion__icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 25px;
    }

    .pp-rubber-accordion__content {
        padding: 0 20px;
    }

    .pp-rubber-accordion__item.is-open .pp-rubber-accordion__content {
        padding: 0 20px 24px;
    }

    .pp-rubber-accordion__content p {
        font-size: 16px;
        line-height: 1.7;
    }
}

.pp-rubber-accordion-section {
    padding: 24px 0 88px;
}

    .pp-rubber-accordion-section .container {
        max-width: 1720px;
        padding-left: 72px;
        padding-right: 72px;
    }

.pp-rubber-accordion__button {
    align-items: flex-start;
}

.pp-rubber-accordion__icon {
    margin-top: 4px;
    line-height: 0;
    font-size: 28px;
    padding-bottom: 3px;
}

.pp-rubber-accordion__item.is-open .pp-rubber-accordion__content {
    padding: 0 32px 48px;
}

.pp-rubber-accordion__content p {
    max-width: none;
}

@media (max-width: 767px) {
    .pp-rubber-accordion-section .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .pp-rubber-accordion__button {
        align-items: flex-start;
    }

    .pp-rubber-accordion__icon {
        margin-top: 1px;
        font-size: 24px;
        padding-bottom: 2px;
    }

    .pp-rubber-accordion__item.is-open .pp-rubber-accordion__content {
        padding: 0 20px 36px;
    }
}

.pp-service-page__button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.pp-service-page__button {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #5429CE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #5429CE;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

    .pp-service-page__button:hover {
        background: #5429CE;
        color: #ffffff;
        text-decoration: none;
    }

    .pp-service-page__button span {
        font-size: 16px;
        line-height: 1;
    }

@media (max-width: 767px) {
    .pp-service-page__button-wrap {
        margin-top: 30px;
    }

    .pp-service-page__button {
        width: 100%;
        min-height: 54px;
        padding: 0 22px;
        font-size: 16px;
        text-align: center;
    }
}

/* --- REFERENCES GALLERY --- */
.refs-gallery {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(10px, 1.2vw, 16px);
}

@media (max-width: 1100px) {
    .refs-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .refs-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .refs-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 360px) {
    .refs-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --- TILE (button) --- */
.refs-thumb {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    opacity: 0;
    transform-origin: left bottom;
    transform: perspective(900px) rotateY(78deg) translateY(14px) scale(0.985);
    filter: blur(2px);
    transition: transform 1000ms cubic-bezier(.2,.85,.2,1), opacity 520ms ease, filter 1000ms ease;
    will-change: transform, opacity, filter;
}

.refs-thumb {
    aspect-ratio: 4 / 3;
    display: block;
}

    .refs-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.refs-gallery.is-visible .refs-thumb {
    opacity: 1;
    transform: perspective(900px) rotateY(0deg) translateY(0) scale(1);
    filter: blur(0);
}

@media (hover: hover) {
    .refs-gallery.is-visible .refs-thumb:hover {
        transform: perspective(900px) rotateY(0deg) translateY(-4px) scale(1.01);
    }
}

.refs-thumb:focus-visible {
    outline: 2px solid rgba(255,255,255,0.75);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .refs-thumb {
        transition: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}


/* --- LIGHTBOX --- */
.refs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

    .refs-lightbox.is-open {
        display: block;
    }

.refs-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.86);
    opacity: 0;
    transition: opacity 240ms ease;
}

.refs-lightbox.is-open .refs-lightbox__backdrop {
    opacity: 1;
}

.refs-lightbox__img {
    position: fixed;
    left: 0;
    top: 0;
    border: 3px solid #fff;
    background: rgba(0,0,0,0.08);
    box-shadow: 0 18px 60px rgba(0,0,0,0.55);
    transform-origin: top left;
    transform: translate3d(0,0,0) scale(1);
    opacity: 0;
    transition: transform 420ms cubic-bezier(.2,.85,.2,1), opacity 220ms ease;
    will-change: transform, opacity;
}

.refs-lightbox.is-open .refs-lightbox__img {
    opacity: 1;
}

.refs-lightbox__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(140px, 18vw);
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.9;
}

    .refs-lightbox__nav:hover {
        opacity: 1;
    }

.refs-lightbox__nav--prev {
    left: 0;
}

.refs-lightbox__nav--next {
    right: 0;
}

.refs-lightbox__navIcon {
    border: 0;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    user-select: none;
    text-shadow: 0 8px 30px rgba(0,0,0,0.65);
}

.refs-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    cursor: pointer;
    opacity: 0.9;
    text-shadow: 0 8px 30px rgba(0,0,0,0.65);
}

    .refs-lightbox__close:hover {
        opacity: 1;
    }

@media (hover: none) {
    .refs-lightbox__nav {
        width: min(160px, 24vw);
    }

    .refs-lightbox__close {
        padding: 12px;
        margin: -12px;
    }

    .refs-lightbox__navIcon {
        padding: 12px;
        margin: -12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .refs-lightbox__backdrop,
    .refs-lightbox__img {
        transition: none !important;
    }
}

.refs-lightbox {
    touch-action: pan-y;
}

.refs-gallery-sentinel {
    height: 1px;
}

/* Lightbox címcsík */
/* wrapper: ugyanoda kerül, ahova eddig az img ment */
.refs-lightbox__wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 10px; /* JS felülírja */
    height: 10px; /* JS felülírja */
    z-index: 10000;
}

    /* a kép kitölti a wrap-et */
    .refs-lightbox__wrap .refs-lightbox__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 3px solid #fff;
        background: rgba(0,0,0,0.08);
        box-shadow: 0 18px 60px rgba(0,0,0,0.55);
        transform-origin: center;
        opacity: 0;
        transition: transform 420ms cubic-bezier(.2,.85,.2,1), opacity 220ms ease;
        will-change: transform, opacity;
    }

/* titlebar a képen belül alul */
.refs-lightbox__titlebar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px;
    background: rgba(255,255,255,0.72); /* halvány fehér csík */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0.75;
}

.refs-lightbox__title {
    color: #071b4a;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    text-shadow: 0 1px 0 rgba(255,255,255,0.65);
}

/* nyitáskor látszódjon a kép */
.refs-lightbox.is-open .refs-lightbox__wrap .refs-lightbox__img {
    opacity: 1;
}

/* --- 1366–1439 (tipikus kisebb laptop) --- */
@media (max-width: 1439px) {
    .refs-hero-3d {
        perspective: 860px;
        height: 510px;
    }

    .carousel {
        --r: 440px;
        --w: 230px;
        --h: 165px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 22s;
    }
}

/* --- 1280–1365 (régebbi laptop / kisebb desktop) --- */
@media (max-width: 1365px) {
    .refs-hero-3d {
        perspective: 820px;
        height: 490px;
    }

    .carousel {
        --r: 410px;
        --w: 220px;
        --h: 155px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 22s;
    }
}

/* --- 1024–1279 (kis laptop / tablet landscape) --- */
@media (max-width: 1279px) {
    .refs-hero-3d {
        perspective: 780px;
        height: 360px;
    }

    .carousel {
        --r: 370px;
        --w: 205px;
        --h: 145px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 26s;
    }
}

/* --- 768–1023 (tablet / nagy mobil landscape) --- */
@media (max-width: 1023px) {
    .refs-hero-3d {
        perspective: 740px;
        height: 320px;
    }

    .carousel {
        --r: 280px;
        --w: 170px;
        --h: 110px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 28s;
    }
}

/* --- 521–767 (mobil nagyobb) --- */
@media (max-width: 767px) {
    .refs-hero-3d {
        perspective: 700px;
        height: 240px;
    }

    .carousel {
        --r: 210px;
        --w: 140px;
        --h: 88px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 28s;
    }
}

/* --- <=520 (mobil – ez nálad már van, de itt egységesítve) --- */
@media (max-width: 520px) {
    .refs-hero-3d {
        perspective: 700px;
        height: 180px;
    }

    .carousel {
        --r: 190px;
        --w: 120px;
        --h: 75px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 28s;
    }
}

@media (max-width: 430px) {
    .refs-hero-3d {
        perspective: 700px;
        height: 200px;
    }

    .carousel {
        --r: 160px;
        --w: 110px;
        --h: 70px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 28s;
    }
}


/* --- <=380 (kis mobil – nálad is van) --- */
@media (max-width: 380px) {
    .refs-hero-3d {
        perspective: 640px;
        height: 170px;
    }

    .carousel {
        --r: 130px;
        --w: 90px;
        --h: 55px;
        --cap-gap: 3px;
        --cap-size: 5px;
        --dur: 30s;
    }
}

/* =========================
   DESKTOP UP-SCALE (2K+)
   ========================= */

/* --- 1600+ (nagyobb laptop/monitor) --- */
@media (min-width: 1600px) {
    .refs-hero-3d {
        perspective: 980px;
        height: 520px;
    }

    .carousel {
        --r: 430px;
        --w: 300px;
        --h: 180px;
        --cap-gap: 5px;
        --cap-size: 8px;
        --dur: 22s;
    }
}

/* --- 1920+ (FullHD) --- */
@media (min-width: 1920px) {
    .refs-hero-3d {
        perspective: 1100px;
        height: 600px;
    }

    .carousel {
        --r: 500px;
        --w: 340px;
        --h: 205px;
        --cap-gap: 5px;
        --cap-size: 8px;
        --dur: 22s;
    }
}

/* --- 2560+ (2K / QHD) --- */
@media (min-width: 2560px) {
    .refs-hero-3d {
        perspective: 1400px;
        height: 760px;
    }

    .carousel {
        --r: 680px;
        --w: 420px;
        --h: 250px;
        --cap-gap: 6px;
        --cap-size: 10px;
        --dur: 24s;
    }
}

/* --- 3200+ (3K ultrawide / nagyobb) --- */
@media (min-width: 3200px) {
    .refs-hero-3d {
        perspective: 1700px;
        height: 900px;
    }

    .carousel {
        --r: 820px;
        --w: 500px;
        --h: 300px;
        --cap-gap: 7px;
        --cap-size: 11px;
        --dur: 26s;
    }
}

/* --- 3840+ (4K) --- */
@media (min-width: 3840px) {
    .refs-hero-3d {
        perspective: 2100px;
        height: 1050px;
    }

    .carousel {
        --r: 980px;
        --w: 600px;
        --h: 360px;
        --cap-gap: 8px;
        --cap-size: 12px;
        --dur: 28s;
    }
}

.carousel {
    --step: calc(var(--dur) / var(--n));
}

.carousel-caption {
    animation: capFade var(--dur) linear infinite;
    animation-delay: calc(var(--i) * var(--step) * -1);
}


/* elöl 1, hátul 0 */
@keyframes capFade {
    0%, 12.5%, 87.5%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: .25;
    }

    37.5%, 62.5% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }
}



body.lightbox-open .refs-hero-3d .carousel,
body.lightbox-open .refs-hero-3d .carousel-caption {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
}

html.lightbox-open .refs-hero-3d .carousel,
html.lightbox-open .refs-hero-3d .carousel-caption {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
}


/* LIGHTBOX: a NAV + CLOSE biztosan a kép fölött legyen */
.refs-lightbox__nav,
.refs-lightbox__close {
    z-index: 10050; /* magasabb, mint a wrap (10000) */
    pointer-events: auto; /* legyen kattintható */
}

/* biztos, ami biztos: a wrap maradjon alatta */
.refs-lightbox__wrap {
    z-index: 10000;
}

/* a backdrop maradjon legalul */
.refs-lightbox__backdrop {
    z-index: 9990;
}

/* =========================================
   REFERENCES 3D CAROUSEL
========================================= */

.refs-hero-3d {
    perspective: 900px;
    perspective-origin: 50% 45%;
    height: 470px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.carousel-wrap,
.carousel-stage,
.carousel,
.carousel-item,
.carousel-card {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.carousel-stage {
    overflow: visible;
}

.carousel {
    --n: 8;
    --stepDeg: calc(360deg / var(--n));
    --r: 430px;
    --w: 290px;
    --h: 170px;
    --cap-gap: 6px;
    --cap-size: 7px;
    --dur: 22s;
    position: relative;
    width: var(--w);
    height: var(--h);
    animation: spin var(--dur) linear infinite;
    will-change: transform;
}

.carousel-item {
    position: absolute;
    inset: 0;
    margin: auto;
    transform: rotateY(calc(var(--i) * var(--stepDeg))) translateZ(var(--r));
}

.carousel-card {
    width: var(--w);
    height: calc(var(--h) + var(--cap-gap) + (var(--cap-size) * 1.6));
    transform: rotateY(calc(var(--i) * var(--stepDeg) * -1));
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: center;
    overflow: visible;
}

    .carousel-card img {
        display: block;
        width: 100%;
        height: var(--h);
        object-fit: cover;
        box-shadow: 0 10px 20px rgba(0,0,0,.25);
        border-radius: 0;
    }

.carousel-caption {
    margin-top: var(--cap-gap);
    font-size: clamp(calc(var(--cap-size) * 1.1), 1.2vw, calc(var(--cap-size) * 1.4));
    line-height: 1.35;
    text-align: center;
    color: #071b4a;
    opacity: 0.95;
    font-weight: 700;
    pointer-events: none;
    text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

.carousel-card:focus-visible {
    outline: 3px solid rgba(84, 41, 206, .35);
    outline-offset: 4px;
}

@keyframes spin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* fontos: az alsó galéria refs-thumb animációja ne rejtse el a felső carouselt */
.refs-hero-3d .refs-thumb {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    aspect-ratio: auto !important;
}

/* =========================================
   REFERENCES - PANDA PLAY COLOR OVERRIDES
========================================= */

.carousel-caption {
    color: #5429CE;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.refs-lightbox__title {
    color: #5429CE;
}

.carousel-card:focus-visible {
    outline: 3px solid rgba(84, 41, 206, 0.45);
}

.refs-thumb:focus-visible {
    outline: 2px solid rgba(84, 41, 206, 0.65);
}

.refs-lightbox__titlebar {
    background: rgba(246, 244, 252, 0.82);
}

/* =========================================
   IMPRESSZUM / LEGAL PAGE
========================================= */

.about-intro-section__content {
    margin-top: 56px;
    max-width: 980px;
}

    .about-intro-section__content h2 {
        font-family: "Anton SC", sans-serif;
        font-size: 34px;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #5429CE;
        margin: 0 0 18px;
    }

    .about-intro-section__content p {
        font-family: "Barlow", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.9;
        color: #1E1E1E;
        margin: 0 0 52px;
    }

        .about-intro-section__content p br {
            display: block;
            content: "";
            margin-bottom: 6px;
        }


@media (max-width: 767px) {

    .about-intro-section__content {
        margin-top: 42px;
    }

        .about-intro-section__content h2 {
            font-size: 26px;
            margin-bottom: 14px;
        }

        .about-intro-section__content p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

    .about-intro-section__lead {
        font-size: 18px;
        line-height: 1.8;
    }
}