/* =========================================
   СЕКЦІЯ HERO
   ========================================= */
.hero-section {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    z-index: 1;
}

.hero-title {
    font-size: clamp(18px, 2vw, 45px);
    line-height: 1.15;
    margin-bottom: clamp(16px, 4vw, 24px);
    color: #ffffff;
}

.hero-title span {
    color: var(--z-yellow);
}

.hero-desc {
    font-size: clamp(12px, 4vw, 16px);
    color: rgba(253, 251, 237, 0.7);
    max-width: 500px;
    margin-bottom: clamp(24px, 6vw, 40px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: clamp(20px, 5vw, 40px);
    margin-top: clamp(30px, 8vw, 50px);
    padding: clamp(16px, 4vw, 24px) clamp(20px, 5vw, 32px);
    background: rgba(253, 251, 237, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--z-white-05);
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(18px, 5vw, 24px);
    color: var(--z-yellow);
    line-height: 1;
}

.stat-label {
    font-size: clamp(9px, 2.5vw, 11px);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--z-white-50);
    letter-spacing: 0.5px;
}

.hero-visual-col {
    position: relative;
    height: clamp(320px, 90vw, 600px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(20px, 8vw, 0px);
}

.hud-ring {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: clamp(280px, 80vw, 500px);
    height: clamp(280px, 80vw, 500px);
    border: 1px dashed var(--z-white-10);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
}

.model-viewport {
    width: 100%;
    display: flex;
    justify-content: center;
}

.model-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    overflow: visible !important;
}

.model-img {
    height: clamp(260px, 75vw, 550px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    transform: translateZ(1px);
    -webkit-transform: translateZ(1px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.info-tag {
    position: absolute;
    background: rgba(29, 60, 37, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--z-white-15);
    padding: clamp(8px, 3vw, 15px) clamp(12px, 4vw, 25px);
    border-radius: clamp(12px, 4vw, 18px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: clamp(110px, 35vw, 160px);
    z-index: 3;
}

.tag-top {
    top: 10%;
    right: 0;
}

.tag-bottom {
    bottom: 15%;
    left: 0;
}

.tag-val {
    font-family: 'Benzin', sans-serif;
    color: var(--z-yellow);
    font-size: clamp(14px, 4.5vw, 20px);
    line-height: 1;
}

.tag-lbl {
    font-size: clamp(8px, 2.5vw, 10px);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(253, 251, 237, 0.8);
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: clamp(200px, 45vw, 600px);
    height: clamp(200px, 45vw, 600px);
    background: radial-gradient(circle, rgba(255, 230, 0, 0.12) 0%, transparent 70%);
    animation: pulseGlow 8s infinite alternate ease-in-out;
}

.glow-2 {
    bottom: 0;
    right: -5%;
    width: clamp(250px, 50vw, 700px);
    height: clamp(250px, 50vw, 700px);
    background: radial-gradient(circle, rgba(29, 60, 37, 0.7) 0%, transparent 70%);
    animation: pulseGlow 12s infinite alternate-reverse ease-in-out;
}

.particle-1 {
    width: clamp(30px, 5vw, 50px);
    height: clamp(30px, 5vw, 50px);
    top: 22%;
    left: 48%;
    transform: rotate(45deg);
    filter: blur(1px);
    animation: levitation 10s infinite, rotate 30s linear infinite;
}

.particle-2 {
    width: clamp(40px, 8vw, 80px);
    height: clamp(40px, 8vw, 80px);
    bottom: 20%;
    right: 48%;
    transform: rotate(15deg);
    filter: blur(2px);
    animation: levitation 12s infinite reverse, rotate 40s linear infinite reverse;
}

@media (max-width: 991.98px) {
    .hero-visual-col {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    .hero-desc, .badge-outline {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 20px;
    }
    .stat-item {
        flex: 1 1 calc(50% - 15px);
        border-right: none;
        padding-bottom: 0;
    }
    .stat-item:last-child {
        flex: 1 1 100%;
    }
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    .hero-actions .btn-solid,
    .hero-actions .btn-outline {
        width: 100%;
    }
    .tag-top {
        right: auto;
        left: 5%;
        top: 5%;
    }
    .tag-bottom {
        left: auto;
        right: 5%;
        bottom: 5%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 20px;
    }
    .stat-item {
        border-bottom: 1px solid var(--z-white-05);
        padding-bottom: 15px;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
@media (max-width: 340px) {
    .hero-title {
        font-size: 16px;
    }
}

/* =========================================
   ПОЗИЦІОНУВАННЯ ПЛАШОК HERO
   ========================================= */
.tag-top-right {
    top: 15%;
    right: -10%;
}
.tag-bottom-left {
    bottom: 15%;
    left: -10%;
}
.tag-top-left {
    top: 35%;
    left: -15%;
}
.tag-bottom-right {
    bottom: 30%;
    right: -15%;
}

.float-delay-3 {
    animation: levitation 8.5s ease-in-out infinite;
    animation-delay: -2s;
}

.float-delay-4 {
    animation: levitation 7.5s ease-in-out infinite;
    animation-delay: -4s;
}

/* =========================================
   АДАПТИВ ПЛАШОК (Мобільні пристрої)
   ========================================= */
@media (max-width: 991.98px) {
    .tag-top-right { right: 0; }
    .tag-bottom-left { left: 0; }
    .tag-top-left { left: -5%; }
    .tag-bottom-right { right: -5%; }
}

@media (max-width: 768px) {
    .info-tag {
        min-width: 120px;
        padding: 8px 12px;
    }

    .tag-val { font-size: 16px; }
    .tag-lbl { font-size: 8px; }

    .tag-top-right {
        top: 0;
        right: 0;
    }
    .tag-bottom-left {
        bottom: 0;
        left: 0;
    }
    .tag-top-left {
        top: 25%;
        left: -5%;
    }
    .tag-bottom-right {
        bottom: 25%;
        right: -5%;
    }
}

@media (max-width: 480px) {

    .tag-top-right {
        top: 5%;
        right: -24px;
    }

    .tag-bottom-left {
        bottom: -10%;
        left: -24px;
    }

    .tag-top-left {
        top: -10%;
        left: -24px;
    }
    .tag-bottom-right {
        bottom: 5%;
        right: -24px;
    }
}

/* =========================================
   СЕКЦІЯ UTP (Чому ми)
   ========================================= */
.utp-section {
    position: relative;
    /* Плавно зменшуємо відступи: на ПК 100px, на мобілках 60px */
    padding: clamp(60px, 10vh, 100px) 0;
    background-color: var(--z-green-dark);
    z-index: 10;
    overflow: hidden;
}

.glow-3 {
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(29, 60, 37, 0.6) 0%, transparent 60%);
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

/* Марка (Рухомий текст на фоні) */
.marquee-wrapper {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-content span {
    font-family: 'Benzin', sans-serif;
    font-size: 10vw;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.utp-header {
    margin-bottom: clamp(30px, 5vw, 48px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Базові стилі для всіх карток UTP */
.utp-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Мінімальна висота адаптивна, щоб не розривало малі екрани */
    min-height: clamp(180px, 30vw, 240px);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.card-content {
    position: relative;
    z-index: 2;
    /* Гумовий падінг: 32px на ПК, 20px на мобільних */
    padding: clamp(20px, 4vw, 32px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--z-yellow);
    margin-bottom: 24px;
}

.card-badge {
    background: var(--z-yellow);
    color: var(--z-dark);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
}

/* Розміри значень (Гумові) */
.huge-val {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.huge-val span {
    font-size: clamp(12px, 2vw, 16px);
    color: var(--z-yellow);
    text-shadow: none;
    font-weight: 800;
}

/* Тексти */
.card-title {
    font-size: clamp(15px, 2.5vw, 18px);
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.card-desc {
    font-size: clamp(13px, 2vw, 15px);
    color: rgba(253, 251, 237, 0.75);
    line-height: 1.5;
}

/* Велика світла картка (Зліва) */
.card-huge {
    background: var(--z-cream);
    border: none;
}

.card-huge .spotlight {
    background: radial-gradient(circle at var(--x) var(--y), rgba(29, 60, 37, 0.05) 0%, transparent 60%);
}

.card-huge .card-top {
    color: var(--z-dark);
}

/* Ще більші цифри для великої картки */
.card-huge .huge-val {
    font-size: clamp(48px, 8vw, 72px);
    color: var(--z-dark);
    letter-spacing: -0.03em;
    text-shadow: none;
}

.card-huge .huge-val .huge-span {
    font-size: clamp(28px, 4vw, 38px);
}

.card-huge .card-title {
    color: var(--z-dark);
    font-size: clamp(18px, 3vw, 26px);
}

.card-huge .card-desc {
    color: rgba(27, 30, 28, 0.7);
    font-weight: 600;
    max-width: 90%;
}

.card-huge:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

/* Жовта картка */
.card-yellow {
    background: var(--z-yellow);
    border: none;
}

.card-yellow .spotlight {
    background: radial-gradient(circle at var(--x) var(--y), rgba(253, 251, 237, 0.3) 0%, transparent 60%);
}

.card-yellow .card-top,
.card-yellow .huge-val,
.card-yellow .card-title {
    color: var(--z-dark);
    text-shadow: none;
}

.card-yellow .huge-val span {
    color: rgba(27, 30, 28, 0.7);
}

.card-yellow:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(255, 230, 0, 0.3);
}

/* =========================================
   СЕКЦІЯ ГАРАНТІЙ (Надійне партнерство)
   ========================================= */
.guarantees-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--z-green-dark);
    border: none;
    overflow: hidden;
}

.glow-4 {
    top: 0;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.15) 0%, transparent 60%);
    animation: pulseGlow 10s infinite alternate ease-in-out;
}

.glow-5 {
    bottom: -10%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(253, 251, 237, 0.08) 0%, transparent 60%);
    animation: pulseGlow 14s infinite alternate ease-in-out reverse;
}

.container-max {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
}

.title-main {
    font-size: clamp(18px, 2vw, 36px);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 0;
}

.guarantees-wrapper {
    overflow: hidden;
}

/* =========================================
   НАВІГАЦІЯ (ДЕСКТОП)
   ========================================= */
.guarantees-nav-col {
    border-right: 1px solid rgba(253, 251, 237, 0.08);
    background: rgba(0, 0, 0, 0.1);
}

.guarantees-nav {
    height: 100%;
}

.tab-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 40px 48px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(253, 251, 237, 0.05);
    color: rgba(253, 251, 237, 0.6);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
}

.tab-btn:last-child {
    border-bottom: none;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 4px;
    height: 60%;
    background: var(--z-yellow);
    border-radius: 0 4px 4px 0;
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    box-shadow: 4px 0 15px rgba(255, 230, 0, 0.4);
}

.tab-btn:hover {
    color: #ffffff;
    background: rgba(253, 251, 237, 0.03);
}

.tab-btn.active {
    color: var(--z-yellow);
    background: linear-gradient(90deg, rgba(255, 230, 0, 0.08) 0%, rgba(255, 230, 0, 0) 100%);
}

.tab-btn.active::before {
    transform: scaleY(1);
}

.tab-num {
    font-family: 'Benzin', sans-serif;
    font-size: 14px;
    margin-right: 25px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.tab-btn.active .tab-num {
    opacity: 1;
}

.tab-text {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    flex-grow: 1;
    letter-spacing: 0.5px;
}

.tab-btn svg {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn.active svg {
    opacity: 1;
    transform: translateX(0);
    filter: drop-shadow(0 0 8px rgba(255, 230, 0, 0.4));
}

/* =========================================
   КОНТЕНТ ПАНЕЛЕЙ (ДЕСКТОП)
   ========================================= */
.guarantees-content {
    position: relative;
    display: flex;
    align-items: center;
    padding: 72px;
    min-height: 100%;
}

.pane {
    position: absolute;
    top: 72px;
    left: 72px;
    right: 72px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pane.active {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.pane-title {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.pane-desc {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(253, 251, 237, 0.85);
    margin-bottom: 48px;
    max-width: 95%;
}

.pane-desc strong {
    color: #ffffff;
    font-weight: 800;
}

.metrics-row {
    margin: 0;
}

.metric-box {
    background: rgba(253, 251, 237, 0.04);
    border: 1px solid rgba(253, 251, 237, 0.05);
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.metric-box:hover {
    transform: translateY(-5px);
    background: rgba(253, 251, 237, 0.07);
    border-color: rgba(255, 230, 0, 0.25);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.metric-box .card-content {
    padding: 36px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-val {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(32px, 3vw, 40px);
    color: var(--z-yellow);
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.metric-unit {
    font-family: 'Codec Pro', sans-serif;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: none;
}

.metric-lbl {
    font-size: 14px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   КРУТИЙ АДАПТИВ (Мобільні екрани)
   ========================================= */
@media (max-width: 991.98px) {
    /* Робимо перемикач-пігулку для табів */
    .guarantees-nav-col {
        border-right: none;
        border-bottom: 1px solid rgba(253, 251, 237, 0.08);
        background: transparent;
        padding: 16px; /* Відступи навколо перемикача */
    }

    .guarantees-nav {
        flex-direction: row !important;
        gap: 4px;
        height: auto;
    }

    .tab-btn {
        flex: 1; /* Кнопки ділять місце порівну */
        padding: 10px 4px;
        border: none;
        border-radius: 12px;
        justify-content: center;
        text-align: center;
        min-height: 50px;
    }

    .tab-btn::before {
        display: none; /* Ховаємо декоративну лінію */
    }

    .tab-btn.active {
        background: var(--z-yellow);
        color: var(--z-dark);
        box-shadow: 0 4px 15px rgba(255, 230, 0, 0.2);
    }

    .tab-num {
        display: none; /* Ховаємо цифри для економії місця */
    }

    .tab-text {
        font-size: 11px;
        line-height: 1.2;
        letter-spacing: 0;
        white-space: normal; /* Дозволяємо тексту переноситися */
    }

    /* CSS Grid магія для панелей, щоб висота тягнулася автоматично */
    .guarantees-content {
        display: grid;
        padding: 24px 12px;
        min-height: auto;
    }

    .pane {
        position: relative;
        top: auto; left: auto; right: auto;
        grid-area: 1 / 1; /* Всі панелі в одній клітинці гріда */
    }
}

@media (max-width: 768px) {
    .guarantees-section { padding: 30px 0; }
    .pane-title { font-size: 18px; }
    .pane-desc { font-size: 14px; margin-bottom: 12px; }
    .metric-box .card-content { padding: 24px; }
}

/* =========================================
   СЕКЦІЯ ПЕРЕВАГИ НІШІ
   ========================================= */
.niche-section {
    position: relative;
    padding: 100px 0; /* Зменшили з 140px */
    background-color: var(--z-green-dark);
    z-index: 10;
    overflow: hidden;
}

.glow-left {
    top: 0;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.15) 0%, transparent 60%);
}

.glow-right {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(253, 251, 237, 0.08) 0%, transparent 60%);
}

.niche-header {
    margin-bottom: 48px; /* Зменшили відступ */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Картки ніші (наслідують .glass-card з core.css) */
.niche-card {
    display: flex;
    flex-direction: column;
    min-height: 280px; /* Акуратна висота */
    height: 100%;
    position: relative;
    border-radius: 24px;
}

.niche-card .card-content {
    padding: 32px; /* Зменшили з 40px */
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.card-num {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Benzin', sans-serif;
    font-size: 56px; /* Перевели в px, трохи зменшили */
    font-weight: 700;
    color: rgba(253, 251, 237, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease, transform 0.4s ease;
}

.niche-card:hover .card-num {
    color: rgba(255, 230, 0, 0.08);
    transform: scale(1.05);
}

.card-icon {
    width: 56px; /* Зменшили з 64px */
    height: 56px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--z-yellow);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.niche-card:hover .card-icon {
    background: var(--z-yellow);
    color: var(--z-dark);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 230, 0, 0.2);
    border-color: var(--z-yellow);
}

.niche-card .card-title {
    font-size: clamp(16px, 1.5vw, 22px);
    z-index: 2;
}

.niche-card .card-desc {
    font-size: 15px;
    color: rgba(253, 251, 237, 0.75);
    line-height: 1.5;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

/* Адаптив Ніші */
@media (max-width: 1199.98px) {
    .niche-card .card-content { padding: 24px; }
}

@media (max-width: 768px) {
    .niche-section { padding: 30px 0; }
    .niche-card { min-height: auto; }
    .card-num { font-size: 48px; top: 12px; right: 16px; }
    .card-icon { margin-bottom: 24px; }
}

/* =========================================
   СЕКЦІЯ КАТАЛОГ (Вітрина рішень)
   ========================================= */
.catalog-section {
    position: relative;
    padding: clamp(60px, 10vh, 120px) 0;
    background-color: var(--z-green-dark);
    z-index: 10;
    overflow: hidden;
}

.catalog-container {
    padding: 0 5vw;
    max-width: 1600px;
    margin: 0 auto;
}

.catalog-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.06) 0%, transparent 60%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.catalog-top {
    align-items: flex-end;
    margin-bottom: clamp(32px, 5vw, 56px);
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
    padding-bottom: clamp(24px, 4vw, 40px);
}

.catalog-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.catalog-slider {
    margin: 0 -12px;
}
.catalog-slider .franchise-item {
    padding: 12px;
    box-sizing: border-box;
}
.slick-dots li button:before {
    font-size: 10px;
    color: #fff;
    opacity: 0.25;
}
.slick-dots li.slick-active button:before {
    color: var(--z-yellow) !important;
    opacity: 1;
}

.slider-button-box {
    display: flex;
    gap: 12px;
}
.slider-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 8px;
}
.slider-btn:hover {
    border-color: var(--z-yellow);
    background: rgba(149, 84, 54, 0.1);
}
.slider-btn svg {
    transition: stroke 0.3s ease;
}
.slider-btn:hover svg {
    stroke: var(--z-yellow);
}

/* Фільтри */
.filters-wrapper {
    display: flex;
    justify-content: flex-end;
}

.catalog-filters {
    display: flex;
    gap: clamp(8px, 1.5vw, 12px);
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(253, 251, 237, 0.06);
    border: 1px solid rgba(253, 251, 237, 0.1);
    color: #ffffff;
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 28px);
    border-radius: 100px;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(253, 251, 237, 0.12);
    border-color: rgba(253, 251, 237, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--z-yellow);
    color: var(--z-dark);
    border-color: var(--z-yellow);
    box-shadow: 0 10px 20px rgba(255, 230, 0, 0.2);
}

/* Картка Товару */
.franchise-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.item-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 230, 0, 0.3);
}

.item-visual {
    position: relative;
    width: 100%;
    height: clamp(200px, 25vw, 280px);
    overflow: hidden;
    z-index: 2;
    padding: clamp(16px, 3vw, 24px);
    border-bottom: 1px solid rgba(253, 251, 237, 0.05);
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
}

.item-card:hover .item-img {
    transform: scale(1.08);
    opacity: 1;
}

.item-body {
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

/* Мета-інформація (Теги) */
.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(16px, 2vw, 20px);
    min-height: 28px;
}

.meta-badge {
    padding: 6px clamp(10px, 1.5vw, 14px);
    font-size: clamp(9px, 1.2vw, 11px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

/* Варіанти кольорів бейджів */
.start { background: rgba(255, 230, 0, 0.1); color: var(--z-yellow); border: 1px solid rgba(255, 230, 0, 0.3); }
.new { background: rgba(253, 251, 237, 0.9); color: var(--z-dark); }
.hit { background: var(--z-yellow); color: var(--z-dark); box-shadow: 0 4px 10px rgba(255, 230, 0, 0.3); }
.street { background: rgba(253, 251, 237, 0.08); color: #ffffff; border: 1px solid rgba(253, 251, 237, 0.3); }
.premium { background: rgba(27, 30, 28, 0.8); color: var(--z-yellow); border: 1px solid var(--z-yellow); }

.meta-cat {
    font-size: clamp(10px, 1.5vw, 12px);
    font-weight: 800;
    color: rgba(253, 251, 237, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-title {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: clamp(24px, 3vw, 32px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-decoration: none;
    text-transform: uppercase;
}

.item-type {
    color: var(--z-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(2 * 14px);
    font-size: 12px;
    line-height: 14px;
}

.item-coffee-machine {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(2 * 26px);
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
}

/* Характеристики */
.item-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 1.5vw, 16px);
    margin-bottom: clamp(24px, 4vw, 36px);
    padding-bottom: clamp(20px, 3vw, 28px);
    border-bottom: 1px solid rgba(253, 251, 237, 0.1);
}

.spec-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-val {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 900;
    color: #ffffff;
}

.spec-lbl {
    font-size: clamp(9px, 1.2vw, 11px);
    font-weight: 800;
    color: rgba(253, 251, 237, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Футер картки */
.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.item-price {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 900;
    color: var(--z-yellow);
    text-shadow: 0 0 15px rgba(255, 230, 0, 0.2);
}

.item-btn {
    width: clamp(48px, 5vw, 56px);
    height: clamp(48px, 5vw, 56px);
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.15);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.item-card:hover .item-btn {
    background: var(--z-yellow);
    border-color: var(--z-yellow);
    color: var(--z-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 230, 0, 0.3);
}

/* =========================================
   АДАПТИВ КАТАЛОГУ
   ========================================= */
@media (max-width: 991.98px) {
    .catalog-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }
    .filters-wrapper {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* На мобільних 3 характеристики в ряд не влізуть красиво, переносимо в 2 колонки */
    .item-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Допоміжний клас для кнопок на мобільних, щоб вони були на 100% ширини */
    .w-sm-100 {
        width: 100% !important;
        justify-content: center;
    }
}

/* =========================================
   СЕКЦІЯ КАЛЬКУЛЯТОР (Економіка бізнесу)
   ========================================= */
.calc-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--z-green-dark);
    z-index: 10;
}

.container-max {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
}

.calc-header {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.calc-card {
    padding: 48px;
}

.calc-card-transparent {
    display: flex;
    flex-direction: column;
}

.calc-card, .calc-card-transparent {
    backdrop-filter: blur(16px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 24px 48px;
    background: var(--card-background);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(253, 251, 237, 0.08);
    border-image: initial;
    border-radius: 32px;
    padding: 48px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.pm-right {
    justify-content: center;
}

.pricing-model {
    margin-bottom: 40px;
}

.pm-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.pm-title svg { color: var(--z-yellow); }

.pm-desc {
    font-size: 17px;
    color: rgba(253, 251, 237, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

.pm-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pm-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(253, 251, 237, 0.1);
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
}

.pm-item:last-child { border-bottom: none; padding-bottom: 0; }

.pm-val {
    font-family: monospace;
    font-weight: 800;
    color: var(--z-yellow);
    font-size: 18px;
}

.pm-summary-box {
    padding: 28px 32px;
    background: rgba(253, 251, 237, 0.06);
    border: 1px solid rgba(253, 251, 237, 0.05);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-bottom: 24px;
}

.pm-summary-box:last-child {
    margin-bottom: 0;
}

.pm-summary-box:hover {
    transform: translateY(-5px);
    background: rgba(253, 251, 237, 0.09);
}

.pm-summary-box.accent {
    background: var(--z-yellow);
    border: none;
    box-shadow: 0 20px 40px rgba(255, 230, 0, 0.2);
}

.pm-sum-lbl {
    font-size: 14px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pm-summary-box.accent .pm-sum-lbl { color: rgba(27, 30, 28, 0.8); }

.pm-sum-val {
    font-family: monospace;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
}

.pm-summary-box.accent .pm-sum-val { color: var(--z-dark); }

.calc-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.controls {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
}

.control-group {
    display: flex;
    flex-direction: column;
}

.custom-select {
    position: relative;
    width: 100%;
    margin-top: 12px;
}

.custom-select.open {
    z-index: 105;
}

.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 251, 237, 0.06);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 20px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.select-trigger:hover {
    background: rgba(253, 251, 237, 0.1);
    border-color: rgba(253, 251, 237, 0.2);
}

.custom-select.open .select-trigger {
    background: rgba(255, 230, 0, 0.15);
    border-color: var(--z-yellow);
}

.custom-select.open .select-trigger svg {
    transform: rotate(180deg);
    color: var(--z-yellow);
}

.select-trigger-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding-right: 10px;
}

.select-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    object-fit: contain;
}

.select-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.select-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
    white-space: normal;
}

.select-price {
    font-size: 14px;
    font-family: monospace;
    color: var(--z-yellow);
    font-weight: 700;
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: var(--z-green-dark);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    z-index: 100;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.custom-select.open .select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-option:hover {
    background: rgba(253, 251, 237, 0.08);
}

.select-option input {
    display: none;
}

.select-dropdown::-webkit-scrollbar { width: 8px; }
.select-dropdown::-webkit-scrollbar-track { background: transparent; }
.select-dropdown::-webkit-scrollbar-thumb { background: rgba(253, 251, 237, 0.15); border-radius: 10px; }

.ctrl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.ctrl-header label {
    font-size: 14px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ctrl-val {
    font-family: monospace;
    font-size: 24px;
    font-weight: 900;
    color: var(--z-yellow);
}

.calc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(253, 251, 237, 0.2);
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--z-yellow);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(255, 230, 0, 0.4);
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(255, 230, 0, 0.6);
}

.ctrl-marks {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(253, 251, 237, 0.6);
    font-weight: 700;
    font-family: monospace;
}

.chart-visual {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 56px;
}

.live-chart {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

#chart-area, #chart-line, #chart-dot-start, #chart-dot-end, #chart-text-end {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.results-grid {
    margin-bottom: 56px;
}

.res-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    background: rgba(253, 251, 237, 0.06);
    border: 1px solid rgba(253, 251, 237, 0.05);
    border-radius: 24px;
    height: 100%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.res-box:hover {
    transform: translateY(-5px);
    background: rgba(253, 251, 237, 0.09);
}

.res-box.accent {
    background: var(--z-yellow);
    border: none;
    box-shadow: 0 20px 40px rgba(255, 230, 0, 0.2);
}

.res-lbl {
    font-size: 14px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.9);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.res-box.accent .res-lbl { color: rgba(27, 30, 28, 0.8); }

.res-val {
    font-family: monospace;
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
}

.res-box.accent .res-val { color: var(--z-dark); }

.glow-text {
    color: var(--z-yellow);
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.3);
}

.lead-magnet-box {
    margin-top: auto;
    padding-top: 48px;
    border-top: 1px solid rgba(253, 251, 237, 0.1);
}

.lm-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.lm-desc {
    font-size: 17px;
    color: rgba(253, 251, 237, 0.85);
    line-height: 1.6;
}

.lm-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* =========================================
   АДАПТИВ (Мобільні екрани)
   ========================================= */
@media (max-width: 1199.98px) {
    .calc-card { padding: 32px; }
}

@media (max-width: 768px) {
    .calc-section { padding: 60px 0; }
    .calc-header { margin-bottom: 40px; }

    .calc-section .glass-card,
    .calc-section .calc-card-transparent,
    .calc-section .calc-card,
    .calc-section .glass-card:hover,
    .calc-section .calc-card:hover {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        transform: none !important;
    }

    .pricing-model {
        margin-bottom: 48px !important;
        padding-bottom: 48px !important;
        border-bottom: 1px solid rgba(253, 251, 237, 0.1) !important;
        gap: 32px !important;
    }

    .calc-layout { gap: 40px !important; }
    .controls { gap: 32px !important; }

    .pm-right { gap: 0 !important; }

    .pm-summary-box {
        flex-direction: row !important;
        align-items: center !important;
        padding: 16px 0 !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(253, 251, 237, 0.1) !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
    }

    .pm-summary-box:hover {
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .pm-summary-box.accent {
        border-bottom: 2px solid var(--z-yellow) !important;
        box-shadow: none !important;
    }

    .pm-summary-box.accent .pm-sum-lbl { color: rgba(253, 251, 237, 0.9) !important; }
    .pm-summary-box.accent .pm-sum-val { color: var(--z-yellow) !important; }

    .res-box {
        padding: 16px 0 !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(253, 251, 237, 0.1) !important;
        border-radius: 0 !important;
    }

    .res-box:hover {
        transform: none !important;
        background: transparent !important;
    }

    .res-box.accent {
        border-bottom: 2px solid var(--z-yellow) !important;
        box-shadow: none !important;
    }

    .res-box.accent .res-lbl { color: rgba(253, 251, 237, 0.9) !important; }
    .res-box.accent .res-val { color: var(--z-yellow) !important; }

    .res-val { font-size: 24px !important; }
    .pm-sum-val { font-size: 20px !important; }
    .pm-sum-lbl { font-size: 12px !important; }

    .chart-visual { height: 200px !important; margin-bottom: 32px !important; border: none !important; background: transparent !important; padding: 0 !important; }
    #chart-text-end { display: none !important; }

    .lead-magnet-box { padding-top: 32px !important; border-top: 1px solid rgba(253, 251, 237, 0.1) !important; }
    .lm-actions { flex-direction: column !important; width: 100% !important; }
    .lm-actions a { width: 100% !important; justify-content: center !important; }

    .select-trigger { padding: 12px 16px !important; }
    .select-title { font-size: 14px !important; }
    .select-img { width: 40px !important; height: 40px !important; min-width: 40px !important; }
}

/* =========================================
   СЕКЦІЯ ЛОКАЦІЙ (Кращі локації)
   ========================================= */
.locations-section {
    padding: 140px 0;
    background-color: var(--z-green-dark);
    overflow: hidden;
    border: none;
}

.loc-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.loc-glow-1 {
    top: 10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.1) 0%, transparent 60%);
}

.loc-glow-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(253, 251, 237, 0.05) 0%, transparent 60%);
}

.idea-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.idea-card .card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.idea-icon {
    width: 64px;
    height: 64px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--z-yellow);
    margin-bottom: 32px;
    transition: all 0.4s ease;
}

.idea-card:hover .idea-icon {
    background: var(--z-yellow);
    color: var(--z-dark);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 230, 0, 0.2);
    border-color: var(--z-yellow);
}

.idea-title {
    font-size: clamp(19px, 1.4vw, 24px);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Benzin', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.idea-desc {
    font-size: 17px;
    color: rgba(253, 251, 237, 0.75);
    line-height: 1.6;
    margin-top: auto;
}

.map-block {
    border-radius: 32px;
    overflow: hidden;
}

.map-block.glass-card:hover {
    transform: none !important;
}

.map-info {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(253, 251, 237, 0.02);
    border-right: 1px solid rgba(253, 251, 237, 0.05);
    z-index: 2;
}

.map-val {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 900;
    color: var(--z-yellow);
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 0 24px rgba(255, 230, 0, 0.2);
}

.map-lbl {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    font-family: 'Benzin', sans-serif;
}

.map-desc {
    font-size: 17px;
    color: rgba(253, 251, 237, 0.75);
    line-height: 1.6;
}

.map-interactive {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #111 !important;
    z-index: 1;
}

/* Маркери карти */
.leaflet-marker-icon {
    transition: z-index 0s;
}

.leaflet-marker-icon:hover {
    z-index: 99999 !important;
}

.glow-wrap {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    text-decoration: none;
}

.glow-pulse {
    position: absolute;
    inset: 0;
    background: var(--z-yellow);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.glow-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--z-yellow);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--z-yellow);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.marker-label {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-background);
    color: var(--z-yellow);
    border: 1px solid var(--z-yellow);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    pointer-events: none;
    backdrop-filter: blur(8px);
}

.glow-wrap:hover .glow-core {
    transform: translate(-50%, -50%) scale(1.8);
}

.glow-wrap:hover .marker-label {
    opacity: 1;
    visibility: visible;
    top: 35px;
}

@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.partners-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.partners-title {
    font-size: 16px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeLogo 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 48px;
    height: 80px;
    filter: grayscale(100%) opacity(0.4);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 50px;
    max-width: 180px;
    width: 100%;
    object-fit: contain;
    display: none;
}

.partner-logo span {
    font-family: 'Benzin', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partner-logo img[src] + span {
    display: block;
}

@keyframes marqueeLogo {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1199.98px) {
    .map-info { border-right: none; border-bottom: 1px solid rgba(253, 251, 237, 0.05); padding: 48px; text-align: center; }
}

@media (max-width: 768px) {
    .locations-section { padding: 80px 0; }
    .idea-card { border-radius: 24px; }
    .idea-card .card-content { padding: 32px 24px; }
    .map-block { border-radius: 24px; }
    .map-info { padding: 40px 24px; }
    .map-val { font-size: 56px; }
    .map-interactive { min-height: 400px; }
    .partner-logo { padding: 0 32px; }
    .partner-logo span { font-size: 19px; }
}


/* =========================================
   СЕКЦІЯ ПОРТФОЛІО (Кейси партнерів)
   ========================================= */
.cases-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--z-green-dark);
    border: none;
    overflow: hidden;
    z-index: 10;
}

.cases-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60vw; height: 60vh;
    background: radial-gradient(ellipse at top, rgba(255, 230, 0, 0.06) 0%, transparent 70%);
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
}

.cases-header {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cases-grid {
    margin-bottom: 60px;
}

.case-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s, box-shadow 0.4s, background 0.4s;
    opacity: 0;
    transform: translateY(30px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    transform: translateY(-10px);
    background: rgba(20, 36, 23, 0.85);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(255,230,0,0.1);
}

.case-visual {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
    z-index: 2;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.case-card:hover .case-img {
    transform: scale(1.08);
}

.case-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--z-yellow);
    color: var(--z-dark);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    z-index: 3;
}

.case-body {
    padding: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-title {
    font-size: clamp(18px, 1.3vw, 21px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.4;
    font-family: 'Benzin', sans-serif;
    letter-spacing: -0.01em;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-metrics {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(253, 251, 237, 0.1);
    margin-bottom: 15px;
}

.metric-item:nth-child(2) {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.metric-lbl {
    font-size: 13px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-body .metric-val {
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
}

.metric-item.highlight {
    background: rgba(20, 25, 20, 0.6);
    padding: 20px;
    border: 1px solid rgba(255, 230, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transition: background 0.3s, border-color 0.3s;
}

.case-card:hover .metric-item.highlight {
    border-color: rgba(255, 230, 0, 0.3);
    background: rgba(20, 25, 20, 0.8);
}

.metric-item.highlight .metric-lbl {
    color: var(--z-yellow);
    opacity: 0.9;
    font-size: 12px;
}

.metric-item.highlight .metric-val {
    color: var(--z-yellow);
    font-size: 24px;
    font-weight: 900;
}

.case-link {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0 0 0;
    margin-top: 25px;
    color: rgba(253, 251, 237, 0.8);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-top: 1px solid rgba(253, 251, 237, 0.1);
    transition: color 0.3s, border-color 0.3s;
    letter-spacing: 1px;
}

.case-link svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-link {
    color: var(--z-yellow);
    border-top-color: rgba(255, 230, 0, 0.3);
}

.case-card:hover .case-link svg {
    transform: translateX(6px);
}

.cases-footer {
    display: flex;
    justify-content: center;
}

/* Модифікатор кнопки для кейсів (оскільки вона має трохи специфічні стилі в оригіналі) */
.btn-outline-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 48px;
    background: rgba(253, 251, 237, 0.05);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(253, 251, 237, 0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

.glass-btn {
    background: rgba(253, 251, 237, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(253, 251, 237, 0.15);
}

.btn-outline-large:hover {
    border-color: rgba(253, 251, 237, 0.3);
    color: #ffffff;
    background: rgba(253, 251, 237, 0.1);
    transform: translateY(-4px);
}

@media (max-width: 1199.98px) {
    .case-body { padding: 24px; }
    .metric-item.highlight { padding: 15px; }
}

@media (max-width: 768px) {
    .cases-section { padding: 80px 0; }
    .case-visual { height: 220px; }
    .btn-outline-large { width: 100%; }
    .case-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); }
    .case-title { min-height: auto; display: block; }
}

/* =========================================
   СЕКЦІЯ ПОСЛУГ (Преміум сервіс)
   ========================================= */
.services-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--z-green-dark);
    border: none;
    overflow: hidden;
    z-index: 10;
}

.services-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vh;
    background: radial-gradient(ellipse at center, rgba(255, 230, 0, 0.04) 0%, transparent 60%);
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.services-header {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.service-card.highlight {
    background: rgba(255, 230, 0, 0.03);
    border-color: rgba(255, 230, 0, 0.25);
}

.service-card.highlight:hover {
    background: rgba(255, 230, 0, 0.06);
    border-color: var(--z-yellow);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--z-yellow);
    color: var(--z-dark);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 3;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--z-yellow);
    margin-bottom: 32px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card.highlight .service-icon {
    background: rgba(255, 230, 0, 0.1);
    border-color: var(--z-yellow);
    box-shadow: 0 0 15px rgba(255, 230, 0, 0.15);
}

.service-card:hover .service-icon {
    background: var(--z-yellow);
    color: var(--z-dark);
    border-color: var(--z-yellow);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 230, 0, 0.2);
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(19px, 1.4vw, 22px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: flex-start;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.service-desc {
    font-family: 'Codec Pro', sans-serif;
    font-size: 17px;
    color: rgba(253, 251, 237, 0.75);
    line-height: 1.6;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(253, 251, 237, 0.1);
    padding-top: 24px;
    margin-top: 32px;
    position: relative;
    z-index: 2;
}

.service-price {
    font-family: 'Benzin', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.service-price small {
    font-family: 'Codec Pro', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.6);
    text-transform: uppercase;
}

.service-card.highlight .service-price {
    color: var(--z-yellow);
    text-shadow: 0 0 15px rgba(255, 230, 0, 0.2);
}

.btn-solid-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    background: rgba(253, 251, 237, 0.05);
    color: #ffffff;
    border: 1px solid rgba(253, 251, 237, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    letter-spacing: 1px;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(20, 36, 23, 0.85);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 230, 0, 0.1);
}

.service-card:hover .btn-solid-small {
    background: var(--z-yellow);
    color: var(--z-dark);
    border-color: var(--z-yellow);
    box-shadow: 0 8px 16px rgba(255, 230, 0, 0.2);
}

@media (max-width: 1199.98px) {
    .service-card { padding: 32px; }
    .service-title { min-height: auto; }
}

@media (max-width: 768px) {
    .services-section { padding: 80px 0; }
    .service-card { border-radius: 24px; padding: 24px; }
    .service-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
    .service-badge { top: 16px; right: 16px; }
    /* Кнопка .btn-solid-small розтягнеться на 100% ширини згідно налаштувань UI, якщо ми їй задамо таку поведінку для мобільних в core, або додамо тут: */
    .service-footer .btn-solid-small { width: 100%; }
}

/* =========================================
   СЕКЦІЯ МАГАЗИН (Екосистема ZERNOVA)
   ========================================= */
.shop-section {
    padding: 140px 0;
    background-color: var(--z-green-dark);
    border: none;
    overflow: hidden;
}

.shop-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.shop-glow-1 {
    top: 20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.08) 0%, transparent 60%);
}

.shop-glow-2 {
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(253, 251, 237, 0.05) 0%, transparent 60%);
}

.shop-desc {
    font-size: 16px;
    color: rgba(253, 251, 237, 0.75);
    line-height: 1.6;
    font-family: 'Codec Pro', sans-serif;
    margin-top: 12px;
}

.shop-carousel-wrap {
    position: relative;
    width: 100%;
}

.shop-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 30px;
    padding-top: 10px;
}

.shop-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 304px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 20px rgba(255,230,0,0.1);
    background: rgba(20, 36, 23, 0.85);
}

.product-visual {
    position: relative;
    width: 100%;
    height: 260px;
    background: rgba(253, 251, 237, 0.02);
    border-bottom: 1px solid rgba(253, 251, 237, 0.05);
    overflow: hidden;
    padding: 12px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 230, 0, 0.95);
    color: var(--z-dark);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    font-family: 'Codec Pro', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(253, 251, 237, 0.6);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.4;
    font-family: 'Benzin', sans-serif;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(253, 251, 237, 0.1);
    padding-top: 24px;
}

.product-price {
    font-family: 'Benzin', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--z-yellow);
    text-shadow: 0 0 15px rgba(255, 230, 0, 0.2);
}

.price-block .current-price {
    font-family: 'Benzin', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--z-yellow);
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
}

/* Общие стили для актуальной цены (как со скидкой, так и без) */
.price-block .current-price {
    font-family: 'Benzin', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--z-yellow);
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Стили для старой зачеркнутой цены, когда активирована скидка */
.price-block.has-discount {
    min-height: 48px;  /* Высота остается неизменной, сетка не едет */
}

.price-block .old-price {
    font-family: 'Benzin', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(253, 251, 237, 0.4); /* Приглушенный белый */
    text-decoration: line-through;
    text-decoration-color: rgba(255, 230, 0, 0.6); /* Аккуратная желтая линия зачеркивания */
    line-height: 1;
    margin-bottom: 2px;
}

.product-add {
    width: 48px;
    height: 48px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card:hover .product-add {
    background: var(--z-yellow);
    border-color: var(--z-yellow);
    color: var(--z-dark);
    box-shadow: 0 8px 16px rgba(255, 230, 0, 0.2);
}

.qty-selector.in-card {
    display: none;
    align-items: center;
    padding: 0.15rem 0.25rem;
    background: rgba(253, 251, 237, 0.12);
    border: 1px solid rgba(253, 251, 237, 0.25);
    border-radius: 50px;
}

.qty-selector.in-card.active {
    display: flex !important;
}

.qty-selector.in-card .qty-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDFBED;
    border: none;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease, color 0.2s ease;
}

.qty-selector.in-card .qty-btn:hover {
    background: #FDFBED;
    color: #1a1a1a;
}

.qty-selector.in-card .qty-btn:active {
    transform: scale(0.92);
}

.qty-selector.in-card .qty-val {
    width: 24px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    color: #FDFBED;
    display: inline-block;
    line-height: 24px;
}

.global-add-to-cart.hidden {
    display: none !important;
}

.card-more {
    background: rgba(253, 251, 237, 0.02);
    border: 1px dashed rgba(253, 251, 237, 0.15);
    box-shadow: none;
}

.card-more:hover {
    border-color: var(--z-yellow);
    background: rgba(255, 230, 0, 0.03);
    box-shadow: none;
}

.more-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: rgba(253, 251, 237, 0.8);
    padding: 30px;
    transition: color 0.3s;
}

.more-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--z-yellow);
    transition: all 0.4s ease;
}

.card-more:hover .more-icon {
    background: var(--z-yellow);
    color: var(--z-dark);
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 230, 0, 0.2);
}

.more-link span {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.card-more:hover .more-link {
    color: #ffffff;
}

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 16px;
}

.ctrl-btn {
    width: 56px;
    height: 56px;
    background: var(--card-background);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ctrl-btn:hover {
    background: var(--z-yellow);
    border-color: var(--z-yellow);
    color: var(--z-dark);
    box-shadow: 0 8px 20px rgba(255, 230, 0, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .shop-header-row { flex-direction: column; align-items: flex-start !important; gap: 24px; }
    .header-right { width: 100%; justify-content: flex-start !important; }
}

@media (max-width: 768px) {
    .shop-section { padding: 80px 0; }
    .product-card { flex: 0 0 85%; }
    .carousel-controls { justify-content: center; margin-top: 24px; }
}

/* =========================================
   СЕКЦІЯ КОМАНДА ТА ВИЗНАННЯ
   ========================================= */
.team-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--z-green-dark);
    border: none;
    overflow: hidden;
    z-index: 10;
}

.team-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.team-glow-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse at top, rgba(255, 230, 0, 0.08) 0%, transparent 70%);
}

.team-header {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Forbes Banner */
.forbes-banner {
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.forbes-banner:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 230, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.forbes-content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid rgba(253, 251, 237, 0.08);
    background: rgba(253, 251, 237, 0.02);
}

.forbes-logo {
    margin-bottom: 32px;
    opacity: 0.95;
}

.forbes-title {
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 900;
    color: var(--z-yellow);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 24px;
    font-family: 'Benzin', sans-serif;
}

.forbes-desc {
    font-size: 17px;
    color: rgba(253, 251, 237, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.forbes-visual-col {
    position: relative;
}

.forbes-visual {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    padding: 12px;
}

.forbes-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.85);
    transition: transform 0.8s ease, filter 0.5s ease;
    border-radius: 0 24px 24px 0;
}

.forbes-banner:hover .forbes-img {
    filter: contrast(1.1) brightness(1);
}

/* Team Cards */
.team-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 230, 0, 0.1);
    background: rgba(20, 36, 23, 0.8);
}

.team-visual {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
    transition: filter 0.5s ease;
}

.team-card:hover .team-visual {
    filter: grayscale(0%);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 32px;
}

.team-name {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Benzin', sans-serif;
    letter-spacing: -0.01em;
}

.team-role {
    font-size: 14px;
    font-weight: 800;
    color: var(--z-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-desc {
    font-size: 15px;
    color: rgba(253, 251, 237, 0.7);
    line-height: 1.6;
}

@media (max-width: 1199.98px) {
    .forbes-content {
        padding: 48px;
        text-align: center;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid rgba(253, 251, 237, 0.08);
    }
    .forbes-visual { min-height: 350px; }
}

@media (max-width: 768px) {
    .team-section { padding: 80px 0; }
    .forbes-banner { border-radius: 24px; }
    .forbes-content { padding: 32px 24px; }
    .forbes-title { font-size: 19px; }
    .forbes-visual { min-height: 250px; }
    .team-card { border-radius: 24px; }
    .team-visual { height: 300px; filter: grayscale(0%); }
    .team-info { padding: 24px; }
    .team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
}

/* =========================================
   СЕКЦІЯ БЛОГУ (Корисні матеріали)
   ========================================= */
.blog-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--z-green-dark);
    border: none;
    overflow: hidden;
    z-index: 10;
}

.blog-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.blog-glow-1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(255, 230, 0, 0.06) 0%, transparent 70%);
}

.blog-header {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-grid {
    margin-bottom: 60px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s, box-shadow 0.4s, background 0.4s;
    opacity: 0;
    transform: translateY(30px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-10px);
    background: rgba(20, 36, 23, 0.85);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(255,230,0,0.1);
}

.blog-card:hover .spotlight {
    opacity: 1;
}

.blog-visual {
    display: block;
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
    z-index: 2;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--z-yellow);
    color: var(--z-dark);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.blog-body {
    padding: 32px;
    position: relative;
    z-index: 2;
}

.blog-title {
    margin-bottom: 20px;
}

.blog-title a {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.6em;
    line-height: 1.4;
    font-size: clamp(19px, 1.4vw, 22px);
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Benzin', sans-serif;
    letter-spacing: -0.01em;
}

.blog-title a:hover {
    color: var(--z-yellow);
}

.blog-desc {
    font-size: 16px;
    color: rgba(253, 251, 237, 0.75);
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Codec Pro', sans-serif;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--z-yellow);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s, color 0.3s;
    letter-spacing: 1px;
}

.blog-card:hover .blog-link {
    gap: 12px;
    color: #ffffff;
}

@media (max-width: 1199.98px) {
    .blog-body { padding: 24px; }
}

@media (max-width: 1024px) {
    .blog-grid { margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .blog-section { padding: 80px 0; }
    .blog-card { border-radius: 20px; }
    .blog-visual { height: 220px; }
    .blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
    .blog-title a { min-height: auto; display: block; }
}

/* =========================================
   СЕКЦІЯ FAQ ТА ФОРМА
   ========================================= */
.faq-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--z-green-dark);
    border: none;
    overflow: hidden;
    z-index: 10;
}

.faq-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.faq-glow-1 {
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.06) 0%, transparent 60%);
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acc-item {
    overflow: hidden;
}

.acc-item:hover {
    border-color: rgba(255, 230, 0, 0.2);
}

.acc-item.active {
    border-color: rgba(255, 230, 0, 0.3);
    background: rgba(20, 36, 23, 0.85);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.acc-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
}

.acc-title {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4;
    padding-right: 20px;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.acc-item:hover .acc-title,
.acc-item.active .acc-title {
    color: var(--z-yellow);
}

.acc-icon {
    flex-shrink: 0;
    color: var(--z-yellow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 230, 0, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 230, 0, 0.1);
}

.acc-item.active .acc-icon {
    transform: rotate(45deg);
    background: var(--z-yellow);
    color: var(--z-dark);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-content p {
    padding: 0 32px 32px 32px;
    margin: 0;
    color: rgba(253, 251, 237, 0.75);
    font-size: 17px;
    line-height: 1.6;
    font-family: 'Codec Pro', sans-serif;
}

/* Форма лідогенерації */
.form-box {
    padding: 48px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.form-title {
    font-size: clamp(24px, 2vw, 29px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Benzin', sans-serif;
    letter-spacing: -0.01em;
}

.form-desc {
    font-size: 17px;
    color: rgba(253, 251, 237, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Codec Pro', sans-serif;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Codec Pro', sans-serif;
}

.form-policy {
    font-size: 12px;
    color: rgba(253, 251, 237, 0.4);
    text-align: center;
    margin-top: 8px;
    line-height: 1.5;
    font-family: 'Codec Pro', sans-serif;
}

.form-policy a {
    color: rgba(253, 251, 237, 0.6);
    text-decoration: underline;
    transition: color 0.3s;
}

.form-policy a:hover {
    color: var(--z-yellow);
}

@media (max-width: 1199.98px) {
    .form-box { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .faq-section { padding: 80px 0; }
    .acc-header { padding: 20px 24px; }
    .acc-title { font-size: 15px; }
    .acc-icon { width: 32px; height: 32px; }
    .acc-content p { padding: 0 24px 24px 24px; font-size: 15px; }
    .form-box { padding: 32px 24px; border-radius: 24px; }
    .form-title { font-size: 22px; }
}