/* =============================================
   HOMEPAGE STYLES — Watts Lights
   Only styles Bootstrap 4 can't handle.
   ============================================= */


/* =============================================
   HERO SECTION
   ============================================= */

/* -- Top row gap (no BS4 gap utility) -- */
.hero__top-row {
    gap: 8px;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .hero__top-row {
        flex-direction: row;
        gap: 12px;
    }
}

/* -- Badge pill -- */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(51, 198, 244, 0.06);
    border: 1px solid rgba(51, 198, 244, 0.2);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--blue);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

/* -- App store mini-links -- */
.hero__app-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.hero__app-link:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
    text-decoration: none;
}

.hero__app-link svg { flex-shrink: 0; }

.hero__app-links { gap: 8px; }

/* -- Hero image area (bg image, text inside) -- */
.hero__image {
    min-height: 550px;
    display: flex;
    align-items: flex-start;
    background-position: center 140px;
}

/* -- Gradient fades -- */
.hero__fade {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.hero__fade--top {
    top: 134px;
    height: 30%;
    background: linear-gradient(180deg, var(--dark) 0%, transparent 100%);
}

.hero__fade--bottom {
    bottom: 0;
    height: 15%;
    background: linear-gradient(0deg, var(--dark) 0%, transparent 100%);
}

/* -- Content inside image area -- */
.hero__content {
    max-width: 1000px;
    z-index: 3;
}

.hero__title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #8892A7;
    max-width: 640px;
    margin-bottom: 28px;
}

/* -- CTA buttons -- */
.hero__cta { gap: 14px; }

.hero__btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: none !important;
}

.hero__btn--primary {
    background: linear-gradient(135deg, #33c6f4, #1a8fbf);
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(51, 198, 244, 0.25) !important;
}

.hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(51, 198, 244, 0.35) !important;
    color: var(--dark) !important;
    text-decoration: none;
}

.hero__btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
}

.hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff !important;
    text-decoration: none;
}

/* =============================================
   REUSABLE: Donnie Peek Button
   Wrap any button in <span class="btn-donnie">.
   Donnie peeks up from behind on hover.
   ============================================= */
.btn-donnie {
    position: relative;
    display: inline-block;
}

/* Button stays on top so it masks Donnie's lower half */
.btn-donnie > * {
    position: relative;
    z-index: 2;
}

/* Donnie's head — behind the button, peeks above */
.btn-donnie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 55px;
    height: 60px;
    background: url('../images/DonnieHead.svg') no-repeat center / contain;
    transform: translateX(-50%) translateY(0);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.btn-donnie:hover::before {
    transform: translateX(-50%) translateY(-55%);
    opacity: 1;
}

/* Donnie's paws — grip the top edge of the button */
.btn-donnie::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 102px;
    height: 47px;
    background:
        url('../images/LeftPaw.svg') no-repeat left center / 21px auto,
        url('../images/RightPaw.svg') no-repeat right center / 21px auto;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    transition: transform 0.35s ease 0.05s, opacity 0.2s ease 0.05s;
    pointer-events: none;
    z-index: 3;
}

.btn-donnie:hover::after {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}


/* =============================================
   HERO DECORATIVE — Shapey, Dots & Pills
   Hidden on mobile, visible 768px+
   ============================================= */
.hero-decor {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* -- Hero shapey: 3 pills + 6 circles in top-right, mirroring the
   try-before-you-buy stack but coming from top-right pointing down-left.
   Pills: same 280x48 size, rotate(-40deg) with transform-origin 100% 0%
   (top-right corner pivot). GSAP grows each pill from that anchor via
   transformOrigin: 'right top' + scaleX: 0 -> 1. */

.hero-decor__shapey-pill {
    position: absolute;
    width: 280px;
    height: 48px;
    border-radius: 100px;
    transform: rotate(-40deg);
    transform-origin: 100% 0%;
}
.hero-decor__shapey-pill--solid {
    /* bottom of visual stack (mirror of green-lg) */
    top: 100px;
    right: -50px;
    background: #f9267e;
    opacity: 0.32;
}
.hero-decor__shapey-pill--grad {
    /* middle of visual stack (mirror of green-md) */
    top: 200px;
    right: -25px;
    background: linear-gradient(90deg, #ff277d 0%, #4c0094 100%);
    opacity: 0.55;
}
.hero-decor__shapey-pill--outline {
    /* top of visual stack (mirror of green-sm) */
    top: 225px;
    right: -85px;
    background: transparent;
    border: 2px solid #f9267e;
    opacity: 0.55;
}

.hero-decor__shapey-circle {
    position: absolute;
    border-radius: 50%;
}
.hero-decor__shapey-circle--c1 {
    /* large solid pink */
    top: 60px;
    right: 280px;
    width: 64px;
    height: 64px;
    background: #f9267e;
    opacity: 0.5;
}
.hero-decor__shapey-circle--c2 {
    /* large solid purple */
    top: 360px;
    right: 420px;
    width: 56px;
    height: 56px;
    background: #870dba;
    opacity: 0.55;
}
.hero-decor__shapey-circle--c3 {
    /* medium solid pink */
    top: 180px;
    right: 470px;
    width: 44px;
    height: 44px;
    background: #f9267e;
    opacity: 0.5;
}
.hero-decor__shapey-circle--c4 {
    /* small solid purple */
    top: 30px;
    right: 520px;
    width: 26px;
    height: 26px;
    background: #870dba;
    opacity: 0.6;
}
.hero-decor__shapey-circle--c5 {
    /* small solid pink */
    top: 470px;
    right: 220px;
    width: 30px;
    height: 30px;
    background: #f9267e;
    opacity: 0.5;
}
.hero-decor__shapey-circle--ring {
    /* outline ring (pink) */
    top: 130px;
    right: 90px;
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid #f9267e;
    opacity: 0.6;
}

/* -- Dots -- */
.hero-decor__dot {
    position: absolute;
    border-radius: 50%;
}
.hero-decor__dot--cyan {
    top: 160px;
    right: 200px;
    width: 14px;
    height: 14px;
    opacity: 0.6;
    background: #33C6F4;
}
.hero-decor__dot--orange {
    top: 90px;
    left: 340px;
    width: 23px;
    height: 23px;
    opacity: 0.5;
    background: #F58220;
}
.hero-decor__dot--pink {
    top: 320px;
    right: 100px;
    width: 8px;
    height: 8px;
    opacity: 0.55;
    background: #F9267E;
}
.hero-decor__dot--green {
    bottom: 240px;
    left: 160px;
    width: 18px;
    height: 18px;
    opacity: 0.45;
    background: #71D11E;
}
.hero-decor__dot--purple {
    top: 240px;
    left: 520px;
    width: 6px;
    height: 6px;
    opacity: 0.5;
    background: #870DBA;
}

/* -- Pills -- */
.hero-decor__pill {
    position: absolute;
    border-radius: 100px;
}
.hero-decor__pill--cyan {
    top: 77px;
    right: 346px;
    width: 80px;
    height: 20px;
    opacity: 0.3;
    background: #33C6F4;
    transform: rotate(-25deg);
}
.hero-decor__pill--pink {
    bottom: 300px;
    right: 220px;
    width: 36px;
    height: 12px;
    opacity: 0.35;
    background: #F9267E;
    transform: rotate(40deg);
}
.hero-decor__pill--orange {
    top: 414px;
    left: 260px;
    width: 53px;
    height: 16px;
    opacity: 0.3;
    background: #F58220;
    transform: rotate(-50deg);
}

/* -- Hero Responsive -- */
@media (min-width: 768px) {
    .hero-decor { display: block; }
    .hero__image { min-height: 750px; background-position: center 30%; }
    .hero__fade--top { top: 0; height: 40%; }
    .hero__fade--bottom { height: 40%; }
    .hero__title { font-size: 60px; }
    .hero__subtitle { font-size: 19px; }
}

@media (min-width: 1200px) {
    .hero__image { min-height: 900px; }
    .hero__title { font-size: 80px; line-height: 82px; }
}


/* =============================================
   PRODUCTS SECTION — "Meet the Hardware"
   ============================================= */
.products {
    padding: 48px 0 60px;
}

/* -- Section header -- */
.products__header {
    margin-bottom: 40px;
    gap: 16px;
}

.products__eyebrow {
    display: block;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #33C6F4;
    margin-bottom: 8px;
}

.products__title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.products__all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.products__all-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.products__arrow {
    color: #33C6F4;
}

/* -- Product cards -- */
.products__card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #141428;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s, border-color 0.25s;
}

.products__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.products__card-img {
    position: relative;
    height: 320px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products__card-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(51, 198, 244, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.products__card-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.products__card-body {
    padding: 20px 24px 24px;
}

.products__card-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* -- Slider edge fades -- */
.products__slider {
    position: relative;
}
.products__slider::before,
.products__slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s;
}
.products__slider::before {
    left: 0;
    background: linear-gradient(to right, #0a1229, transparent);
    opacity: 0;
}
.products__slider::after {
    right: 0;
    background: linear-gradient(to left, #0a1229, transparent);
    opacity: 1;
}
.products__slider.is-scrolled::before {
    opacity: 1;
}
.products__slider.is-at-end::after {
    opacity: 0;
}

/* -- Slider arrows -- */
.products__slider .slick-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 4;
    transition: background 0.25s, border-color 0.25s, opacity 0.25s;
}
.products__slider .slick-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}
.products__slider .slick-arrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    font-family: inherit;
}
.products__slider .slick-prev {
    left: -8px;
}
.products__slider .slick-prev::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 19l-7-7 7-7'/%3E%3C/svg%3E");
}
.products__slider .slick-next {
    right: -8px;
}
.products__slider .slick-next::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
}
.products__slider .slick-disabled {
    opacity: 0.25;
    cursor: default;
}

/* -- Slider spacing -- */
.products__slider .products__slide {
    padding: 0 10px;
}

/* -- Product card as link -- */
.products__card {
    text-decoration: none;
}
.products__card:hover {
    text-decoration: none;
}

/* -- Shapey — bottom-left cluster (3 pills + 6 circles, pink/orange/cyan).
   Pattern matches the green try-before-you-buy shapeys (bottom-left anchor,
   pointing up-right at -40deg). Spans products + numbers area. */
.products__shapey {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Pills: 3 parallel diagonals at -23deg (the angle the original SVG pills
   render at after the wrapper's +15deg rotation). Spread, not stacked. */
.products__shapey-pill {
    position: absolute;
    width: 220px;
    height: 46px;
    border-radius: 100px;
    transform: rotate(-23deg);
    transform-origin: 0% 100%;
}
.products__shapey-pill--outline {
    /* lowest pill — orange outline (matches SVG gradient's middle band) */
    bottom: 25px;
    left: -90px;
    background: transparent;
    border: 2px solid #fc9305;
    opacity: 0.5;
}
.products__shapey-pill--solid {
    /* middle pill — solid orange */
    bottom: 95px;
    left: -55px;
    background: #fc9305;
    opacity: 0.4;
}
.products__shapey-pill--grad {
    /* upper pill — full pink->orange->cyan gradient (you said this color was right) */
    bottom: 135px;
    left: -105px;
    background: linear-gradient(90deg, #f20094 0%, #fc9305 50%, #3bcfd4 100%);
    opacity: 0.6;
}

/* Circles: matching the SVG's visible composition. The SVG has 6 circles
   total but most render off the left edge (wrapper sits at left:-200).
   Mimicking the rendered look: dense on the left (some hanging off-edge),
   sparser on the right. */
.products__shapey-circle {
    position: absolute;
    border-radius: 50%;
}
.products__shapey-circle--ring {
    /* outline ring — moved ABOVE the gradient pill (was overlapping). Cyan to match upper SVG band. */
    bottom: 280px;
    left: -50px;
    width: 76px;
    height: 76px;
    background: transparent;
    border: 2px solid #3bcfd4;
    opacity: 0.5;
}
.products__shapey-circle--c1 {
    /* large solid, well right of pill cluster — orange */
    bottom: 240px;
    left: 290px;
    width: 60px;
    height: 60px;
    background: #fc9305;
    opacity: 0.45;
}
.products__shapey-circle--c2 {
    /* moved right of pill-outline to avoid overlap — cyan */
    bottom: 30px;
    left: 180px;
    width: 56px;
    height: 56px;
    background: #3bcfd4;
    opacity: 0.45;
}
.products__shapey-circle--c3 {
    /* medium green, above pills */
    bottom: 320px;
    left: 200px;
    width: 44px;
    height: 44px;
    background: #71D11E;
    opacity: 0.5;
}
.products__shapey-circle--c4 {
    /* small near top — orange outline */
    bottom: 380px;
    left: 90px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid #fc9305;
    opacity: 0.55;
}
.products__shapey-circle--c5 {
    /* small accent — the one pink touch, at low opacity to match faded original */
    bottom: 200px;
    left: 170px;
    width: 24px;
    height: 24px;
    background: #f20094;
    opacity: 0.4;
}

/* -- Products responsive -- */
@media (min-width: 768px) {
    .products__title { font-size: 40px; }
    .products__shapey { display: block; }
}

@media (min-width: 1200px) {
    .products__title { font-size: 48px; line-height: 54px; }
}


/* =============================================
   NUMBERS BAR
   ============================================= */
.numbers {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.numbers__row {
    gap: 40px;
}

.numbers__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.numbers__value {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
}

.numbers__value--cyan {
    color: #33C6F4;
}

.numbers__label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    color: #8892A7;
}

.numbers__divider {
    display: none;
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* -- Numbers responsive -- */
@media (min-width: 768px) {
    .numbers__row { gap: 80px; }
    .numbers__value { font-size: 36px; line-height: 44px; }
    .numbers__divider { display: block; }
}


/* =============================================
   SOLUTIONS — "Every Light You Need. One System."
   ============================================= */
.solutions {
    padding: 120px 0;
    overflow: hidden;
}

/* -- Section pills (decorative) -- */
.solutions__pills {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.solutions__pill--green {
    position: absolute;
    top: 60px;
    right: -50px;
    width: 140px;
    height: 46px;
    border-radius: 23px;
    background: #71D11E;
    opacity: 0.5;
    transform: rotate(45deg);
    transform-origin: 0% 0%;
}

.solutions__dot--orange {
    position: absolute;
    bottom: 80px;
    left: 50px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #F58220;
    opacity: 0.6;
}

.solutions__dot--cyan {
    position: absolute;
    top: 120px;
    left: 180px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #33C6F4;
    opacity: 0.5;
}

/* -- Section header -- */
.solutions__header {
    margin-bottom: 48px;
    gap: 24px;
}

.solutions__header-left {
    max-width: 640px;
}

.solutions__eyebrow {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #33C6F4;
    margin-bottom: 16px;
}

.solutions__title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
}

.solutions__desc {
    max-width: 440px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #8892A7;
    margin: 0;
    align-self: flex-end;
}

/* -- Grid -- */
.solutions__grid {
    gap: 20px;
    position: relative;
    z-index: 2;
}

.solutions__card {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #171730 0%, #131328 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: transform 0.25s, border-color 0.25s;
}

.solutions__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.solutions__card-img {
    flex: 1;
    background-position: center;
    background-size: cover;
    background-color: rgba(51, 198, 244, 0.03);
}

.solutions__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solutions__card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.solutions__card-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* -- Solutions responsive -- */
@media (min-width: 576px) {
    .solutions__card { flex: 1 1 calc(50% - 20px); }
}

@media (min-width: 768px) {
    .solutions__pills { display: block; }
    .solutions__title { font-size: 42px; }
    .solutions__desc { font-size: 17px; }
}

@media (min-width: 992px) {
    .solutions__card { flex: 1 1 0%; }
}

@media (min-width: 1200px) {
    .solutions__title { font-size: 52px; line-height: 56px; }
}


/* =============================================
   SECTORS — Residential & Commercial
   ============================================= */
.sectors {
    padding: 0 0 120px;
    overflow: hidden;
}

/* -- Decorative -- */
.sectors__decor {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.sectors__dot--cyan {
    position: absolute;
    top: 60px;
    right: 120px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #33C6F4;
    opacity: 0.5;
}

.sectors__pill--orange {
    position: absolute;
    bottom: 80px;
    left: 100px;
    width: 32px;
    height: 10px;
    border-radius: 5px;
    background: #F58220;
    opacity: 0.3;
    transform: rotate(-30deg);
    transform-origin: 0% 0%;
}

.sectors__dot--pink {
    position: absolute;
    top: 200px;
    left: 60px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F9267E;
    opacity: 0.45;
}

/* -- Row -- */
.sectors__row {
    gap: 20px;
}

/* -- Card -- */
.sectors__card {
    position: relative;
    display: flex;
    flex: 1 1 100%;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #131328 0%, #171730 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sectors__card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    gap: 16px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.sectors__card-img {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

/* -- Typography -- */
.sectors__eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 16px;
}

.sectors__eyebrow--cyan { color: #33C6F4; }
.sectors__eyebrow--orange { color: #F58220; }

.sectors__title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.sectors__desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #8892A7;
    max-width: 360px;
    margin: 0;
}

.sectors__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: opacity 0.2s;
}

.sectors__link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.sectors__link--cyan { color: #33C6F4; }
.sectors__link--cyan:hover { color: #33C6F4; }
.sectors__link--orange { color: #F58220; }
.sectors__link--orange:hover { color: #F58220; }

/* -- Sectors responsive -- */
@media (min-width: 768px) {
    .sectors__decor { display: block; }
    .sectors__card { min-height: 480px; flex: 1 1 0%; }
    .sectors__card-content { padding: 48px; width: 50%; flex: none; }
    .sectors__card-img { display: block; }
    .sectors__title { font-size: 36px; line-height: 40px; }
}


/* =============================================
   DEMO INTRO — "Try Before You Buy"
   ============================================= */
.demo-intro {
    padding: 120px 0;
    overflow: hidden;
}

/* -- Decorative -- */
.demo-intro__decor {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.demo-intro__dot--cyan {
    position: absolute;
    top: 80px;
    right: 60px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #33C6F4;
    opacity: 0.5;
}

.demo-intro__pill--green-lg {
    position: absolute;
    bottom: 100px;
    left: -50px;
    width: 280px;
    height: 48px;
    border-radius: 100px;
    background: #71D11E;
    opacity: 0.32;
    transform: rotate(-40deg);
    transform-origin: 0% 100%;
}

.demo-intro__pill--green-md {
    position: absolute;
    bottom: 200px;
    left: -25px;
    width: 280px;
    height: 48px;
    border-radius: 100px;
    background: linear-gradient(90deg, #71D11E 0%, #3BCFD4 100%);
    opacity: 0.5;
    transform: rotate(-40deg);
    transform-origin: 0% 100%;
}
.demo-intro__pill--green-sm {
    position: absolute;
    bottom: 225px;
    left: -85px;
    width: 280px;
    height: 48px;
    border-radius: 100px;
    background: transparent;
    border: 2px solid #71D11E;
    opacity: 0.5;
    transform: rotate(-40deg);
    transform-origin: 0% 100%;
}

/* -- Layout -- */
.demo-intro__row {
    gap: 40px;
}

.demo-intro__text {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-intro__preview {
    flex: 1 1 100%;
}

/* -- Text content -- */
.demo-intro__eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #71D11E;
    line-height: 16px;
}

.demo-intro__title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 36px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
}

.demo-intro__desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 17px;
    line-height: 28px;
    color: #8892A7;
    max-width: 500px;
    margin: 0;
}

.demo-intro__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 16px 36px;
    border-radius: 100px;
    background: linear-gradient(135deg, #71D11E, #5ab618);
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0A1229;
    text-decoration: none;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

a.demo-intro__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(113, 209, 30, 0.3);
    color: #F9267E !important;
    text-decoration: none !important;
}

/* -- Preview card -- */
.demo-intro__preview-inner {
    position: relative;
}

/* Donnie head — behind the house */
.demo-intro__donnie-head {
    position: absolute;
    top: 0;
    right: 72px;
    width: 69px;
    height: 83px;
    background: url('../images/DonnieHead.svg') no-repeat center / contain;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* Donnie paws — in front of the house */
.demo-intro__donnie-paws {
    position: absolute;
    top: -8px;
    right: 57px;
    width: 102px;
    height: 47px;
    background:
        url('../images/LeftPaw.svg') no-repeat left center / 21px auto,
        url('../images/RightPaw.svg') no-repeat right center / 21px auto;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.45s ease 0.05s, opacity 0.25s ease 0.05s;
    pointer-events: none;
    z-index: 4;
}

/* Scroll-triggered active state */
.demo-intro__preview-inner.is-visible .demo-intro__donnie-head {
    transform: translateY(-75%);
    opacity: 1;
}

.demo-intro__preview-inner.is-visible .demo-intro__donnie-paws {
    transform: translateY(1px);
    opacity: 1;
}

.demo-intro__house {
    position: relative;
    z-index: 2;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 24px;
    border: 1px solid rgba(113, 209, 30, 0.1);
}

.demo-intro__house-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

/* -- Animation picker (replaces old color dots) -- */
.demo-picker {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 4;
    width: min(320px, calc(100% - 48px));
}

.demo-picker__trigger {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: linear-gradient(155deg, rgba(15, 23, 42, 0.78) 0%, rgba(30, 27, 75, 0.72) 100%);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    color: #fff;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.demo-picker__trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00C6FF 30%, #8B5CF6 70%, transparent);
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.demo-picker__trigger:hover,
.demo-picker__trigger:focus-visible {
    border-color: rgba(0, 198, 255, 0.4);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 198, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    outline: none;
    transform: translateY(-1px);
}

.demo-picker__trigger:hover::before {
    opacity: 1;
}

.demo-picker__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(0, 198, 255, 0.85);
    text-transform: uppercase;
}

.demo-picker__current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.demo-picker__current-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-picker__chevron {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, color 0.25s ease;
}

.demo-picker[data-open="true"] .demo-picker__chevron {
    transform: rotate(180deg);
    color: #00C6FF;
}

.demo-picker[data-open="true"] .demo-picker__trigger {
    border-color: rgba(0, 198, 255, 0.5);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 198, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.demo-picker__list {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: linear-gradient(155deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 27, 75, 0.88) 100%);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transform-origin: bottom center;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1), visibility 0.25s;
}

.demo-picker[data-open="true"] .demo-picker__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.demo-picker__item {
    display: block;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.25s ease;
}

.demo-picker__item:hover,
.demo-picker__item:focus-visible {
    background: linear-gradient(90deg, rgba(0, 198, 255, 0.18) 0%, rgba(139, 92, 246, 0.12) 100%);
    color: #fff;
    padding-left: 18px;
    text-decoration: none;
    outline: none;
}

.demo-picker__list::-webkit-scrollbar {
    width: 6px;
}
.demo-picker__list::-webkit-scrollbar-track {
    background: transparent;
}
.demo-picker__list::-webkit-scrollbar-thumb {
    background: rgba(0, 198, 255, 0.3);
    border-radius: 3px;
}

.demo-picker__empty {
    padding: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-align: center;
}

/* -- Demo intro responsive -- */
@media (min-width: 768px) {
    .demo-intro__decor { display: block; }
    .demo-intro__house { height: 400px; }
}

@media (min-width: 992px) {
    .demo-intro__row { gap: 80px; flex-wrap: nowrap; }
    .demo-intro__text { flex: 0 0 auto; max-width: 500px; }
    .demo-intro__preview { flex: 1 1 0%; }
    .demo-intro__title { font-size: 52px; line-height: 56px; }
}


/* =============================================
   THE WATTS DIFFERENCE — Bento Grid
   ============================================= */
.watts-diff {
    padding: 120px 0 80px;
    overflow: hidden;
}

/* -- Decorative -- */
.watts-diff__decor {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.watts-diff__dot--pink {
    position: absolute;
    top: 200px;
    right: 60px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F9267E;
    opacity: 0.4;
}

.watts-diff__dot--cyan {
    position: absolute;
    top: 500px;
    left: 40px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #33C6F4;
    opacity: 0.35;
}

.watts-diff__dot--orange {
    position: absolute;
    bottom: 300px;
    right: 200px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F58220;
    opacity: 0.4;
}

.watts-diff__pill--green {
    position: absolute;
    bottom: 100px;
    left: 120px;
    width: 32px;
    height: 10px;
    border-radius: 5px;
    background: #71D11E;
    opacity: 0.3;
    transform: rotate(35deg);
    transform-origin: 0% 0%;
}

/* -- Header -- */
.watts-diff__header {
    margin-bottom: 48px;
}

.watts-diff__eyebrow {
    display: block;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #33C6F4;
    margin-bottom: 12px;
}

.watts-diff__title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

/* -- Bento Grid -- */
.watts-diff__grid {
    gap: 20px;
}

/* -- Card base -- */
.watts-diff__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #0D0D14;
    padding: 0;
}

.watts-diff__card-top {
    padding: 28px 32px 0;
    position: relative;
    z-index: 2;
}

.watts-diff__card-bottom {
    padding: 0 32px 28px;
    position: relative;
    z-index: 2;
}

/* -- Icon -- */
.watts-diff__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
    z-index: 2;
}

.watts-diff__icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.75;
}

.watts-diff__icon--cyan {
    background: rgba(0, 210, 255, 0.18);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.35), inset 0 0 20px rgba(0, 210, 255, 0.15);
}
.watts-diff__icon--cyan svg { filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.7)); }

.watts-diff__icon--purple {
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4), inset 0 0 20px rgba(168, 85, 247, 0.18);
}
.watts-diff__icon--purple svg { filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.75)); }

.watts-diff__icon--gold {
    background: rgba(255, 181, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 181, 0, 0.4), inset 0 0 20px rgba(255, 181, 0, 0.18);
}
.watts-diff__icon--gold svg { filter: drop-shadow(0 0 10px rgba(255, 181, 0, 0.75)); }

.watts-diff__icon--green {
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4), inset 0 0 20px rgba(34, 197, 94, 0.18);
}
.watts-diff__icon--green svg { filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.75)); }

/* -- Number -- */
.watts-diff__num {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 72px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
}

.watts-diff__num--cyan { color: rgba(0, 210, 255, 0.6); }
.watts-diff__num--purple { color: rgba(168, 85, 247, 0.6); }
.watts-diff__num--gold { color: rgba(255, 181, 0, 0.6); }
.watts-diff__num--green { color: rgba(34, 197, 94, 0.6); }

/* -- Card text -- */
.watts-diff__card-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.watts-diff__card-desc {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* -- Card accent borders -- */
.watts-diff__card--cyan { border: 1px solid rgba(0, 210, 255, 0.12); }

/* Card 01: house photo background, faded with overlay for legibility */
.watts-diff__card--wide.watts-diff__card--cyan::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/Media.webp');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.38;
    z-index: 0;
    pointer-events: none;
}

.watts-diff__card--wide.watts-diff__card--cyan::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 20, 0.15) 0%, rgba(13, 13, 20, 0.55) 75%, rgba(13, 13, 20, 0.9) 100%),
        radial-gradient(ellipse at 20% 90%, rgba(13, 13, 20, 0.65) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

/* Boost cyan glows on this card so they punch through the photo */
.watts-diff__card--wide.watts-diff__card--cyan .watts-diff__glow--cyan-lg {
    background: radial-gradient(circle, rgba(0, 210, 255, 0.32) 0%, rgba(0, 210, 255, 0.08) 50%, transparent 72%);
    filter: blur(2px);
    z-index: 1;
}
.watts-diff__card--wide.watts-diff__card--cyan .watts-diff__glow--cyan-sm {
    background: radial-gradient(circle, rgba(0, 210, 255, 0.18) 0%, transparent 60%);
    filter: blur(2px);
    z-index: 1;
}
.watts-diff__card--purple { border: 1px solid rgba(168, 85, 247, 0.12); }

/* Card 02: colorful luxury house background, faded with overlay for legibility */
.watts-diff__card--narrow.watts-diff__card--purple::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/Watts_Lights_Colorful_Luxury_House_permanent_led.png');
    background-size: cover;
    background-position: center 45%;
    opacity: 0.42;
    z-index: 0;
    pointer-events: none;
}

.watts-diff__card--narrow.watts-diff__card--purple::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 20, 0.2) 0%, rgba(13, 13, 20, 0.6) 70%, rgba(13, 13, 20, 0.92) 100%),
        radial-gradient(ellipse at 25% 90%, rgba(13, 13, 20, 0.7) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

.watts-diff__card--narrow.watts-diff__card--purple .watts-diff__glow--purple {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.38) 0%, rgba(168, 85, 247, 0.08) 50%, transparent 72%);
    filter: blur(2px);
    z-index: 1;
}
.watts-diff__card--gold { border: 1px solid rgba(255, 181, 0, 0.12); }

/* Card 03: pastel luxury house background, faded with overlay for legibility */
.watts-diff__card--narrow.watts-diff__card--gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/Watts_lights_luxury_house_pastel.png');
    background-size: cover;
    background-position: center 55%;
    opacity: 0.36;
    z-index: 0;
    pointer-events: none;
}

.watts-diff__card--narrow.watts-diff__card--gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 20, 0.25) 0%, rgba(13, 13, 20, 0.6) 70%, rgba(13, 13, 20, 0.92) 100%),
        radial-gradient(ellipse at 25% 90%, rgba(13, 13, 20, 0.7) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

.watts-diff__card--narrow.watts-diff__card--gold .watts-diff__glow--gold {
    background: radial-gradient(circle, rgba(255, 181, 0, 0.32) 0%, rgba(255, 181, 0, 0.07) 50%, transparent 72%);
    filter: blur(2px);
    z-index: 1;
}
.watts-diff__card--green { border: 1px solid rgba(34, 197, 94, 0.12); }

/* Card 04: dusk luxury house background, faded with overlay for legibility */
.watts-diff__card--wide.watts-diff__card--green::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/watts_lights_dusk.png');
    background-size: cover;
    background-position: center 50%;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.watts-diff__card--wide.watts-diff__card--green::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 20, 0.2) 0%, rgba(13, 13, 20, 0.55) 70%, rgba(13, 13, 20, 0.92) 100%),
        radial-gradient(ellipse at 20% 90%, rgba(13, 13, 20, 0.7) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

.watts-diff__card--wide.watts-diff__card--green .watts-diff__glow--green-lg {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.06) 50%, transparent 72%);
    filter: blur(2px);
    z-index: 1;
}
.watts-diff__card--wide.watts-diff__card--green .watts-diff__glow--green-sm {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, transparent 60%);
    filter: blur(2px);
    z-index: 1;
}

/* -- Radial glow orbs -- */
.watts-diff__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Cyan glows */
.watts-diff__glow--cyan-lg {
    top: -40px;
    right: -20px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.18) 0%, rgba(0, 210, 255, 0.04) 50%, transparent 70%);
}
.watts-diff__glow--cyan-sm {
    bottom: -30px;
    left: 120px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 60%);
}

/* Purple glow */
.watts-diff__glow--purple {
    top: 20px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.04) 50%, transparent 70%);
}

/* Gold glow */
.watts-diff__glow--gold {
    bottom: -20px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 181, 0, 0.15) 0%, rgba(255, 181, 0, 0.03) 50%, transparent 70%);
}

/* Green glows */
.watts-diff__glow--green-lg {
    top: -30px;
    left: 40%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.03) 50%, transparent 70%);
}
.watts-diff__glow--green-sm {
    bottom: -40px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
}

/* -- Watts Diff responsive -- */
@media (min-width: 768px) {
    .watts-diff__decor { display: block; }
    .watts-diff__title { font-size: 42px; }
}

@media (min-width: 992px) {
    .watts-diff__title { font-size: 52px; line-height: 58px; }
    .watts-diff__card--wide { flex: 1 1 calc(58% - 10px); }
    .watts-diff__card--narrow { flex: 1 1 calc(42% - 10px); }
}


/* =============================================
   APP SHOWCASE SECTION
   ============================================= */

.app-showcase {
    background: #0a0a0f;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* -- Decorative elements -- */
.app-showcase__decor { pointer-events: none; }

.app-showcase__blob {
    position: absolute;
    width: 400px;
    height: 400px;
}
.app-showcase__blob--left {
    top: 5%;
    left: -100px;
    transform: rotate(-20deg);
    opacity: 0.12;
}
.app-showcase__blob--right {
    bottom: 10%;
    right: -80px;
    transform: rotate(160deg);
    opacity: 0.225;
}

.app-showcase__dot {
    position: absolute;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}
.app-showcase__dot--cyan {
    background: #00C6FF;
    top: 18%;
    left: 12%;
    box-shadow: 0 0 14px rgba(0, 198, 255, 0.6);
}
.app-showcase__dot--green {
    background: #34D399;
    bottom: 25%;
    right: 10%;
    box-shadow: 0 0 14px rgba(52, 211, 153, 0.6);
}
.app-showcase__dot--purple {
    background: #8B5CF6;
    width: 14px;
    height: 14px;
    top: 8%;
    right: 18%;
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.6);
}
.app-showcase__dot--pink {
    background: #EC4899;
    width: 5px;
    height: 5px;
    top: 42%;
    left: 6%;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.7);
}
.app-showcase__dot--yellow {
    background: #FBBF24;
    width: 6px;
    height: 6px;
    bottom: 12%;
    left: 22%;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}
.app-showcase__dot--orange {
    background: #F97316;
    width: 10px;
    height: 10px;
    top: 62%;
    right: 6%;
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.55);
}
.app-showcase__dot--cyan-2 {
    background: #22D3EE;
    width: 4px;
    height: 4px;
    top: 72%;
    left: 14%;
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.7);
}
.app-showcase__dot--green-2 {
    background: #34D399;
    width: 5px;
    height: 5px;
    top: 14%;
    left: 38%;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
    opacity: 0.7;
}

.app-showcase__pill {
    position: absolute;
    width: 40px;
    height: 14px;
    border-radius: 7px;
    background: rgba(236, 72, 153, 0.35);
    top: 30%;
    right: 8%;
    transform: rotate(25deg);
}
.app-showcase__pill--cyan {
    width: 56px;
    height: 10px;
    border-radius: 5px;
    background: rgba(0, 198, 255, 0.3);
    top: 70%;
    left: 4%;
    transform: rotate(-18deg);
}
.app-showcase__pill--purple {
    width: 28px;
    height: 10px;
    border-radius: 5px;
    background: rgba(139, 92, 246, 0.4);
    bottom: 18%;
    right: 24%;
    transform: rotate(40deg);
}
.app-showcase__pill--green {
    width: 64px;
    height: 8px;
    border-radius: 4px;
    background: rgba(52, 211, 153, 0.28);
    top: 50%;
    right: 14%;
    transform: rotate(-30deg);
}
.app-showcase__pill--yellow {
    width: 22px;
    height: 8px;
    border-radius: 4px;
    background: rgba(251, 191, 36, 0.4);
    top: 22%;
    left: 28%;
    transform: rotate(15deg);
}

/* -- Header -- */
.app-showcase__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A855F7;
}

.app-showcase__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.15;
    color: #fff;
}

.app-showcase__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 520px;
}

/* -- Download buttons -- */
.app-showcase__dl-btn {
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s;
}
.app-showcase__dl-btn:hover {
    text-decoration: none;
    opacity: 0.85;
}
.app-showcase__dl-btn--ios {
    background: #fff;
    color: #111;
}
.app-showcase__dl-btn--ios:hover { color: #111; }
.app-showcase__dl-btn--android {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.app-showcase__dl-btn--android:hover { color: #fff; }

/* -- Tab pills -- */
.app-showcase__tabs {
    gap: 8px;
    max-width: 100%;
}

.app-showcase__tab {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.app-showcase__tab:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}
.app-showcase__tab--active {
    background: linear-gradient(135deg, #A855F7, #7C3AED);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}
.app-showcase__tab--active:hover {
    color: #fff;
    background: linear-gradient(135deg, #A855F7, #7C3AED);
}

/* -- Content area -- */
.app-showcase__content {
    max-width: 1280px;
    width: 100%;
    flex-direction: column;
    gap: 40px;
}

/* -- Phone mockup -- */
.app-showcase__phone-area {
    flex-shrink: 0;
    width: 220px;
}

.app-showcase__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(168, 85, 247, 0.55) 0%, rgba(168, 85, 247, 0.18) 40%, rgba(0, 198, 255, 0.08) 65%, transparent 75%);
    filter: blur(8px);
    pointer-events: none;
    z-index: 0;
}

.app-showcase__phone {
    position: relative;
    z-index: 1;
    width: 100%;
}

.app-showcase__phone-img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 40px rgba(168, 85, 247, 0.25));
}

.app-showcase__highlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.app-showcase__hl {
    position: absolute;
    border-radius: 14px;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --hl-color: 0, 198, 255;
    background: radial-gradient(ellipse at center, rgba(var(--hl-color), 0.18) 0%, rgba(var(--hl-color), 0.04) 60%, transparent 100%);
    box-shadow:
        inset 0 0 0 1px rgba(var(--hl-color), 0.85),
        inset 0 0 18px rgba(var(--hl-color), 0.35),
        0 0 0 1px rgba(var(--hl-color), 0.25),
        0 0 22px rgba(var(--hl-color), 0.6),
        0 0 44px rgba(var(--hl-color), 0.35);
    animation: appHlPulse 2.6s ease-in-out infinite;
    animation-play-state: paused;
}

.app-showcase__hl::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(var(--hl-color), 0.9), rgba(255, 255, 255, 0.4) 50%, rgba(var(--hl-color), 0.9));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    padding: 1px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

@keyframes appHlPulse {
    0%, 100% {
        box-shadow:
            inset 0 0 0 1px rgba(var(--hl-color), 0.85),
            inset 0 0 18px rgba(var(--hl-color), 0.35),
            0 0 0 1px rgba(var(--hl-color), 0.25),
            0 0 22px rgba(var(--hl-color), 0.6),
            0 0 44px rgba(var(--hl-color), 0.35);
    }
    50% {
        box-shadow:
            inset 0 0 0 1px rgba(var(--hl-color), 1),
            inset 0 0 24px rgba(var(--hl-color), 0.5),
            0 0 0 1px rgba(var(--hl-color), 0.4),
            0 0 32px rgba(var(--hl-color), 0.85),
            0 0 64px rgba(var(--hl-color), 0.5);
    }
}

/* Reveal active highlight */
.app-showcase__highlight[data-highlight="0"] .app-showcase__hl--anim,
.app-showcase__highlight[data-highlight="1"] .app-showcase__hl--pat,
.app-showcase__highlight[data-highlight="2"] .app-showcase__hl--bright-a,
.app-showcase__highlight[data-highlight="2"] .app-showcase__hl--bright-b,
.app-showcase__highlight[data-highlight="3"] .app-showcase__hl--speed,
.app-showcase__highlight[data-highlight="4"] .app-showcase__hl--intensity,
.app-showcase__highlight[data-highlight="5"] .app-showcase__hl--save,
.app-showcase__highlight[data-highlight="6"] .app-showcase__hl--presets {
    opacity: 1;
    transform: scale(1);
    animation-play-state: running;
}

.app-showcase__highlight[data-highlight="0"] .app-showcase__hl--anim::after,
.app-showcase__highlight[data-highlight="1"] .app-showcase__hl--pat::after,
.app-showcase__highlight[data-highlight="2"] .app-showcase__hl--bright-a::after,
.app-showcase__highlight[data-highlight="2"] .app-showcase__hl--bright-b::after,
.app-showcase__highlight[data-highlight="3"] .app-showcase__hl--speed::after,
.app-showcase__highlight[data-highlight="4"] .app-showcase__hl--intensity::after,
.app-showcase__highlight[data-highlight="5"] .app-showcase__hl--save::after,
.app-showcase__highlight[data-highlight="6"] .app-showcase__hl--presets::after {
    opacity: 0.6;
}

/* Per-feature regions + brand colors (match the numbered list 01–07) */
.app-showcase__hl--anim       { top: 17%;   left: 25%; width: 50%; height: 5.5%;  --hl-color: 0, 198, 255;  border-radius: 999px; }
.app-showcase__hl--pat        { top: 21%;   left: 14%; width: 72%; height: 12%;   --hl-color: 236, 72, 153; }
.app-showcase__hl--bright-a   { top: 56.5%; left: 12%; width: 76%; height: 5%;    --hl-color: 34, 211, 238; border-radius: 999px; }
.app-showcase__hl--bright-b   { top: 73%;   left:  6%; width: 88%; height: 5%;    --hl-color: 34, 211, 238; border-radius: 999px; }
.app-showcase__hl--speed      { top: 77%;   left:  6%; width: 46%; height: 5%;    --hl-color: 251, 191, 36; border-radius: 999px; }
.app-showcase__hl--intensity  { top: 77%;   left: 47%; width: 44%; height: 5%;    --hl-color: 52, 211, 153; border-radius: 999px; }
.app-showcase__hl--save       { top: 80.5%; left: 47%; width: 44%; height: 6.5%;  --hl-color: 249, 115, 22; border-radius: 10px; }
.app-showcase__hl--presets    { top: 86%;   left: 51%; width: 18%; height: 5.5%;  --hl-color: 139, 92, 246; border-radius: 12px; }

@media (prefers-reduced-motion: reduce) {
    .app-showcase__hl { animation: none !important; transition: opacity 0.2s linear; }
}

/* -- Feature list -- */
.app-showcase__features {
    flex: 1;
    min-width: 0;
}

.app-showcase__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.app-showcase__feature--active {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.app-showcase__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}
.app-showcase__feature--active .app-showcase__num {
    opacity: 1;
}

.app-showcase__feature-body {
    flex: 1;
    min-width: 0;
}

.app-showcase__feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.app-showcase__feature--active .app-showcase__feature-title {
    color: #fff;
}

.app-showcase__feature-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.45);
    margin: 8px 0 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}
.app-showcase__feature--active .app-showcase__feature-desc {
    max-height: 300px;
    opacity: 1;
}

.app-showcase__feature-tip {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 12px 0 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.10), rgba(168, 85, 247, 0.10));
    border: 1px solid rgba(0, 198, 255, 0.25);
    box-shadow: 0 0 24px rgba(0, 198, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease, border-color 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    border-color: transparent;
}

.app-showcase__feature--active .app-showcase__feature-tip {
    max-height: 200px;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 12px;
    border-color: rgba(0, 198, 255, 0.25);
}

.app-showcase__feature-tip-link {
    color: #00C6FF;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 198, 255, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.app-showcase__feature-tip-link:hover,
.app-showcase__feature-tip-link:focus {
    color: #66dcff;
    border-bottom-color: #66dcff;
    text-shadow: 0 0 12px rgba(0, 198, 255, 0.6);
}

.app-showcase__feature-tip-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00C6FF;
    background: rgba(0, 198, 255, 0.15);
    padding: 2px 8px;
    border-radius: 999px;
    margin-right: 8px;
    vertical-align: 1px;
    text-shadow: 0 0 12px rgba(0, 198, 255, 0.5);
}

/* -- App Showcase responsive -- */
@media (min-width: 768px) {
    .app-showcase {
        padding: 80px 40px;
        gap: 48px;
    }
    .app-showcase__title { font-size: 42px; }
    .app-showcase__subtitle { font-size: 17px; }
    .app-showcase__tab { font-size: 12px; padding: 9px 18px; }
    .app-showcase__content { flex-direction: row; gap: 60px; }
    .app-showcase__phone-area { width: 260px; }
    .app-showcase__glow { width: 520px; height: 520px; }
    .app-showcase__num { font-size: 44px; width: 70px; }
    .app-showcase__feature-title { font-size: 18px; }
}

@media (min-width: 992px) {
    .app-showcase {
        padding: 120px 80px;
        gap: 56px;
    }
    .app-showcase__title { font-size: 48px; line-height: 56px; }
    .app-showcase__content { gap: 100px; }
    .app-showcase__phone-area { width: 320px; }
    .app-showcase__glow { width: 620px; height: 620px; }
    .app-showcase__num { font-size: 52px; width: 80px; }
    .app-showcase__feature-title { font-size: 20px; }
    .app-showcase__feature-desc { font-size: 15px; }
    .app-showcase__feature { gap: 20px; padding: 20px 0; }
}


/* =============================================
   INTEGRATIONS SECTION
   ============================================= */

.integrations {
    background: #0A1229;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* -- Header -- */
.integrations__header { padding-bottom: 12px; }

.integrations__eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #33C6F4;
}

.integrations__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}

.integrations__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #8892A7;
    max-width: 580px;
}

/* -- Controller Cards -- */
.integrations__cards {
    max-width: 1280px;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

.integrations__card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #162040 0%, #11192e 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.integrations__card--w3 {
    border-color: rgba(51, 198, 244, 0.15);
}

/* Card header */
.integrations__card-header {
    padding: 28px 24px 20px;
}

.integrations__card-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8892A7;
    line-height: 16px;
}

.integrations__card-version {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 34px;
}

/* Badges */
.integrations__badge {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    line-height: 14px;
}
.integrations__badge--ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #8892A7;
}
.integrations__badge--cyan {
    background: rgba(51, 198, 244, 0.08);
    border: 1px solid rgba(51, 198, 244, 0.2);
    color: #33C6F4;
    font-weight: 700;
}

/* Card divider */
.integrations__card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

/* Card body */
.integrations__card-body {
    padding: 8px 0;
}

/* Integration rows */
.integrations__row {
    padding: 16px 24px;
}

.integrations__row-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 32px;
}

/* Icon squares */
.integrations__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
}
.integrations__icon--gold { background: rgba(206, 175, 98, 0.1); }
.integrations__icon--blue { background: rgba(65, 174, 217, 0.1); }
.integrations__icon--mtr  { background: rgba(255, 255, 255, 0.06); }

.integrations__icon-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 14px;
    line-height: 18px;
}
.integrations__icon-text--gold { color: #CEAF62; }
.integrations__icon-text--blue { color: #41AED9; }
.integrations__icon-text--mtr  {
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.03em;
}

/* Row text */
.integrations__row-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.integrations__row-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    line-height: 18px;
}

.integrations__row-status {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #8892A7;
    line-height: 16px;
}

/* Get Driver buttons */
.integrations__driver-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.integrations__driver-btn:hover {
    text-decoration: none;
    opacity: 0.8;
}
.integrations__driver-btn--gold {
    background: rgba(206, 175, 98, 0.08);
    border: 1px solid rgba(206, 175, 98, 0.15);
    color: #CEAF62;
}
.integrations__driver-btn--gold:hover { color: #CEAF62; }
.integrations__driver-btn--blue {
    background: rgba(65, 174, 217, 0.08);
    border: 1px solid rgba(65, 174, 217, 0.15);
    color: #41AED9;
}
.integrations__driver-btn--blue:hover { color: #41AED9; }

/* Ready indicator */
.integrations__ready {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #71D11E;
    display: flex;
    align-items: center;
    gap: 6px;
}
.integrations__ready-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #71D11E;
    display: inline-block;
}

/* -- Platform Badges -- */
.integrations__badges {
    gap: 16px;
}

.integrations__platform {
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    gap: 10px;
}

.integrations__platform-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.integrations__platform-icon--gold  { background: rgba(206, 175, 98, 0.12); }
.integrations__platform-icon--blue  { background: rgba(65, 174, 217, 0.12); }
.integrations__platform-icon--green { background: rgba(113, 209, 30, 0.1); }

.integrations__platform-abbr {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1;
}
.integrations__platform-abbr--gold {
    font-size: 11px;
    color: #CEAF62;
}
.integrations__platform-abbr--blue {
    font-size: 11px;
    color: #41AED9;
}
.integrations__platform-abbr--green {
    font-size: 10px;
    font-weight: 800;
    color: #71D11E;
}

.integrations__platform-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 18px;
}

/* -- Integrations responsive -- */
@media (min-width: 768px) {
    .integrations {
        padding: 80px 40px;
        gap: 56px;
    }
    .integrations__title { font-size: 42px; }
    .integrations__subtitle { font-size: 17px; }
    .integrations__cards { flex-direction: row; gap: 24px; }
    .integrations__card-header { padding: 32px 32px 24px; }
    .integrations__row { padding: 20px 32px; }
    .integrations__badges { gap: 32px; }
}

@media (min-width: 992px) {
    .integrations {
        padding: 80px 80px;
    }
    .integrations__title { font-size: 48px; line-height: 52px; }
}


/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

/* Testimonials section styles moved to assets/css/testimonials.css and are
   self-enqueued by customer_testimonial() in lib/watts_functions.php so the
   component works on every page (homepage, animation archive, etc.). */


/* =============================================
   OUR PARTNERS SECTION
   ============================================= */

.partners {
    background: #0a0a0f;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* -- Decorative -- */
.partners__decor { pointer-events: none; }

.partners__dot {
    position: absolute;
    border-radius: 50%;
}
.partners__dot--green {
    width: 12px;
    height: 12px;
    background: #71D11E;
    top: 60px;
    right: 40px;
}
.partners__dot--pink {
    width: 8px;
    height: 8px;
    background: #EC4899;
    bottom: 200px;
    left: 100px;
}
.partners__pill--orange {
    position: absolute;
    width: 30px;
    height: 10px;
    border-radius: 5px;
    background: rgba(245, 130, 32, 0.45);
    top: 50%;
    right: 60px;
    transform: rotate(20deg);
}

/* -- Header -- */
.partners__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #71D11E;
}

.partners__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.partners__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #8892A7;
    max-width: 520px;
}

/* -- Partner Type Cards -- */
.partners__types {
    gap: 20px;
}

.partners__type {
    padding: 20px 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    gap: 10px;
}

.partners__type-icon {
    width: 44px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.partners__type-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.partners__type-icon--contractor svg {
    filter: drop-shadow(0 4px 12px rgba(255, 0, 102, 0.35));
}

.partners__type-icon--distributor svg {
    filter: drop-shadow(0 4px 12px rgba(13, 176, 255, 0.35));
}

.partners__type:hover .partners__type-icon {
    transform: translateY(-3px) scale(1.04);
}

.partners__type-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.partners__type-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    line-height: 18px;
}

.partners__type-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #8892A7;
    line-height: 16px;
}

/* -- Partner Logo Row -- */
.partners__logos {
    max-width: 1280px;
    width: 100%;
    gap: 24px;
    padding: 32px 0;
}

.partners__logo-slot {
    width: 200px;
    height: 80px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 14px 22px;
    box-sizing: border-box;
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.35s ease, background 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.partners__logo-slot:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 198, 255, 0.4), 0 0 22px rgba(0, 198, 255, 0.2);
}

.partners__logo-slot img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Fallback for the old placeholder span (kept for safety if logos are ever
   removed during dev). */
.partners__logo-slot span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
}

/* -- Partners responsive -- */
@media (min-width: 768px) {
    .partners {
        padding: 80px 40px 40px;
        gap: 56px;
    }
    .partners__title { font-size: 42px; }
    .partners__subtitle { font-size: 17px; }
    .partners__types { gap: 32px; }
    .partners__type { padding: 20px 32px; }
}

@media (min-width: 992px) {
    .partners {
        padding: 120px 80px 40px;
    }
    .partners__title { font-size: 52px; line-height: 58px; }
}


/* ==========================================================================
   FIND A DEALER SECTION
   ========================================================================== */

.find-dealer {
    background: #0a0a0f;
    padding: 80px 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* -- Decorative elements -- */
.find-dealer__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.find-dealer__pill--green {
    position: absolute;
    top: 60px;
    right: 80px;
    width: 64px;
    height: 28px;
    border-radius: 14px;
    background: #71D11E;
    opacity: 0.18;
    transform: rotate(-18deg);
}
.find-dealer__pill--orange {
    position: absolute;
    top: 100px;
    right: 40px;
    width: 48px;
    height: 22px;
    border-radius: 11px;
    background: #F5A623;
    opacity: 0.14;
    transform: rotate(12deg);
}
.find-dealer__dot--cyan {
    position: absolute;
    top: 80px;
    right: 160px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #33C6F4;
    opacity: 0.3;
}
.find-dealer__dot--orange {
    position: absolute;
    bottom: 100px;
    left: 40px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F5A623;
    opacity: 0.2;
}

/* -- Header row -- */
.find-dealer__header {
    max-width: 1280px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.find-dealer__header-left {
    padding-right: 40px;
}

/* -- Typography -- */
.find-dealer__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #71D11E;
    text-transform: uppercase;
}
.find-dealer__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.12;
    color: #fff;
}
.find-dealer__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #8892A7;
    margin-bottom: 0;
}

/* -- Filter dropdowns -- */
.find-dealer__filters {
    gap: 10px;
    margin-top: 16px;
}
.find-dealer__filter-row {
    gap: 8px;
}
.find-dealer__step {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
}
.find-dealer__step--active {
    background: linear-gradient(135deg, #ff0066, #fd6a55);
    border-color: transparent;
    color: #fff;
}
.find-dealer__select:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.find-dealer__select {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 8px 32px 8px 14px;
    flex: 1 1 0;
    min-width: 0;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: border-color 0.2s, background-color 0.2s;
}
.find-dealer__select:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
}
.find-dealer__select:focus {
    outline: none;
    border-color: #33C6F4;
    box-shadow: 0 0 0 2px rgba(51, 198, 244, 0.15);
}
.find-dealer__select option {
    background: #1a1a24;
    color: #fff;
}

/* -- Postal code search -- */
.find-dealer__postal-wrap {
    gap: 10px;
}
.find-dealer__filter-or {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #555566;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.find-dealer__postal-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.find-dealer__postal-input {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 44px 10px 20px;
    width: 180px;
    transition: border-color 0.2s, background-color 0.2s;
}
.find-dealer__postal-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.find-dealer__postal-input:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
}
.find-dealer__postal-input:focus {
    outline: none;
    border-color: #71D11E;
    box-shadow: 0 0 0 2px rgba(113, 209, 30, 0.15);
}
.find-dealer__postal-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.find-dealer__postal-btn:hover {
    background: #71D11E;
    color: #0a0a0f;
}
.find-dealer__postal-input.is-error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* -- Map container -- */
/* -- Map + Sidebar body -- */
.find-dealer__body {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 0;
}
.find-dealer__map-wrap {
    width: 100%;
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
.find-dealer__map-wrap .locations-map-container {
    min-height: 350px !important;
    height: 400px !important;
}

/* -- Sidebar -- */
.find-dealer__sidebar {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.find-dealer__sidebar-header {
    padding: 14px 20px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.find-dealer__results-count {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #8892A7;
}

/* -- Results list cards -- */
.find-dealer__results-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    max-height: 400px;
}
.find-dealer__results-list::-webkit-scrollbar {
    width: 6px;
}
.find-dealer__results-list::-webkit-scrollbar-track {
    background: transparent;
}
.find-dealer__results-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

.find-dealer__result-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: background-color 0.2s;
    cursor: pointer;
}
.find-dealer__result-card:last-child {
    border-bottom: none;
}
.find-dealer__result-card:hover {
    background: rgba(255, 255, 255, 0.05);
}
.find-dealer__result-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}
.find-dealer__result-marker {
    width: 28px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.find-dealer__result-marker svg {
    width: 28px;
    height: 35px;
}
.find-dealer__result-info {
    min-width: 0;
}
.find-dealer__result-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.find-dealer__result-location {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #8892A7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.find-dealer__result-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.find-dealer__result-distance {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #71D11E;
    white-space: nowrap;
}
.find-dealer__result-status {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.find-dealer__result-status--active {
    color: #71D11E;
    background: rgba(113, 209, 30, 0.1);
}
.find-dealer__result-status--soon {
    color: #33C6F4;
    background: rgba(51, 198, 244, 0.1);
}
.find-dealer__result-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #F5A623;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}
.find-dealer__result-address {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #666;
}
.find-dealer__result-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.find-dealer__result-detail {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #8892A7;
    display: flex;
    align-items: center;
    gap: 4px;
}
a.find-dealer__result-link {
    color: #0db0ff;
    text-decoration: none;
    transition: color 0.2s;
}
a.find-dealer__result-link:hover {
    color: #33C6F4;
    text-decoration: underline;
}
.find-dealer__result-arrow {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* -- Find a Dealer responsive -- */
@media (min-width: 768px) {
    .find-dealer {
        padding: 100px 40px 80px;
        gap: 56px;
    }
    .find-dealer__title { font-size: 42px; }
    .find-dealer__subtitle { font-size: 17px; line-height: 28px; }
    .find-dealer__filters { margin-top: 0; }
}

@media (min-width: 992px) {
    .find-dealer {
        padding: 120px 0 0;
    }
    .find-dealer__header {
        padding: 0 80px;
    }
    .find-dealer__title { font-size: 52px; line-height: 58px; }
    .find-dealer__body {
        flex-direction: row;
    }
    .find-dealer__map-wrap {
        flex: 1 1 0;
        border-radius: 0;
    }
    .find-dealer__map-wrap .locations-map-container {
        min-height: 560px !important;
        height: 560px !important;
    }
    .find-dealer__sidebar {
        width: 380px;
        flex-shrink: 0;
        border-radius: 0;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: none;
        max-height: 560px;
    }
    .find-dealer__results-list {
        max-height: none;
        flex: 1 1 0;
    }
}

@media (max-width: 767px) {
    .find-dealer__header-left {
        padding-right: 0;
        margin-bottom: 8px;
    }
    .find-dealer__select {
        flex: 1 1 100%;
    }
    .find-dealer__postal-input {
        width: 100%;
    }
    .find-dealer__postal-wrap {
        width: 100%;
    }
    .find-dealer__map-wrap .locations-map-container {
        min-height: 300px !important;
        height: 360px !important;
    }
}

/* ===== Dealer Modal ===== */
.location-modal .modal-dialog {
    max-width: 420px;
}
.wl-modal {
    background: #111119;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    /* CRITICAL: Bootstrap's .modal-dialog disables pointer-events so backdrop
       clicks pass through. Bootstrap re-enables it on .modal-content; we use
       .wl-modal as our content wrapper, so we have to re-enable it here.
       Without this, all link/button clicks inside the modal fall through
       to the .modal element underneath, triggering Bootstrap's backdrop dismiss. */
    pointer-events: auto;
}
.wl-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.08), rgba(13, 176, 255, 0.08));
}
.wl-modal__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    line-height: 1.3;
    padding-right: 16px;
}
.wl-modal__close {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8892A7;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s, color 0.2s;
}
.wl-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.wl-modal__content {
    max-height: 70vh;
    overflow-y: auto;
}
.wl-modal__body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wl-modal__badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0db0ff;
    background: rgba(13, 176, 255, 0.1);
    padding: 5px 12px;
    border-radius: 999px;
    align-self: flex-start;
}
.wl-modal__brand {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #8892A7;
}
.wl-modal__section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wl-modal__section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff0066;
    margin-bottom: 2px;
}
.wl-modal__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #c8cdd8;
    line-height: 1.5;
}
.wl-modal__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.wl-modal__contact svg {
    flex-shrink: 0;
}
.wl-modal__contact a {
    color: #0db0ff;
    text-decoration: none;
    transition: color 0.2s;
}
.wl-modal__contact a:hover {
    color: #33C6F4;
    text-decoration: underline;
}
.wl-modal__hours-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 3px 0;
}
.wl-modal__hours-day {
    font-weight: 600;
    color: #c8cdd8;
}
.wl-modal__hours-time {
    color: #8892A7;
}
.wl-modal__footer {
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.wl-modal__cta {
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, #ff0066, #fd6a55);
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.wl-modal__cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}
.wl-modal__content::-webkit-scrollbar {
    width: 4px;
}
.wl-modal__content::-webkit-scrollbar-track {
    background: transparent;
}
.wl-modal__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* ========================
   Soffit Light Features
   ======================== */

/* CRITICAL: No overflow:hidden on section or grid — glow box-shadows must not clip */
.soffit-section {
    background-color: #0a0a0f;
    padding: 100px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Background decoration layer (animated pills + circles) */
.soffit-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.soffit-section__header,
.soffit-section__grid,
.soffit-section > .text-center {
    position: relative;
    z-index: 1;
}

/* All pills share the same tilt angle and horizontal center */
.soffit-bg__pill {
    position: absolute;
    left: 50%;
    height: 42px;
    border-radius: 999px;
    transform: translate(-50%, -50%) rotate(-22deg);
    will-change: width;
}

.soffit-bg__circle {
    position: absolute;
    border-radius: 50%;
    will-change: transform, opacity;
}

/* Per-pill: even Y stack, varied base widths, fill treatment, animation */
.soffit-bg__pill--1 {
    top: 14%;
    width: 380px;
    background: linear-gradient(90deg, #EC4899 0%, #8B5CF6 100%);
    opacity: 0.22;
    animation: soffitPillStretch1 14s ease-in-out infinite;
    animation-delay: -3s;
}
.soffit-bg__pill--2 {
    top: 24%;
    width: 240px;
    background: #EC4899;
    opacity: 0.18;
    animation: soffitPillStretch2 19s ease-in-out infinite;
    animation-delay: -8s;
}
.soffit-bg__pill--3 {
    top: 34%;
    width: 520px;
    border: 2px solid rgba(236, 72, 153, 0.5);
    background: transparent;
    opacity: 0.55;
    animation: soffitPillStretch3 17s ease-in-out infinite;
    animation-delay: -2s;
}
.soffit-bg__pill--4 {
    top: 44%;
    width: 320px;
    background: linear-gradient(90deg, #EC4899 0%, #8B5CF6 100%);
    opacity: 0.2;
    animation: soffitPillStretch4 22s ease-in-out infinite;
    animation-delay: -11s;
}
.soffit-bg__pill--5 {
    top: 54%;
    width: 280px;
    background: #8B5CF6;
    opacity: 0.2;
    animation: soffitPillStretch5 16s ease-in-out infinite;
    animation-delay: -5s;
}
.soffit-bg__pill--6 {
    top: 64%;
    width: 460px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    background: transparent;
    opacity: 0.55;
    animation: soffitPillStretch6 20s ease-in-out infinite;
    animation-delay: -7s;
}
.soffit-bg__pill--7 {
    top: 74%;
    width: 360px;
    background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
    opacity: 0.22;
    animation: soffitPillStretch7 13s ease-in-out infinite;
    animation-delay: -1s;
}
.soffit-bg__pill--8 {
    top: 84%;
    width: 300px;
    background: #EC4899;
    opacity: 0.18;
    animation: soffitPillStretch8 18s ease-in-out infinite;
    animation-delay: -10s;
}

/* Stretch keyframes (animate width only — different ranges/rates) */
@keyframes soffitPillStretch1 {
    0%, 100% { width: 380px; }
    50% { width: 560px; }
}
@keyframes soffitPillStretch2 {
    0%, 100% { width: 240px; }
    50% { width: 360px; }
}
@keyframes soffitPillStretch3 {
    0%, 100% { width: 520px; }
    50% { width: 720px; }
}
@keyframes soffitPillStretch4 {
    0%, 100% { width: 320px; }
    50% { width: 480px; }
}
@keyframes soffitPillStretch5 {
    0%, 100% { width: 280px; }
    50% { width: 200px; }
}
@keyframes soffitPillStretch6 {
    0%, 100% { width: 460px; }
    50% { width: 640px; }
}
@keyframes soffitPillStretch7 {
    0%, 100% { width: 360px; }
    50% { width: 540px; }
}
@keyframes soffitPillStretch8 {
    0%, 100% { width: 300px; }
    50% { width: 220px; }
}

/* Circles */
.soffit-bg__circle--1 {
    top: 8%;
    left: 50%;
    margin-left: -540px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    opacity: 0.4;
    box-shadow: 0 0 18px rgba(236, 72, 153, 0.4);
    animation: soffitCirclePulse1 11s ease-in-out infinite;
    animation-delay: -2s;
}
.soffit-bg__circle--2 {
    top: 30%;
    left: 50%;
    margin-left: 510px;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(236, 72, 153, 0.4);
    background: transparent;
    opacity: 0.55;
    animation: soffitCirclePulse2 17s ease-in-out infinite;
    animation-delay: -6s;
}
.soffit-bg__circle--3 {
    top: 58%;
    left: 50%;
    margin-left: -480px;
    width: 8px;
    height: 8px;
    background: #EC4899;
    opacity: 0.45;
    box-shadow: 0 0 14px rgba(236, 72, 153, 0.5);
    animation: soffitCirclePulse3 9s ease-in-out infinite;
    animation-delay: -4s;
}
.soffit-bg__circle--4 {
    top: 72%;
    left: 50%;
    margin-left: 460px;
    width: 18px;
    height: 18px;
    background: #8B5CF6;
    opacity: 0.32;
    box-shadow: 0 0 22px rgba(139, 92, 246, 0.4);
    animation: soffitCirclePulse4 14s ease-in-out infinite;
    animation-delay: -9s;
}
.soffit-bg__circle--5 {
    top: 90%;
    left: 50%;
    margin-left: 30px;
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(139, 92, 246, 0.45);
    background: transparent;
    opacity: 0.55;
    animation: soffitCirclePulse5 19s ease-in-out infinite;
    animation-delay: -12s;
}

@keyframes soffitCirclePulse1 {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}
@keyframes soffitCirclePulse2 {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.85); }
}
@keyframes soffitCirclePulse3 {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}
@keyframes soffitCirclePulse4 {
    0%, 100% { opacity: 0.32; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.15); }
}
@keyframes soffitCirclePulse5 {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.9); }
}

@media (prefers-reduced-motion: reduce) {
    .soffit-bg__pill, .soffit-bg__circle { animation: none !important; }
}

@media (max-width: 991px) {
    .soffit-bg__pill--1, .soffit-bg__pill--3, .soffit-bg__pill--6, .soffit-bg__pill--8 {
        opacity: 0.12;
    }
    .soffit-bg__pill--2, .soffit-bg__pill--4, .soffit-bg__pill--5, .soffit-bg__pill--7 {
        display: none;
    }
    .soffit-bg__circle--1, .soffit-bg__circle--3 { display: none; }
}
.soffit-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 560px;
}
.soffit-section__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ff0066;
}
.soffit-section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 52px;
    color: #fff;
    margin: 0;
}
.soffit-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
}

/* Grid — overflow:visible is the default but we set it explicitly for safety */
.soffit-section__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1280px;
    width: 100%;
    overflow: visible;
}

/* Card base */
.soffit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: calc(25% - 9px);
    padding: 22px 20px 22px;
    background: linear-gradient(160deg, rgba(18, 18, 28, 0.82) 0%, rgba(13, 13, 22, 0.9) 100%);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-radius: 14px 28px 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    cursor: pointer;
    isolation: isolate;
    z-index: 1;
}

.soffit-card:hover {
    text-decoration: none;
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
}

.soffit-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.soffit-card__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 9px;
    background: rgba(var(--card-color-rgb, 255, 255, 255), 0.13);
    border: 1px solid rgba(var(--card-color-rgb, 255, 255, 255), 0.2);
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(var(--card-color-rgb, 255, 255, 255), 0.22), inset 0 0 12px rgba(var(--card-color-rgb, 255, 255, 255), 0.1);
    box-sizing: border-box;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.4s ease;
}

.soffit-card:hover .soffit-card__icon {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 0 30px rgba(var(--card-color-rgb, 255, 255, 255), 0.35), inset 0 0 14px rgba(var(--card-color-rgb, 255, 255, 255), 0.15);
}

.soffit-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
}
.soffit-card__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Color variants — border-top + icon color + hover glow */
.soffit-card--pink   { --card-color: #ff0066;  --card-color-rgb: 255, 0, 102;   color: #ff0066; }
.soffit-card--cyan   { --card-color: #0db0ff;  --card-color-rgb: 13, 176, 255;  color: #0db0ff; }
.soffit-card--green  { --card-color: #9acc14;  --card-color-rgb: 154, 204, 20;  color: #9acc14; }
.soffit-card--gold   { --card-color: #FFB500;  --card-color-rgb: 255, 181, 0;   color: #FFB500; }
.soffit-card--purple { --card-color: #ae1d8d;  --card-color-rgb: 174, 29, 141;  color: #ae1d8d; }
.soffit-card--coral  { --card-color: #fd6a55;  --card-color-rgb: 253, 106, 85;  color: #fd6a55; }
.soffit-card--sky    { --card-color: #00C6FF;  --card-color-rgb: 0, 198, 255;   color: #00C6FF; }
.soffit-card--warm   { --card-color: #ffd59d;  --card-color-rgb: 255, 213, 157; color: #ffd59d; }

.soffit-card:hover {
    box-shadow: 0 12px 36px rgba(var(--card-color-rgb, 255, 255, 255), 0.22), 0 0 60px rgba(var(--card-color-rgb, 255, 255, 255), 0.08);
    border-color: rgba(var(--card-color-rgb, 255, 255, 255), 0.28);
}

/* CTA */
.soffit-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.25s, border-color 0.25s;
}
.soffit-section__cta:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
}
.soffit-section__arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .soffit-section {
        padding: 80px 20px;
        gap: 36px;
    }
    .soffit-section__title {
        font-size: 34px;
        line-height: 42px;
    }
    .soffit-card {
        width: calc(50% - 6px);
    }
}
@media (max-width: 575px) {
    .soffit-section {
        padding: 64px 16px;
        gap: 28px;
    }
    .soffit-section__title {
        font-size: 28px;
        line-height: 36px;
    }
    .soffit-section__subtitle {
        font-size: 15px;
    }
    .soffit-card {
        width: 100%;
    }
    .soffit-section__cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ========================
   Gallery Section
   ======================== */
.gallery-section {
    background-color: #0D1630;
    padding: 100px 24px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* Header */
.gallery-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 560px;
}
.gallery-section__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00C6FF;
}
.gallery-section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 52px;
    color: #fff;
    margin: 0;
}
.gallery-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    text-align: center;
    margin: 0;
}

/* Bento Grid */
.gallery-section__grid {
    display: flex;
    gap: 16px;
    max-width: 1280px;
    width: 100%;
    height: 400px;
}
.gallery-section__featured {
    flex: 1.2;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery-section__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gallery-section__cell {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA */
.gallery-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.25s, border-color 0.25s;
}
.gallery-section__cta:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
}
.gallery-section__arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

/* Decorative dots */
.gallery-section__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.gallery-section__dot--purple {
    position: absolute;
    top: 60px;
    left: 120px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #870DBA;
    opacity: 0.5;
}
.gallery-section__dot--pink {
    position: absolute;
    bottom: 140px;
    right: 120px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F9267E;
    opacity: 0.45;
}
.gallery-section__pill--cyan {
    position: absolute;
    top: 280px;
    right: 80px;
    width: 32px;
    height: 10px;
    border-radius: 5px;
    background: #33C6F4;
    opacity: 0.25;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-section {
        padding: 80px 20px 80px;
        gap: 36px;
    }
    .gallery-section__title {
        font-size: 34px;
        line-height: 42px;
    }
    .gallery-section__grid {
        flex-direction: column;
        height: auto;
    }
    .gallery-section__featured {
        height: 280px;
        flex: none;
    }
    .gallery-section__col {
        flex-direction: row;
    }
    .gallery-section__cell {
        height: 180px;
    }
}
@media (max-width: 575px) {
    .gallery-section {
        padding: 64px 16px 64px;
        gap: 32px;
    }
    .gallery-section__title {
        font-size: 28px;
        line-height: 36px;
    }
    .gallery-section__subtitle {
        font-size: 15px;
        line-height: 24px;
    }
    .gallery-section__featured {
        height: 220px;
    }
    .gallery-section__col {
        flex-direction: column;
    }
    .gallery-section__cell {
        height: 180px;
    }
    .gallery-section__cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}
