/* ===== HERO ===== */
.hero {
    position: relative;
    /* min-height: 100svh; */
    /* min-height: 100vh; */
    height: calc(100vh - var(--nav-height-desktop));
    overflow: hidden;
    background: var(--bg-mid);
    /* top: calc(var(--nav-height-desktop) * -1); */
}

/* changed */
.section,
.reseller__section,
#hero {
    scroll-margin-top: var(--nav-height-desktop);
}

/* changed */
.product-lineup {
    padding: 88px 0;
    background: #ffffff;
    color: #111111;
}

.product-lineup__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 72px;
    align-items: start;
}

.product-lineup__media {
    display: grid;
    grid-template-columns: 75px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

/* changed */
.product-lineup--reverse .product-lineup__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.product-lineup--reverse .product-lineup__media {
    grid-template-columns: minmax(0, 1fr) 75px;
}

.product-lineup--reverse .product-lineup__thumbs {
    order: 2;
}

.product-lineup--reverse .product-lineup__main {
    order: 1;
}

.product-lineup__thumbs {
    display: grid;
    gap: 12px;
}

.product-lineup__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    opacity: 1;
}

/* changed */
.product-lineup__thumb:not(:hover):not(:focus-visible):not(.is-active) {
    opacity: 0.65;
}

.product-lineup__thumb.is-active {
    border-color: rgba(0, 0, 0, 0.35);
    opacity: 1;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.product-lineup__thumb:hover,
.product-lineup__thumb:focus-visible {
    border-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    transform: translateY(-1px);
}

.product-lineup__thumb:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.45);
    outline-offset: 3px;
}

/* changed */
.product-lineup__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.72);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* changed */
.product-lineup__thumb.is-active::after {
    opacity: 0;
}

.product-lineup__thumb:hover::after,
.product-lineup__thumb:focus-visible::after {
    opacity: 0;
}

.product-lineup__main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ededed;
}

.product-lineup__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.35s ease-in-out;
}

.product-lineup__img.is-fading {
    opacity: 0;
}

.product-lineup__eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
}

.product-lineup__title {
    margin: 0 0 28px;
    font-size: 36px;
    letter-spacing: -0.02em;
    color: #111111;
}

.product-lineup__product-name {
    margin: 0 0 14px;
    font-size: 26px;
    letter-spacing: -0.01em;
    color: #111111;
}

.product-lineup__copy {
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .product-lineup__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-lineup__media {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-lineup__thumbs {
        grid-auto-flow: column;
        grid-auto-columns: 75px;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .product-lineup__main {
        order: 1;
    }

    .product-lineup__thumbs {
        order: 2;
    }

    .product-lineup__content {
        padding-top: 16px;
    }

    /* changed */
    .product-lineup--reverse .product-lineup__grid {
        grid-template-columns: 1fr;
    }

    .product-lineup--reverse .product-lineup__media {
        grid-template-columns: 1fr;
    }

    /* changed */
    .product-lineup--reverse .product-lineup__content {
        order: 2;
    }

    .product-lineup--reverse .product-lineup__media {
        order: 1;
    }
}

@media (max-width: 600px) {
    .product-lineup {
        padding: 64px 0;
    }

    .product-lineup__title {
        font-size: 28px;
    }

    .product-lineup__product-name {
        font-size: 22px;
    }

    .product-lineup__main {
        aspect-ratio: 4 / 5;
        border-radius: 10px;
    }

    .product-lineup__thumb {
        border-radius: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-lineup__img,
    .product-lineup__thumb {
        transition: none;
    }
}

/* gradient overlay */
.hero__bg {
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
    z-index: 2;
    opacity: 0.15;
}

/* centered video */
.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: grid;
    place-items: center;
    pointer-events: none;
    z-index: 1;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: none;
    display: block;
    background: #000;
}

/* bottom-left content */
.hero__content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
}

.hero__content-inner {
    padding-left: var(--hero-safe-x);
    padding-right: 0;
    padding-bottom: var(--hero-safe-y);
    max-width: 560px;
}

.hero__kicker {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.14em;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 12px;
    opacity: 0.75;
    text-align: left;
}

.hero__title {
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    font-size: 42px;
    max-width: 520px;
    margin-bottom: 18px;
    text-align: left;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.12s ease, background 0.12s ease;
    text-align: left;
}

.hero__cta:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
}

/* dots */
.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 14px;
    z-index: 5;
}

.hero__dot {
    position: relative;
    width: 44px;
    height: 1px;
    border-radius: 0;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    outline: none;
}

.hero__dot.is-active {
    background: rgba(255, 255, 255, 0.9);
}

.hero__dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

.hero__dot::before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
}

/* responsive */
@media (max-width: 980px) {
    .container {
        width: calc(100% - 48px);
    }

    .hero__title {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero__cta {
        height: 44px;
        padding: 0 18px;
        font-size: 13px;
    }

    .hero__dot {
        width: 30px;
    }

    .hero__dots {
        bottom: 20px;
        gap: 10px;
    }
}

/* @media (max-width: 768px) {
    .hero {
        top: calc(var(--nav-height-tablet) * -1);
    }
} */

@media (max-width: 520px) {
    .container {
        width: calc(100% - 36px);
    }

    .hero__content-inner {
        padding-left: var(--hero-safe-x-mobile);
        padding-right: 0;
        padding-bottom: 44px;
        max-width: 92vw;
    }

    .hero__kicker {
        font-size: 16px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
    }

    .hero__title {
        font-size: 34px;
        line-height: 1.15;
    }

    .hero__cta {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }

    .hero__dot {
        width: 44px;
    }

    .hero__dots {
        bottom: 18px;
    }
}

/* ===== BENEFITS ===== */
.section.benefits {
    background: #ffffff;
    padding: 48px 0;
}

/* ===== CADR / HOW IT WORKS ===== */
.section.cadr {
    background: #ffffff;
    padding: 72px 0 64px;
    color: #111;
}

.cadr__container {
    display: grid;
    gap: 36px;
}

.how-it-works__header {
    text-align: center;
    display: grid;
    gap: 12px;
}

.hiw-rows {
    display: grid;
    gap: 64px;
}

.hiw-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.hiw-row--text-left {
    margin-top: 8px;
}

.hiw-col {
    display: grid;
    gap: 12px;
}

.hiw-title {
    margin: 0;
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.25;
    font-weight: 600;
}

.hiw-text {
    margin: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 16px;
    line-height: 1.6;
}

.hiw-media {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f4f5;
}

.hiw-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cadr-wrap {
    display: grid;
    gap: 16px;
    justify-items: center;
}

.cadr-card {
    width: min(860px, 100%);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 28px;
    display: grid;
    gap: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.cadr-block-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
}

.cadr-block-sub {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

.cadr-metric-row {
    display: grid;
    grid-template-columns: minmax(190px, 1.6fr) minmax(220px, 1fr) 90px;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
}

.cadr-metric-row:first-of-type {
    margin-top: 0;
}

.cadr-metric-row.is-dim {
    color: rgba(0, 0, 0, 0.45);
}

.cadr-metric-name {
    font-weight: 600;
}

.cadr-metric-label {
    white-space: nowrap;
}

.cadr-metric-name.is-brill {
    color: #111;
}

.cadr-bar {
    height: 10px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.cadr-fill {
    height: 100%;
    border-radius: inherit;
}

.cadr-fill.is-brill {
    background: linear-gradient(90deg, #0b63ce 0%, #22c55e 100%);
}

.cadr-fill.is-portable {
    background: rgba(0, 0, 0, 0.25);
}

.cadr-metric-note {
    min-width: 90px;
    text-align: left;
}

.cadr-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 0.75);
}

.cadr-sep {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 4px 0;
}

.cadr-block-cycles {
    display: grid;
    gap: 12px;
}

.cadr-cycles-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
}

.cadr-cycles-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(0, 0, 0, 0.55);
}

.cadr-cycles-value {
    margin-top: 6px;
    font-size: 28px;
    font-weight: 600;
}

.cadr-cycles-value.is-brill {
    color: #0f766e;
}

.cadr-note {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
    text-align: center;
    line-height: 1.5;
}

.cadr__closing {
    margin: 0;
    text-align: center;
}

.benefits__container {
    display: block;
}

.benefits__header {
    text-align: center;
    display: grid;
    gap: 10px;
    margin-bottom: 36px;
    color: #111;
}

.benefits__desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 0.2fr));
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    justify-items: center;
}

.benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    text-align: center;
    padding: 14px 10px;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    border-radius: 10px;
    transition: background-color 0.18s ease;
    cursor: pointer;
}

.benefits__item:hover {
    background: #f1f2f4;
}

.benefits__icon {
    width: auto;
    height: 88px;
    max-width: 70%;
    margin: 0 auto;
    display: block;
    filter: brightness(0);
    object-fit: contain;
}

.benefits__icon--wide {
    height: 88px;
    max-width: 78%;
}

.benefits__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 600;
    color: #000000;
    min-height: 64px;
}

.benefits__text br {
    display: block;
}

.benefits__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.45);
    text-decoration: none;
    transition: color 0.18s ease;
}

.benefits__link-text {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.benefits__link-icon {
    text-decoration: none;
}

.benefits__link-icon {
    font-size: 14px;
    line-height: 1;
}

.benefits__item:hover .benefits__link {
    color: #000000;
}

/* ===== GALLERY ===== */
.section.gallery {
    background: #ffffff;
    padding: 64px 0;
}

.gallery__container {
    display: block;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.gallery-card {
    position: relative;
    margin: 0;
    padding: 50px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    background: #f4f4f4;
    box-shadow: 0 10px 30px rgba(8, 50, 100, 0.06);
    overflow: hidden;
}

.gallery-card__content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.gallery-card__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.gallery-card__title h3 {
    margin: 0;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.12;
    font-weight: 600;
    color: #000000;
}

.gallery-card__icon {
    width: 32px;
    height: 32px;
    display: block;
}

.gallery-card__subtitle {
    margin: 0 0 12px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    line-height: 1.3;
}

.gallery-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 21px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0);
    background: #0071e3;
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: transform 0.12s ease, background 0.12s ease;
}

.gallery-card__button:hover {
    transform: translateY(-1px);
    background: #0077ed;
    color: #ffffff;
}

.gallery-card__button--ghost {
    background: transparent;
    color: #2997ff;
    border-color: #2997ff;
}

.gallery-card__image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.popup {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 80;
}

.popup[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.popup.is-closing {
    opacity: 0;
    pointer-events: none;
}

.hidden {
    display: none;
}

.popup-inner {
    position: relative;
    width: min(520px, calc(100% - 32px));
    border-radius: 16px;
    padding: 36px 32px 30px;
    background: radial-gradient(circle at 50% 20%, #023c68 0%, #131c55 65%, #0b1435 100%);
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(6px);
    opacity: 0;
    animation: tv-on 0.6s ease forwards;
    text-align: center;
}

.popup[aria-hidden="false"] .popup-inner {
    transform: translateY(0);
    opacity: 1;
}

.popup.is-closing .popup-inner {
    transform: translateY(6px);
    opacity: 0;
    animation: tv-off 0.6s ease forwards;
}

@keyframes tv-on {
    0% {
        transform: scaleX(0) scaleY(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1) scaleY(0.02);
        opacity: 1;
    }
    100% {
        transform: scaleX(1) scaleY(1);
        opacity: 1;
    }
}

@keyframes tv-off {
    0% {
        transform: scaleX(1) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1) scaleY(0.02);
        opacity: 1;
    }
    100% {
        transform: scaleX(0) scaleY(0);
        opacity: 0;
    }
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.08);
}

.popup-title {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 600;
}

.popup-avatar {
    width: 94px;
    height: 94px;
    border-radius: 999px;
    background: #ffffff;
    margin: 8px auto 16px;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.popup-avatar img {
    height: 56px;
    display: block;
}

.popup-text {
    margin: 0 0 22px;
    font-size: 16px;
    color: #ffffff;
}

.popup-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.popup-action {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    text-align: center;
}

.popup-action:hover {
    transform: translateY(-1px);
    background: #ffffff;
    color: #111111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.popup-action img {
    width: 18px;
    height: 18px;
    display: block;
    justify-self: center;
}

.popup-action__label {
    justify-self: center;
}

.popup-inner--benefit {
    width: min(920px, calc(100% - 32px));
    background: #ffffff;
    color: #111111;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.popup-inner--benefit .popup-close {
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    z-index: 4;
}

.popup-inner--benefit .popup-close:hover {
    background: rgba(0, 0, 0, 0.08);
}

.benefit-popup__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.benefit-modal {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas: "content media";
    border-radius: inherit;
    overflow: hidden;
    margin: -36px -32px -30px;
    background: #ffffff;
    min-height: 100%;
}

.benefit-modal__content {
    grid-area: content;
    padding: 34px 36px 32px;
    display: grid;
    gap: 16px;
    align-content: center;
}

.benefit-modal__media {
    grid-area: media;
    background: #eef1f3;
    aspect-ratio: 3 / 4;
    min-height: 0;
}

.benefit-modal__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.benefit-popup__media {
    min-height: 260px;
    background: #f3f4f5;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.benefit-popup__content {
    display: grid;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.benefit-popup__content > :not(.benefit-popup__bg) {
    position: relative;
    z-index: 1;
}

.benefit-popup__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    filter: grayscale(1) brightness(0);
    pointer-events: none;
    z-index: 0;
}

.benefit-popup__content p {
    margin: 0;
}

.benefit-popup__content ul {
    margin: 4px 0 0;
    padding-left: 16px;
}

.benefit-popup__content li {
    margin: 4px 0;
}

.benefit-popup__text {
    display: grid;
    gap: 0;
}

.benefit-popup__text ul {
    margin-top: 0;
}

.benefit-popup__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .benefit-popup__grid {
        grid-template-columns: 1fr;
    }

    .benefit-modal {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "content";
        margin: -36px -32px -30px;
    }

    .benefit-modal__content {
        padding: 24px;
    }

    .benefit-modal__media {
        min-height: 220px;
    }
}


/* ===== POSTER CAROUSEL ===== */
.section.poster-carousel {
    background: #ffffff;
    padding: 24px 0 56px;
    overflow: hidden;
}

.poster-carousel__viewport {
    overflow: visible;
    position: relative;
}

.poster-carousel__track {
    display: flex;
    align-items: center;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.poster-carousel__item {
    flex: 0 0 auto;
    width: clamp(280px, 90vw, 1120px);
    margin: 5px;
    overflow: hidden;
    background: transparent;
    border: 0;
    opacity: 0.55;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.poster-carousel__item.is-active {
    opacity: 1;
}

.poster-carousel__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}

.poster-carousel__caption {
    padding: 16px 4px 20px;
    color: #111;
}

.poster-carousel__caption h3 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.poster-carousel__caption p {
    margin: 0 0 12px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    line-height: 1.5;
}

.poster-carousel__dots {
    display: flex;
    justify-content: center;
    gap: clamp(6px, 1.6vw, 10px);
    margin: 8px 0 0;
    align-items: center;
}

.poster-carousel__dot {
    width: clamp(6px, 1.6vw, 8px);
    height: clamp(6px, 1.6vw, 8px);
    border-radius: 50%;
    border: 0;
    background: transparent url('../images/photos/icons/dot.svg') center / contain no-repeat;
    cursor: pointer;
    opacity: 0.35;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.poster-carousel__dot.is-active {
    width: clamp(8px, 2vw, 10px);
    height: clamp(8px, 2vw, 10px);
    opacity: 1;
    transform: scale(1.2);
}

.poster-carousel__media[data-src="mobile"] {
    display: none;
}

/* ===== COLLABORATION ===== */
.section.collaboration {
    background: #ffffff;
    padding: 32px 0 72px;
}

.collaboration__header {
    text-align: center;
    margin-bottom: 24px;
}

.collaboration__body {
    overflow: hidden;
}

.collaboration__viewport {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.collaboration__track {
    display: flex;
    align-items: center;
    gap: 12px;
    will-change: transform;
}

.collaboration__item {
    position: relative;
    flex: 0 0 auto;
    width: clamp(220px, 34vw, 320px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
}

.collaboration__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.25s ease;
}

.collaboration__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
    border-radius: 12px;
}

.collaboration__overlay span {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #111;
    font-weight: 600;
    font-size: 14px;
}

.collaboration__item:hover .collaboration__overlay,
.collaboration__item:focus-within .collaboration__overlay {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.collaboration__item:hover .collaboration__media {
    transform: scale(1.02);
}

@media (max-width: 700px) {
    .collaboration__item {
        width: clamp(200px, 70vw, 320px);
    }
}

@media (max-width: 700px) {
    .poster-carousel__item {
        width: clamp(240px, 85vw, 420px);
    }

    .poster-carousel__media {
        aspect-ratio: 3 / 4;
    }

    .poster-carousel__media[data-src="desktop"] {
        display: none;
    }

    .poster-carousel__media[data-src="mobile"] {
        display: block;
    }
}

@media (max-width: 960px) {
    .section.cadr {
        padding: 60px 0 52px;
    }

    .cadr-card {
        padding: 24px;
    }

    .cadr-metric-row {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "label label"
            "bar note";
        gap: 10px;
    }

    .cadr-metric-note {
        grid-area: note;
        text-align: left;
        min-width: auto;
    }

    .cadr-metric-label {
        grid-area: label;
    }

    .cadr-bar {
        grid-area: bar;
    }

    .hiw-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hiw-col--media {
        order: 1;
    }

    .hiw-col--text {
        order: 2;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        padding: 30px 0 0;
    }

    .gallery-card__image {
        max-height: 100%;
    }

    .section.benefits {
        padding: 42px 0;
    }

    .benefits__header {
        margin-bottom: 28px;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .section.cadr {
        padding: 52px 0 44px;
    }

    .cadr__container {
        gap: 28px;
    }

    .cadr-card {
        padding: 20px;
        border-radius: 14px;
    }

    .cadr-block-title {
        font-size: 12px;
    }

    .cadr-cycles-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .hiw-rows {
        gap: 44px;
    }

    .hiw-row--text-left {
        margin-top: 0;
    }

    .hiw-title {
        font-size: 20px;
    }

    .hiw-text {
        font-size: 15px;
    }

    .hiw-media {
        border-radius: 14px;
    }

    .section.gallery {
        padding: 52px 0;
    }

    .gallery-card__title h3 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .gallery-card__subtitle {
        font-size: 16px;
    }

    .gallery-card__image {
        height: auto;
        max-height: 100%;
    }

    .section.poster-carousel {
        padding: 24px 0 48px;
    }

    .section.benefits {
        padding: 36px 0;
    }

    .benefits__grid {
        gap: 10px;
    }

    .benefits__item {
        padding: 12px 8px;
        max-width: 168px;
    }

    .benefits__icon,
    .benefits__icon--wide {
        height: 76px;
    }

    .benefits__text {
        font-size: 14px;
        min-height: 64px;
    }
}

/* FAQ – Framer exact match */
.section.faq {
    background: #ffffff;
    padding: 120px 0 120px;
    color: #111;
    font-family: inherit;
    font-weight: inherit;
}

.section.faq .faq__container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.section.faq .faq__head {
    text-align: center;
}

.section.faq .faq__title {
    margin: 0;
    font-size: 42px;
    line-height: 1.05;
    color: #111;
    font-weight: inherit;
}

.section.faq .faq__group {
    margin: 0;
}

.section.faq .faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section.faq .faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.section.faq .faq__button {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.section.faq .faq__question {
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: #111;
    transition: opacity 0.18s ease;
}

.section.faq .faq__button:hover .faq__question {
    opacity: 0.92;
}

.section.faq .faq__button:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.25);
    outline-offset: 6px;
}

.section.faq .faq__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    opacity: 0.9;
    position: relative;
}

.section.faq .faq__icon::before,
.section.faq .faq__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 2px;
    height: 16px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.section.faq .faq__icon::after {
    transform: rotate(90deg);
}

.section.faq .faq__item.is-open .faq__icon::after {
    opacity: 0;
}

.section.faq .faq__item.is-open .faq__icon::before {
    transform: rotate(90deg);
}

.section.faq .faq__panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.26s ease, opacity 0.22s ease;
}

.section.faq .faq__item.is-open .faq__panel {
    opacity: 1;
}

.section.faq .faq__answer {
    padding: 0 0 18px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    max-width: 640px;
}

.section.faq strong {
    font-weight: inherit;
}

@media (max-width: 980px) {
    .section.faq {
        padding: 96px 0 104px;
    }

    .section.faq .faq__container {
        padding: 0 20px;
        gap: 56px;
    }
}

/* Reseller section */
.reseller__section {
    background: #0c0c0c;
    color: #f7f7f7;
    padding: 110px 0 120px;
}

.reseller--home.reseller__section {
    background: #f3f4f5;
    color: #111;
}

.reseller__container {
    /* width: min(1200px, calc(100% - 72px)); */
    margin: 0 var(--hero-safe-x);
    display: grid;
    gap: 32px;
    max-width: 100%;
}

.reseller__header {
    text-align: center;
    display: grid;
    gap: 12px;
}

.reseller__mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0 2px;
    color: inherit;
}

.reseller__mobile-brand {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.reseller__mobile-button {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-size: 16px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.reseller__title {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    color: inherit;
    font-weight: inherit;
}

.reseller__subtitle {
    margin: 0 0 12px;
    color: rgba(0, 0, 0, 0.68);
    font-size: 16px;
    line-height: 1.6;
}

.reseller__controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
    position: relative;
    z-index: 20;
}

.reseller__control {
    display: grid;
    gap: 8px;
}

.reseller__control--grow {
    grid-column: span 1;
}

.reseller__label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.62);
}

.reseller__label--hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reseller__select,
.reseller__search {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    color: #111;
    font-size: 15px;
    line-height: 1.4;
}

.reseller__control--grow {
    position: relative;
}

.reseller__search {
    padding-left: 40px;
}

.reseller__control--grow::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    opacity: 0.55;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='20' y1='20' x2='16.5' y2='16.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

.reseller__select--native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.reseller__dropdown {
    position: relative;
}

.reseller__dropdown-trigger {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    color: #111;
    font-size: 15px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.18s ease;
}

.reseller__dropdown-trigger::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(0, 0, 0, 0.6);
    transform: rotate(45deg);
    margin-left: 12px;
}

.reseller__dropdown.is-open .reseller__dropdown-trigger::after {
    transform: rotate(-135deg);
}

.reseller__dropdown-trigger:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.28);
    outline-offset: 2px;
}

.reseller__dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    display: none;
    max-height: 260px;
    overflow: auto;
    z-index: 100;
}

.reseller__dropdown.is-open .reseller__dropdown-menu {
    display: block;
}

.reseller__dropdown-option {
    width: 100%;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
    color: #111;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.reseller__dropdown-option[aria-selected="true"] {
    background-color: rgba(0, 0, 0, 0.06);
}

.reseller__dropdown-option:hover,
.reseller__dropdown-option:focus-visible {
    background-color: rgba(0, 0, 0, 0.08);
    outline: none;
}

.reseller__dropdown.is-disabled .reseller__dropdown-trigger {
    color: rgba(0, 0, 0, 0.38);
    background: #f6f6f6;
    cursor: not-allowed;
}

.reseller__select:focus-visible,
.reseller__search:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.28);
    outline-offset: 2px;
}

.reseller__search::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.reseller__split {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    grid-template-areas: "panel map";
    gap: 28px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.reseller__map-shell,
.reseller__cards-shell {
    width: 100%;
    max-width: 100%;
}

.reseller__cards-shell {
    grid-area: panel;
    position: relative;
    z-index: 1;
}

.reseller__map-shell {
    grid-area: map;
    position: relative;
    z-index: 1;
}

.reseller__panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.reseller__list-wrap {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 560px;
    overflow: auto;
    padding: 12px 12px 16px;
}

.reseller__list {
    display: grid;
    gap: 12px;
    width: 100%;
    align-content: start;
    align-items: start;
}

.reseller__empty {
    margin: 0;
    padding: 12px 0;
    color: rgba(247, 247, 247, 0.7);
    font-size: 15px;
}

.reseller__card {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 10px;
    border: none;
    background-color: #f7f7f7;
    /* box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08); */
    transition: background-color 0.18s ease;
    cursor: pointer;
    position: relative;
}

.reseller__card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: rgba(223, 227, 232, var(--divider-opacity, 1));
}

.reseller__card.is-divider-dim {
    --divider-opacity: 0.4;
}

.reseller-list--single {
    padding-top: 0;
}

.reseller-list--single .reseller__card::after {
    content: none !important;
}

.reseller-list--single .reseller__card {
    width: 100%;
    max-width: 100%;
}

.reseller__card:hover {
    background-color: #eeeff2;
}

.reseller__card.is-active {
    background-color: #eeeff2;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}



.reseller--home .reseller__card.is-active {
    background-color: #eeeff2;
    border-color: rgba(0, 0, 0, 0.25);
}

.reseller__card-name {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #0f172a;
    font-weight: 600;
}

.reseller__card-meta {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.48);
}

.reseller__card-contact,
.reseller__card-address {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.68);
}

.reseller__card-address {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dealer-detail-row{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.dealer-detail-icon{
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0.85;
}

.dealer-detail-icon img,
.dealer-detail-icon svg{
    width: 22px;
    height: 22px;
    display: block;
}

.dealer-detail-text{
    flex: 1;
    min-width: 0;
    line-height: 1.35;
    word-break: break-word;
}

.dealer-detail-row--region {
    margin-top: 0;
}

.dealer-detail-row--region .dealer-detail-text {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 500;
    line-height: 1.2;
}

.dealer-card-actions {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.dealer-card-link {
    font-size: 14px;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dealer-card-link img {
    width: 16px;
    height: 16px;
    display: block;
}

.dealer-card-link:hover {
    text-decoration: underline;
}

.dealer-card-button {
    width: 100%;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: transparent;
    color: #111;
    font-size: 14px;
    cursor: pointer;
}

.dealer-detail-row--address {
    cursor: pointer;
    transition: background-color 0.18s ease;
    padding: 4px 6px;
    margin-left: -6px;
    margin-right: -6px;
    border-radius: 10px;
}

.dealer-detail-row--address:hover {
    background: #e8eaed;
}

@media (hover: hover) {
    .reseller__card.is-active {
        background-color: #eeeff2;
    }
}

.reseller__map-surface {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.reseller__map {
    position: relative;
    min-height: 560px;
    height: 560px;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: #fff;
    box-shadow: none;
    z-index: 0;
}

.reseller__map-layer {
    position: absolute;
    inset: 0;
    background: transparent;
}

.reseller__map .map-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    background: linear-gradient(to bottom, rgba(22, 22, 22, 0.25), rgba(22, 22, 22, 0.45));
    color: #fff;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: auto;
    z-index: 1;
}

.reseller__map .map-overlay span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.35);
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.reseller__map .map-overlay.is-hidden {
    display: none;
}

.reseller__map .map-lock-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.reseller__map .map-lock-btn.is-hidden {
    display: none;
}

/* Leaflet marker custom tint */
.reseller__map .leaflet-container {
    background: transparent;
    z-index: 0;
}

.reseller__map .leaflet-popup-content-wrapper,
.reseller__map .leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}

.reseller__map .leaflet-popup-content {
    margin: 10px 12px;
}

.reseller__map .leaflet-popup-close-button {
    color: #0f172a;
}

.reseller__map .brill-popup {
    font-size: 13px;
    line-height: 1.4;
    color: #0f172a;
}

.reseller__map .brill-popup strong {
    display: block;
    font-weight: 600;
}

.reseller__map .gmaps-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #111;
    font-size: 12px;
    text-decoration: none;
}

.reseller__map .gmaps-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.reseller__map .leaflet-bottom.leaflet-right {
    margin: 16px;
}

.reseller__map .leaflet-control-zoomstack {
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.reseller__map .leaflet-control-zoomstack .zoomstack__btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    text-decoration: none;
    border: 0;
    margin: 0;
    padding: 0;
}

.reseller__map .leaflet-control-zoomstack .zoomstack__btn + .zoomstack__btn {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.reseller__map .leaflet-control-zoomstack .zoomstack__btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.reseller__map .leaflet-control-zoomstack .zoomstack__reset svg,
.reseller__map .leaflet-control-zoomstack .zoomstack__reset img {
    width: 18px;
    height: 18px;
    display: block;
}


@media (max-width: 1024px) {
    .reseller__split {
        grid-template-columns: 360px minmax(0, 1fr);
        gap: 24px;
    }

    .reseller__map {
        min-height: 480px;
        height: 480px;
    }

    .reseller__list-wrap {
        max-height: 480px;
    }
}

@media (min-width: 1280px) {
    /* .reseller__container {
        width: min(1240px, calc(100% - 72px));
    } */

    .reseller__split {
        grid-template-columns: 460px minmax(0, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .reseller__section {
        padding: 80px 0 90px;
    }

    .reseller__container {
        width: calc(100% - 36px);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .reseller__title {
        font-size: 34px;
    }

    .reseller__controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        order: 2;
    }

    .reseller__control--grow {
        grid-column: 1 / -1;
    }

    .reseller__split {
        display: contents;
    }

    .reseller__map-shell {
        order: 1;
        max-width: 100%;
        overflow-x: hidden;
    }

    .reseller__cards-shell {
        order: 3;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .reseller__panel {
        background: transparent;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .reseller__map {
        width: 100%;
        height: clamp(260px, 45vh, 420px);
        min-height: 260px;
    }

    .reseller__list-wrap {
        max-height: none;
        overflow: visible;
        padding: 12px 0 16px;
        max-width: 100%;
    }

    .reseller__list {
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 8%;
        margin: 0;
        box-sizing: border-box;
        height: 275px;
    }

    .reseller__card {
        flex: 0 0 84%;
        max-width: 84%;
        min-width: 84%;
        scroll-snap-align: center;
    }

    .reseller__cards-shell.is-single .reseller__list {
        scroll-snap-type: none;
        justify-content: center;
        padding: 0;
    }

    .reseller__cards-shell.is-single .reseller__card {
        flex: 0 0 auto;
        width: min(520px, 92%);
        max-width: min(520px, 92%);
        min-width: min(520px, 92%);
    }

    .reseller__cards-shell.is-two .reseller__list {
        padding: 0 9%;
    }

    .reseller__cards-shell.is-two .reseller__card {
        flex: 0 0 86%;
        max-width: 86%;
        min-width: 86%;
    }

    .reseller__card.is-active {
        background-color: #fff !important;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 768px) {
    .section.faq {
        padding: 80px 0 90px;
    }

    .section.faq .faq__title {
        font-size: 34px;
        line-height: 1.1;
    }

    .section.faq .faq__question {
        font-size: 19px;
    }

    .section.faq .faq__answer {
        font-size: 15px;
    }
}

/* Home-specific wrapper to reduce height */
.reseller--home .reseller__card {
    background-color: #ffffff;
}

.reseller--home .reseller__card-address {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    text-overflow: initial;
}

@media (hover: hover) {
    .reseller--home .reseller__card:hover {
        background-color: #eeeff2;
    }
}

/* Instagram CTA */
.section.ig-cta {
    background: #f3f4f5;
    color: #111;
    padding: 50px;
    /* border: 1px solid #f3f4f5; */
}

.section.ig-cta .container{
    width: auto;
}

.ig-cta__header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.ig-cta__title {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.ig-cta__title-link {
    color: inherit;
    opacity: 1;
    transition: opacity 0.25s ease;
    cursor: pointer;
}

.ig-cta__title-link:hover {
    opacity: 0.4;
}

.ig-cta__subtitle {
    margin: 0;
    color: rgba(17, 17, 17, 0.55);
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.ig-cta__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 8px 0 0;
}

.ig-cta__item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.ig-cta__media {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.ig-cta__media video,
video.ig-cta__media {
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
}

.ig-cta__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ig-cta__icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.ig-cta__icon img {
    width: 22px;
    height: 22px;
    display: block;
    filter: invert(1) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.ig-cta__item:hover::after {
    opacity: 1;
}

.ig-cta__item:hover .ig-cta__icon {
    opacity: 1;
    transform: scale(1);
}

.ig-cta__item:hover .ig-cta__media {
    filter: brightness(0.9);
}

@media (max-width: 1024px) {
    .ig-cta__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section.ig-cta {
        padding: 25px;
    }

    .ig-cta__header {
        margin-bottom: 28px;
    }

    .ig-cta__grid {
        gap: 10px;
    }
}

/* Testimonials */
.section.testimonials {
    background: #f3f4f5;
    color: #111;
    padding: 120px 0 120px;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials__title {
    margin: 0;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.testimonials__carousel {
    display: grid;
    gap: 24px;
    --testimonial-card-width: 320px;
    --testimonial-card-gap: 24px;
}

.testimonials__viewport {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.testimonials__track {
    display: flex;
    gap: var(--testimonial-card-gap);
    align-items: stretch;
    will-change: transform;
}

.testimonials__card {
    flex: 0 0 var(--testimonial-card-width);
    background: #f3f4f5;
    border-radius: 18px;
    padding: 26px 28px;
    display: grid;
    gap: 14px;
    opacity: 0.45;
    transform: scale(0.98);
    transition: transform 0.4s ease, opacity 0.4s ease, background 0.4s ease;
    cursor: pointer;
}

.testimonials__card.is-current {
    opacity: 1;
    transform: scale(1);
}

.testimonials__buyer {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.testimonials__comment {
    margin: 0;
    color: rgba(17, 17, 17, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.testimonials__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.testimonials__platform {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.22em;
}

.testimonials__platform-link {
    color: rgba(17, 17, 17, 0.4);
    transition: color 0.25s ease;
}

.testimonials__platform-link:hover {
    color: rgba(17, 17, 17, 0.8);
}

.platform-logo {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.testimonials__stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.testimonials__stars img {
    width: 12px;
    height: 12px;
}

.testimonials__product {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(17, 17, 17, 0.4);
    cursor: pointer;
    transition: color 0.25s ease;
}

.testimonials__product img {
    width: 44px;
    height: 44px;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.testimonials__product span {
    transition: transform 0.25s ease;
    transform-origin: left center;
}

.testimonials__product:hover {
    color: rgba(17, 17, 17, 0.8);
}

.testimonials__product:hover img,
.testimonials__product:hover span {
    transform: scale(1.05);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: transparent url('../images/photos/icons/dot.svg') center / contain no-repeat;
    cursor: pointer;
    opacity: 0.35;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonials__dot.is-active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 980px) {
    .testimonials__carousel {
        --testimonial-card-width: 300px;
    }
}

@media (max-width: 768px) {
    .section.testimonials {
        padding: 90px 0 100px;
    }

    .testimonials__header {
        margin-bottom: 32px;
    }

    .testimonials__track {
        gap: 16px;
    }

    .testimonials__card {
        flex: 0 0 calc(100% - 48px);
        opacity: 1;
        transform: scale(1);
        padding: 24px;
    }

    .testimonials__carousel {
        --testimonial-card-gap: 16px;
    }

    .testimonials__viewport {
        padding: 0 24px;
    }

    .testimonials__comment {
        min-height: 0;
    }
}

/* Phone subscribe section */
.section.subscribe {
    padding: 0;
    background: #0d0d0d;
}

.section.subscribe .container {
    width: 100%;
    margin: 0;
}

.subscribe__card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: #111;
    min-height: 100vh;
}

.subscribe__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.subscribe__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.subscribe__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 6vw, 64px);
    max-width: 520px;
    z-index: 2;
    isolation: isolate;
}

.subscribe__content::before {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    left: -140px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0.35) 55%,
        rgba(0, 0, 0, 0) 75%
    );
    filter: blur(65px);
    z-index: 0;
    pointer-events: none;
}

.subscribe__content > * {
    position: relative;
    z-index: 1;
}

.subscribe__eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.subscribe__title {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    font-weight: 500;
}

.subscribe__text {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 420px;
}

.subscribe__form {
    margin: 0;
}

.subscribe__fields {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 360px;
}

.subscribe__input {
    flex: 1;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 16px;
    padding: 6px 0;
    outline: none;
    min-width: 0;
}

.subscribe__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe__submit {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.subscribe__submit:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.subscribe__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.subscribe__thanks {
    margin: 16px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 980px) {
    .subscribe__content {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .section.subscribe {
        padding: 0;
    }

    .subscribe__content {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 24px;
        max-width: none;
        width: 100%;
    }

    .subscribe__content::before {
        width: 760px;
        height: 760px;
        left: -200px;
        filter: blur(80px);
    }

    .subscribe__card {
        min-height: auto;
        aspect-ratio: 3 / 4;
    }

    .subscribe__media {
        position: absolute;
        inset: 0;
    }

    .subscribe__fields {
        max-width: 100%;
        gap: 10px;
    }

    .subscribe__text {
        max-width: 320px;
    }

    .subscribe__submit {
        padding: 8px 14px;
    }
}
