:root {
    --black: #0a0a0a;
    --dark: #111111;
    --grey-dark: #1a1a1a;
    --grey: #2a2a2a;
    --grey-mid: #666;
    --grey-light: #999;
    --grey-border: #e5e5e5;
    --off-white: #f5f5f5;
    --white: #ffffff;
    --blue: #2c6bba;
    --blue-light: #3d7fd4;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection {
    background: var(--blue);
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 1.5rem;
}

.section-label--light { color: var(--blue-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--white);
}

.section-title--dark {
    color: var(--black);
}

.accent-dot { color: var(--blue); }
.accent-dot--light { color: var(--blue-light); }

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.btn--primary {
    background: var(--blue);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}

.btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn--dark {
    background: var(--black);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--black);
}

.btn--white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn--outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn--outline-dark {
    border: 1px solid var(--grey-border);
    color: var(--black);
}

.btn--outline-dark:hover {
    border-color: var(--black);
    background: var(--off-white);
}

/* ——— HEADER ——— */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s, backdrop-filter 0.4s;
}

.site-header.is-scrolled {
    background: linear-gradient(135deg, #2055a3 0%, var(--blue) 55%, #3d7fd4 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-header.is-scrolled .nav__link { color: rgba(255, 255, 255, 0.85); }
.site-header.is-scrolled .nav__link:hover { color: var(--white); }
.site-header.is-scrolled .nav__phone a { color: var(--black); }
.site-header.is-scrolled .nav__phone a:hover { color: var(--white); }
.site-header.is-scrolled .nav__toggle span { background: var(--white); }
.site-header.is-scrolled .nav { padding-top: 0.6rem; padding-bottom: 0.6rem; }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.nav__logo {
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 3rem;
}

.nav__logo-chevron {
    background: var(--white);
    padding: 14px 22px 24px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav__logo-chevron img {
    display: block;
    width: 175px;
    height: auto;
}

.nav__menu {
    margin-left: 260px;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav__phone {
    margin-left: auto;
}

.nav__link {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
}

.nav__link:hover { color: var(--white); }

.nav__link--cta {
    margin-left: 0.5rem;
}

.nav__dropdown {
    position: relative;
}

.nav__link--dropdown {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav__link--dropdown svg {
    transition: transform 0.3s;
}

.nav__dropdown:hover .nav__link--dropdown svg,
.nav__link--dropdown[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.nav__dropdown { position: static; }

.nav__dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(32, 85, 163, 0.85) 0%, rgba(40, 103, 196, 0.82) 55%, rgba(61, 127, 212, 0.85) 100%);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu {
    max-width: 1600px;
    margin: 0 auto;
    padding: 6rem 3rem 2rem;
}

.megamenu__head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.megamenu__all {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}
.megamenu__all:hover { color: var(--white); }
.megamenu__all span { display: inline-block; transition: transform 0.2s; }
.megamenu__all:hover span { transform: translateX(4px); }

.megamenu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

.megatile {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #1a1d24;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.megatile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
    transition: background 0.3s;
}

.megatile:hover::before {
    background: linear-gradient(to top, rgba(32,85,163,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.15) 100%);
}

.megatile__inner {
    position: absolute;
    inset: 0;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    color: var(--white);
}

.megatile__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.15;
}

.megatile__desc {
    font-family: var(--font-body, var(--font-display));
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}

.megatile:hover .megatile__desc {
    max-height: 4em;
    opacity: 1;
}

.site-header.is-scrolled .nav__link--dropdown { color: rgba(255, 255, 255, 0.85); }
.site-header.is-scrolled .nav__link--dropdown:hover { color: var(--white); }

.nav__phone a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--black);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.nav__phone a:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-1px);
}

.nav__phone-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    animation: navPhonePulse 2.2s ease-out infinite;
    flex-shrink: 0;
}

.nav__phone.is-closed .nav__phone-dot {
    background: #c44;
    animation: none;
    box-shadow: none;
}

.nav__phone.is-closed .nav__phone-statustext { opacity: 0.75; }

@keyframes navPhonePulse {
    0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55); }
    70%  { box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.nav__phone-sep {
    opacity: 0.35;
    font-weight: 400;
}

.nav__phone-icon {
    width: 16px;
    height: 16px;
    color: var(--blue);
    transition: color 0.25s;
    flex-shrink: 0;
}

.nav__phone a:hover .nav__phone-icon { color: var(--white); }

.nav__phone--mobile { display: none; }

@media (max-width: 767px) {
    .nav { position: relative; }
    .nav__phone--mobile {
        display: block;
        position: absolute;
        right: 4.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }
    .nav__phone--mobile a {
        padding: 0.4rem 0.75rem;
        font-size: 0.72rem;
        letter-spacing: 0.05em;
        gap: 0.4rem;
    }
    .nav__phone--mobile .nav__phone-icon { width: 13px; height: 13px; }
    .nav__phone--mobile .nav__phone-dot { width: 7px; height: 7px; }
    .nav__phone--mobile .nav__phone-sep,
    .nav__phone--mobile .nav__phone-cta { display: none; }
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__toggle span:first-child { top: 0; }
.nav__toggle span:last-child { bottom: 0; }

.nav__toggle.is-active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav__toggle.is-active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ——— HERO ——— */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 7rem 3rem 9rem;
    overflow: hidden;
}

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

.hero__bg-image,
.hero__bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top right,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.7) 25%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0.1) 80%,
            rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0) 40%
        );
    pointer-events: none;
}

.hero__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.hero__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(15rem, 28vw, 30rem);
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
}

.hero__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 2rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero__title span { display: block; }

.hero__sub {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero__reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

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

.hero__reviews-stars {
    color: #ffc83d;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.hero__reviews-text {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
}

.hero__suppliers {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.5rem clamp(1.25rem, 2vw, 3rem);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.5rem);
    overflow: hidden;
}

.hero__suppliers-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero__suppliers-marquee {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.hero__suppliers-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(1.5rem, 2.5vw, 3rem);
    align-items: center;
    flex-shrink: 0;
    padding-right: clamp(1.5rem, 2.5vw, 3rem);
    animation: hero-suppliers-scroll 40s linear infinite;
}

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

.hero__suppliers-list li {
    font-family: var(--font-display);
    font-size: clamp(0.78rem, 0.9vw, 1.05rem);
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

@keyframes hero-suppliers-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__suppliers-list { animation: none; }
}

.hero__scroll {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ——— HOW WE WORK ——— */

.howwework {
    padding: 8rem 3rem 5rem;
    background: var(--off-white);
}

.howwework__inner {
    max-width: 1600px;
    margin: 0 auto;
}

.howwework__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.howwework__intro-right {
    padding-top: 3rem;
}

.howwework__intro-right p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 1.25rem;
}

.howwework__intro-right p:last-child {
    margin-bottom: 0;
}

.howwework__intro-emph {
    font-family: var(--font-display);
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em;
    color: var(--blue) !important;
    line-height: 1.3 !important;
    margin-top: 1.75rem !important;
}

/* ——— FLOW BAND ——— */

.flow-band {
    background: var(--white);
    padding: 0;
    width: 100%;
    overflow: hidden;
}

/* ——— FLOW CHEVRONS ——— */

.flow {
    list-style: none;
    display: flex;
    align-items: stretch;
}

.flow__step {
    flex: 1;
    position: relative;
    padding: 2.25rem 2.5rem 2.25rem 3.25rem;
    color: var(--white);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%, 28px 50%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow__step:first-child {
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
    padding-left: 2.5rem;
}

.flow__step + .flow__step {
    margin-left: -28px;
}

.flow__step:nth-child(1) { background: #5a9fe8; }
.flow__step:nth-child(2) { background: #3d7fd4; }
.flow__step:nth-child(3) { background: #2c6bba; }
.flow__step:nth-child(4) { background: #1f5599; }

.flow__step:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 28px 50%);
}

.flow__icon {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.flow__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.flow__num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 0.35rem;
}

.flow__title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.flow__body {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ——— PRODUCTS GRID ——— */

.products {
    padding: 8rem 3rem;
    background: var(--white);
}

.products__header {
    max-width: 1600px;
    margin: 0 auto 3.5rem;
}

.products__lead {
    font-size: 1.15rem;
    color: var(--grey-mid);
    line-height: 1.65;
    margin-top: 1.25rem;
    max-width: 700px;
}

.products__grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
    border: 1px solid var(--grey-border);
}

.product-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.product-tile__image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--off-white);
}

.product-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-tile:hover .product-tile__image img {
    transform: scale(1.06);
}

.product-tile__body {
    padding: 1.8rem 1.8rem 2rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-tile__num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--blue);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

.product-tile__body h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.product-tile:hover h3 { color: var(--blue); }

.product-tile__body p {
    font-size: 1.05rem;
    color: var(--grey-mid);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-tile__cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    padding-top: 1rem;
    border-top: 1px solid var(--grey-border);
    transition: letter-spacing 0.3s, color 0.3s;
}

.product-tile:hover .product-tile__cta {
    letter-spacing: 0.22em;
    color: var(--blue-light);
}

/* ——— STATS ——— */

.stats {
    position: relative;
    padding: 7rem 3rem;
    background: linear-gradient(135deg, #2055a3 0%, var(--blue) 55%, #3d7fd4 100%);
    overflow: hidden;
}

.stats__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
}

.stats__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 15% 0%, rgba(255,255,255,0.18), transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(0,0,0,0.18), transparent 60%);
}

.stats__inner { max-width: 1600px; margin: 0 auto; position: relative; }

.stats__head { text-align: center; margin-bottom: 4rem; }
.stats__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 99px;
}
.stats__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.stat {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}
.stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25), transparent);
}

.stat__icon {
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,0.85);
    margin: 0 auto 1.25rem;
    display: block;
}

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    color: var(--white);
    display: block;
}

.stat__plus {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    color: rgba(255, 255, 255, 0.4);
    vertical-align: super;
}

.stat__small {
    font-size: 0.4em;
    opacity: 0.6;
}

.stat__label {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 1rem;
    line-height: 1.5;
}

/* ——— ABOUT ——— */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: var(--white);
    color: var(--black);
}

.about__image-col {
    position: relative;
    overflow: hidden;
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.about__image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    height: 200px;
    border: 2px solid var(--blue);
    pointer-events: none;
}

.about__text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
}

.about .section-title {
    color: var(--black);
    margin-bottom: 2.5rem;
}

.about__body {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--grey-mid);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.about .btn--dark {
    align-self: flex-start;
    margin-top: 1rem;
}

/* ——— CTA ——— */

.cta {
    position: relative;
    padding: 10rem 3rem;
    text-align: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
}

.cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(44, 107, 186, 0.15) 0%, transparent 70%);
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 2rem;
}

.cta__sub {
    font-size: 1.25rem;
    color: var(--grey-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta__regions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__regions a {
    font-size: 0.8rem;
    color: var(--grey-mid);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.cta__regions a:hover { color: var(--white); }

/* ——— FOOTER ——— */

.footer {
    background: var(--black);
    color: var(--white);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    padding: 5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1.5rem;
}

.footer__logo span { color: var(--blue); }

.footer__tagline {
    font-size: 0.9rem;
    color: var(--grey-mid);
    line-height: 1.6;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer__numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.footer__region span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.3rem;
}

.footer__region a {
    font-size: 0.95rem;
    color: var(--grey-light);
    transition: color 0.3s;
}

.footer__region a:hover { color: var(--white); }

.footer__email,
.footer__mobile {
    display: block;
    font-size: 0.95rem;
    color: var(--grey-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer__email:hover,
.footer__mobile:hover { color: var(--white); }

.footer__social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.footer__social a {
    color: var(--grey-mid);
    transition: color 0.3s;
}

.footer__social a:hover { color: var(--blue); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 1600px;
    margin: 0 auto;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: var(--grey-mid);
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    font-size: 0.75rem;
    color: var(--grey-mid);
    transition: color 0.3s;
}

.footer__legal a:hover { color: var(--white); }

/* ——— PAGE HERO (inner pages) ——— */

.pagehero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 9rem 3rem 5rem;
    overflow: hidden;
    background: var(--black);
}

.pagehero__bg { position: absolute; inset: 0; z-index: 0; }
.pagehero__bg-image { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.pagehero__gradient {
    position: absolute; inset: 0;
    background:
        linear-gradient(
            to top right,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.78) 25%,
            rgba(0, 0, 0, 0.45) 55%,
            rgba(0, 0, 0, 0.2) 80%,
            rgba(0, 0, 0, 0.05) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0) 40%
        );
    pointer-events: none;
}
.pagehero__grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.pagehero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

/* ——— WHY TPL panel ——— */
.whytpl {
    position: relative;
    padding: 7rem 3rem;
    background: linear-gradient(135deg, #2055a3 0%, var(--blue) 55%, #3d7fd4 100%);
    color: var(--white);
    overflow: hidden;
}
.whytpl::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 15% 0%, rgba(255,255,255,0.18), transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(0,0,0,0.18), transparent 60%);
}
.whytpl__inner { position: relative; z-index: 1; }
.whytpl__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.whytpl__image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
}
.whytpl__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.whytpl__badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    color: var(--blue);
    padding: 1rem 1.4rem;
    border-radius: 2px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    text-align: left;
}
.whytpl__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: 0.02em;
}
.whytpl__badge span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
}

.whytpl__copy .section-label {
    margin-bottom: 1rem;
    display: inline-block;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
}
.whytpl__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.whytpl__copy h2 .accent-dot { color: rgba(255,255,255,0.9); }
.whytpl__lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 540px;
}
.whytpl__points {
    list-style: none;
    display: grid;
    gap: 1.1rem;
    margin: 0 0 2.25rem;
}
.whytpl__points li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--white);
}
.whytpl__points li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    padding: 3px;
    margin-top: 2px;
}
.whytpl__points li strong { display: block; font-weight: 600; margin-bottom: 0.15rem; color: var(--white); }
.whytpl__points li small { display: block; color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.45; font-weight: 400; }

.whytpl__quote {
    border-left: 3px solid rgba(255,255,255,0.55);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin-bottom: 2rem;
}
.whytpl__quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.whytpl__quote cite {
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 1100px) {
    .whytpl { padding: 5rem 2rem; }
    .whytpl__inner { grid-template-columns: 1fr; gap: 3rem; }
    .whytpl__image { max-width: 480px; margin: 0 auto; aspect-ratio: 4/5; }
}

.pagehero--hub .pagehero__inner { grid-template-columns: 1fr; max-width: 980px; text-align: center; }
.pagehero--hub .pagehero__chips { justify-content: center; }
.pagehero--hub .accent-dot { margin-left: 0.05em; }

.hubgrid { padding: 7rem 3rem; background: var(--off-white); }
.hubgrid__inner { max-width: 1600px; margin: 0 auto; }
.hubgrid__head { text-align: center; margin-bottom: 4rem; }
.hubgrid__head .section-title { margin-top: 1rem; }
.hubgrid__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.hubgrid__grid--four { grid-template-columns: repeat(4, 1fr); }

.hubcard {
    background: var(--white);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
}
.hubcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.08); border-color: rgba(44,107,186,0.3); }

.hubcard__image { aspect-ratio: 4/3; overflow: hidden; background: var(--off-white); }
.hubcard__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.hubcard:hover .hubcard__image img { transform: scale(1.05); }

.hubcard__body { padding: 2rem 1.75rem 2.25rem; flex: 1; display: flex; flex-direction: column; }
.hubcard__num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--blue);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}
.hubcard__body h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1.05;
    margin-bottom: 0.85rem;
    color: var(--black);
}
.hubcard__body p {
    color: var(--grey-mid);
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex: 1;
}
.hubcard__cta {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    transition: gap 0.3s, color 0.3s;
}
.hubcard:hover .hubcard__cta { color: var(--blue-light); }

@media (max-width: 1100px) {
    .hubgrid { padding: 5rem 2rem; }
    .hubgrid__grid,
    .hubgrid__grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .hubgrid__grid,
    .hubgrid__grid--four { grid-template-columns: 1fr; }
}

.pagehero__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 1.5rem;
    display: block;
}

.pagehero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pagehero__sub {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 38rem;
    margin-bottom: 2rem;
}

.pagehero__chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pagehero__chips li {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

/* ——— QUICK QUOTE ——— */

.quickquote {
    background: var(--white);
    padding: 2rem;
    border-top: 3px solid var(--blue);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.quickquote__head { margin-bottom: 1.25rem; }

.quickquote__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.quickquote__sub {
    font-size: 0.9rem;
    color: var(--grey-mid);
    line-height: 1.5;
}

.quickquote__form { display: grid; gap: 0.85rem; }

.qq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.qq-field { display: block; }

.qq-field span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 0.35rem;
}

.qq-field input,
.qq-field select,
.qq-field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    background: var(--off-white);
    border: 1px solid transparent;
    padding: 0.7rem 0.85rem;
    transition: border-color 0.2s, background 0.2s;
}

.qq-field input:focus,
.qq-field select:focus,
.qq-field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--blue);
}

.qq-field textarea { resize: vertical; min-height: 80px; }

.qq-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 0.4rem;
}

.qq-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.qq-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.qq-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

.qq-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

.qq-phone {
    text-align: center;
    font-size: 0.8rem;
    color: var(--grey-mid);
    margin-top: 0.5rem;
}

.qq-phone a { color: var(--black); font-weight: 500; }
.qq-phone a:hover { color: var(--blue); }

.qq-triggers { display: none; }

.qq-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.qq-trigger--primary { background: var(--blue); color: var(--white); }
.qq-trigger--primary:hover { background: var(--blue-light); }
.qq-trigger--whatsapp { background: #25D366; color: var(--white); }
.qq-trigger--whatsapp:hover { background: #1ebe57; }
.qq-trigger--call { background: var(--black); color: var(--white); }
.qq-trigger--call:hover { background: var(--blue); }
.qq-trigger svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ——— SPEC STRIP ——— */

.specstrip {
    background: var(--white);
    padding: 7rem 3rem;
}

.specstrip__inner { max-width: 1600px; margin: 0 auto; }

.specstrip__head { text-align: center; margin-bottom: 4rem; }

.specs {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.spec {
    padding: 1.5rem 0;
    border-top: 1px solid var(--grey-border);
}

.spec__icon {
    width: 32px;
    height: 32px;
    color: var(--blue);
    margin-bottom: 1rem;
    display: block;
}

.spec h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.spec p {
    font-size: 0.95rem;
    color: var(--grey-mid);
    line-height: 1.55;
}

/* ——— STYLES (configurations) ——— */

.styles {
    background: var(--off-white);
    padding: 7rem 3rem;
}

.styles__inner { max-width: 1600px; margin: 0 auto; }

.styles__head { text-align: center; margin-bottom: 4rem; }

.styles__lead {
    font-size: 1.15rem;
    color: var(--grey-mid);
    max-width: 36rem;
    margin: 1.25rem auto 0;
    line-height: 1.6;
}

.styles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.style {
    background: var(--white);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.style:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.style__image { height: 260px; overflow: hidden; }
.style__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.style:hover .style__image img { transform: scale(1.04); }

.style h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--black);
    padding: 1.4rem 1.5rem 0.4rem;
    letter-spacing: 0.01em;
}

.style p {
    font-size: 0.95rem;
    color: var(--grey-mid);
    line-height: 1.55;
    padding: 0 1.5rem 1.6rem;
}

/* ——— BRANDS ——— */

.brands {
    background: #ececec;
    padding: 7rem 3rem;
}

.brands__inner { max-width: 1600px; margin: 0 auto; }

.brands__head {
    max-width: 56rem;
    margin-bottom: 3.5rem;
}

.brands__head .section-title { margin-bottom: 1.25rem; }
.brands__head .section-label { margin-bottom: 1rem; }

.brands__lead {
    font-size: 1.15rem;
    color: var(--grey-mid);
    line-height: 1.65;
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.brand {
    display: grid;
    grid-template-columns: 40% 1fr;
    background: var(--white);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 220px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    overflow: hidden;
    padding: 0;
}

.brand:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.brand__logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border-right: 1px solid var(--grey-border);
}

.brand__logo img {
    max-height: 90px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.3s, opacity 0.3s;
}

.brand:hover .brand__logo img {
    filter: grayscale(0);
    opacity: 1;
}

.brand--wordmark .brand__logo span {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--black);
    letter-spacing: 0.01em;
    text-align: center;
}

.brand--wordmark:hover .brand__logo span { color: var(--blue); }

.brand__body {
    background: #fafaf8;
    padding: 1.75rem 1.75rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.brand__systems {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.6vw, 1.75rem);
    font-weight: 600;
    color: var(--black);
    line-height: 1.15;
    letter-spacing: 0.005em;
    margin: 0;
}

.brand__cta {
    position: absolute;
    bottom: 1.4rem;
    left: 1.75rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
}

/* ——— MATERIALS (hardwood) ——— */

.materials {
    background: #ececec;
    padding: 7rem 3rem;
}

.materials__inner { max-width: 1600px; margin: 0 auto; }

.materials__head {
    max-width: 56rem;
    margin-bottom: 3.5rem;
}

.materials__head .section-title { margin-bottom: 1.25rem; }
.materials__head .section-label { margin-bottom: 1rem; }

.materials__lead {
    font-size: 1.15rem;
    color: var(--grey-mid);
    line-height: 1.65;
}

.materials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.material {
    background: var(--white);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    overflow: hidden;
}

.material:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.material__swatch {
    height: 140px;
    width: 100%;
}

.material--merranti .material__swatch { background: linear-gradient(135deg, #8b4513 0%, #5d2e0a 100%); }
.material--oak .material__swatch { background: linear-gradient(135deg, #c19a5b 0%, #8b6c3e 100%); }
.material--sapele .material__swatch { background: linear-gradient(135deg, #6b3a1f 0%, #3e2010 100%); }

.material__body { padding: 1.75rem 1.75rem 2rem; }

.material__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.material h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.85rem;
    letter-spacing: 0.01em;
    line-height: 1.05;
}

.material p {
    font-size: 0.95rem;
    color: var(--grey-mid);
    line-height: 1.6;
}

/* ——— RANGES (alternating feature blocks) ——— */

.ranges {
    background: #ececec;
    padding: 7rem 3rem;
}

.ranges__inner { max-width: 1600px; margin: 0 auto; }

.ranges__head {
    max-width: 56rem;
    margin-bottom: 4rem;
}

.ranges__head .section-title { margin-bottom: 1.25rem; }
.ranges__head .section-label { margin-bottom: 0; }

.range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.range:last-child { margin-bottom: 0; }

.range__image { min-height: 480px; overflow: hidden; }
.range__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.videopanel {
    position: relative;
    margin-top: 1.5rem;
    overflow: hidden;
    background: var(--black);
    aspect-ratio: 16 / 7;
}

.videopanel video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.videopanel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        rgba(0, 0, 0, 0) 70%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: var(--white);
    pointer-events: none;
}

.videopanel__tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 0.75rem;
}

.videopanel__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: 0.005em;
    color: var(--white);
}

.range--reverse .range__image { order: 2; }
.range--reverse .range__body { order: 1; }

.range__body {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.range__tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
}

.range__body h3 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1;
    color: var(--black);
    margin-bottom: 1.25rem;
    letter-spacing: 0.005em;
}

.range__lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--grey-dark);
    margin-bottom: 1rem;
}

.range__body p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--grey-mid);
    margin-bottom: 1.5rem;
}

.range__features {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    gap: 0.55rem;
}

.range__features li {
    font-size: 0.95rem;
    color: var(--grey-dark);
    padding-left: 1.5rem;
    position: relative;
}

.range__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    background: var(--blue);
}

.range__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ——— NUMBERS BAND ——— */

.numbers {
    background: var(--white);
    padding: 4.5rem 3rem;
    border-bottom: 1px solid var(--grey-border);
}

.numbers__inner { max-width: 1600px; margin: 0 auto; }

.numbers__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.numbers__item {
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid var(--grey-border);
}

.numbers__item:last-child { border-right: none; }

.numbers__big {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--blue);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.numbers__plus {
    color: var(--blue);
    font-size: 0.6em;
    vertical-align: top;
    margin-left: 0.05em;
}

.numbers__small {
    font-size: 0.35em;
    color: var(--grey-mid);
    margin-left: 0.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.numbers__label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-mid);
    line-height: 1.4;
}

/* ——— SECURITY BAND (dark) ——— */

.security {
    background: var(--black);
    color: var(--white);
    padding: 7rem 3rem;
}

.security__inner { max-width: 1600px; margin: 0 auto; }

.security__head {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 4rem;
}

.security__head .section-title {
    color: var(--white);
    margin: 1rem 0;
}

.security__lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.security__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.security__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.75rem;
    transition: background 0.3s, border-color 0.3s;
}

.security__item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--blue-light);
}

.security__icon {
    width: 36px;
    height: 36px;
    color: var(--blue-light);
    margin-bottom: 1.25rem;
    display: block;
}

.security__item h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: 0.005em;
    line-height: 1.15;
}

.security__item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

/* ——— HARDWARE TIERS ——— */

.hardware {
    background: var(--off-white);
    padding: 7rem 3rem;
}

.hardware__inner { max-width: 1600px; margin: 0 auto; }

.hardware__head {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.hardware__lead {
    font-size: 1.1rem;
    color: var(--grey-mid);
    line-height: 1.6;
    margin-top: 1rem;
}

.hardware__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.hwtier {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-top: 3px solid var(--blue);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.hwtier:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.hwtier__num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--blue);
    display: block;
    margin-bottom: 0.75rem;
}

.hwtier h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--black);
    margin-bottom: 0.6rem;
    letter-spacing: 0.005em;
}

.hwtier p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--grey-mid);
}

/* ——— RANGE GRID (4-card showcase) ——— */

.ranges__lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--grey-mid);
    margin-top: 1rem;
    max-width: 36rem;
}

.rangegrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.rangecard {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.rangecard:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.rangecard__image { height: 320px; overflow: hidden; background: var(--off-white); }
.rangecard__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.rangecard:hover .rangecard__image img { transform: scale(1.04); }

.rangegrid--four { grid-template-columns: repeat(4, 1fr); }
.rangegrid--four .rangecard__image { height: 240px; background: #fff; }
.rangegrid--four .rangecard__image img { object-fit: contain; padding: 1rem; }
@media (max-width: 1024px) { .rangegrid--four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rangegrid--four { grid-template-columns: 1fr; } }

.rangecard__body { padding: 2rem 2rem 2.25rem; }

.rangecard__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.85rem;
}

.rangecard h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.85rem;
    letter-spacing: 0.005em;
    line-height: 1;
}

.rangecard p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-mid);
    margin-bottom: 1.25rem;
}

.rangecard__styles {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.rangecard__styles li {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.75rem;
    color: var(--grey-dark);
    background: var(--off-white);
    border: 1px solid var(--grey-border);
}

.ranges__cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ——— CONFIGURATOR (iframe) ——— */

.configurator {
    background: var(--white);
    padding: 7rem 3rem;
}

.configurator__inner { max-width: 1600px; margin: 0 auto; }

.configurator__head {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.configurator__lead {
    font-size: 1.1rem;
    color: var(--grey-mid);
    line-height: 1.6;
    margin-top: 1rem;
}

.configurator__frame {
    background: var(--off-white);
    border: 1px solid var(--grey-border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.configurator__frame iframe {
    display: block;
    width: 100%;
    height: 820px;
    border: none;
}

/* ——— FINISHES ——— */

.finishes {
    background: var(--off-white);
    padding: 7rem 3rem;
}

.finishes__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.finishes__lead {
    font-size: 1.15rem;
    color: var(--grey-mid);
    line-height: 1.65;
    margin-top: 1rem;
    max-width: 28rem;
}

.swatches {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.swatch { text-align: center; }

.swatch__chip {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 0.75rem;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.swatch__chip--ral {
    background: linear-gradient(135deg, #d4322f 0%, #f7b500 25%, #4caf50 50%, #2c6bba 75%, #6b3fa0 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swatch__name {
    display: block;
    font-size: 0.82rem;
    color: var(--grey-dark);
    letter-spacing: 0.02em;
}

/* ——— BRAND PANEL (slide-in) ——— */

.bpanel {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.bpanel__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bpanel.is-open .bpanel__backdrop { opacity: 1; }

.bpanel__drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(520px, 100%);
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 4rem 2.5rem 3rem;
}

.bpanel.is-open .bpanel__drawer { transform: translateX(0); }

.bpanel__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--off-white);
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.bpanel__close:hover {
    background: var(--blue);
    color: var(--white);
}

.bpanel__logo {
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.bpanel__logo img {
    max-height: 80px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
}

.bpanel__wordmark {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--black);
}

.bpanel__name {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.bpanel__blurb {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--grey-dark);
    margin-bottom: 2.25rem;
}

.bpanel__heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.bpanel__brochures {
    list-style: none;
    margin-bottom: 2rem;
    border-top: 1px solid var(--grey-border);
}

.bpanel__brochures a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey-border);
    color: var(--black);
    transition: color 0.2s, padding 0.2s;
}

.bpanel__brochures a:hover {
    color: var(--blue);
    padding-left: 0.5rem;
}

.bpanel__brochures svg {
    color: var(--blue);
    flex-shrink: 0;
}

.bpanel__brochures span {
    font-size: 0.95rem;
    font-weight: 400;
}

.bpanel__cta { margin-top: 1rem; }
.bpanel__cta .btn { width: 100%; text-align: center; }

/* ——— RESPONSIVE ——— */

@media (max-width: 1280px) and (min-width: 1101px) {
    .nav__phone { display: none; }
}

@media (max-width: 1100px) {
    .nav { padding: 1.2rem 2rem; }
    .site-header.is-scrolled .nav { padding-top: 1.2rem; padding-bottom: 1.2rem; }
    .hero { padding: 6rem 2rem 8rem; }
    .hero__suppliers { padding: 1.25rem 2rem; gap: 1.5rem; }
    .hero__suppliers-list { gap: 1.25rem 2rem; }
    .howwework { padding: 6rem 2rem 4rem; }
    .howwework__intro { grid-template-columns: 1fr; gap: 2rem; }
    .howwework__intro-right { padding-top: 0; }
    .flow__step { padding: 1.75rem 2rem 1.75rem 2.5rem; min-height: 200px; }
    .flow__step:first-child { padding-left: 2rem; }
    .flow__title { font-size: 1.3rem; }
    .products { padding: 6rem 2rem; }
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .product-tile__image { height: 280px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .about { grid-template-columns: 1fr; }
    .about__text-col { padding: 4rem 2rem; }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .pagehero { padding: 8rem 2rem 4rem; }
    .pagehero__inner { grid-template-columns: 1fr; gap: 3rem; }
    .specstrip,
    .styles,
    .brands,
    .materials,
    .ranges,
    .security,
    .hardware,
    .configurator,
    .finishes { padding: 5rem 2rem; }
    .configurator__frame iframe { height: 720px; }
    .numbers { padding: 3rem 2rem; }
    .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
    .numbers__item:nth-child(2n) { border-right: none; }
    .security__grid { grid-template-columns: repeat(2, 1fr); }
    .hardware__grid { grid-template-columns: repeat(2, 1fr); }
    .range { grid-template-columns: 1fr; }
    .range__image { min-height: 320px; }
    .range--reverse .range__image { order: 0; }
    .range--reverse .range__body { order: 0; }
    .range__body { padding: 2.5rem 2rem; }
    .rangegrid { grid-template-columns: 1fr; }
    .rangecard__image { height: 280px; }
    .materials__head { grid-template-columns: 1fr; gap: 1.5rem; }
    .materials__grid { grid-template-columns: repeat(2, 1fr); }
    .specs { grid-template-columns: repeat(2, 1fr); }
    .styles__grid { grid-template-columns: repeat(2, 1fr); }
    .brands__head { grid-template-columns: 1fr; gap: 1.5rem; }
    .brands__grid { grid-template-columns: repeat(2, 1fr); }
    .finishes__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .swatches { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1100px) {
    .nav {
        justify-content: flex-end;
        padding: 1.5rem;
    }

    .nav__toggle {
        display: block;
        z-index: 1002;
    }

    .nav__logo { left: 1.5rem; }
    .nav__logo-chevron { padding: 10px 16px 18px; }
    .nav__logo-chevron img { width: 130px; }

    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        z-index: 1000;
        margin: 0;
        padding: 5.5rem 1.5rem 2rem;
        background: rgba(10, 12, 18, 0.65);
        backdrop-filter: blur(24px) saturate(140%);
        -webkit-backdrop-filter: blur(24px) saturate(140%);
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                    visibility 0s linear 0.35s;
        overflow-y: auto;
    }

    .nav__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .nav__links {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        flex: 1;
        justify-content: center;
    }

    .nav__link {
        font-family: var(--font-display);
        font-size: 2rem;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        padding: 0.85rem 0;
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: left;
        transition: color 0.25s, padding 0.25s;
    }

    .nav__link:hover,
    .nav__link:active { color: var(--blue-light) !important; padding-left: 0.5rem; }

    .nav__dropdown { text-align: left; }

    .nav__link--dropdown {
        font-family: var(--font-display);
        font-size: 2rem;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        padding: 0.85rem 0;
        color: var(--white) !important;
        justify-content: flex-start;
        gap: 0.6rem;
        width: 100%;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav__link--dropdown svg {
        display: inline-block;
        width: 12px;
        height: 8px;
        opacity: 0.6;
    }

    .nav__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 0 0 0 1rem;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.25s;
    }

    .nav__dropdown.is-open .nav__dropdown-menu {
        max-height: 1200px;
        padding: 0.5rem 0 0.75rem 1rem;
    }

    .nav__dropdown.is-open .nav__link--dropdown svg { transform: rotate(180deg); }
    .nav__link--dropdown svg { transition: transform 0.3s; }

    .megamenu { padding: 0; max-width: none; }
    .megamenu__head { justify-content: flex-start; margin-bottom: 0; }
    .megamenu__all {
        display: block;
        padding: 0.45rem 0;
        color: var(--blue-light);
        font-size: 1.15rem;
    }
    .megamenu__all span { display: none; }

    .megamenu__grid {
        display: block;
    }

    .megatile {
        aspect-ratio: auto;
        background-image: none !important;
        background-color: transparent;
    }
    .megatile::before { display: none; }
    .megatile__inner {
        position: static;
        padding: 0.45rem 0;
    }
    .megatile__title {
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.55);
        text-transform: uppercase;
    }
    .megatile:hover .megatile__title,
    .megatile:active .megatile__title {
        color: var(--blue-light);
    }
    .megatile__desc { display: none; }

    .nav__link--cta {
        border: none !important;
        margin: 0.75rem 0 0;
        background: var(--blue);
        color: var(--white) !important;
        text-align: center;
        padding: 1rem 0 !important;
    }

    .nav__link--cta:hover { background: var(--blue-light); padding-left: 0 !important; }

    .nav__phone {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }

    .nav__phone a {
        font-size: 1rem;
        padding: 0.65rem 1.25rem;
    }

    .nav__toggle.is-active span { background: var(--white) !important; }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 6rem 1.5rem 10rem;
        align-items: flex-end;
    }

    .hero__scroll { display: none; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { text-align: center; }
    .hero__reviews { justify-content: center; }


    .hero__suppliers {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hero__suppliers-marquee { width: 100%; }
    .hero__suppliers-list { gap: 1.75rem; padding-right: 1.75rem; }

    .howwework { padding: 5rem 1.5rem 3rem; }
    .howwework__intro-emph { font-size: 1.5rem !important; }
    .flow { flex-direction: column; }
    .flow__step,
    .flow__step:first-child {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), 50% 100%, 0 calc(100% - 22px));
        padding: 2rem 2rem 3rem;
        margin-left: 0 !important;
        min-height: 0;
    }
    .flow__step + .flow__step { margin-top: -22px; }
    .flow__step:last-child {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding-bottom: 2rem;
    }
    .products { padding: 5rem 1.5rem; }
    .products__grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .product-tile__image { height: 260px; }

    .stats { padding: 5rem 1.5rem; }
    .stats__head { margin-bottom: 2.5rem; }
    .stat + .stat::before { display: none; }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about__image { min-height: 350px; }
    .about__text-col { padding: 3rem 1.5rem; }
    .about__image-accent { display: none; }

    .cta { padding: 6rem 1.5rem; }
    .cta__regions { flex-direction: column; gap: 0.8rem; }

    .footer__top { padding: 3rem 1.5rem; }
    .footer__numbers { grid-template-columns: 1fr; }
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }

    .pagehero { padding: 7rem 1.5rem 3rem; }
    .pagehero__title { font-size: clamp(2.4rem, 11vw, 3.5rem); }
    .quickquote {
        padding: 0;
        background: transparent;
        border-top: none;
        box-shadow: none;
    }
    .quickquote__head,
    .quickquote__form { display: none; }
    .quickquote.is-expanded {
        padding: 1.5rem;
        background: var(--white);
        border-top: 3px solid var(--blue);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    }
    .quickquote.is-expanded .quickquote__head,
    .quickquote.is-expanded .quickquote__form { display: block; }
    .quickquote.is-expanded .quickquote__form { display: grid; }
    .quickquote.is-expanded .qq-triggers { display: none; }
    .qq-triggers {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 0.5rem;
    }
    .qq-trigger--whatsapp,
    .qq-trigger--call { padding: 1rem 1.1rem; }
    .qq-row { grid-template-columns: 1fr; }
    .qq-actions { grid-template-columns: 1fr; }
    .specstrip,
    .styles,
    .brands,
    .materials,
    .ranges,
    .security,
    .hardware,
    .configurator,
    .finishes { padding: 4rem 1.5rem; }
    .configurator__frame iframe { height: 640px; }
    .numbers { padding: 2.5rem 1.5rem; }
    .numbers__grid { grid-template-columns: 1fr 1fr; }
    .security__grid,
    .hardware__grid { grid-template-columns: 1fr; }
    .range__body { padding: 2rem 1.5rem; }
    .range__image { min-height: 260px; }
    .rangecard__image { height: 240px; }
    .rangecard__body { padding: 1.5rem; }
    .videopanel { aspect-ratio: 4 / 5; }
    .videopanel__overlay { padding: 1.75rem; }
    .materials__grid { grid-template-columns: 1fr; }
    .specstrip { padding: 3.5rem 1.5rem; }
    .specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1rem;
    }
    .spec { padding: 0.75rem 0; }
    .spec__icon { width: 26px; height: 26px; margin-bottom: 0.5rem; }
    .spec h3 { font-size: 1.05rem; margin-bottom: 0; }
    .spec p { display: none; }
    .styles__grid { grid-template-columns: 1fr; }
    .brands__grid { grid-template-columns: 1fr; }
    .swatches { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .bpanel__drawer { padding: 4rem 1.5rem 2.5rem; }
    .bpanel__name { font-size: 1.9rem; }
    .specstrip__head,
    .styles__head { margin-bottom: 2.5rem; }
}

/* ——— CAD / drawings upload drop zone ——— */
.cad-drop {
    margin-top: 1.25rem;
    border: 2px dashed #cdd5dd;
    border-radius: 8px;
    background: #fafbfc;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.cad-drop.is-drag {
    border-color: var(--blue);
    background: rgba(46, 121, 219, 0.06);
}
.cad-drop__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.cad-drop__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.6rem 1.5rem;
    text-align: center;
    cursor: pointer;
    pointer-events: none;
}
.cad-drop__icon {
    width: 36px;
    height: 36px;
    color: var(--blue);
    opacity: 0.8;
}
.cad-drop__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.02em;
}
.cad-drop__sub {
    font-size: 0.85rem;
    color: var(--grey-mid, #5b6671);
    line-height: 1.5;
}
.cad-drop__sub strong { color: var(--blue); font-weight: 600; }
.cad-drop__list {
    list-style: none;
    margin: 0;
    padding: 0 1.25rem 1rem;
}
.cad-drop__list:empty { display: none; }
.cad-drop__file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 0.85rem;
    margin-top: 0.4rem;
    background: #fff;
    border: 1px solid #e5e9ed;
    border-radius: 5px;
    font-size: 0.9rem;
}
.cad-drop__file-name {
    font-weight: 500;
    color: var(--black);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cad-drop__file-size {
    color: var(--grey-mid, #5b6671);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.cad-drop__warn {
    margin-top: 0.6rem;
    padding: 0.6rem 0.85rem;
    background: #fff3e0;
    border: 1px solid #f0b97d;
    border-radius: 5px;
    color: #8b4513;
    font-size: 0.85rem;
}

.chat-pill {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    background: linear-gradient(135deg, #2055a3 0%, var(--blue) 55%, #3d7fd4 100%);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(32, 85, 163, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
    color: var(--white);
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}

.chat-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(32, 85, 163, 0.45), 0 4px 12px rgba(0, 0, 0, 0.18);
}

.chat-pill__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 2px rgba(32, 85, 163, 0.3);
}

.chat-pill__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.chat-pill__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.chat-pill__lead {
    font-family: var(--font-body, var(--font-display));
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.chat-pill__cta {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.chat-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #25D366;
}

.chat-pill__icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 600px) {
    .chat-pill {
        bottom: 1rem;
        right: 1rem;
        padding: 0.4rem 1rem 0.4rem 0.4rem;
        gap: 0.6rem;
    }
    .chat-pill__avatar { width: 38px; height: 38px; }
    .chat-pill__lead { font-size: 0.7rem; }
    .chat-pill__cta { font-size: 0.85rem; }
    .chat-pill__icon { width: 18px; height: 18px; }
}
