﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --container-width: 1440px;
    --radius-xl: 999px;
    --color-green: #00A458;
    --color-green-soft: #00A4580D;
    --color-green-line: rgba(0, 164, 88, 0.14);
    --color-text: #000000;
    --color-bg: #ffffff;
}

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;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: #ffffff;
}

.home-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

.header-bottom {
    min-height: 78px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
    border-bottom: 1px solid var(--color-green-line);
    background: transparent;
}

.home-page .header-bottom {
    border-bottom: none;
}

.header-row {
    width: 100%;
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 36px 40px;
    position: relative;
}

.header-bottom > .container.header-row {
    max-width: 1620px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* LOGO */
.header-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

    .header-logo img {
        height: 60px;
        width: auto;
        display: block;
    }

/* DESKTOP NAV */
.main-nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

    .main-nav a {
        position: relative;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        font-family: "TASA Explorer", 'Barlow', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 1;
        color: #000000;
        transition: color 0.2s ease, opacity 0.2s ease;
    }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -12px;
            width: 100%;
            height: 2px;
            background: var(--color-green);
            transform: translateX(-50%) scaleX(0);
            transform-origin: center;
            transition: transform 0.22s ease;
        }

        .main-nav a:hover {
            color: var(--color-green);
        }

            .main-nav a:hover::after {
                transform: translateX(-50%) scaleX(1);
            }

.dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--color-green);
}

/* ACTIONS */
.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

    .header-action:hover {
        transform: translateY(-1px);
    }

.header-actions img {
    width: auto;
    height: 28px;
    display: block;
}

/* NAV TOGGLE RESET */
.site-header .nav-toggle {
    -webkit-appearance: none;
    appearance: none;
    display: none;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    line-height: 0;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
}

    .site-header .nav-toggle::before,
    .site-header .nav-toggle::after {
        content: none !important;
        display: none !important;
    }

    .site-header .nav-toggle > span {
        all: unset;
    }

.site-header .nav-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

    .site-header .nav-toggle__icon::before,
    .site-header .nav-toggle__icon::after {
        content: none !important;
        display: none !important;
    }

.site-header .nav-toggle svg {
    display: block;
    width: 25px;
    height: 19px;
    flex: 0 0 auto;
}

    .site-header .nav-toggle svg * {
        fill: #000000;
    }

.site-header .nav-toggle:focus,
.site-header .nav-toggle:focus-visible,
.site-header .nav-toggle:active {
    outline: none;
    box-shadow: none;
}

/* MOBILE SEARCH */
.header-search-mobile {
    display: none;
    width: 100%;
}

.header-search-mobile__form {
    position: relative;
    width: 100%;
}

.header-search-mobile__icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

    .header-search-mobile__icon img {
        width: 18px;
        height: 18px;
        display: block;
    }

.header-search-mobile__form input {
    width: 100%;
    height: 47px;
    border: none;
    outline: none;
    border-radius: 999px;
    background: #ffffff;
    padding: 0 18px 0 50px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #000000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

    .header-search-mobile__form input::placeholder {
        color: #8E8E8E;
        opacity: 1;
    }

/* DROPDOWN MENU */
.mobile-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-nav-dropdown__nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px 12px;
}

    .mobile-nav-dropdown__nav a {
        display: block;
        width: 100%;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.98);
        font-family: "TASA Explorer", 'Barlow', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.15;
        color: #000000;
        text-align: center;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

        .mobile-nav-dropdown__nav a:first-child {
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
        }

        .mobile-nav-dropdown__nav a:last-child {
            border-bottom: none;
            border-bottom-left-radius: 18px;
            border-bottom-right-radius: 18px;
        }

        .mobile-nav-dropdown__nav a:hover {
            color: var(--color-green);
        }

.site-header.is-mobile-nav-open .mobile-nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* TABLET + MOBILE (0–1100) */
@media (max-width: 1100px) {
    .header-row {
        min-height: auto;
        padding: 22px 24px;
        gap: 18px;
    }

    .header-logo img {
        height: 52px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: 16px;
    }

        .header-actions img {
            height: 26px;
        }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header-action--account {
        display: none;
    }
}

/* TABLET (768–1100) */
@media (min-width: 768px) and (max-width: 1100px) {
    .header-search-mobile {
        display: none;
    }

    .header-action--search,
    .header-action--cart {
        display: inline-flex;
    }

    .site-header .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-dropdown__nav {
        padding: 0 24px 18px;
    }

        .mobile-nav-dropdown__nav a {
            font-size: 19px;
            padding: 16px 20px;
        }
}

/* MOBILE (0–767) */
@media (max-width: 767px) {
    .site-header {
        background: transparent;
    }

    .header-bottom {
        min-height: auto;
        border-bottom: none;
    }

    .header-row {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo actions"
            "search search";
        align-items: center;
        gap: 14px 12px;
        padding: 14px 12px 16px;
    }

    .header-logo {
        grid-area: logo;
        align-self: center;
    }

        .header-logo img {
            height: 38px;
        }

    .header-actions {
        grid-area: actions;
        display: flex;
        align-items: center;
        justify-self: end;
        gap: 12px;
        margin-left: 0;
    }

    .header-action--search,
    .header-action--account {
        display: none;
    }

    .header-action--cart,
    .site-header .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        vertical-align: middle;
    }

        .header-action--cart img {
            display: block;
            height: 22px;
            width: auto;
        }

        .site-header .nav-toggle svg {
            display: block;
            width: 25px;
            height: 19px;
        }

    .header-search-mobile {
        grid-area: search;
        display: block;
        width: 100%;
    }

    .header-search-mobile__form input {
        height: 47px;
        font-size: 13px;
        padding-left: 46px;
    }

    .mobile-nav-dropdown__nav {
        padding: 0 12px 12px;
    }

        .mobile-nav-dropdown__nav a {
            font-size: 17px;
            padding: 14px 16px;
        }
}

/* DESKTOP (1101+) */
@media (min-width: 1101px) {
    .main-nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .header-search-mobile,
    .mobile-nav-dropdown {
        display: none;
    }

    .header-action--search,
    .header-action--account,
    .header-action--cart {
        display: inline-flex;
    }
}
/* =========================================
   FOOTER
========================================= */

.site-footer {
    margin-top: 88px;
    padding-bottom: 34px;
}

/* =========================================
   FELSŐ FOOTER BLOKK
========================================= */

.footer {
    background: var(--color-green-soft);
    border-radius: 20px;
    padding: 64px 48px 70px;
    display: grid;
    grid-template-columns: 1.45fr 1.1fr 0.85fr 0.9fr;
    gap: 0;
    align-items: start;
}

/* minden oszlop */
.footer-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

    /* elválasztók */
    .footer-col:not(:first-child) {
        border-left: 1px solid var(--color-green-line);
        padding-left: 54px;
        margin-left: 42px;
    }

/* bal oldali brand blokk */
.footer-col--brand {
    padding-right: 18px;
    margin-left: 30px;
}

.footer-logo {
    width: 250px;
    height: auto;
    display: block;
}

.footer-contact {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

    .footer-contact p {
        margin: 0;
        font-family: 'Barlow', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 2;
        letter-spacing: 0;
        color: #000000;
    }

    .footer-contact a {
        color: #000000;
        transition: color 0.2s ease;
    }

        .footer-contact a:hover {
            color: var(--color-green);
        }

/* social */
.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--color-green-soft);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.18s ease, background 0.18s ease;
    }

        .footer-social a:hover {
            transform: translateY(-2px);
        }

    .footer-social img {
        width: 25px;
        height: 25px;
        display: block;
    }

/* footer címsorok */
.footer-col h4 {
    margin: 0 0 12px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 3;
    letter-spacing: 0;
    color: var(--color-green);
}

/* linklisták */
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin: 0;
}

.footer-col ul a {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 3;
    letter-spacing: 0;
    color: #000000;
    transition: color 0.2s ease;
}

    .footer-col ul a:hover {
        color: var(--color-green);
    }

/* =========================================
   ALSÓ FOOTER RÉSZ
========================================= */

.footer-bottom {
    position: relative;
    margin-top: 26px;
    overflow: hidden;
}

.footer-bottom__bg {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    margin-bottom: 34px;
}

    .footer-bottom__bg img {
        width: min(1260px, 100%);
        height: auto;
        display: block;
        opacity: 1;
    }

.footer-bottom__content {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.footer-bottom__copyright {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 0;
    color: #000000;
    text-align: left;
}

.footer-bottom__payments {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .footer-bottom__payments img {
        width: 285px;
        height: auto;
        display: block;
    }

/* =========================================
   TABLET
========================================= */
@media (max-width: 1100px) {
    .site-footer {
        margin-top: 72px;
        padding-bottom: 28px;
    }

    .footer {
        padding: 48px 32px 54px;
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
        gap: 34px 28px;
    }

    .footer-col:not(:first-child) {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-left: 0;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-contact {
        margin-top: 24px;
    }

        .footer-contact p {
            font-size: 17px;
            line-height: 1.9;
        }

    .footer-social {
        margin-top: 26px;
        gap: 14px;
    }

    .footer-col h4 {
        margin-bottom: 10px;
        line-height: 2.2;
    }

    .footer-col ul a {
        font-size: 15px;
        line-height: 2.4;
    }

    .footer-bottom {
        margin-top: 22px;
    }

    .footer-bottom__bg {
        margin-bottom: 26px;
    }

    .footer-bottom__content {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        text-align: center;
    }

    .footer-bottom__payments {
        justify-content: center;
        order: 1;
    }

    .footer-bottom__copyright {
        order: 2;
        text-align: center;
        font-size: 15px;
        line-height: 1.9;
    }

    .footer-bottom__payments img {
        width: 250px;
    }
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {
    .site-footer {
        margin-top: 56px;
        padding-bottom: 20px;
    }

        .site-footer > .container {
            padding-left: 0;
            padding-right: 0;
            max-width: none;
        }

    .footer {
        width: 100%;
        border-radius: 20px;
        padding: 38px 28px 42px;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand brand"
            "services services"
            "company info";
        gap: 0 22px;
    }

    .footer-col {
        min-width: 0;
    }

    .footer-col--brand {
        grid-area: brand;
        margin-left: 0;
        padding-right: 0;
    }

    .footer-col:nth-child(2) {
        grid-area: services;
        margin-top: 46px;
    }

    .footer-col:nth-child(3) {
        grid-area: company;
        margin-top: 28px;
    }

    .footer-col:nth-child(4) {
        grid-area: info;
        margin-top: 28px;
    }

    .footer-logo {
        width: 210px;
    }

    .footer-contact {
        margin-top: 26px;
    }

        .footer-contact p {
            font-size: 16px;
            line-height: 2.05;
        }

    .footer-social {
        margin-top: 30px;
        gap: 14px;
    }

        .footer-social a {
            width: 40px;
            height: 40px;
        }

        .footer-social img {
            width: 23px;
            height: 23px;
        }

    .footer-col h4 {
        margin: 0 0 10px;
        font-size: 15px;
        line-height: 1.8;
    }

    .footer-col ul a {
        font-size: 15px;
        line-height: 2.35;
    }

    .footer-bottom {
        margin-top: 18px;
        padding: 0 14px;
    }

    .footer-bottom__bg {
        display: none;
    }

    .footer-bottom__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-bottom__payments {
        order: 1;
        justify-content: center;
    }

        .footer-bottom__payments img {
            width: 220px;
            max-width: 100%;
        }

    .footer-bottom__copyright {
        order: 2;
        text-align: center;
        font-size: 14px;
        line-height: 1.7;
    }
}
/* =========================================
   SOLAREGIO HOME HERO
========================================= */

.home-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
}

.home-page .header-bottom {
    border-bottom: none;
}

.sr-hero {
    position: relative;
    background: #ffffff;
}

.sr-hero__media {
    position: relative;
    min-height: 1071px;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.sr-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sr-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
}

.sr-hero__content {
    position: relative;
    z-index: 2;
    min-height: 840px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 200px;
    padding-bottom: 80px;
}

.sr-hero__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 140px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.sr-hero__subtitle {
    margin: 6px 0 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #ffffff;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.sr-hero__button {
    min-width: 403px;
    min-height: 62px;
    margin-top: 405px;
    padding: 16px 52px 16px 53px;
    border-radius: 100px;
    background: #00A458;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    .sr-hero__button:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(0, 164, 88, 0.26);
        background: #00924e;
        color: #ffffff;
    }

.sr-hero__button-arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
    margin-left: 2px;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 1100px) {
    .sr-hero__media {
        min-height: 820px;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }

    .sr-hero__image {
        object-position: 58% center;
    }

    .sr-hero__content {
        min-height: 820px;
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .sr-hero__title {
        font-size: 78px;
        line-height: 1;
        white-space: nowrap;
    }

    .sr-hero__subtitle {
        margin-top: 10px;
        max-width: 680px;
        font-size: 28px;
        line-height: 1.25;
    }

    .sr-hero__button {
        min-width: 340px;
        min-height: 56px;
        margin-top: 280px;
        padding: 14px 34px;
        font-size: 16px;
    }

    .sr-hero__button-arrow {
        font-size: 18px;
    }
}

/* =========================================
   MOBILE
========================================= */
/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {
    .sr-hero__media {
        min-height: 760px;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .sr-hero__image {
        object-position: 64% center;
    }

    .sr-hero__content {
        min-height: 760px;
        justify-content: flex-start;
        padding-top: 116px;
        padding-bottom: 20px;
    }

    /* KISEBB CÍM */
    .sr-hero__title {
        font-size: clamp(16px, 5.6vw, 28px);
        line-height: 1;
        white-space: nowrap;
    }

    /* KISEBB ALCÍM */
    .sr-hero__subtitle {
        margin-top: 6px;
        max-width: 300px;
        font-size: clamp(13px, 4vw, 20px);
        line-height: 1.15;
    }

    /* GOMB LEJJEBB */
    .sr-hero__button {
        min-width: 0;
        width: calc(100% - 24px);
        max-width: 340px;
        min-height: 46px;
        margin-top: 0;
        margin-bottom: 24px; /* <-- EZ tolja le */

        padding: 12px 18px;
        font-size: 14px;
        line-height: 1.2;
        gap: 8px;
    }

    .sr-hero__button-arrow {
        font-size: 16px;
        line-height: 1;
    }
}

/* =========================================
   MOBILE HERO FIX (OVERRIDE)
========================================= */
@media (max-width: 767px) {

    /* CÍM KISEBB */
    .sr-hero .sr-hero__title {
        font-size: 44px !important;
        white-space: nowrap;
    }

    /* ALCÍM KISEBB */
    .sr-hero .sr-hero__subtitle {
        font-size: 18px !important;
        max-width: 300px;
    }

    /* GOMB LEJJEBB */
    .sr-hero .sr-hero__button {
        margin-top: auto !important; /* ez lenyomja */
        margin-bottom: 20px; /* ez pozicionálja */
    }

    /* KONTÉNERNEK KELL HEIGHT + FLEX */
    .sr-hero__content {
        display: flex;
        flex-direction: column;
        min-height: 760px;
    }
}
/* intro blokk a kép alatt */
.sr-hero-intro {
    background: #ffffff;
    padding: 52px 0 0;
}

.sr-hero-intro__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.sr-hero-intro__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #000000;
}

.sr-hero-intro__link {
    display: inline;
    margin-left: 12px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: right;
    color: #00A458;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

    .sr-hero-intro__link:hover {
        color: #00924e;
    }

.sr-hero-intro__arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
    margin-left: 2px;
}


/* =========================================
   SOLAREGIO – SPECIAL SOLUTIONS + TARGET GROUPS + HEAT PUMP TARGET GROUPS
========================================= */

.sr-special-solutions,
.sr-solar-target-groups,
.sr-heat-pump-target-groups {
    padding: 92px 0 110px;
    background: #ffffff;
}

.sr-special-solutions__header,
.sr-solar-target-groups__header,
.sr-heat-pump-target-groups__header {
    margin-bottom: 56px;
    text-align: center;
}

.sr-special-solutions__title,
.sr-solar-target-groups__title,
.sr-heat-pump-target-groups__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-special-solutions__grid,
.sr-solar-target-groups__grid,
.sr-heat-pump-target-groups__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    align-items: start;
}

.sr-solution-item,
.sr-solar-target-groups__item,
.sr-heat-pump-target-groups__item {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sr-solution-card,
.sr-solar-target-groups__card,
.sr-heat-pump-target-groups__card {
    background: #00A4580D;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sr-solution-card__image-wrap,
.sr-solar-target-groups__image-wrap,
.sr-heat-pump-target-groups__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 0.87;
    overflow: hidden;
}

.sr-solution-card__image,
.sr-solar-target-groups__image,
.sr-heat-pump-target-groups__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.sr-solution-card__body,
.sr-solar-target-groups__body,
.sr-heat-pump-target-groups__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 32px 36px;
    min-height: 290px;
}

.sr-solution-card__title,
.sr-solar-target-groups__card-title,
.sr-heat-pump-target-groups__card-title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-solution-card__text,
.sr-solar-target-groups__text,
.sr-heat-pump-target-groups__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    max-width: 360px;
}

.sr-solution-item__link-wrap,
.sr-solar-target-groups__link-wrap,
.sr-heat-pump-target-groups__link-wrap {
    margin-top: 18px;
    text-align: center;
}

.sr-solution-card__link,
.sr-solar-target-groups__link,
.sr-heat-pump-target-groups__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #00A458;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .sr-solution-card__link:hover,
    .sr-solar-target-groups__link:hover,
    .sr-heat-pump-target-groups__link:hover {
        color: #00924e;
        transform: translateY(-1px);
    }

.sr-solution-card__arrow,
.sr-solar-target-groups__arrow,
.sr-heat-pump-target-groups__arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
}

/* =========================================
   SPECIAL SOLUTIONS / TARGET GROUPS – TABLET
========================================= */
@media (max-width: 1100px) {
    .sr-special-solutions,
    .sr-solar-target-groups,
    .sr-heat-pump-target-groups {
        padding: 72px 0 88px;
    }

    .sr-special-solutions__header,
    .sr-solar-target-groups__header,
    .sr-heat-pump-target-groups__header {
        margin-bottom: 42px;
    }

    .sr-special-solutions__title,
    .sr-solar-target-groups__title,
    .sr-heat-pump-target-groups__title {
        font-size: 40px;
        line-height: 1.25;
    }

    .sr-special-solutions__grid,
    .sr-solar-target-groups__grid,
    .sr-heat-pump-target-groups__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
    }

    .sr-solution-card__body,
    .sr-solar-target-groups__body,
    .sr-heat-pump-target-groups__body {
        padding: 26px 24px 28px;
        min-height: 240px;
    }

    .sr-solution-card__title,
    .sr-solar-target-groups__card-title,
    .sr-heat-pump-target-groups__card-title {
        margin: 0 0 14px;
        font-size: 22px;
        line-height: 1.4;
    }

    .sr-solution-card__text,
    .sr-solar-target-groups__text,
    .sr-heat-pump-target-groups__text {
        font-size: 16px;
        line-height: 1.55;
        max-width: 100%;
    }

    .sr-solution-card__link,
    .sr-solar-target-groups__link,
    .sr-heat-pump-target-groups__link {
        font-size: 18px;
    }

    .sr-solution-card__arrow,
    .sr-solar-target-groups__arrow,
    .sr-heat-pump-target-groups__arrow {
        font-size: 18px;
    }
}

/* =========================================
   SPECIAL SOLUTIONS / TARGET GROUPS – MOBILE
========================================= */
@media (max-width: 767px) {
    .sr-special-solutions,
    .sr-solar-target-groups,
    .sr-heat-pump-target-groups {
        padding: 56px 0 70px;
    }

        .sr-special-solutions .container,
        .sr-solar-target-groups .container,
        .sr-heat-pump-target-groups .container {
            padding-left: 16px;
            padding-right: 16px;
        }

    .sr-special-solutions__header,
    .sr-solar-target-groups__header,
    .sr-heat-pump-target-groups__header {
        margin-bottom: 28px;
    }

    .sr-special-solutions__title,
    .sr-solar-target-groups__title,
    .sr-heat-pump-target-groups__title {
        font-size: 28px;
        line-height: 1.35;
        max-width: 320px;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    .sr-special-solutions__grid,
    .sr-solar-target-groups__grid,
    .sr-heat-pump-target-groups__grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 34px !important;
    }

    .sr-solution-item,
    .sr-solar-target-groups__item,
    .sr-heat-pump-target-groups__item {
        width: 100%;
        max-width: 100%;
    }

    .sr-solution-card,
    .sr-solar-target-groups__card,
    .sr-heat-pump-target-groups__card {
        width: 100%;
        border-radius: 18px;
    }

    .sr-solution-card__image-wrap,
    .sr-solar-target-groups__image-wrap,
    .sr-heat-pump-target-groups__image-wrap {
        aspect-ratio: 1 / 1;
    }

    .sr-solution-card__image,
    .sr-solar-target-groups__image,
    .sr-heat-pump-target-groups__image {
        border-radius: 18px;
    }

    .sr-solution-card__body,
    .sr-solar-target-groups__body,
    .sr-heat-pump-target-groups__body {
        min-height: unset;
        padding: 20px 20px 22px;
    }

    .sr-solution-card__title,
    .sr-solar-target-groups__card-title,
    .sr-heat-pump-target-groups__card-title {
        margin: 0 0 10px;
        font-size: 18px;
        line-height: 1.45;
        max-width: 240px;
    }

    .sr-solution-card__text,
    .sr-solar-target-groups__text,
    .sr-heat-pump-target-groups__text {
        max-width: 250px;
        font-size: 14px;
        line-height: 1.7;
    }

    .sr-solution-item__link-wrap,
    .sr-solar-target-groups__link-wrap,
    .sr-heat-pump-target-groups__link-wrap {
        margin-top: 16px;
        padding-bottom: 30px;
    }

    .sr-solution-card__link,
    .sr-solar-target-groups__link,
    .sr-heat-pump-target-groups__link {
        font-size: 16px;
        line-height: 1.4;
    }

    .sr-solution-card__arrow,
    .sr-solar-target-groups__arrow,
    .sr-heat-pump-target-groups__arrow {
        font-size: 16px;
        line-height: 1.2;
    }
}


/* =========================================
   SOLAREGIO – FEATURED PRODUCTS
========================================= */

.sr-featured-products {
    padding: 72px 0 110px;
    background: #ffffff;
    overflow: visible;
}

.sr-featured-products__header {
    margin-bottom: 54px;
    text-align: center;
}

.sr-featured-products__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-featured-products__slider {
    position: relative;
    display: block;
    overflow: visible;
}

.sr-featured-products__viewport {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.sr-featured-products__track {
    display: flex;
    gap: 22px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.sr-product-card {
    flex: 0 0 calc((100% - 66px) / 4);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sr-product-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; 
    height: 260px;
    padding: 20px;
}

.sr-product-card__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    display: block;
}

.sr-product-card__content {
    padding: 20px 18px 0;
    display: flex;
    flex-direction: column;
    min-height: 148px;
}

.sr-product-card__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #000000;
}

    .sr-product-card__title a {
        color: #000000;
        text-decoration: none;
    }

        /* hover invert title (optional subtle) */
        .sr-product-card__title a:hover {
            color: #00A458;
        }

.sr-product-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: nowrap;
}

.sr-product-card__price {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #000000;
    white-space: nowrap;
}

/* =========================
   KOSÁRBA GOMB (PRIMARY)
========================= */

.sr-product-card__button {
    width: 161px;
    height: 47px;
    border-radius: 100px;
    background: #00A458;
    border: 2px solid #00A458;
    box-shadow: 0px 4px 4px 0px #0000001A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .sr-product-card__button img {
        width: 20px;
        height: 20px;
        display: block;
        flex: 0 0 auto;
    }

    .sr-product-card__button img {
        transition: filter 0.2s ease;
    }

    .sr-product-card__button:hover img {
        filter: brightness(0) saturate(100%) invert(36%) sepia(83%) saturate(470%) hue-rotate(110deg) brightness(95%) contrast(101%);
    }

    .sr-product-card__button span {
        font-family: "TASA Explorer", 'Barlow', sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.7;
        letter-spacing: 0;
        color: #ffffff;
    }

    /* INVERT HOVER */
    .sr-product-card__button:hover {
        background: #ffffff;
        color: #00A458;
        border: 2px solid #00A458;
        transform: translateY(-1px);
    }

        .sr-product-card__button:hover span {
            color: #00A458;
        }

/* =========================
   NAV GOMBOK
========================= */

.sr-featured-products__nav {
    position: absolute;
    top: 200px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #00A458;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.sr-featured-products__nav--prev {
    left: -70px;
}

.sr-featured-products__nav--next {
    right: -70px;
}

.sr-featured-products__nav-icon {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #00A458;
}

/* INVERT HOVER */
.sr-featured-products__nav:hover {
    background: #00A458;
    border-color: #00A458;
    transform: translateY(-1px);
}

    .sr-featured-products__nav:hover .sr-featured-products__nav-icon {
        color: #ffffff;
    }

/* =========================
   ÖSSZES TERMÉKÜNK GOMB
========================= */

.sr-featured-products__all {
    margin-top: 58px;
    display: flex;
    justify-content: center;
}

.sr-featured-products__all-link {
    min-height: 56px;
    padding: 0 50px;
    border-radius: 100px;
    border: 2px solid #00A458;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .sr-featured-products__all-link,
    .sr-featured-products__all-link:visited {
        color: #00A458;
    }

.sr-featured-products__all-link {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: right;
}

.sr-featured-products__all-arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
}

/* INVERT HOVER */
.sr-featured-products__all-link:hover {
    background: #00A458;
    color: #ffffff;
    transform: translateY(-1px);
}

    .sr-featured-products__all-link:hover .sr-featured-products__all-arrow {
        color: #ffffff;
    }


/* =========================================
   FEATURED PRODUCTS – TABLET
========================================= */
@media (max-width: 1100px) {
    .sr-featured-products {
        padding: 64px 0 88px;
    }

    .sr-featured-products__header {
        margin-bottom: 40px;
    }

    .sr-featured-products__title {
        font-size: 40px;
        line-height: 1.25;
    }

    .sr-featured-products__viewport {
        overflow: hidden;
    }

    .sr-featured-products__track {
        gap: 18px;
    }

    .sr-product-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .sr-product-card__image-wrap {
        height: 320px;
    }

    .sr-product-card__content {
        padding: 18px 14px 0;
        min-height: 132px;
    }

    .sr-product-card__title {
        margin: 0 0 14px;
        font-size: 21px;
        line-height: 1.4;
    }

    .sr-product-card__price {
        font-size: 16px;
    }

    .sr-product-card__button {
        width: 148px;
        height: 44px;
    }

        .sr-product-card__button span {
            font-size: 15px;
        }

    .sr-featured-products__nav {
        top: 168px;
        width: 44px;
        height: 44px;
    }

    .sr-featured-products__nav--prev {
        left: -18px;
    }

    .sr-featured-products__nav--next {
        right: -18px;
    }

    .sr-featured-products__all {
        margin-top: 44px;
    }

    .sr-featured-products__all-link {
        min-height: 52px;
        padding: 0 36px;
        font-size: 18px;
    }

    .sr-featured-products__all-arrow {
        font-size: 18px;
    }
}

/* =========================================
   FEATURED PRODUCTS – MOBILE
========================================= */
@media (max-width: 767px) {
    .sr-featured-products {
        padding: 56px 0 72px;
    }

    .sr-featured-products__header {
        margin-bottom: 32px;
        text-align: left;
    }

    .sr-featured-products__title {
        font-size: 28px;
        line-height: 1.3;
        text-align: left;
    }

    .sr-featured-products__slider {
        overflow: visible;
    }

    .sr-featured-products__viewport {
        overflow: visible;
    }

    .sr-featured-products__track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
        transform: none !important;
        transition: none;
    }

    .sr-product-card {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .sr-product-card__image-wrap {
        height: 252px;
        border-radius: 10px;
    }

    .sr-product-card__image {
        max-width: 72%;
        max-height: 72%;
    }

    .sr-product-card__content {
        padding: 32px 10px 0;
        min-height: unset;
    }

    .sr-product-card__title {
        font-size: 18px;
        line-height: 1.35;
    }

    .sr-product-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .sr-product-card__price {
        font-size: 16px;
        line-height: 1.4;
    }

    .sr-product-card__button {
        width: 124px;
        height: 40px;
        gap: 8px;
    }

        .sr-product-card__button img {
            width: 16px;
            height: 16px;
        }

        .sr-product-card__button span {
            font-size: 13px;
            line-height: 1;
        }

    .sr-featured-products__nav {
        display: none;
    }

    .sr-featured-products__all {
        margin-top: 36px;
    }

    .sr-featured-products__all-link {
        min-height: 48px;
        padding: 0 68px;
        font-size: 16px;
    }

    .sr-featured-products__all-arrow {
        font-size: 16px;
        line-height: 1.2;
    }
}


/* =========================================
   SOLAREGIO – TEAM VIDEO SHOWCASE
========================================= */

.sr-team-showcase {
    padding: 96px 0 110px;
    overflow: hidden;
    background: #00A4580D;
}

.sr-team-showcase__header {
    max-width: 980px;
    margin: 0 auto 34px;
    padding: 0 24px;
    text-align: center;
}

.sr-team-showcase__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-team-showcase__text {
    margin: 0 auto;
    max-width: 980px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.sr-team-showcase-slider {
    position: relative;
    width: 100%;
    margin-top: 34px;
    overflow: visible;
}

    .sr-team-showcase-slider .references-showcase-slider__track-wrap {
        position: relative;
        overflow: hidden;
        max-width: calc(1016px * 3 + 18px * 2);
        margin: 0 auto;
    }

    .sr-team-showcase-slider .references-showcase-slider__track {
        display: flex;
        align-items: stretch;
        gap: 18px;
        width: max-content;
        will-change: transform;
        transition: transform 0.5s ease;
        padding: 0;
    }

    /* minden slide azonos magasságú */
    .sr-team-showcase-slider .references-showcase-slider__slide {
        position: relative;
        width: 1016px; /* minden ugyanekkora */
        height: 619px;
        border-radius: 20px;
        overflow: hidden;
        background: #dfe7e3;
        flex: 0 0 auto;
        transition: width 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    }


.sr-team-showcase-slider__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #dfe7e3;
}

/* play gomb */
.sr-team-showcase-slider__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 88px;
    height: 88px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    padding: 0;
}

    .sr-team-showcase-slider__play:hover {
        transform: scale(1.04);
        background: rgba(255, 255, 255, 0.16);
    }

    .sr-team-showcase-slider__play.is-hidden {
        opacity: 0;
        pointer-events: none;
    }

.sr-team-showcase-slider__play-icon {
    font-size: 34px;
    line-height: 1;
    color: #ffffff;
    transform: translateX(2px);
}

/* nav */
.sr-team-showcase-slider .references-showcase-slider__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border: 2px solid #00A458;
    border-radius: 50%;
    background: #ffffff; /* NEM transzparens */
    color: #00A458;
    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 6px 14px rgba(0, 0, 0, 0.08);
    padding: 0;
}
    .sr-team-showcase-slider .references-showcase-slider__nav:hover {
        background: #00A458;
        color: #ffffff;
    }

.sr-team-showcase-slider .references-showcase-slider__nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 32px;
}

.sr-team-showcase-slider .references-showcase-slider__nav.is-hiding {
    opacity: 0;
    pointer-events: none;
}

.sr-team-showcase-slider .references-showcase-slider__nav.is-showing {
    opacity: 1;
}

/* alsó gomb */
.sr-team-showcase__footer {
    margin-top: 38px;
    display: flex;
    justify-content: center;
}

.sr-team-showcase__button {
    min-height: 56px;
    padding: 0 42px;
    border-radius: 100px;
    border: 2px solid #00A458;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: right;
    color: #00A458;
}

    .sr-team-showcase__button:hover {
        background: #00A458;
        color: #ffffff;
        transform: translateY(-1px);
    }

.sr-team-showcase__button-arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
}

.sr-team-showcase__button:hover .sr-team-showcase__button-arrow {
    color: #ffffff;
}

/* fade most a háttér színébe megy */
.references-showcase-slider__fade {
    display: none;
}

@media (min-width: 1930px) {
    .sr-team-showcase-slider .references-showcase-slider__fade {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 180px;
        z-index: 4;
        pointer-events: none;
    }

    .sr-team-showcase-slider .references-showcase-slider__fade--left {
        left: 0;
        background: linear-gradient(to right, rgba(0, 164, 88, 0.05) 0%, rgba(0, 164, 88, 0) 100%);
    }

    .sr-team-showcase-slider .references-showcase-slider__fade--right {
        right: 0;
        background: linear-gradient(to left, rgba(0, 164, 88, 0.05) 0%, rgba(0, 164, 88, 0) 100%);
    }
}

/* =========================================
   TEAM SHOWCASE – MOBILE STATIC IMAGE
========================================= */

.sr-team-showcase-mobile-image {
    display: none;
}

.sr-team-showcase-mobile-image__wrap {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #dfe7e3;
}

.sr-team-showcase-mobile-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   MOBILE ONLY
========================================= */
@media (max-width: 767px) {
    .sr-team-showcase-slider {
        display: none;
    }

    .sr-team-showcase-mobile-image {
        display: block;
        margin-top: 34px;
    }
}

/* =========================================
   SOLAREGIO – EXPERTISE SHOWCASE
========================================= */

.sr-expertise-showcase {
    position: relative;
    padding: 88px 0 30px;
    background: #ffffff;
    overflow: hidden;
}

.sr-expertise-showcase__header {
    margin-bottom: 56px;
    text-align: center;
}

.sr-expertise-showcase__heading {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-expertise-showcase__list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 74px;
}

    /* háttérkarikák */
    .sr-expertise-showcase__list::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 850px;
        height: 100%;
        background: url("/images/home/expertise-dots-bg.svg") center / contain no-repeat;
        pointer-events: none;
        z-index: 0;
        opacity: 1;
    }

.sr-expertise-showcase__item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 590px;
    gap: 64px;
    align-items: center;
}

.sr-expertise-showcase__item--reverse {
    grid-template-columns: 590px 1fr;
}

    .sr-expertise-showcase__item--reverse .sr-expertise-showcase__content {
        order: 1;
    }

    .sr-expertise-showcase__item--reverse .sr-expertise-showcase__media {
        order: 2;
    }

.sr-expertise-showcase__media {
    display: block;
}

.sr-expertise-showcase__image {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #d9d9d9;
}

.sr-expertise-showcase__content {
    max-width: 590px;
}

.sr-expertise-showcase__title {
    margin: 0 0 16px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000000;
}

.sr-expertise-showcase__text {
    margin: 0 0 26px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

.sr-expertise-showcase__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: right;
    color: #00A458;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .sr-expertise-showcase__link:hover {
        color: #00924e;
        transform: translateY(-1px);
    }

.sr-expertise-showcase__arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
}

@media (max-width: 767px) {
    .sr-expertise-showcase__link {
        padding-bottom: 24px;
    }
}

/* =========================================
   SOLAREGIO – CTA BANNER
========================================= */

.sr-cta-banner {
    padding: 140px 0 50px;
    background: #ffffff;
    overflow: hidden;
}

/* teljes szélességű, kifutó háttérblokk */
.sr-cta-banner__bleed {
    position: relative;
    width: 100vw;
    min-height: 750px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* erősebb felső kilógás */
    margin-top: -30px;
    background-image: url("/images/home/cta-banner-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 1920 fölött legyen lekerekítve a két széle */
@media (min-width: 1921px) {
    .sr-cta-banner__bleed {
        width: min(1920px, calc(100vw - 40px));
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
    }
}

.sr-cta-banner__bleed .container {
    width: 100%;
}

.sr-cta-banner__content {
    max-width: 760px;
    margin-left: 0;
    transform: translateX(700px);
    padding: 90px 0;
}

.sr-cta-banner__title {
    margin: 0 0 20px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.sr-cta-banner__text {
    margin: 0 0 26px;
    max-width: 620px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

.sr-cta-banner__button {
    width: 348px;
    height: 60px;
    padding: 13px 20px 13px 30px;
    border-radius: 100px;
    background: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .sr-cta-banner__button:hover {
        transform: translateY(-1px);
    }

    .sr-cta-banner__button span:first-child {
        font-family: 'Barlow', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: 0;
        text-align: right;
        color: #FFFFFF;
        transition: color 0.2s ease;
    }

.sr-cta-banner__button-arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #00A458;
    transition: color 0.2s ease;
}

.sr-cta-banner__button:hover span:first-child {
    color: #00A458;
}

.sr-cta-banner__button:hover .sr-cta-banner__button-arrow {
    color: #FFFFFF;
}

/* =========================================
   CTA BANNER – VISIBILITY SWITCH
========================================= */

.sr-cta-banner__desktop {
    display: block;
}

.sr-cta-banner-mobile {
    display: none;
}

/* =========================================
   CTA BANNER – TABLET
========================================= */
@media (max-width: 1100px) {
    .sr-cta-banner {
        padding: 100px 0 40px;
    }

    .sr-cta-banner__bleed {
        min-height: 620px;
        margin-top: -18px;
        background-position: 34% center;
    }

    .sr-cta-banner__content {
        max-width: 620px;
        transform: translateX(420px);
        padding: 72px 0;
    }

    .sr-cta-banner__title {
        font-size: 38px;
        line-height: 1.3;
    }

    .sr-cta-banner__text {
        max-width: 500px;
        font-size: 16px;
        line-height: 1.6;
    }

    .sr-cta-banner__button {
        width: 310px;
        height: 56px;
    }

        .sr-cta-banner__button span:first-child,
        .sr-cta-banner__button-arrow {
            font-size: 18px;
        }
}

/* =========================================
   CTA BANNER – MOBILE
========================================= */
@media (max-width: 767px) {
    .sr-cta-banner {
        padding: 72px 0 26px;
    }

    .sr-cta-banner__desktop {
        display: none;
    }

    .sr-cta-banner-mobile {
        display: block;
        overflow: hidden;
        border-radius: 20px;
        background: #ffffff;
    }

    .sr-cta-banner-mobile__image-area {
        min-height: 255px;
        padding: 28px 18px 24px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        background-image: url("/images/home/cta-banner-bg.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 56% center;
    }

    .sr-cta-banner-mobile__title {
        margin: 0;
        max-width: 180px;
        font-family: "TASA Explorer", 'Barlow', sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.45;
        letter-spacing: 0;
        text-align: left;
        color: #ffffff;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    }

    .sr-cta-banner-mobile__content {
        padding: 18px 24px 0;
        background: #ffffff;
    }

    .sr-cta-banner-mobile__text {
        margin: 0 0 18px;
        font-family: 'Barlow', sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 1.75;
        letter-spacing: 0;
        color: #000000;
    }

    .sr-cta-banner-mobile__button {
        width: 100%;
        height: 52px;
        padding: 0 18px;
        border-radius: 100px;
        background: #000000;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
    }

        .sr-cta-banner-mobile__button span:first-child {
            font-family: 'Barlow', sans-serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 1.3;
            color: #ffffff;
            text-align: center;
        }

    .sr-cta-banner-mobile__button-arrow {
        font-family: "TASA Explorer", 'Barlow', sans-serif;
        font-weight: 600;
        font-size: 16px;
        line-height: 1;
        color: #00A458;
    }
}

/* =========================================
   SOLAREGIO – MEMBERSHIP BLOCK
========================================= */

.sr-membership {
    padding: 2px 0 90px;
    background: #ffffff;
}

.sr-membership__box {
    width: 100%;
    max-width: 1520px;
    height: 319px;
    margin: 0 auto;
    background: #F5F5F5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 48px 72px;
}

/* logo */
.sr-membership__logo img {
    width: 210px;
    height: auto;
    display: block;
    margin-left: 120px;
}

/* content */
.sr-membership__content {
    max-width: 800px;
    margin-right: 90px;
}

/* cím */
.sr-membership__title {
    margin: 0 0 14px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000000;
}

/* szöveg */
.sr-membership__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

@media (max-width: 767px) {
    .sr-membership__box {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .sr-membership {
        padding: 70px 0 90px;
    }
}

/* =========================================
   SOLAREGIO – REFERENCES MAP
========================================= */

.sr-references-map {
    padding: 0 0 110px;
    background: #ffffff;
    overflow: hidden;
}

.sr-references-map__header {
    margin-bottom: 42px;
    text-align: center;
}

.sr-references-map__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #00A458;
    text-align: center;
}

/* 1920-ig kifut teljes szélességre */
.sr-references-map__bleed {
    width: 100%;
}

.sr-references-map__image {
    padding-top: 20px;
    width: 100%;
    height: auto;
    display: block;
}

/* 1921px felett max 1920 és lekerekítés */
@media (min-width: 1921px) {
    .sr-references-map__bleed {
        max-width: 1920px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
    }
}

/* =========================================
   SOLAREGIO – BLOG PREVIEW
========================================= */

.sr-blog-preview {
    padding: 30px 0 40px;
    background: #ffffff;
}

.sr-blog-preview__header {
    margin-bottom: 52px;
    text-align: center;
}

.sr-blog-preview__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 18px;
    align-items: start;
}

.sr-blog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sr-blog-card__image-link {
    display: block;
    text-decoration: none;
}

.sr-blog-card__image {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #d9d9d9;
}

.sr-blog-card__content {
    padding: 26px 10px 0;
}

.sr-blog-card__title {
    margin: 0 0 14px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #000000;
}

    .sr-blog-card__title a {
        color: #000000;
        text-decoration: none;
    }

.sr-blog-card__text {
    margin: 0 0 16px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

.sr-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: right;
    color: #00A458;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .sr-blog-card__link:hover {
        color: #00924e;
        transform: translateY(-1px);
    }

.sr-blog-card__arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
}

.sr-blog-preview__footer {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.sr-blog-preview__button {
    min-height: 56px;
    padding: 0 38px;
    border-radius: 100px;
    border: 2px solid #00A458;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .sr-blog-preview__button span:first-child {
        font-family: 'Barlow', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: 0;
        text-align: right;
        color: #00A458;
        transition: color 0.2s ease;
    }

.sr-blog-preview__button-arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    transition: color 0.2s ease;
}

.sr-blog-preview__button:hover {
    background: #00A458;
    transform: translateY(-1px);
}

    .sr-blog-preview__button:hover span:first-child {
        color: #ffffff;
    }

    .sr-blog-preview__button:hover .sr-blog-preview__button-arrow {
        color: #ffffff;
    }


/* =========================================
   BLOG PREVIEW – TABLET
========================================= */
@media (max-width: 1100px) {
    .sr-blog-preview {
        padding: 40px 0 50px;
    }

    .sr-blog-preview__header {
        margin-bottom: 40px;
    }

    .sr-blog-preview__title {
        font-size: 40px;
        line-height: 1.25;
    }

    .sr-blog-preview__grid {
        gap: 24px 16px;
    }

    .sr-blog-card__content {
        padding: 20px 8px 0;
    }

    .sr-blog-card__title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .sr-blog-card__text {
        font-size: 16px;
        line-height: 1.6;
    }

    .sr-blog-card__link,
    .sr-blog-card__arrow {
        font-size: 18px;
    }

    .sr-blog-preview__footer {
        margin-top: 44px;
    }

    .sr-blog-preview__button span:first-child,
    .sr-blog-preview__button-arrow {
        font-size: 18px;
    }
}

/* =========================================
   BLOG PREVIEW – MOBILE
========================================= */
@media (max-width: 767px) {
    .sr-blog-preview {
        padding: 30px 0 40px;
    }

    .sr-blog-preview__header {
        margin-bottom: 28px;
        text-align: center;
    }

    .sr-blog-preview__title {
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
    }

    .sr-blog-preview__grid {
        display: block;
    }

        .sr-blog-preview__grid .sr-blog-card:nth-child(n + 2) {
            display: none;
        }

        .sr-blog-preview__grid .sr-blog-card:first-child {
            width: 100%;
            max-width: 100%;
            display: flex;
            flex-direction: column;
        }

            .sr-blog-preview__grid .sr-blog-card:first-child .sr-blog-card__image-link {
                display: block;
                width: 100%;
            }

            .sr-blog-preview__grid .sr-blog-card:first-child .sr-blog-card__image {
                width: 100%;
                aspect-ratio: 1.38 / 1;
                object-fit: cover;
                display: block;
                border-radius: 8px;
            }

            .sr-blog-preview__grid .sr-blog-card:first-child .sr-blog-card__content {
                padding: 18px 0 0;
            }

            .sr-blog-preview__grid .sr-blog-card:first-child .sr-blog-card__title {
                margin: 0 0 14px;
                font-size: 18px;
                line-height: 1.45;
            }

            .sr-blog-preview__grid .sr-blog-card:first-child .sr-blog-card__text {
                margin: 0 0 14px;
                font-size: 14px;
                line-height: 1.8;
            }

            .sr-blog-preview__grid .sr-blog-card:first-child .sr-blog-card__link {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-size: 16px;
                line-height: 1.4;
            }

            .sr-blog-preview__grid .sr-blog-card:first-child .sr-blog-card__arrow {
                font-size: 16px;
                line-height: 1;
            }

    .sr-blog-preview__footer {
        margin-top: 34px;
        display: flex;
        justify-content: center;
    }

    .sr-blog-preview__button {
        min-height: 48px;
        padding: 0 24px;
        width: 100%;
        max-width: 280px;
    }

        .sr-blog-preview__button span:first-child {
            font-size: 16px;
            line-height: 1.3;
        }

    .sr-blog-preview__button-arrow {
        font-size: 16px;
        line-height: 1;
    }
}


/* =========================================
   SOLAREGIO – NEWSLETTER CTA
========================================= */

.sr-newsletter-cta {
    padding: 88px 0 20px;
    background: #ffffff;
    overflow: visible;
}

.sr-newsletter-cta__card {
    position: relative;
    min-height: 460px;
    background: #00A458;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 64px 96px;
}

/* 🔥 BAL OLDALI NAGY KÉP */
.sr-newsletter-cta__visual {
    position: absolute;
    left: 40px;
    top: -80px;
    bottom: -80px;
    width: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.sr-newsletter-cta__image {
    padding-top: 70px;
    max-width: none;
    width: 970px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 40px 35px rgba(0, 0, 0, 0.35));
}

/* JOBB OLDALI CONTENT */
.sr-newsletter-cta__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: 80px;
}

/* CÍM */
.sr-newsletter-cta__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #FFFFFF;
}

/* SZÖVEG */
.sr-newsletter-cta__text {
    margin: 0 0 26px;
    max-width: 520px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

/* GOMB */
.sr-newsletter-cta__button {
    width: 332px;
    height: 60px;
    padding: 0 24px;
    border-radius: 100px;
    background: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

    .sr-newsletter-cta__button:hover {
        transform: translateY(-1px);
    }

    /* GOMB SZÖVEG */
    .sr-newsletter-cta__button span:first-child {
        font-family: 'Barlow', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: 0;
        text-align: right;
        color: #FFFFFF;
        transition: color 0.2s ease;
    }

/* NYÍL */
.sr-newsletter-cta__button-arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #00A458;
    transition: color 0.2s ease;
}

/* HOVER */
.sr-newsletter-cta__button:hover span:first-child {
    color: #00A458;
}

.sr-newsletter-cta__button:hover .sr-newsletter-cta__button-arrow {
    color: #FFFFFF;
}


/* =========================================
   SOLAREGIO – SOLAR SYSTEMS INTRO + HEAT PUMPS INTRO
========================================= */

.sr-solar-systems-intro,
.sr-heat-pumps-intro {
    padding: 18px 0 90px;
    background: #ffffff;
}

.sr-solar-systems-intro__breadcrumbs,
.sr-heat-pumps-intro__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #989898;
}

    .sr-solar-systems-intro__breadcrumbs a,
    .sr-heat-pumps-intro__breadcrumbs a {
        color: #989898;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .sr-solar-systems-intro__breadcrumbs a:hover,
        .sr-heat-pumps-intro__breadcrumbs a:hover {
            color: #00A458;
        }

.sr-solar-systems-intro__breadcrumbs-separator,
.sr-heat-pumps-intro__breadcrumbs-separator {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
}

.sr-solar-systems-intro__header,
.sr-heat-pumps-intro__header {
    max-width: 1440px;
}

.sr-solar-systems-intro__title,
.sr-heat-pumps-intro__title {
    margin: 0 0 10px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #00A458;
}

.sr-solar-systems-intro__lead,
.sr-heat-pumps-intro__lead {
    margin: 0;
    max-width: 1440px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #000000;
}

.sr-solar-systems-intro__content,
.sr-heat-pumps-intro__content {
    margin-top: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 34px;
    align-items: start;
}

.sr-solar-systems-intro__media,
.sr-heat-pumps-intro__media {
    width: 100%;
}

.sr-solar-systems-intro__image,
.sr-heat-pumps-intro__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    aspect-ratio: 1.43 / 0.9;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.sr-solar-systems-intro__text-block,
.sr-heat-pumps-intro__text-block {
    padding-top: 46px;
    max-width: 560px;
    margin-left: 40px;
}

.sr-solar-systems-intro__subtitle,
.sr-heat-pumps-intro__subtitle {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000000;
}

.sr-solar-systems-intro__text,
.sr-heat-pumps-intro__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}
/* =========================================
   SOLAREGIO – SOLAR BENEFITS + HEAT PUMPS BENEFITS
========================================= */

.sr-solar-benefits,
.sr-heat-pumps-benefits {
    padding: 70px 0 120px;
    background: #ffffff;
}

.sr-solar-benefits__header,
.sr-heat-pumps-benefits__header {
    margin-bottom: 84px;
    text-align: center;
}

.sr-solar-benefits__title,
.sr-heat-pumps-benefits__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-solar-benefits__grid,
.sr-heat-pumps-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 72px;
    row-gap: 82px;
    align-items: start;
}

.sr-solar-benefits__item,
.sr-heat-pumps-benefits__item {
    display: grid;
    grid-template-columns: 59px 1fr;
    column-gap: 26px;
    align-items: start;
    min-width: 0;
}

.sr-solar-benefits__icon-box,
.sr-heat-pumps-benefits__icon-box {
    width: 59px;
    height: 59px;
    border-radius: 10px;
    background: #00A4581A;
    box-shadow: 0px 4px 4px 0px #0000001A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 59px;
}

.sr-solar-benefits__icon,
.sr-heat-pumps-benefits__icon {
    width: 26px;
    height: 23px;
    display: block;
    object-fit: contain;
}

.sr-solar-benefits__content,
.sr-heat-pumps-benefits__content {
    min-width: 0;
    padding-top: 10px;
}

.sr-solar-benefits__item-title,
.sr-heat-pumps-benefits__item-title {
    margin: 0 0 6px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000000;
}

.sr-solar-benefits__text,
.sr-heat-pumps-benefits__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}
/* =========================================
   SOLAREGIO – HEAT PUMP PROCESS (EXTENSION)
========================================= */

.sr-solar-process,
.sr-heat-pump-process {
    padding: 24px 0 24px;
    background: #ffffff;
    overflow: hidden;
}

.sr-solar-process__bleed,
.sr-heat-pump-process__bleed {
    position: relative;
    width: 100vw;
    min-height: 1008px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #00A4581A;
    overflow: hidden;
}

@media (min-width: 1921px) {
    .sr-solar-process__bleed,
    .sr-heat-pump-process__bleed {
        width: min(1920px, calc(100vw - 40px));
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
    }
}

.sr-solar-process__bleed .container,
.sr-heat-pump-process__bleed .container {
    height: 100%;
}

.sr-solar-process__inner,
.sr-heat-pump-process__inner {
    min-height: 1008px;
    padding: 112px 0 72px;
}

.sr-solar-process__header,
.sr-heat-pump-process__header {
    margin-bottom: 18px;
    text-align: center;
}

.sr-solar-process__title,
.sr-heat-pump-process__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-solar-process__layout,
.sr-heat-pump-process__layout {
    display: grid;
    grid-template-columns: 1fr 980px 1fr;
    align-items: start;
    column-gap: 0;
    min-height: 760px;
    margin-top: -37px;
}

.sr-solar-process__side,
.sr-heat-pump-process__side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 560px;
    padding-top: 132px;
}

.sr-solar-process__side--left,
.sr-heat-pump-process__side--left {
    align-items: flex-end;
    margin-right: -80px;
}

.sr-solar-process__side--right,
.sr-heat-pump-process__side--right {
    align-items: flex-end;
    margin-left: -95px;
}

.sr-solar-process__center,
.sr-heat-pump-process__center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 49px;
}

.sr-solar-process__house,
.sr-heat-pump-process__house {
    width: 930px;
    max-width: none;
    height: auto;
    display: block;
    transform: scaleX(-1);
    filter: drop-shadow(0 40px 35px rgba(0, 0, 0, 0.25));
}

.sr-solar-process__item,
.sr-heat-pump-process__item {
    position: relative;
    max-width: 250px;
    min-height: 180px;
}

.sr-solar-process__side--left .sr-solar-process__item,
.sr-heat-pump-process__side--left .sr-heat-pump-process__item {
    margin-left: auto;
    text-align: left;
}

.sr-solar-process__side--right .sr-solar-process__item,
.sr-heat-pump-process__side--right .sr-heat-pump-process__item {
    margin-left: auto;
    text-align: right;
}

.sr-solar-process__number,
.sr-heat-pump-process__number {
    position: absolute;
    top: -86px;
    left: -42px;
    z-index: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 200px;
    color: #FFFFFF;
}

.sr-solar-process__side--left .sr-solar-process__number,
.sr-heat-pump-process__side--left .sr-heat-pump-process__number {
    left: -70px;
}

.sr-solar-process__side--right .sr-solar-process__number,
.sr-heat-pump-process__side--right .sr-heat-pump-process__number {
    left: auto;
    right: -34px;
}

.sr-solar-process__item-title,
.sr-heat-pump-process__item-title {
    margin: 0 0 10px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #000000;
}

.sr-solar-process__text,
.sr-heat-pump-process__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}
/* =========================
   NUMBER POSITION FIX
========================= */

/* BAL OLDAL */
.sr-solar-process__item--1 .sr-solar-process__number {
    top: -130px;
    left: -60px;
}

.sr-solar-process__item--2 .sr-solar-process__number {
    top: -110px;
    left: -60px;
}

/* JOBB OLDAL */
.sr-solar-process__item--3 .sr-solar-process__number {
    top: -130px;
    right: -50px;
}

.sr-solar-process__item--4 .sr-solar-process__number {
    top: -110px;
    right: -50px;
}

.sr-solar-process__content,
.sr-heat-pump-process__content {
    position: relative;
    z-index: 1;
}

.sr-solar-process__number,
.sr-heat-pump-process__number {
    position: absolute;
    z-index: 0;
}

/* =========================================
   SOLAREGIO – ENERGY STORAGE BOX
========================================= */

.sr-energy-storage {
    padding: 20px 0;
    background: #ffffff;
}

.sr-energy-storage__box {
    max-width: 1440px;
    height: 270px;
    margin: 0 auto;
    background: #F5F5F5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    text-align: center;
}

.sr-energy-storage__title {
    margin: 0 0 14px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #00A458;
}

.sr-energy-storage__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    max-width: 900px;
}
/* =========================================
   SOLAREGIO – FAQ SECTION + HEAT PUMP FAQ
========================================= */

.sr-faq-section,
.sr-heat-pump-faq-section {
    padding: 92px 0 80px;
    background: #ffffff;
}

.sr-faq-section__header,
.sr-heat-pump-faq-section__header {
    margin-bottom: 54px;
    text-align: center;
}

.sr-faq-section__title,
.sr-heat-pump-faq-section__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-faq-list,
.sr-heat-pump-faq-list {
    max-width: 1164px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sr-faq-item,
.sr-heat-pump-faq-item {
    width: 100%;
}

.sr-faq-item__toggle,
.sr-heat-pump-faq-item__toggle {
    width: 100%;
    min-height: 91px;
    border: none;
    border-radius: 20px;
    background: #F8F8F8;
    box-shadow: 0px 4px 12px 0px #00000026;
    display: grid;
    grid-template-columns: 1fr 254px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
}

.sr-faq-item__question-wrap,
.sr-heat-pump-faq-item__question-wrap {
    min-height: 91px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 36px;
}

.sr-faq-item__question,
.sr-heat-pump-faq-item__question {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #000000;
}

.sr-faq-item__action,
.sr-heat-pump-faq-item__action {
    min-height: 91px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
}

.sr-faq-item__action-text,
.sr-heat-pump-faq-item__action-text {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: right;
    color: #00A458;
    white-space: nowrap;
}

.sr-faq-item__arrow,
.sr-heat-pump-faq-item__arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
    transition: transform 0.25s ease;
    transform-origin: center;
}

.sr-faq-item.is-open .sr-faq-item__arrow,
.sr-heat-pump-faq-item.is-open .sr-heat-pump-faq-item__arrow {
    transform: rotate(90deg);
}

.sr-faq-item__answer-wrap,
.sr-heat-pump-faq-item__answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sr-faq-item__answer,
.sr-heat-pump-faq-item__answer {
    margin-top: 14px;
    width: 100%;
    border-radius: 20px;
    background: #F8F8F8;
    box-shadow: 0px 4px 12px 0px #0000001A;
    padding: 28px 36px 30px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

.sr-faq-section__footer,
.sr-heat-pump-faq-section__footer {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.sr-faq-section__button,
.sr-heat-pump-faq-section__button {
    width: 354px;
    height: 60px;
    border-radius: 100px;
    border: 2px solid #00A458;
    padding: 13px 41px 17px 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s ease;
}

    .sr-faq-section__button span:first-child,
    .sr-heat-pump-faq-section__button span:first-child {
        font-family: 'Barlow', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: 0;
        color: #00A458;
        transition: color 0.2s ease;
        white-space: nowrap;
    }

.sr-faq-section__button-arrow,
.sr-heat-pump-faq-section__button-arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    transition: color 0.2s ease;
}

.sr-faq-section__button:hover,
.sr-heat-pump-faq-section__button:hover {
    background: #00A458;
    transform: translateY(-1px);
}

    .sr-faq-section__button:hover span:first-child,
    .sr-faq-section__button:hover .sr-faq-section__button-arrow,
    .sr-heat-pump-faq-section__button:hover span:first-child,
    .sr-heat-pump-faq-section__button:hover .sr-heat-pump-faq-section__button-arrow {
        color: #ffffff;
    }

/* =========================================
   SOLAREGIO – HEAT PUMP CTA
========================================= */

.sr-heat-pump-cta {
    padding: 80px 0 40px;
    background: #ffffff;
    overflow: hidden;
}

.sr-heat-pump-cta__bleed {
    position: relative;
    width: 100vw;
    min-height: 542px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #F5F5F5;
    background-image: url("/images/heat-pumps/heat-pump-cta-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (min-width: 1921px) {
    .sr-heat-pump-cta__bleed {
        width: min(1920px, calc(100vw - 40px));
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
    }
}

.sr-heat-pump-cta__bleed .container {
    width: 100%;
}

.sr-heat-pump-cta__content {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.sr-heat-pump-cta__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.sr-heat-pump-cta__text {
    margin: 0 auto 34px;
    max-width: 760px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.sr-heat-pump-cta__button {
    min-width: 312px;
    height: 60px;
    padding: 0 34px;
    border-radius: 100px;
    background: #ffffff;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

    .sr-heat-pump-cta__button span {
        font-family: 'Barlow', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: 0;
        color: #000000;
        white-space: nowrap;
        transition: color 0.2s ease;
    }

    .sr-heat-pump-cta__button:hover {
        transform: translateY(-1px);
        background: #00A458;
        border-color: #00A458;
    }

        .sr-heat-pump-cta__button:hover span {
            color: #ffffff;
        }

/* =========================================
   SOLAREGIO – SERVICES INTRO
========================================= */

.sr-services-intro {
    padding: 18px 0 34px;
    background: #ffffff;
}

.sr-services-intro__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #989898;
}

    .sr-services-intro__breadcrumbs a {
        color: #989898;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .sr-services-intro__breadcrumbs a:hover {
            color: #00A458;
        }

.sr-services-intro__breadcrumbs-separator {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
}

.sr-services-intro__header {
    max-width: 1440px;
}

.sr-services-intro__title {
    margin: 0 0 10px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #00A458;
}

.sr-services-intro__lead {
    margin: 0;
    max-width: 1440px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #000000;
}

/* =========================================
   SOLAREGIO – SERVICES STAGES
========================================= */

.sr-services-stage {
    padding: 48px 0 64px;
    background: #ffffff;
}

.sr-services-stage__top {
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

.sr-services-stage__media {
    width: 100%;
}

.sr-services-stage__image {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 1.58 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #d9d9d9;
}

.sr-services-stage__content {
    padding-top: 28px;
    max-width: 650px;
}

.sr-services-stage__title {
    margin: 0 0 22px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000000;
}

.sr-services-stage__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #000000;
}

.sr-services-stage__bottom {
    margin-top: 52px;
}

.sr-services-stage__bottom-title {
    margin: 0 0 34px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.sr-services-stage__list {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 52px;
    row-gap: 24px;
    align-items: start;
}

.sr-services-stage__list-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #000000;
}

.sr-services-stage__list-arrow {
    flex: 0 0 auto;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #000000;
    transform: translateY(-1px);
}

/* =========================================
   SOLAREGIO – SERVICES CTA
========================================= */

.sr-services-cta {
    padding: 80px 0 40px;
    background: #ffffff;
    overflow: hidden;
}

.sr-services-cta__bleed {
    position: relative;
    width: 100vw;
    min-height: 420px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* ide jöhet majd kép vagy gradient */
    background: #F5F5F5;
    display: flex;
    align-items: center;
}

/* 1920 felett limit + lekerekítés */
@media (min-width: 1921px) {
    .sr-services-cta__bleed {
        width: min(1920px, calc(100vw - 40px));
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
    }
}

.sr-services-cta__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.sr-services-cta__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000000;
}

.sr-services-cta__text {
    margin: 0 auto 34px;
    max-width: 720px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

/* gomb – ugyanaz a logika mint máshol */
.sr-services-cta__button {
    min-width: 320px;
    height: 60px;
    padding: 0 34px;
    border-radius: 100px;
    background: #ffffff;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .sr-services-cta__button span {
        font-family: 'Barlow', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.5;
        color: #000000;
        white-space: nowrap;
    }

    /* hover */
    .sr-services-cta__button:hover {
        background: #00A458;
        border-color: #00A458;
        transform: translateY(-1px);
    }

        .sr-services-cta__button:hover span {
            color: #ffffff;
        }

/* =========================================
   SOLAREGIO – GRANTS INTRO
========================================= */

.sr-grants-intro {
    padding: 18px 0 34px;
    background: #ffffff;
}

.sr-grants-intro__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #989898;
}

    .sr-grants-intro__breadcrumbs a {
        color: #989898;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .sr-grants-intro__breadcrumbs a:hover {
            color: #00A458;
        }

.sr-grants-intro__breadcrumbs-separator {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
}

.sr-grants-intro__header {
    max-width: 1440px;
}

.sr-grants-intro__title {
    margin: 0 0 18px;
    max-width: 1120px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.40;
    letter-spacing: 0;
    color: #00A458;
}

.sr-grants-intro__lead {
    margin: 0;
    max-width: 1440px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #000000;
}

/* =========================================
   SOLAREGIO – GRANTS LISTING
========================================= */

.sr-grants-listing {
    padding: 54px 0 90px;
    background: #ffffff;
}

.sr-grants-listing__header {
    margin-bottom: 52px;
}

.sr-grants-listing__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #00A458;
}

.sr-grants-listing__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 86px;
    row-gap: 66px;
    align-items: start;
}

.sr-grants-card {
    min-width: 0;
    max-width: 620px;
}

.sr-grants-card__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000000;
}

.sr-grants-card__text {
    margin: 0 0 20px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

.sr-grants-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .sr-grants-card__link:hover {
        color: #00A458;
        transform: translateY(-1px);
    }

.sr-grants-card__arrow {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    display: inline-block;
}

/* =========================================
   SOLAREGIO – GRANTS CTA
========================================= */

.sr-grants-cta {
    padding: 80px 0 40px;
    background: #ffffff;
    overflow: hidden;
}

.sr-grants-cta__bleed {
    position: relative;
    width: 100vw;
    min-height: 420px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #F5F5F5;
    display: flex;
    align-items: center;
}

@media (min-width: 1921px) {
    .sr-grants-cta__bleed {
        width: min(1920px, calc(100vw - 40px));
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
    }
}

.sr-grants-cta__bleed .container {
    width: 100%;
}

.sr-grants-cta__content {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.sr-grants-cta__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000000;
}

.sr-grants-cta__text {
    margin: 0 auto 34px;
    max-width: 760px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

.sr-grants-cta__button {
    min-width: 312px;
    height: 60px;
    padding: 0 34px;
    border-radius: 100px;
    background: #ffffff;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .sr-grants-cta__button span {
        font-family: 'Barlow', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: 0;
        color: #000000;
        white-space: nowrap;
        transition: color 0.2s ease;
    }

    .sr-grants-cta__button:hover {
        background: #00A458;
        border-color: #00A458;
        transform: translateY(-1px);
    }

        .sr-grants-cta__button:hover span {
            color: #ffffff;
        }


/* =========================================
   SOLAREGIO – ABOUT INTRO
========================================= */

.sr-about-intro {
    padding: 24px 0 90px;
    background: #ffffff;
}

.sr-about-intro__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    color: #989898;
}

    .sr-about-intro__breadcrumbs a {
        color: #989898;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .sr-about-intro__breadcrumbs a:hover {
            color: #00A458;
        }

.sr-about-intro__separator {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 600;
    color: #000000;
}

.sr-about-intro__header {
    max-width: 1440px;
}

.sr-about-intro__title {
    margin: 0 0 12px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    color: #00A458;
}

.sr-about-intro__lead {
    margin: 0;
    max-width: 1440px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.9;
    color: #000000;
}

.sr-about-intro__media {
    margin-top: 42px;
    width: 100%;
}

.sr-about-intro__image {
    width: 100%;
    max-width: 1440px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.sr-about-intro__footer {
    margin-top: 28px;
    max-width: 1440px;
}

.sr-about-intro__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

/* =========================================
   SOLAREGIO – ABOUT VALUES
========================================= */

.sr-about-values {
    padding: 80px 0 110px;
    background: #ffffff;
}

.sr-about-values__header {
    margin-bottom: 70px;
    text-align: center;
}

.sr-about-values__title {
    margin: 0;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    color: #00A458;
}

.sr-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 72px;
    row-gap: 70px;
}

.sr-about-values__item {
    display: grid;
    grid-template-columns: 59px 1fr;
    column-gap: 22px;
    align-items: flex-start;
}

.sr-about-values__icon-box {
    width: 59px;
    height: 59px;
    border-radius: 50%;
    background: #00A4581A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .sr-about-values__icon-box img {
        width: 26px;
        height: 23px;
        object-fit: contain;
    }

.sr-about-values__content {
    padding-top: 6px;
}

.sr-about-values__item-title {
    margin: 0 0 6px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    color: #000000;
}

.sr-about-values__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

/* =========================================
   SOLAREGIO – ABOUT GALLERY
========================================= */

.sr-about-gallery {
    padding: 96px 0 110px;
    overflow: hidden;
    background: #ffffff;
}

.sr-about-gallery__header {
    max-width: 980px;
    margin: 0 auto 34px;
    padding: 0 24px;
    text-align: center;
}

.sr-about-gallery__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
}

.sr-about-gallery-slider {
    position: relative;
    width: 100%;
    margin-top: 34px;
    overflow: visible;
}

    .sr-about-gallery-slider .references-showcase-slider__track-wrap {
        position: relative;
        overflow: hidden;
        max-width: calc(1016px * 3 + 18px * 2);
        margin: 0 auto;
    }

    .sr-about-gallery-slider .references-showcase-slider__track {
        display: flex;
        align-items: stretch;
        gap: 18px;
        width: max-content;
        will-change: transform;
        transition: transform 0.5s ease;
        padding: 0;
    }

    .sr-about-gallery-slider .references-showcase-slider__slide {
        position: relative;
        width: 1016px;
        height: 619px;
        border-radius: 20px;
        overflow: hidden;
        background: #dfe7e3;
        flex: 0 0 auto;
        transition: width 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    }

        .sr-about-gallery-slider .references-showcase-slider__slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            background: #dfe7e3;
        }

    /* nav */
    .sr-about-gallery-slider .references-showcase-slider__nav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 52px;
        height: 52px;
        border: 2px solid #00A458;
        border-radius: 50%;
        background: #ffffff;
        color: #00A458;
        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 6px 14px rgba(0, 0, 0, 0.08);
        padding: 0;
    }

        .sr-about-gallery-slider .references-showcase-slider__nav:hover {
            background: #00A458;
            color: #ffffff;
        }

    .sr-about-gallery-slider .references-showcase-slider__nav-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        font-size: 32px;
    }

    .sr-about-gallery-slider .references-showcase-slider__nav.is-hiding {
        opacity: 0;
        pointer-events: none;
    }

    .sr-about-gallery-slider .references-showcase-slider__nav.is-showing {
        opacity: 1;
    }

/* fade */
.references-showcase-slider__fade {
    display: none;
}

@media (min-width: 1930px) {
    .sr-about-gallery-slider .references-showcase-slider__fade {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 180px;
        z-index: 4;
        pointer-events: none;
    }

    .sr-about-gallery-slider .references-showcase-slider__fade--left {
        left: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .sr-about-gallery-slider .references-showcase-slider__fade--right {
        right: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }
}

/* =========================================
   SOLAREGIO – PARTNERS
========================================= */

.sr-partners {
    padding: 90px 0 110px;
    background: #ffffff;
}

/* ===== FELSŐ BLOKK ===== */

.sr-partners-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.sr-partners-main__media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.sr-partners-main__title {
    margin: 0 0 18px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    color: #00A458;
}

.sr-partners-main__text {
    margin: 0 0 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

.sr-partners-main__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #00A458;
    text-decoration: none;
    transition: transform 0.2s ease;
}

    .sr-partners-main__link:hover {
        transform: translateY(-1px);
    }

    .sr-partners-main__link span {
        font-family: "TASA Explorer";
        color: #000000;
    }

/* ===== ALSÓ BLOKK ===== */

.sr-partners-sub__title {
    margin: 0 0 50px;
    text-align: center;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #00A458;
}

.sr-partners-sub__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* ===== KÁRTYÁK ===== */

.sr-partners-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.sr-partners-card__media img {
    width: auto;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.sr-partners-card__title {
    margin: 0 0 10px;
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #000000;
}

.sr-partners-card__text {
    margin: 0 0 12px;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    max-width: 400px;
}

.sr-partners-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #00A458;
    text-decoration: none;
}

    .sr-partners-card__link span {
        font-family: "TASA Explorer";
        color: #000000;
    }

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .sr-partners-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sr-partners-sub__grid {
        grid-template-columns: 1fr;
    }

    .sr-partners-card {
        flex-direction: column;
    }

    .sr-partners-card__media img {
        width: 100%;
        height: auto;
    }
}


/* =========================================================
   SOLAREGIO – GLOBAL RESPONSIVE FIX PACK
   Ezt másold a style.css LEGVÉGÉRE
========================================================= */

/* -------------------------
   ALAP BIZTONSÁGI JAVÍTÁSOK
------------------------- */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }

main,
section,
div,
article,
aside,
header,
footer {
    min-width: 0;
}

img,
video,
svg,
iframe {
    max-width: 100%;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
    overflow-wrap: break-word;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* hosszú szövegek, gombok, címek */
.sr-hero__title,
.sr-hero__subtitle,
.sr-special-solutions__title,
.sr-featured-products__title,
.sr-team-showcase__title,
.sr-expertise-showcase__heading,
.sr-cta-banner__title,
.sr-membership__title,
.sr-references-map__title,
.sr-blog-preview__title,
.sr-newsletter-cta__title,
.sr-solar-systems-intro__title,
.sr-heat-pumps-intro__title,
.sr-solar-benefits__title,
.sr-heat-pumps-benefits__title,
.sr-solar-process__title,
.sr-heat-pump-process__title,
.sr-services-intro__title,
.sr-services-stage__title,
.sr-services-cta__title,
.sr-grants-intro__title,
.sr-grants-listing__title,
.sr-grants-cta__title,
.sr-about-intro__title,
.sr-about-values__title,
.sr-about-gallery__title,
.sr-partners-main__title,
.sr-partners-sub__title,
.reviews-section__title,
.sr-faq-section__title,
.sr-heat-pump-faq-section__title,
.sr-product-card__title,
.sr-blog-card__title,
.sr-expertise-showcase__title,
.sr-solution-card__title {
    word-break: break-word;
}

/* -------------------------
   HAMBURGER / MOBIL HEADER
------------------------- */
.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-green);
    border-radius: 999px;
    background: #ffffff;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 auto;
    transition: background 0.2s ease, border-color 0.2s ease;
    position: relative;
    z-index: 1102;
}

    .nav-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--color-green);
        display: block;
        transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    }

.site-header.is-nav-open .nav-toggle {
    background: var(--color-green);
    border-color: var(--color-green);
}

    .site-header.is-nav-open .nav-toggle span {
        background: #ffffff;
    }

        .site-header.is-nav-open .nav-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .site-header.is-nav-open .nav-toggle span:nth-child(2) {
            opacity: 0;
        }

        .site-header.is-nav-open .nav-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

/* -------------------------
   <= 1280px
------------------------- */
@media (max-width: 1280px) {
    .container {
        padding: 0 20px;
    }

    .header-row {
        gap: 20px;
        padding: 24px 20px;
    }

    .main-nav {
        gap: 18px;
    }

        .main-nav a {
            font-size: 16px;
        }

    .header-actions {
        gap: 18px;
        margin-left: 16px;
    }

        .header-actions img {
            height: 24px;
        }

    .footer {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        padding: 52px 32px 58px;
    }

    .footer-col:not(:first-child) {
        padding-left: 32px;
        margin-left: 26px;
    }

    .sr-hero__media {
        min-height: 860px;
    }

    .sr-hero__content {
        min-height: 760px;
        padding-top: 160px;
    }

    .sr-hero__title {
        font-size: 96px;
    }

    .sr-hero__subtitle {
        font-size: 32px;
    }

    .sr-hero__button {
        margin-top: 260px;
    }

    .sr-special-solutions__title,
    .sr-featured-products__title,
    .sr-team-showcase__title,
    .sr-expertise-showcase__heading,
    .sr-references-map__title,
    .sr-blog-preview__title,
    .sr-solar-systems-intro__title,
    .sr-heat-pumps-intro__title,
    .sr-solar-benefits__title,
    .sr-heat-pumps-benefits__title,
    .sr-solar-process__title,
    .sr-heat-pump-process__title,
    .sr-services-intro__title,
    .sr-services-cta__title,
    .sr-grants-intro__title,
    .sr-grants-listing__title,
    .sr-grants-cta__title,
    .sr-about-intro__title,
    .sr-about-values__title,
    .sr-about-gallery__title,
    .sr-faq-section__title,
    .sr-heat-pump-faq-section__title {
        font-size: 42px;
    }

    .sr-cta-banner__title,
    .sr-heat-pump-cta__title {
        font-size: 42px;
    }

    .sr-cta-banner__content {
        transform: translateX(360px);
        max-width: 620px;
    }

    .sr-membership__box {
        gap: 36px;
        padding: 42px 40px;
    }

    .sr-membership__logo img {
        margin-left: 0;
        width: 180px;
    }

    .sr-membership__content {
        margin-right: 0;
    }

    .sr-newsletter-cta__card {
        padding: 56px 48px;
    }

    .sr-newsletter-cta__visual {
        left: 0;
        width: 540px;
    }

    .sr-newsletter-cta__image {
        width: 760px;
    }

    .sr-newsletter-cta__content {
        max-width: 500px;
        margin-right: 0;
    }

    .sr-services-stage__top,
    .sr-partners-main {
        gap: 36px;
    }

    .sr-grants-listing__grid {
        column-gap: 40px;
    }

    .sr-solar-process__layout,
    .sr-heat-pump-process__layout {
        grid-template-columns: 1fr 720px 1fr;
    }

    .sr-solar-process__house,
    .sr-heat-pump-process__house {
        width: 700px;
    }

    .sr-solar-process__side--left,
    .sr-heat-pump-process__side--left,
    .sr-solar-process__side--right,
    .sr-heat-pump-process__side--right {
        margin-left: 0;
        margin-right: 0;
    }

    .sr-team-showcase-slider .references-showcase-slider__track-wrap,
    .sr-about-gallery-slider .references-showcase-slider__track-wrap {
        max-width: calc(760px * 3 + 18px * 2);
    }

    .sr-team-showcase-slider .references-showcase-slider__slide,
    .sr-about-gallery-slider .references-showcase-slider__slide {
        width: 760px;
        height: 470px;
    }

    .sr-featured-products__nav--prev {
        left: -8px;
    }

    .sr-featured-products__nav--next {
        right: -8px;
    }
}

/* -------------------------
   <= 1100px TABLET / SMALL LAPTOP
------------------------- */
@media (max-width: 1100px) {
    .container {
        padding: 0 18px;
    }

    /* HEADER */
    .site-header {
        background: #ffffff;
    }

    .home-page .site-header {
        background: transparent;
    }

    .header-bottom {
        min-height: auto;
    }

    .header-row {
        min-height: 78px;
        padding: 16px 18px;
        gap: 14px;
        position: relative;
    }

    .header-logo img {
        height: 46px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .header-actions {
        gap: 12px;
        margin-left: 0;
        order: 2;
    }

        .header-actions a {
            width: 38px;
            height: 38px;
        }

        .header-actions img {
            height: 22px;
        }

    .main-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 8px);
        margin-left: 0;
        padding: 18px;
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 164, 88, 0.12);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        z-index: 1100;
    }

    .home-page .main-nav {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .site-header.is-nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        font-size: 18px;
        line-height: 1.4;
        padding: 14px 0;
    }

        .main-nav a::after {
            display: none;
        }

    .main-nav .dot {
        display: none;
    }

    /* FOOTER */
    .site-footer {
        margin-top: 72px;
        padding-bottom: 24px;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
        padding: 36px 24px 40px;
    }

    .footer-col:not(:first-child) {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-left: 0;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-contact p,
    .footer-col ul a {
        font-size: 15px;
        line-height: 2;
    }

    .footer-col h4 {
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .footer-bottom__bg {
        margin-bottom: 20px;
    }

    .footer-bottom__content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom__copyright {
        text-align: center;
        line-height: 1.8;
    }

    .footer-bottom__payments {
        justify-content: center;
    }

        .footer-bottom__payments img {
            width: 240px;
        }

    /* HERO */
    .sr-hero__media {
        min-height: 760px;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .sr-hero__content {
        min-height: 680px;
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .sr-hero__title {
        font-size: clamp(54px, 9vw, 80px);
        line-height: 0.96;
    }

    .sr-hero__subtitle {
        margin-top: 10px;
        font-size: clamp(22px, 3.6vw, 28px);
        line-height: 1.35;
    }

    .sr-hero__button {
        min-width: 0;
        width: 100%;
        max-width: 460px;
        margin-top: 160px;
        padding: 16px 22px;
        text-align: center;
    }

    .sr-hero-intro {
        padding-top: 40px;
    }

    .sr-hero-intro__text,
    .sr-solar-systems-intro__lead,
    .sr-heat-pumps-intro__lead,
    .sr-services-intro__lead,
    .sr-grants-intro__lead,
    .sr-about-intro__lead {
        font-size: 20px;
        line-height: 1.7;
    }

    .sr-hero-intro__link {
        display: inline-block;
        margin-left: 0;
        margin-top: 14px;
        white-space: normal;
    }

    /* GRIDEK */
    .sr-special-solutions__grid,
    .sr-solar-target-groups__grid,
    .sr-heat-pump-target-groups__grid,
    .sr-blog-preview__grid,
    .sr-solar-benefits__grid,
    .sr-heat-pumps-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sr-grants-listing__grid,
    .sr-partners-sub__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sr-services-stage__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
    }

    /* TERMÉKEK */
    .sr-product-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    .sr-product-card__image-wrap {
        height: 320px;
    }

    .sr-product-card__content {
        min-height: 130px;
    }

    .sr-product-card__title {
        font-size: 22px;
        line-height: 1.4;
    }

    .sr-featured-products__nav {
        top: 160px;
    }

    /* TEAM / GALLERY */
    .sr-team-showcase,
    .sr-about-gallery {
        padding: 72px 0 84px;
    }

    .sr-team-showcase-slider .references-showcase-slider__track-wrap,
    .sr-about-gallery-slider .references-showcase-slider__track-wrap {
        max-width: calc(86vw * 3 + 18px * 2);
    }

    .sr-team-showcase-slider .references-showcase-slider__slide,
    .sr-about-gallery-slider .references-showcase-slider__slide {
        width: 86vw;
        max-width: 760px;
        height: 52vw;
        max-height: 470px;
    }

    /* EXPERTISE */
    .sr-expertise-showcase__item,
    .sr-expertise-showcase__item--reverse {
        grid-template-columns: 1fr;
        gap: 26px;
    }

        .sr-expertise-showcase__item--reverse .sr-expertise-showcase__content,
        .sr-expertise-showcase__item--reverse .sr-expertise-showcase__media {
            order: initial;
        }

    .sr-expertise-showcase__content {
        max-width: none;
    }

    .sr-expertise-showcase__list {
        gap: 54px;
    }

        .sr-expertise-showcase__list::before {
            display: none;
        }

    /* CTA BANNER */
    .sr-cta-banner {
        padding-top: 90px;
    }

    .sr-cta-banner__bleed {
        min-height: auto;
        margin-top: 0;
        padding: 70px 0;
        background-position: center;
    }

    .sr-cta-banner__content {
        transform: none;
        max-width: 620px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    .sr-cta-banner__text {
        color: #ffffff;
        max-width: none;
    }

    /* MEMBERSHIP */
    .sr-membership__box {
        height: auto;
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 34px 24px;
    }

    .sr-membership__content {
        max-width: none;
    }

    /* NEWSLETTER */
    .sr-newsletter-cta {
        padding-top: 70px;
    }

    .sr-newsletter-cta__card {
        min-height: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 34px 24px 30px;
        overflow: hidden;
    }

    .sr-newsletter-cta__visual {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin: 0 auto 18px;
        pointer-events: auto;
    }

    .sr-newsletter-cta__image {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        padding-top: 0;
        filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.22));
    }

    .sr-newsletter-cta__content {
        max-width: none;
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .sr-newsletter-cta__text {
        max-width: none;
    }

    /* INTRO 2 hasábos blokkok */
    .sr-solar-systems-intro__content,
    .sr-heat-pumps-intro__content,
    .sr-services-stage__top,
    .sr-partners-main {
        grid-template-columns: 1fr;
    }

    .sr-solar-systems-intro__text-block,
    .sr-heat-pumps-intro__text-block,
    .sr-services-stage__content {
        padding-top: 0;
        max-width: none;
        margin-left: 0;
    }

    .sr-solar-systems-intro__image,
    .sr-heat-pumps-intro__image,
    .sr-services-stage__image {
        max-width: none;
    }

    /* PROCESS */
    .sr-solar-process__bleed,
    .sr-heat-pump-process__bleed {
        min-height: auto;
        padding: 0;
    }

    .sr-solar-process__inner,
    .sr-heat-pump-process__inner {
        min-height: auto;
        padding: 70px 0 60px;
    }

    .sr-solar-process__layout,
    .sr-heat-pump-process__layout {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: auto;
        margin-top: 0;
    }

    .sr-solar-process__center,
    .sr-heat-pump-process__center {
        order: 1;
        padding-top: 0;
    }

    .sr-solar-process__side,
    .sr-heat-pump-process__side {
        min-height: auto;
        padding-top: 0;
        gap: 24px;
    }

    .sr-solar-process__side--left,
    .sr-heat-pump-process__side--left {
        order: 2;
        align-items: stretch;
    }

    .sr-solar-process__side--right,
    .sr-heat-pump-process__side--right {
        order: 3;
        align-items: stretch;
    }

    .sr-solar-process__house,
    .sr-heat-pump-process__house {
        width: min(100%, 560px);
    }

    .sr-solar-process__item,
    .sr-heat-pump-process__item {
        max-width: none;
        min-height: 0;
        padding-left: 70px;
        text-align: left !important;
    }

    .sr-solar-process__side--right .sr-solar-process__item,
    .sr-heat-pump-process__side--right .sr-heat-pump-process__item,
    .sr-solar-process__side--left .sr-solar-process__item,
    .sr-heat-pump-process__side--left .sr-heat-pump-process__item {
        margin-left: 0;
    }

    .sr-solar-process__number,
    .sr-heat-pump-process__number,
    .sr-solar-process__item--1 .sr-solar-process__number,
    .sr-solar-process__item--2 .sr-solar-process__number,
    .sr-solar-process__item--3 .sr-solar-process__number,
    .sr-solar-process__item--4 .sr-solar-process__number {
        top: -10px !important;
        left: 0 !important;
        right: auto !important;
        font-size: 80px;
    }

    /* FAQ */
    .sr-faq-item__toggle,
    .sr-heat-pump-faq-item__toggle {
        grid-template-columns: 1fr 200px;
    }

    .sr-faq-item__question-wrap,
    .sr-heat-pump-faq-item__question-wrap {
        padding: 0 22px;
    }

    .sr-faq-item__question,
    .sr-heat-pump-faq-item__question {
        font-size: 18px;
    }

    .sr-faq-item__action-text,
    .sr-heat-pump-faq-item__action-text {
        font-size: 18px;
    }

    /* REVIEWS */
    .review-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    .review-card__bubble {
        height: auto;
        min-height: 290px;
    }
}

/* =========================================
   NEWSLETTER CTA – TABLET
========================================= */
@media (max-width: 1100px) {
    .sr-newsletter-cta {
        padding: 72px 0 20px;
    }

    .sr-newsletter-cta__card {
        min-height: 400px;
        padding: 48px 40px;
    }

    .sr-newsletter-cta__visual {
        left: 0;
        top: -40px;
        bottom: -40px;
        width: 480px;
    }

    .sr-newsletter-cta__image {
        width: 680px;
        padding-top: 40px;
    }

    .sr-newsletter-cta__content {
        max-width: 420px;
        margin-right: 0;
    }

    .sr-newsletter-cta__title {
        font-size: 32px;
        line-height: 1.3;
    }

    .sr-newsletter-cta__text {
        font-size: 16px;
        line-height: 1.6;
        max-width: 400px;
    }

    .sr-newsletter-cta__button {
        width: 290px;
        height: 54px;
    }

        .sr-newsletter-cta__button span:first-child,
        .sr-newsletter-cta__button-arrow {
            font-size: 18px;
        }
}

/* =========================================
   NEWSLETTER CTA – MOBILE
========================================= */
@media (max-width: 767px) {
    .sr-newsletter-cta {
        padding: 72px 0 50px;
        overflow-x: clip;
    }

        .sr-newsletter-cta > .container {
            max-width: none;
            padding-left: 0;
            padding-right: 0;
        }

    .sr-newsletter-cta__card {
        width: 100%;
        min-height: auto;
        border-radius: 20px;
        padding: 170px 24px 28px;
        display: block;
        overflow: visible;
    }

    .sr-newsletter-cta__visual {
        position: absolute;
        inset: 0;
        top: -72px;
        bottom: auto;
        width: 100%;
        height: 190px;
        display: block;
        pointer-events: none;
        transform: none;
    }

    .sr-newsletter-cta__image {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 420px;
        max-width: none;
        padding-top: 0;
        margin: 0;
        display: block;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.28));
    }

    .sr-newsletter-cta__content {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        padding: 0 24px;
    }

    .sr-newsletter-cta__title {
        margin: 0 0 14px;
        font-size: 24px;
        line-height: 1.35;
        text-align: left;
    }

    .sr-newsletter-cta__text {
        margin: 0 0 22px;
        max-width: none;
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }

    .sr-newsletter-cta__button {
        width: 100%;
        height: 52px;
        padding: 0 18px;
        justify-content: center;
        gap: 8px;
    }

        .sr-newsletter-cta__button span:first-child {
            font-size: 16px;
            line-height: 1.3;
            text-align: center;
        }

    .sr-newsletter-cta__button-arrow {
        font-size: 16px;
        line-height: 1;
    }
}


@media (max-width: 767px) {
    .sr-solar-benefits,
    .sr-heat-pumps-benefits {
        padding: 0 0 42px;
        background: #ffffff;
    }

    .sr-solar-benefits__header,
    .sr-heat-pumps-benefits__header {
        margin-bottom: 40px;
        text-align: left;
    }

    .sr-solar-benefits__title,
    .sr-heat-pumps-benefits__title {
        font-size: 24px;
        line-height: 1.35;
        text-align: left;
    }

    .sr-solar-benefits__grid,
    .sr-heat-pumps-benefits__grid {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 30px;
    }

    .sr-solar-benefits__item,
    .sr-heat-pumps-benefits__item {
        display: block;
    }

    .sr-solar-benefits__icon-box,
    .sr-heat-pumps-benefits__icon-box {
        display: none;
    }

    .sr-solar-benefits__content,
    .sr-heat-pumps-benefits__content {
        padding-top: 0;
    }

    .sr-solar-benefits__item-title,
    .sr-heat-pumps-benefits__item-title {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.4;
    }

    .sr-solar-benefits__text,
    .sr-heat-pumps-benefits__text {
        font-size: 15px;
        line-height: 1.65;
    }
}


@media (max-width: 767px) {
    .sr-solar-process__item .sr-solar-process__number {
        font-size: 160px !important;
        line-height: 1 !important;
    }

    .sr-solar-process__item--1 .sr-solar-process__number,
    .sr-solar-process__item--2 .sr-solar-process__number,
    .sr-solar-process__item--3 .sr-solar-process__number,
    .sr-solar-process__item--4 .sr-solar-process__number {
        top: -70px !important;
        left: 18px !important;
        right: auto !important;
    }

    .sr-solar-process__item {
        margin-bottom: 34px;
    }
}

@media (max-width: 767px) {
    .sr-energy-storage {
        padding: 20px 0 24px;
    }

        .sr-energy-storage > .container {
            max-width: none;
            padding-left: 0;
            padding-right: 0;
        }

    .sr-energy-storage__box {
        width: 100%;
        max-width: none;
        min-height: 308px;
        height: auto;
        margin: 0;
        padding: 36px 28px;
        border-radius: 20px;
        justify-content: center;
        text-align: center;
    }

    .sr-energy-storage__title {
        margin: 0 0 18px;
        font-size: 24px;
        line-height: 1.35;
    }

    .sr-energy-storage__text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.85;
    }
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 96px 0 88px;
}

.reviews-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-section__title {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #00A458;
    margin: 0;
}

.reviews-fullbleed {
    width: 100%;
    max-width: 1930px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    width: 100%;
}

.reviews-slider__viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 22px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.review-card__bubble {
    position: relative;
    background: #f1fbf6;
    border-radius: 20px;
    height: 365px;
    padding: 56px 36px 42px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

    .review-card__bubble::after {
        content: "";
        position: absolute;
        left: 68px;
        bottom: -10px;
        width: 22px;
        height: 22px;
        background: #f1fbf6;
        transform: rotate(45deg);
        border-radius: 4px;
    }

.review-card__quote {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    font-style: italic;
    color: #2a2a2a;
    margin: 0;
    padding: 0 16px;
}

.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;
    flex-shrink: 0;
}

    .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;
    line-height: 1.4;
    font-weight: 600;
    color: #111111;
    margin: 0;
}

.review-card__role {
    font-weight: 400;
    color: #444444;
}

/* alsó vezérlők */
.reviews-slider__controls {
    margin-top: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.reviews-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.reviews-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4d4d4;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .reviews-slider__dot.is-active {
        background: #00A458;
    }

    .reviews-slider__dot:hover {
        transform: scale(1.05);
    }

/* nyilak */
.reviews-slider__nav {
    width: 52px;
    height: 52px;
    border: 2px solid #00A458;
    border-radius: 50%;
    background: #ffffff;
    color: #00A458;
    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 6px 14px rgba(0, 0, 0, 0.08);
    padding: 0;
    flex: 0 0 auto;
}

    .reviews-slider__nav:hover {
        background: #00A458;
        color: #ffffff;
    }

.reviews-slider__nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 32px;
    line-height: 1;
}

/* nagy monitoron se legyen 3-nál több látható */
@media (min-width: 1921px) {
    .reviews-fullbleed {
        max-width: 1920px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 72px 0 32px;
    }

    .reviews-section__header {
        margin-bottom: 32px;
    }

    .reviews-section__title {
        font-size: 28px;
        line-height: 1.25;
    }

    .reviews-fullbleed {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .reviews-slider__viewport {
        overflow: hidden;
    }

    .reviews-track {
        gap: 0;
    }

    .review-card {
        flex: 0 0 100%;
        width: 100%;
    }

    .review-card__bubble {
        height: auto;
        min-height: 264px;
        padding: 38px 24px 34px;
        margin-bottom: 18px;
        border-radius: 18px;
    }

        .review-card__bubble::after {
            left: 36px;
            bottom: -9px;
            width: 20px;
            height: 20px;
        }

    .review-card__quote {
        font-size: 16px;
        line-height: 1.9;
        padding: 0;
    }

    .review-card__author {
        gap: 14px;
        padding: 0 6px;
        justify-content: flex-start;
    }

    .review-card__avatar {
        width: 48px;
        height: 48px;
    }

    .review-card__name {
        font-size: 16px;
        line-height: 1.35;
    }

    .review-card__role {
        font-size: 16px;
    }

    .reviews-slider__controls {
        margin-top: 34px;
        gap: 20px;
    }

    .reviews-slider__dots {
        gap: 10px;
    }

    .reviews-slider__dot {
        width: 10px;
        height: 10px;
    }

    .reviews-slider__nav {
        width: 48px;
        height: 48px;
        box-shadow: none;
    }

    .reviews-slider__nav-icon {
        font-size: 28px;
    }
}

.review-card__bubble {
    position: relative;
    background: #f1fbf6;
    border-radius: 20px;
    height: 365px;
    padding: 56px 36px 42px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start; /* ⬅️ fontos */
    justify-content: center;
    text-align: center;
    overflow: hidden; /* ⬅️ */
}

.review-card__quote {
    max-height: 100%;
    overflow-y: auto; /* ⬅️ scroll */
    padding: 0 16px;
    /* opcionális: szebb scroll */
    scrollbar-width: thin;
}

@media (max-width: 767px) {
    .sr-faq-section,
    .sr-heat-pump-faq-section {
        padding: 72px 0 72px;
        background: #ffffff;
    }

    .sr-faq-section__header,
    .sr-heat-pump-faq-section__header {
        margin-bottom: 32px;
    }

    .sr-faq-section__title,
    .sr-heat-pump-faq-section__title {
        font-size: 28px;
        line-height: 1.25;
        max-width: 260px;
        margin: 0 auto;
    }

    .sr-faq-list,
    .sr-heat-pump-faq-list {
        gap: 24px;
    }

    .sr-faq-item__toggle,
    .sr-heat-pump-faq-item__toggle {
        min-height: 0;
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
        background: #F8F8F8;
        box-shadow: 0px 4px 12px 0px #0000001A;
    }

    .sr-faq-item__question-wrap,
    .sr-heat-pump-faq-item__question-wrap {
        min-height: 0;
        padding: 24px 24px 22px;
        align-items: flex-start;
        border-radius: 20px;
    }

    .sr-faq-item__question,
    .sr-heat-pump-faq-item__question {
        font-size: 16px;
        line-height: 1.3;
    }

    .sr-faq-item__action,
    .sr-heat-pump-faq-item__action {
        min-height: 62px;
        width: 100%;
        padding: 0 24px;
        justify-content: center;
        gap: 8px;
        background: #F8F8F8;
    }

    .sr-faq-item__action-text,
    .sr-heat-pump-faq-item__action-text {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .sr-faq-item__arrow,
    .sr-heat-pump-faq-item__arrow {
        font-size: 18px;
        line-height: 1;
    }

    .sr-faq-item__answer,
    .sr-heat-pump-faq-item__answer {
        margin-top: 12px;
        padding: 22px 24px 24px;
        font-size: 15px;
        line-height: 1.7;
        border-radius: 20px;
    }

    .sr-faq-section__footer,
    .sr-heat-pump-faq-section__footer {
        margin-top: 32px;
    }

    .sr-faq-section__button,
    .sr-heat-pump-faq-section__button {
        width: 100%;
        max-width: 234px;
        height: 42px;
        padding: 0 18px;
        gap: 6px;
    }

        .sr-faq-section__button span:first-child,
        .sr-heat-pump-faq-section__button span:first-child {
            font-size: 14px;
            line-height: 1.2;
        }

    .sr-faq-section__button-arrow,
    .sr-heat-pump-faq-section__button-arrow {
        font-size: 16px;
        line-height: 1;
    }
}

/* --- 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: #00A458;
}

.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(0, 164, 88, 0), #4FD08A, #00A458, #4FD08A, rgba(0, 164, 88, 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: #007A43;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(0, 164, 88, 0.14);
        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: #00A458;
            box-shadow: 0 0 0 4px rgba(0, 164, 88, 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 #00A458;
    border-radius: 999px;
    background: transparent;
    color: #00A458;
    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: #00A458;
        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: #007A43;
}

/* TABLET */
@media (max-width: 1100px) {
    .contact-title {
        font-size: 48px;
    }

    .contact-subtitle {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .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%;
    }
}

/* =========================================
   SOLAREGIO – WEBSHOP ALAP
========================================= */

.sr-webshop-page {
    padding: 80px 0 100px;
    background: #ffffff;
}

.sr-webshop-page__header {
    max-width: 880px;
    margin: 0 auto 56px;
    text-align: center;
}

.sr-webshop-page__eyebrow {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00A458;
    margin-bottom: 12px;
}

.sr-webshop-page__title {
    font-family: "TASA Explorer", "Barlow", sans-serif;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
    color: #000000;
    margin: 0 0 18px;
}

.sr-webshop-page__lead {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.sr-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.sr-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 164, 88, 0.14);
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.sr-product-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; 
    height: 260px;
    padding: 20px;
}

.sr-product-card__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    display: block;
}

.sr-product-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    color: #777777;
    background: #f4f4f4;
}

.sr-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.sr-product-card__category {
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00A458;
    margin-bottom: 10px;
}

.sr-product-card__title {
    font-family: "TASA Explorer", "Barlow", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
    margin: 0 0 18px;
}

    .sr-product-card__title a {
        color: inherit;
        text-decoration: none;
    }

.sr-product-card__price {
    margin-top: auto;
    margin-bottom: 22px;
}

.sr-product-card__gross {
    display: block;
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #000000;
}

.sr-product-card__net {
    display: block;
    margin-top: 6px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #777777;
}

.sr-product-card__inquiry {
    display: inline-flex;
    align-items: center;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #00A458;
}

.sr-product-card__button {
    width: fit-content;
    min-width: 138px;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    background: #00A458;
    border: 2px solid #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

    .sr-product-card__button:hover {
        background: #ffffff;
        color: #00A458;
    }

.sr-product-list-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 20px;
    background: rgba(0, 164, 88, 0.05);
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

.sr-product-offer-notice {
    margin: 48px auto 0;
    max-width: 780px;
    padding: 20px 28px;
    border-radius: 999px;
    background: rgba(0, 164, 88, 0.07);
    color: #00A458;
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
}

@media (max-width: 767px) {
    .sr-webshop-page {
        padding: 52px 0 72px;
    }

    .sr-webshop-page__header {
        margin-bottom: 36px;
        text-align: left;
    }

    .sr-webshop-page__title {
        font-size: 38px;
    }

    .sr-webshop-page__lead {
        font-size: 17px;
    }

    .sr-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sr-product-card {
        border-radius: 20px;
    }

    .sr-product-card__body {
        padding: 22px;
    }

    .sr-product-card__title {
        font-size: 22px;
    }

    .sr-product-offer-notice {
        border-radius: 20px;
        font-size: 15px;
    }
}

/* =========================================
   SOLAREGIO – PRODUCT DETAIL
========================================= */

.sr-product-detail {
    padding: 64px 0 100px;
    background: #ffffff;
}

.sr-product-detail__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 42px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #777777;
}

    .sr-product-detail__breadcrumbs a {
        color: #00A458;
        text-decoration: none;
        font-weight: 700;
    }

    .sr-product-detail__breadcrumbs strong {
        color: #000000;
        font-weight: 600;
    }

.sr-product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: start;
}

.sr-product-detail__gallery {
    min-width: 0;
}

.sr-product-detail__main-image {
    min-height: 520px;
    border-radius: 28px;
    border: 1px solid rgba(0, 164, 88, 0.14);
    background: #ffffff;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

    .sr-product-detail__main-image img {
        max-width: 100%;
        max-height: 430px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
    }

.sr-product-detail__image-placeholder {
    width: 100%;
    min-height: 360px;
    border-radius: 20px;
    background: rgba(0, 164, 88, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    color: #777777;
}

.sr-product-detail__thumbs {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.sr-product-detail__thumb {
    width: 108px;
    height: 86px;
    border-radius: 16px;
    border: 1px solid rgba(0, 164, 88, 0.18);
    background: #ffffff;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sr-product-detail__thumb.is-active {
        border-color: #00A458;
        box-shadow: 0 8px 24px rgba(0, 164, 88, 0.18);
    }

    .sr-product-detail__thumb img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

.sr-product-detail__content {
    min-width: 0;
    padding-top: 12px;
}

.sr-product-detail__category {
    display: inline-flex;
    margin-bottom: 14px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00A458;
    text-decoration: none;
}

.sr-product-detail__title {
    font-family: "TASA Explorer", "Barlow", sans-serif;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
    color: #000000;
    margin: 0 0 24px;
}

.sr-product-detail__intro {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
    color: #333333;
    white-space: pre-line;
    margin-bottom: 30px;
}

    .sr-product-detail__intro strong {
        font-weight: 800;
        color: #000000;
    }

.sr-product-detail__buy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(0, 164, 88, 0.06);
    border: 1px solid rgba(0, 164, 88, 0.14);
    margin-bottom: 22px;
}

.sr-product-detail__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sr-product-detail__price-label {
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00A458;
}

.sr-product-detail__price strong {
    font-family: "Barlow", sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    color: #000000
}

.sr-product-detail__price span:last-child {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #666666;
}

.sr-product-detail__cart-button {
    min-width: 170px;
    height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    border: 2px solid #00A458;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

    .sr-product-detail__cart-button:hover {
        background: #ffffff;
        color: #00A458;
    }

.sr-product-detail__meta {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    color: #666666;
}

    .sr-product-detail__meta strong {
        color: #000000;
    }

.sr-product-detail__files {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.sr-product-detail__file {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 164, 88, 0.24);
    color: #00A458;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.sr-product-specs {
    margin-top: 80px;
}

.sr-product-specs__title {
    font-family: "TASA Explorer", "Barlow", sans-serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
    color: #000000;
}

.sr-product-specs__table {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 164, 88, 0.14);
}

.sr-product-specs__section {
    padding: 18px 24px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.sr-product-specs__row {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    border-top: 1px solid rgba(0, 164, 88, 0.12);
}

.sr-product-specs__label,
.sr-product-specs__value {
    padding: 18px 24px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.sr-product-specs__label {
    background: rgba(0, 164, 88, 0.045);
    font-weight: 800;
    color: #000000;
}

.sr-product-specs__value {
    color: #333333;
}

@media (max-width: 767px) {
    .sr-product-detail {
        padding: 42px 0 72px;
    }

    .sr-product-detail__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sr-product-detail__main-image {
        min-height: 340px;
        padding: 28px;
        border-radius: 22px;
    }

        .sr-product-detail__main-image img {
            max-height: 280px;
        }

    .sr-product-detail__title {
        font-size: 38px;
    }

    .sr-product-detail__intro {
        font-size: 16px;
    }

    .sr-product-detail__buy-box {
        flex-direction: column;
        align-items: stretch;
    }

    .sr-product-detail__cart-button {
        width: 100%;
    }

    .sr-product-specs {
        margin-top: 52px;
    }

    .sr-product-specs__title {
        font-size: 30px;
    }

    .sr-product-specs__row {
        grid-template-columns: 1fr;
    }

    .sr-product-specs__label,
    .sr-product-specs__value {
        padding: 14px 18px;
    }
}

/* =========================================
   SOLAREGIO – CART PAGE
========================================= */

.sr-cart-page {
    padding: 40px 0 80px;
    background: #ffffff;
}

.sr-cart-page__header {
    margin-bottom: 28px;
}

.sr-cart-page__title {
    font-family: "TASA Explorer", "Barlow", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    color: #00A458;
    margin: 0;
}

.sr-cart-page__empty {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.sr-cart-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
}

.sr-cart-page__items {
    display: grid;
    gap: 20px;
}

.sr-cart-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 164, 88, 0.18);
    border-radius: 16px;
    background: #ffffff;
}

.sr-cart-item__image-wrap {
    background: transparent;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.sr-cart-item__image {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
}

.sr-cart-item__title {
    margin: 0 0 10px;
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

    .sr-cart-item__title a {
        color: #00A458;
        text-decoration: none;
    }

.sr-cart-item__price {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 4px;
    color: #000000;
}

.sr-cart-item__price--inquiry {
    color: #00A458;
}

.sr-cart-item__price-note {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #00A458;
    margin-bottom: 10px;
}

.sr-cart-item__line-total {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.sr-cart-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.sr-cart-item__quantity-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sr-cart-item__quantity-input {
    width: 84px;
    height: 42px;
    border: 1px solid rgba(0, 164, 88, 0.24);
    border-radius: 999px;
    padding: 0 14px;
    font-family: "Barlow", sans-serif;
}

.sr-cart-item__update-button,
.sr-cart-item__remove-button,
.sr-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;
}

.sr-cart-item__update-button,
.sr-cart-summary__button--primary {
    background: #00A458;
    color: #ffffff;
}

.sr-cart-item__remove-button,
.sr-cart-summary__button--secondary {
    background: rgba(0, 164, 88, 0.08);
    color: #00A458;
}

.sr-cart-summary__card {
    background: rgba(0, 164, 88, 0.06);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 110px;
}

.sr-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;
}

.sr-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: #00A458;
    text-align: right;
}

.sr-cart-summary__notice {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(0, 164, 88, 0.10);
    color: #007A42;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.sr-cart-summary__buttons {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.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: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
}

    .header-cart__badge.is-hidden {
        display: none;
    }

@media (max-width: 991px) {
    .sr-cart-page__layout {
        grid-template-columns: 1fr;
    }

    .sr-cart-summary__card {
        position: static;
    }
}

@media (max-width: 767px) {
    .sr-cart-page {
        padding: 24px 0 56px;
    }

    .sr-cart-page__title {
        font-size: 42px;
    }

    .sr-cart-item {
        grid-template-columns: 1fr;
    }

    .header-cart__badge {
        left: auto;
        right: 12px;
        bottom: -6px;
    }
}
/* =========================================
   SOLAREGIO – HEADER CART BADGE
========================================= */

.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cart__badge {
    position: absolute;
    top: -7px;
    right: -9px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    line-height: 19px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 164, 88, 0.32);
}

    .header-cart__badge.is-hidden {
        display: none;
    }

/* =========================================
   SOLAREGIO – CHECKOUT / QUOTE FORMS
========================================= */

.sr-form-page {
    padding: 56px 0 90px;
    background: #ffffff;
}

.sr-form-page__header {
    margin-bottom: 34px;
}

.sr-form-page__title {
    font-family: "TASA Explorer", "Barlow", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    color: #00A458;
    margin: 0;
}

.sr-order-form {
    max-width: 980px;
    display: grid;
    gap: 22px;
}

.sr-form-card {
    background: rgba(0, 164, 88, 0.06);
    border-radius: 20px;
    padding: 28px;
}

.sr-form-card__title {
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #00A458;
    margin: 0 0 20px;
}

.sr-form-card__text {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.sr-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sr-form-grid__wide {
    grid-column: 1 / -1;
}

.sr-order-form label {
    gap: 8px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #003B23;
}

    .sr-order-form label span {
        font-weight: 500;
        color: #537463;
        margin-left: 4px;
    }


.sr-order-form input,
.sr-order-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 164, 88, 0.24);
    border-radius: 14px;
    background: #ffffff;
    padding: 14px 16px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    color: #000000;
    outline: none;
    margin-top: 8px;
}

.sr-order-form input {
    height: 50px;
}

.sr-order-form textarea {
    resize: vertical;
    min-height: 140px;
}

    .sr-order-form input:focus,
    .sr-order-form textarea:focus {
        border-color: #00A458;
        box-shadow: 0 0 0 3px rgba(0, 164, 88, 0.12);
    }

.sr-form-checkbox {
    display: flex !important;
    grid-template-columns: unset !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px !important;
    cursor: pointer;
}

    .sr-form-checkbox input {
        width: 20px;
        height: 20px;
        padding: 0;
        flex: 0 0 auto;
    }

    .sr-form-checkbox span {
        margin-left: 0 !important;
    }

.sr-billing-fields {
    margin-top: 24px;
}

    .sr-billing-fields.is-hidden {
        display: none;
    }

.sr-form-submit {
    justify-self: start;
    min-height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

    .sr-form-submit:hover {
        background: #003B23;
        color: #ffffff;
    }

@media (max-width: 767px) {
    .sr-form-page {
        padding: 32px 0 64px;
    }

    .sr-form-page__title {
        font-size: 44px;
    }

    .sr-form-card {
        padding: 22px;
    }

    .sr-form-grid {
        grid-template-columns: 1fr;
    }

    .sr-form-submit {
        width: 100%;
    }
}


/* =========================================
   SOLAREGIO – WEBSHOP DRAWER
========================================= */

body.has-webshop-drawer-open {
    overflow: hidden;
}

.sr-webshop-drawer-float {
    position: fixed;
    left: 0;
    top: 140px;
    z-index: 5000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0 999px 999px 0;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 164, 88, 0.28);
}

.sr-webshop-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 40, 22, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 6000;
    pointer-events: none;
}

    .sr-webshop-drawer-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.sr-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(0, 40, 22, 0.18);
    padding: 28px 26px 40px;
    overflow-y: auto;
}

    .sr-webshop-drawer.is-open {
        transform: translateX(0);
    }

.sr-webshop-drawer__header {
    display: block;
    margin-bottom: 22px;
}

    .sr-webshop-drawer__header h2 {
        font-family: "TASA Explorer", "Barlow", sans-serif;
        font-size: 34px;
        line-height: 1;
        font-weight: 800;
        color: #00A458;
        margin: 0 0 18px;
    }

.sr-webshop-drawer__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 164, 88, 0.08);
    color: #00A458;
    font-family: "Barlow", sans-serif;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 22px;
}

.sr-webshop-drawer__main-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    text-decoration: none;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 28px;
}

.sr-webshop-drawer__group,
.sr-webshop-filter {
    border-top: 1px solid rgba(0, 164, 88, 0.18);
    padding-top: 22px;
    margin-top: 22px;
}

    .sr-webshop-drawer__group h3,
    .sr-webshop-filter h3 {
        font-family: "TASA Explorer", "Barlow", sans-serif;
        font-size: 30px;
        line-height: 1;
        font-weight: 800;
        color: #00A458;
        margin: 0 0 18px;
        text-transform: none;
        letter-spacing: 0;
    }

    .sr-webshop-drawer__group ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 8px;
    }

    .sr-webshop-drawer__group a {
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        line-height: 1.4;
        font-weight: 700;
        color: #00A458;
        text-decoration: none;
        background: rgba(0, 164, 88, 0.06);
        border-radius: 14px;
        padding: 14px 16px;
        display: block;
    }

.sr-webshop-filter {
    display: grid;
    gap: 14px;
}

    .sr-webshop-filter label {
        display: grid;
        gap: 6px;
        font-family: "Barlow", sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #003B23;
    }

    .sr-webshop-filter input {
        width: 100%;
        height: 44px;
        border: 1px solid rgba(0, 164, 88, 0.22);
        border-radius: 999px;
        padding: 0 16px;
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        color: #000000;
        outline: none;
    }

        .sr-webshop-filter input:focus {
            border-color: #00A458;
            box-shadow: 0 0 0 3px rgba(0, 164, 88, 0.10);
        }

.sr-webshop-filter__submit,
.sr-webshop-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;
}

.sr-webshop-filter__submit {
    border: 0;
    background: #00A458;
    color: #ffffff;
    cursor: pointer;
}

.sr-webshop-filter__reset {
    background: rgba(0, 164, 88, 0.06);
    color: #00A458;
}

[data-product-list] {
    transition: opacity 0.2s ease;
}

    [data-product-list].is-loading {
        opacity: 0.45;
        pointer-events: none;
    }

@media (max-width: 767px) {
    .sr-webshop-drawer-float {
        display: none;
    }

    .sr-webshop-drawer {
        left: auto;
        right: 0;
        transform: translateX(100%);
        box-shadow: -18px 0 45px rgba(0, 40, 22, 0.18);
    }

        .sr-webshop-drawer.is-open {
            transform: translateX(0);
        }
}

.header-actions__icon--filter {
    display: none;
}

@media (max-width: 767px) {
    .header-actions__icon--filter {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 0;
        background: #00A458;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 26px;
        line-height: 1;
        font-weight: 700;
        padding: 0;
        cursor: pointer;
    }

    .header-actions__filter-icon {
        display: block;
        line-height: 1;
        transform: translateY(-1px);
    }
}

.pg-product-offer-notice {
    margin: 48px auto 0;
    max-width: 780px;
    padding: 20px 28px;
    border-radius: 999px;
    background: rgba(0, 164, 88, 0.07);
    color: #00A458;
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
}


.sr-product-card__button-feat {
    margin-bottom: 16px;
}

.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;
    }
}

/* LAPTOP */
@media (max-width: 1400px) {
    .sr-about-values__title {
        font-size: 56px;
    }

    .sr-about-values__grid {
        column-gap: 34px;
    }

    .sr-about-values__item-title {
        font-size: 22px;
    }

    .sr-about-values__text {
        font-size: 17px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .sr-about-values {
        padding: 74px 0 74px;
    }

    .sr-about-values__header {
        margin-bottom: 38px;
    }

    .sr-about-values__title {
        font-size: 48px;
    }

    .sr-about-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
        row-gap: 32px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .sr-about-values {
        padding: 56px 0 56px;
    }

    .sr-about-values__header {
        margin-bottom: 28px;
    }

    .sr-about-values__title {
        font-size: 38px;
        line-height: 1.08;
    }

    .sr-about-values__grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .sr-about-values__item {
        grid-template-columns: 56px 1fr;
        gap: 14px;
    }

    .sr-about-values__icon {
        width: 56px;
        height: 56px;
    }

        .sr-about-values__icon img {
            width: 26px;
            height: 26px;
        }

    .sr-about-values__item-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .sr-about-values__text {
        font-size: 16px;
        line-height: 1.65;
        max-width: none;
    }
}

.review-card__quote {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card__read-more {
    margin-top: 18px;
    border: 0;
    background: transparent;
    color: #00A458;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

    .review-card__read-more:hover {
        text-decoration: underline;
    }

/* LIGHTBOX */
.review-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .review-lightbox.is-open {
        display: flex;
    }

.review-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.review-lightbox__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    max-height: 82vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 42px 46px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.review-lightbox__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    color: #2a2a2a;
    margin: 0;
}

.review-lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    color: #00A458;
}

@media (max-width: 767px) {
    .review-card__quote {
        -webkit-line-clamp: 7;
    }

    .review-lightbox__content {
        padding: 38px 24px 30px;
        border-radius: 18px;
    }

    .review-lightbox__text {
        font-size: 16px;
        line-height: 1.8;
    }
}

.review-card__bubble {
    position: relative;
}

/* szöveg */
.review-card__quote {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 16px;
}

/* gomb pozicionálása */
.review-card__read-more {
    position: absolute;
    right: 28px;
    bottom: 28px;
    background: #f1fbf6; /* háttérrel takarja a szöveget */
    padding-left: 6px;
    border: 0;
    color: #00A458;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

    .review-card__read-more:hover {
        text-decoration: underline;
    }

.review-card__bubble {
    position: relative;
    background: #f1fbf6;
    border-radius: 20px;
    height: 365px;
    padding: 56px 36px 42px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.review-card__quote {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    font-style: italic;
    color: #2a2a2a;
    margin: 0;
    padding: 0 16px;
}

.review-card__read-more {
    display: inline;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    color: #00A458;
    font: inherit;
    font-weight: 700;
    font-style: normal;
    cursor: pointer;
}

    .review-card__read-more:hover {
        text-decoration: underline;
    }

/* LIGHTBOX */
.review-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .review-lightbox.is-open {
        display: flex;
    }

.review-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.review-lightbox__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    max-height: 82vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 42px 46px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.review-lightbox__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    color: #2a2a2a;
    margin: 0;
}

.review-lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    color: #00A458;
}

@media (max-width: 767px) {
    .review-card__bubble {
        height: auto;
        min-height: 264px;
        padding: 38px 24px 34px;
        border-radius: 18px;
    }

    .review-card__quote {
        font-size: 16px;
        line-height: 1.9;
        padding: 0;
    }

    .review-lightbox__content {
        padding: 38px 24px 30px;
        border-radius: 18px;
    }

    .review-lightbox__text {
        font-size: 16px;
        line-height: 1.8;
    }
}

.review-card__bubble {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    height: 365px;
}

/* PARTNERS SECTION */
.partners-section {
    padding: 100px 0 80px;
}

/* TITLE – SolaRegio */
.partners-section__title {
    font-family: "TASA Explorer", 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: center;
    color: #00A458;
    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 #C6E4D6;
    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(0, 0, 0, 0.06);
    }

        .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;
        }
}

.review-card__bubble {
    position: relative;
    overflow: visible; /* ez kell a kis háromszög miatt */
}

    .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;
    }

.review-card__quote {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: inline-grid;
    grid-template-columns: 22px auto 22px;
    align-items: center;
    justify-items: center;
    column-gap: 6px;
    margin-left: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #000;
    white-space: nowrap;
    text-transform: uppercase;
}

    .lang-switcher a,
    .lang-switcher span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 22px;
        height: 18px;
        margin: 0;
        padding: 0;
        font: inherit;
        line-height: 1;
        letter-spacing: inherit;
        text-transform: inherit;
        text-decoration: none;
    }

    .lang-switcher .active {
        color: #000;
        cursor: default;
        pointer-events: none;
    }

    .lang-switcher a {
        color: rgba(0, 0, 0, 0.45);
        transition: color 0.2s ease;
    }

        .lang-switcher a:hover {
            color: #000;
        }

    .lang-switcher .lang-switcher__separator {
        min-width: auto;
        color: rgba(0, 0, 0, 0.35);
    }

@media (max-width: 767px) {
    .lang-switcher {
        grid-template-columns: 18px auto 18px;
        margin-left: 4px;
        font-size: 13px;
        column-gap: 5px;
    }

        .lang-switcher a,
        .lang-switcher span {
            min-width: 18px;
            height: 14px;
        }

        .lang-switcher .lang-switcher__separator {
            min-width: auto;
        }
}