/* sora-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/Sora/sora-v17-latin-300.woff2') format('woff2');
}

/* sora-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/Sora/sora-v17-latin-regular.woff2') format('woff2');
}

/* sora-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/Sora/sora-v17-latin-500.woff2') format('woff2');
}

/* sora-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/Sora/sora-v17-latin-600.woff2') format('woff2');
}

/* sora-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/Sora/sora-v17-latin-700.woff2') format('woff2');
}

/* sora-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 800;
    src: url('assets/fonts/Sora/sora-v17-latin-800.woff2') format('woff2');
}

/* open-sans-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/OpenSans/open-sans-v44-latin-300.woff2') format('woff2');
}

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/OpenSans/open-sans-v44-latin-regular.woff2') format('woff2');
}

/* open-sans-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/OpenSans/open-sans-v44-latin-600.woff2') format('woff2');
}

/* open-sans-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/OpenSans/open-sans-v44-latin-700.woff2') format('woff2');
}

/* open-sans-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: url('assets/fonts/OpenSans/open-sans-v44-latin-800.woff2') format('woff2');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --vh: 100dvh;
    --app-height: 100lvh;
    --visible-height: 100dvh;
    --bg: #050505;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container: 1320px;
    --header-height: 90px;
    --container-width: 1440px;
    --container-padding: 40px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: transparent;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior-x: none;
}

@supports (height: 100dvh) {
    :root {
        --vh: 100dvh;
        --visible-height: 100dvh;
    }
}

@supports (height: 100lvh) {
    :root {
        --app-height: 100lvh;
    }
}

body {
    font-family: 'Sora', sans-serif;
    background: transparent;
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    touch-action: pan-y;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    border: 0;
    background: transparent;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* INTRO */
.intro {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
            radial-gradient(
                    80% 60% at 50% 0%,
                    rgba(255, 255, 255, 0.10),
                    rgba(255, 255, 255, 0.04) 35%,
                    transparent 70%
            ),
            linear-gradient(
                    180deg,
                    #6b6b6b 0%,
                    #2f2f2f 40%,
                    #0d0d0d 70%,
                    #000000 100%
            );
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: transform 0.9s var(--ease), opacity 0.35s ease, visibility 0s linear 0.9s;
    will-change: transform, opacity;
}

.intro-logo {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.45s ease, transform 0.45s var(--ease);
    will-change: transform, opacity;
}

.intro.is-logo-hidden .intro-logo {
    opacity: 0;
}

.intro.is-hidden {
    transform: translateY(-100%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    height: var(--header-height);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.8s var(--ease), visibility 0s linear 0.8s;
    will-change: transform;
}

.site-header.is-visible {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.8s var(--ease), visibility 0s linear 0s;
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #000;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    transition: opacity 0.25s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* LANGUAGE SWITCHER */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
    cursor: pointer;
    padding: 0;
    width: 45px;
}

.arrow {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg);
    margin-top: -6px;
    transition: transform 0.2s ease, margin-top 0.2s ease;
}

.language-switcher.is-open .arrow {
    transform: rotate(225deg);
    margin-top: 3px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: -18px;
    min-width: 72px;
    padding: 6px 0;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    opacity: 0;
    display: block;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-switcher.is-open .lang-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-dropdown a {
    display: block;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
    text-align: left;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* MAIN / PANELS */
main {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    background: transparent;
}

.panel {
    position: relative;
    height: 485px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
}

.panel.panel--4,
.panel.panel--5 {
    height: auto;
}

.panel__inner {
    position: relative;
    width: min(100%, 1200px);
    max-width: 100%;
    flex: 1;
    text-align: center;
    z-index: 1;
    padding: 32px 0 0 0;
}

.panel--hero {
    position: relative;
    padding: 0;
    height: var(--vh);
    min-height: var(--vh);
    background: #000;
    overflow: visible;
}

.panel--hero::before {
    display: none;
}

.panel--hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * env(safe-area-inset-bottom));
    height: env(safe-area-inset-bottom);
    background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.44) 100%),
            radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.10), transparent 42%),
            #000;
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.44) 100%),
            radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.10), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: calc(max(24px, env(safe-area-inset-top)) + var(--header-height));
    flex: none !important;
}

h1,
h2 {
    word-break: break-word;
}

h1 {
    color: #FFF;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

p {
    color: #fff;
    font-family: Sora, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 10px;
}

.panel__inner.hero-content h2 {
    color: #FFF;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.panel__inner.hero-content h2 span {
    font-weight: 300;
    font-style: italic;
}

.panel--2 {
    background: linear-gradient(180deg, #1e293b, #0f172a);
}

.panel--3 {
    background: linear-gradient(180deg, #0b1020, #1d4ed8);
}

.panel--4 {
    background: #ffffff;
}

.panel--5 {
    background: linear-gradient(180deg, #ffffff 0%, #E4E4E6 100%);
}

.panel__inner h2 {
    color: #000;
    font-family: Sora, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 40px;
    text-align: left;
}

.panel__inner p {
    color: #000;
    font-family: Sora, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    max-width: 600px;
    margin-bottom: 0;
    text-align: left;
}

.panel__inner ul.brands {
    display: flex;
    max-width: 920px;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
}

.panel__inner ul.brands li {
    flex: 1;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.70);
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
}

.panel__inner ul.brands li:first-child {
    border-left: 1px solid #D9D9D9;
}

.prods1,
.prods2,
.prods3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.prods1.bg-1 {
    background-image: url('assets/images/desktop/webp/ninja.webp');
    background-color: #E7E7E7;
}

.prods1.bg-2 {
    background-image: url('assets/images/desktop/webp/breville.webp');
    background-color: #DFDDDB;
}

.prods1.bg-3 {
    background-image: url('assets/images/desktop/webp/instantpot.webp');
    background-color: #DAD2CC;
}

.prods2.bg-1 {
    background-image: url('assets/images/desktop/webp/dyson.webp');
    background-color: #C5CCD4;
}

.prods2.bg-2 {
    background-image: url('assets/images/desktop/webp/dyson1.webp');
    background-color: #E3E5E4;
}

.prods2.bg-3 {
    background-image: url('assets/images/desktop/webp/babyliss.webp');
    background-color: #F0DAD3;
}

.prods3.bg-1 {
    background-image: url('assets/images/desktop/webp/nikon.webp');
    background-color: #D9D3CC;
}

.prods3.bg-2 {
    background-image: url('assets/images/desktop/webp/drone.webp');
    background-color: #C2D1E3;
}

.prods3.bg-3 {
    background-image: url('assets/images/desktop/webp/action.webp');
    background-color: #BBDAE2;
}

#contact {
    background: #050505 url('assets/images/bg-footer.png') top center no-repeat;
    background-size: cover;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border-bottom: 3px solid #2a68f5;
    margin-bottom: 80px;
}

.stat-card {
    min-height: 220px;
    padding: 34px 38px 36px;
    border-right: 1px solid #d3d3d3;
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card__number {
    color: #2a68f5;
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 10px;
    text-align: left;
}

.stat-card__label {
    color: #000;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: left;
}

.stat-card__text {
    color: #222;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.28;
    max-width: 240px;
    margin: 0;
}

.country-pills {
    display: flex;
    width: 100%;
    gap: 16px;
    justify-content: center;
}

.country-pill {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: #d9d9d9;
    border-radius: 10px;
}

.country-pill img {
    width: 36px;
    height: auto;
    flex-shrink: 0;
    border-radius: 6px;
}

.country-pill span {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

/** contact **/
.panel--6 .panel__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
    min-height: 100%;
    padding: clamp(40px, 10vh, 80px) 0 0 0;

    box-sizing: border-box;
}

.panel--6 .contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.panel--6 .panel__inner .contact-header h2 {
    color: #FFF;
    font-family: Sora;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin: 0;
    text-align: left;
}

.panel--6 .contact-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 70px;
    background: #2f6df6;
    color: #fff;
    text-decoration: none;
    font-family: Sora;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease;
}

.panel--6 .contact-header a:hover {
    background: #3f7bff;
    transform: translateY(-1px);
}

.panel--6 ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px 56px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.panel--6 ul li {
    min-width: 0;
}

.panel--6 ul li h4 {
    color: #5a5a5a;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 10px 0;
}

.panel--6 ul li p span,
.panel--6 ul li p {
    margin: 0;
    color: #FFF;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.panel--6 ul li p span {
    display: block;
}

.panel--6 ul li p a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.panel--6 ul li p a:hover {
    opacity: 0.8;
}

.panel--6 .copy {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 32px;
    padding-top: 12px;
}

.panel--6 .copy a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: 86px;
}

.panel--6 .copy a svg {
    width: 160px;
    height: auto;
    display: block;
}

.panel--6 .copy .copyright {
    justify-self: end;
    color: #5a5a5a;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 16.8px */
}


@media (max-width: 1100px) {

    .panel--6 .contact-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel--6 ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 40px;
    }

    .panel--6 .copy {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .panel--6 .copy a {
        grid-column: 1 / 2;
    }

    .panel--5 .copy .copyright {
        grid-column: 2 / 3;
        align-self: end;
    }
}



@media (min-width: 768px) {
    .chrome-note,
    .dots {
        display: none;
    }
}

@media (min-width: 1080px) {
    .panel__inner ul.brands {
        max-width: 1080px;
    }
}

@media (max-width: 767px) {
    html,
    body {
        overscroll-behavior-y: none;
    }

    html {
        overflow: hidden;
    }

    :root {
        --header-height: 72px;
        --container-padding: 30px;
    }

    main {
        position: relative;
        overflow-x: hidden;
    }

    .panel {
        height: var(--app-height);
        min-height: var(--app-height);
        scroll-margin-top: 0;
    }

    .panel--4,
    .panel--5 {
        height: var(--app-height);
        min-height: var(--app-height);
    }

    .panel__inner {
        padding-top: clamp(70px, 10vh, 15vh);
    }

    .panel__inner.hero-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .panel__inner.hero-content h2 {
        padding: 0 30px;
        font-size: 28px;
        line-height: normal;
    }

    .main-nav {
        display: none;
    }

    .header-inner {
        min-height: var(--header-height);
    }

    .header-right {
        gap: 20px;
    }

    .lang-btn {
        font-size: 14px;
    }

    .lang-dropdown a {
        font-size: 14px;
    }

    .hero-content {
        padding-top: calc(max(20px, env(safe-area-inset-top)) + var(--header-height));
        padding-bottom: env(safe-area-inset-bottom);
    }

    .panel--hero {
        height: var(--app-height);
        min-height: var(--app-height);
    }

    .panel__inner h2 {
        margin-bottom: clamp(10px, 2vh, 20px)
    }

    .panel--4 .panel__inner h2,
    .panel--5 .panel__inner h2 {
        text-align: center;
        margin-bottom: clamp(10px, 2vh, 20px);
    }

    .prods1,
    .prods2,
    .prods3 {
        background-size: 100% auto;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .prods1.bg-1 {
        background-image: url('assets/images/mobile/webp/ninja.webp');
        background-color: #E1E1E0;
    }

    .prods1.bg-2 {
        background-image: url('assets/images/mobile/webp/breville.webp');
        background-color: #C2C2C0;
    }

    .prods1.bg-3 {
        background-image: url('assets/images/mobile/webp/instantpot.webp');
        background-color: #ECE3DF;
    }

    .prods2.bg-1 {
        background-image: url('assets/images/mobile/webp/dyson.webp');
        background-color: #C5CCD4;
    }

    .prods2.bg-2 {
        background-image: url('assets/images/mobile/webp/dyson1.webp');
        background-color: #E3E5E4;
    }

    .prods2.bg-3 {
        background: url('assets/images/mobile/webp/babyliss.webp'), linear-gradient(90deg, #DFC3BC, #C4A9A7);
        background-size: 100% auto;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .prods3.bg-1 {
        background-image: url('assets/images/mobile/webp/nikon.webp');
        background-color: #D9D3CC;
    }

    .prods3.bg-2 {
        background-image: url('assets/images/mobile/webp/drone.webp');
        background-color: #C2D1E3;
    }

    .prods3.bg-3 {
        background-image: url('assets/images/mobile/webp/action.webp');
        background-color: #BBDAE2;
    }

    .panel__inner ul.brands {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        gap: 0;
    }

    .prods3 .panel__inner ul.brands {
        grid-template-columns: repeat(4, 1fr);
    }

    .panel__inner ul.brands li {
        grid-column: span 2;
        min-height: 52px;
        border: 1px solid #D9D9D9;
        background: rgba(255, 255, 255, 0.70);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 10px;
        height: 60px;
    }

    .panel__inner ul.brands li:nth-child(4),
    .panel__inner ul.brands li:nth-child(5) {
        grid-column: span 3;
    }

    .prods3 .panel__inner ul.brands li {
        grid-column: span 2;
    }

    .panel__inner ul.brands li.ninja img { max-height: 25px; }
    .panel__inner ul.brands li.ip img { max-height: 20px; }
    .panel__inner ul.brands li.breville img { max-height: 25px; }
    .panel__inner ul.brands li.cp img { max-height: 35px; }
    .panel__inner ul.brands li.fs img { max-height: 30px; }
    .panel__inner ul.brands li.dyson img { max-height: 34px; }
    .panel__inner ul.brands li.babyliss img { max-height: 24px; }
    .panel__inner ul.brands li.babylisspro img { max-height: 23px; }
    .panel__inner ul.brands li.shark img { max-height: 18px; }
    .panel__inner ul.brands li.aiper img { max-height: 27px; }
    .panel__inner ul.brands li.red img { max-height: 18px; }
    .panel__inner ul.brands li.nikon img { max-height: 26px; }
    .panel__inner ul.brands li.dji img { max-height: 27px; }
    .panel__inner ul.brands li.hasselblad img { max-height: 16px; }

    .prods2.panel .p40 {
        padding-left: 40%;
    }

    .swiper,
    .swiper-wrapper,
    .swiper-slide {
        touch-action: pan-y pan-x;
    }

    .swiper-vision {
        position: relative;
        width: 100%;
        overflow: hidden;
        isolation: isolate;
        padding-bottom: 0;
    }

    .swiper-vision .swiper-slide {
        height: auto;
        -webkit-user-select: none;
        user-select: none;
    }

    .swiper-slide h3 {
        color: #000;
        font-family: Sora, sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
        text-align: left;
        margin-bottom: clamp(5px, 2vh, 20px);
        line-height: 1.2;
        min-height: calc(1.2em * 2);
    }

    .swiper-slide .info-text {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
        margin-top: 5px;
    }

    .swiper-slide .info-text span.number {
        color: #2A68F5;
        font-family: Sora, sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        text-align: left;
        line-height: 1;
    }

    .swiper-slide .info-text span.text {
        color: #000;
        font-family: Sora, sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        text-transform: uppercase;
        text-align: left;
        padding-top: 2px;
    }

    .swiper-slide img {
        width: 100%;
        border-radius: 16px;
    }

    .swiper-vision .swiper-pagination {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid #d3d3d3;
        border-bottom: 1px solid #d3d3d3;
        margin-bottom: 20px;
    }

    .stat-card {
        min-height: 196px;
        padding: 18px 16px 16px;
        border-right: 1px solid #d3d3d3;
        border-bottom: 1px solid #d3d3d3;
    }

    .stat-card:nth-child(2n) {
        border-right: 0;
    }

    .stat-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .stat-card__number {
        font-size: 48px;
        margin-bottom: 8px;
    }

    .stat-card__label {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .stat-card__text {
        font-size: 18px;
        line-height: 1.22;
        max-width: none;
    }

    .country-pills {
        gap: 10px;
    }

    .country-pill {
        padding: 6px 7px;
        gap: 5px;
    }

    .country-pill span {
        font-weight: 300;
        font-size: 12px;
    }

    /* MOBILE FULLPAGE FIX */
    body.is-mobile-fullpage {
        overflow: hidden;
        height: var(--app-height);
        min-height: var(--app-height);
        touch-action: pan-y;
    }

    body.is-mobile-fullpage main {
        position: relative;
        width: 100%;
        min-height: auto;
        height: auto;
        overflow: visible;
        will-change: transform;
        transform: translate3d(0, 0, 0);
    }

    body.is-mobile-fullpage main > .panel {
        height: var(--app-height);
        min-height: var(--app-height);
    }

    body.is-mobile-fullpage .panel {
        position: relative;
    }

    body.is-mobile-fullpage .panel__inner {
        height: 100%;
    }

    body.is-mobile-fullpage .panel--4 .panel__inner,
    body.is-mobile-fullpage .panel--5 .panel__inner {
        display: flex;
        flex-direction: column;
    }

    body.is-mobile-fullpage .swiper-vision {
        flex: 1;
    }

    /** contact **/

    .panel--6 .panel__inner {
        padding: clamp(60px, 10vh, 100px) 16px 24px;
        gap: 72px;
        justify-content: flex-start;
    }

    .panel--6 .contact-header {
        align-items: flex-start;
        gap: 28px;
    }

    .panel--6 .contact-header h2 {
        max-width: 320px;
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .panel--6 .contact-header a {
        min-width: 149px;
        height: 58px;
        padding: 0 26px;
        font-size: 16px;
    }

    .panel--6 ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 24px;
    }

    .panel--6 ul li h4 {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.1;
        letter-spacing: 0.03em;
    }

    .panel--6 ul li p {
        font-size: 16px;
        line-height: 1.4;
    }

    .panel--6 ul li p span {
        margin-top: 2px;
        font-size: 16px;
        line-height: 1.3;
    }

    .panel--6 .copy {
        grid-template-columns: 1fr auto;
        gap: 20px 16px;
        padding-top: 8px;
    }

    .panel--6 .copy a svg {
        width: 125px;
    }

    .panel--6 .copy .copyright {
        font-size: 14px;
    }
}


@media (max-width: 390px) {
    :root {
        --container-padding: 20px;
        --header-height: 64px;
    }

    .panel {
        padding: max(0px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
    }

    .panel__inner.hero-content h2 {
        padding: 0;
        font-size: 28px;
        line-height: normal;
    }

    .panel__inner ul.brands li.ninja img { max-height: 23px; }
    .panel__inner ul.brands li.ip img { max-height: 18px; }
    .panel__inner ul.brands li.breville img { max-height: 21px; }
    .panel__inner ul.brands li.cp img { max-height: 32px; }
    .panel__inner ul.brands li.fs img { max-height: 28px; }
    .panel__inner ul.brands li.dyson img { max-height: 32px; }
    .panel__inner ul.brands li.babyliss img { max-height: 22px; }
    .panel__inner ul.brands li.babylisspro img { max-height: 27px; }
    .panel__inner ul.brands li.shark img { max-height: 18px; }
    .panel__inner ul.brands li.aiper img { max-height: 26px; }
    .panel__inner ul.brands li.red img { max-height: 17px; }
    .panel__inner ul.brands li.nikon img { max-height: 24px; }
    .panel__inner ul.brands li.dji img { max-height: 25px; }
    .panel__inner ul.brands li.hasselblad img { max-height: 14px; }

    .swiper-vision {
        width: 100%;
        overflow: hidden;
    }

    .swiper-vision .swiper-slide {
        height: 100%;
    }

    .swiper-slide h3 {
        line-height: 1.1;
        min-height: calc(1.1em * 2);
    }

    .swiper-slide .info-text {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
    }

    .swiper-slide .info-text span.number {
        font-size: 40px;
    }

    .swiper-slide .info-text span.text {
        font-size: 12px;
        padding-top: 1px;
    }
}

@media (max-width: 370px) {
    :root {
        --container-padding: 20px;
        --header-height: 64px;
    }

    .panel {
        padding: 20px;
    }

    .panel__inner.hero-content h2 {
        padding: 0;
        font-size: 28px;
        line-height: normal;
    }

    .panel__inner ul.brands li.ninja img { max-height: 23px; }
    .panel__inner ul.brands li.ip img { max-height: 18px; }
    .panel__inner ul.brands li.breville img { max-height: 21px; }
    .panel__inner ul.brands li.cp img { max-height: 32px; }
    .panel__inner ul.brands li.fs img { max-height: 28px; }
    .panel__inner ul.brands li.dyson img { max-height: 32px; }
    .panel__inner ul.brands li.babyliss img { max-height: 22px; }
    .panel__inner ul.brands li.babylisspro img { max-height: 27px; }
    .panel__inner ul.brands li.shark img { max-height: 18px; }
    .panel__inner ul.brands li.aiper img { max-height: 26px; }
    .panel__inner ul.brands li.red img { max-height: 17px; }
    .panel__inner ul.brands li.nikon img { max-height: 24px; }
    .panel__inner ul.brands li.dji img { max-height: 25px; }
    .panel__inner ul.brands li.hasselblad img { max-height: 14px; }

    .swiper-vision {
        width: 100%;
        overflow: hidden;
    }

    .swiper-vision .swiper-slide {
        height: 100%;
    }

    .swiper-slide h3 {
        line-height: 1.1;
        min-height: calc(1.1em * 2);
    }

    .swiper-slide .info-text {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
    }

    .swiper-slide .info-text span.number {
        font-size: 40px;
    }

    .swiper-slide .info-text span.text {
        font-size: 12px;
        padding-top: 1px;
    }
}

@media (min-width: 768px) {
    .panel--4 .panel__inner h2,
    .panel--5 .panel__inner h2 {
        color: #000;
        text-align: center;
        font-family: Sora, sans-serif;
        font-size: 48px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .swiper.swiper-vision {
        width: 100%;
        overflow: visible;
    }

    .swiper.swiper-vision .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 50px;
        column-gap: 24px;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
    }

    .swiper.swiper-vision .swiper-slide {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        flex-shrink: 1 !important;
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 0;
    }

    .swiper.swiper-vision .swiper-slide h3 {
        color: #000;
        font-family: Sora, sans-serif;
        font-size: 26px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 10px;
        text-align: left;
        min-height: calc(1.2em * 2);
    }

    .swiper.swiper-vision .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        border-radius: 16px;
    }

    .swiper.swiper-vision .swiper-slide .info-text {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .swiper.swiper-vision .swiper-slide .info-text span.number {
        color: #2A68F5;
        font-family: Sora, sans-serif;
        font-size: 52px;
        font-weight: 400;
        line-height: 1;
        flex-shrink: 0;
        text-align: left;
    }

    .swiper.swiper-vision .swiper-slide .info-text span.text {
        color: #000;
        font-family: Sora, sans-serif;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.3;
        text-transform: uppercase;
        padding-top: 4px;
        text-align: left;
    }

    .swiper.swiper-vision .swiper-pagination {
        display: none !important;
    }
}


@media (max-height: 670px) {
	.prods1.bg-1,
	.prods1.bg-3 {
		background-position: center 60px;
	}
	.prods1.bg-2 {
		background-position: center 70px;
	}

}

@media (max-height: 700px) {
	.prods1.bg-1,
	.prods1.bg-2,
	.prods1.bg-3 {
		background-position: center 70px;
	}

	.panel__inner h2 {
		font-size: 28px;
		line-height: 30px;
	}

	.swiper-slide h3 {
		font-size: 18px;
		margin-bottom: clamp(5px, 1vh, 20px)
	}

	.swiper-slide .info-text span.text {
		font-size: 11px;
	}

	.swiper-slide .info-text span.number {
		font-size: 36px;
	}

	.panel__inner {
		padding-top: clamp(65px, 12vh, 14vh);
	}

	.stat-card__number {
		font-size: 44px
	}

	.stat-card__label {
		font-size: 16px;
	}
	
	.panel--4 .panel__inner h2, .panel--5 .panel__inner h2 {
		margin-bottom: clamp(10px, 2vh, 20px)
	}
}

@media (max-height: 780px) {
	.prods1.bg-1,
	.prods1.bg-3 {
		background-position: center 70px;
	}
	.prods1.bg-2 {
		background-position: center 100px;
	}

	.panel__inner h2 {
		font-size: 28px;
		line-height: 30px;
	}

	.swiper-slide h3 {
		font-size: 18px;
		margin-bottom: clamp(5px, 1vh, 20px)
	}
}

@media (max-height: 860px) {
	
}

@media (max-height: 940px) {

}