/* ===============================
   Kenton — style.css
   Clean, blue/white industrial theme
   =============================== */

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-soft: #eff6ff;
    --primary-softer: #dbeafe;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --accent-soft: #ecfeff;
    --dark: #0a1729;
    --dark-2: #0f1f3a;
    --navy: #0a1729;
    --navy-2: #0f1f3a;
    --text: #111827;
    --text-muted: #4B5563;
    --text-light: #6B7280;
    --border: #E5E7EB;
    --border-soft: #F3F4F6;
    --bg: #ffffff;
    --bg-soft: #F9FAFB;
    --bg-mint: #eff6ff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --shadow-sm: 0 4px 12px rgba(30, 64, 175, 0.07);
    --shadow: 0 12px 32px rgba(30, 64, 175, 0.12);
    --shadow-lg: 0 24px 60px rgba(30, 64, 175, 0.18);
    --shadow-green: 0 10px 30px rgba(30, 64, 175, 0.35);
    --transition: all .25s ease;
    --hero-offset: 112px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0;
}

.container {
    width: 100%;
    /*max-width: 1280px;*/
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.hidden-link {
    display: none !important;
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

    .btn i {
        font-size: 13px;
    }

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-green);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(30,64,175,.45);
    }

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}

    .btn-outline-light:hover {
        background: #fff;
        color: var(--primary);
        border-color: #fff;
    }

.btn-ghost {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-ghost:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}

    .btn-ghost-light:hover {
        background: rgba(255,255,255,.1);
        border-color: #fff;
    }

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ====== Top Bar ====== */
.top-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: rgba(255,255,255,.95);
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .top-bar-left span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        font-weight: 500;
    }

    .top-bar-left i {
        color: var(--accent);
    }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
}

    .top-bar-right a {
        color: rgba(255,255,255,.9);
        display: inline-flex;
        gap: 6px;
        align-items: center;
        transition: var(--transition);
        font-weight: 500;
    }

        .top-bar-right a:hover {
            color: #fff;
        }

    .top-bar-right i {
        color: var(--accent);
    }

.tb-sep {
    color: rgba(255,255,255,.35);
    user-select: none;
}

.social-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 12px;
    margin-left: 4px;
    border-left: 1px solid rgba(255,255,255,.18);
}

    .social-icons a {
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.18);
        transition: var(--transition);
    }

        .social-icons a i {
            color: #fff;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: #fff;
            border-color: #fff;
            transform: translateY(-1px);
        }

            .social-icons a:hover i {
                color: var(--primary);
            }

/* ====== Header ====== */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

    .header.scrolled {
        box-shadow: var(--shadow-sm);
        border-bottom-color: transparent;
    }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .nav-list > li {
        position: relative;
    }

    .nav-list a,
    .nav-list .nav-link {
        color: var(--text);
        font-weight: 600;
        font-size: 14px;
        letter-spacing: .04em;
        text-transform: none;
        padding: 8px 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: var(--transition);
        position: relative;
        white-space: nowrap;
    }

    .nav-list .nav-link {
        background: none;
        border: 0;
        cursor: pointer;
        font-family: inherit;
    }

        .nav-list a.active,
        .nav-list .nav-link.active {
            font-weight: 600;
        }

        .nav-list a:hover,
        .nav-list .nav-link:hover {
            color: var(--primary);
        }

        .nav-list a.active,
        .nav-list .nav-link.active {
            color: var(--primary);
        }

    .nav-list > li > a::after,
    .nav-list > li > .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        transition: transform .28s ease;
    }

    .nav-list > li > a:hover::after,
    .nav-list > li > a.active::after,
    .nav-list > li > .nav-link:hover::after,
    .nav-list > li > .nav-link.active::after,
    .has-dropdown:focus-within > .nav-link::after,
    .has-dropdown.open > .nav-link::after {
        transform: translateX(-50%) scaleX(1);
    }

    .nav-list .fa-chevron-down {
        font-size: 10px;
    }

.has-dropdown .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: var(--transition);
    z-index: 50;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text);
    text-transform: none;
    border-radius: 0;
    position: relative;
}

    .dropdown li a::after {
        content: '';
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 5px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .28s ease;
    }

    .dropdown li a:hover {
        background: transparent;
        color: var(--primary);
    }

        .dropdown li a:hover::after,
        .dropdown li a.active::after {
            transform: scaleX(1);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .nav-actions .btn {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 38px;
    height: 38px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

    .menu-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background: var(--text);
        border-radius: 2px;
        transition: var(--transition);
    }

/* ====== Hero ====== */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: #0a1729;
    height: calc(100vh - var(--hero-offset));
    height: calc(100dvh - var(--hero-offset));
    min-height: 0;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/banner/hero-lights-mobile.jpg') center center / cover no-repeat;
    z-index: 0;
}

@media (min-width: 768px) {
    .hero-bg-img {
        background-image: url('../images/banner/hero-lights.jpg');
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 23, 41, .1) 0%, rgba(15, 31, 58, .08) 25%, rgba(15, 31, 58, .04) 50%, rgba(21, 38, 63, .01) 75%, rgba(21, 38, 63, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 620px) 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 55%, #eff6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero-desc {
    color: #dbeafe;
    font-size: clamp(.95rem, 1.25vw, 1.05rem);
    max-width: 500px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dbeafe;
    font-size: 14px;
    font-weight: 500;
}

    .trust-item i {
        color: var(--accent);
        font-size: 18px;
    }

    .trust-item span {
        color: inherit;
    }

.trust-item-hidden {
    display: none;
}


/* ====== Sections ====== */
.section {
    padding: 64px 0;
}

.section-head {
    margin-bottom: 38px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

    .section-tag::before,
    .section-tag::after {
        content: '';
        width: 30px;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
    }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
    color: var(--text);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.section-head.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ====== Inner Pages ====== */
.page-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, .16), transparent 34%), linear-gradient(135deg, #0a1729 0%, #0f1f3a 48%, #050f1f 100%);
    color: #fff;
    padding: 46px 0;
}

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
        background-size: 42px 42px;
        opacity: .35;
    }

    .page-hero .container {
        position: relative;
        z-index: 1;
    }

    .page-hero .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 999px;
        background: rgba(255,255,255,.08);
        color: #dbeafe;
        font-size: 12px;
        letter-spacing: .08em;
        margin-bottom: 0;
    }

        .page-hero .section-tag::before,
        .page-hero .section-tag::after {
            display: none;
        }

    .page-hero h1 {
        color: #fff;
        max-width: 720px;
        font-size: clamp(2.25rem, 4.6vw, 4.2rem);
        line-height: 1.03;
        margin: 18px 0 0;
    }

    .page-hero p {
        color: rgba(255,255,255,.82);
        max-width: 560px;
        margin: 16px 0 0;
        font-size: 16px;
        line-height: 1.7;
    }

.page-content {
    background: var(--bg);
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.page-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

    .page-card i {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        background: var(--primary-soft);
        color: var(--primary);
        font-size: 20px;
        margin-bottom: 16px;
    }

    .page-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .page-card p {
        color: var(--text-muted);
        line-height: 1.7;
    }

/* ====== Blog listing cards (editorial layout) ====== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 28px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
    box-shadow: 0 10px 36px rgba(17, 24, 39, 0.1);
    transform: translateY(-3px);
}

.blog-card-inner {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card-inner:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.blog-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-soft);
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 20px;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #b45309;
    margin: 0 0 10px;
}

.blog-card-date i {
    font-size: 14px;
    opacity: 0.95;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: #b91c1c;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.blog-card-excerpt {
    color: #666666;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-cta {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #b91c1c;
}

.blog-card-inner:hover .blog-card-cta {
    color: #991b1b;
}

/* ====== Unified Compact Inner Hero ====== */
.page-hero,
.contact-hero,
.about-hero-custom,
.partner-hero,
.oem-hero {
    height: 336px !important;
    min-height: 336px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: radial-gradient(circle at 50% 0%, rgba(6,182,212,.18), transparent 34%), linear-gradient(135deg, #0a1729 0%, #0f1f3a 52%, #050f1f 100%) !important;
}

    .page-hero::before,
    .contact-hero::before,
    .about-hero-custom::before,
    .partner-hero::before,
    .oem-hero::before {
        background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) !important;
        background-size: 42px 42px !important;
        opacity: .3 !important;
    }

    .page-hero .container,
    .page-hero-wrap,
    .contact-hero-wrap,
    .about-hero-wrap,
    .partner-hero-grid,
    .oem-hero-grid {
        position: relative !important;
        z-index: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        height: 100% !important;
        min-height: 100% !important;
    }

        .page-hero-wrap > div,
        .contact-hero-wrap > div,
        .about-hero-wrap > div,
        .partner-hero-grid > div,
        .oem-hero-grid > div,
        .page-hero > .container {
            max-width: 780px !important;
            width: 100% !important;
            margin: 0 auto !important;
            display: grid !important;
            grid-template-rows: 64px 76px 86px !important;
            row-gap: 0 !important;
            align-items: start !important;
            justify-items: center !important;
        }

    .page-hero h1,
    .contact-hero h1,
    .about-hero-custom h1,
    .partner-hero h1,
    .oem-hero h1 {
        order: 1 !important;
        max-width: 780px !important;
        margin: 0 0 18px !important;
        color: #fff !important;
        font-size: clamp(2rem, 4.2vw, 3.35rem) !important;
        line-height: 1.08 !important;
        letter-spacing: 0 !important;
        text-align: center !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        align-self: end !important;
    }

        .page-hero h1 span,
        .contact-hero h1 span,
        .about-hero-custom h1 span,
        .partner-hero h1 span,
        .oem-hero h1 span {
            color: var(--accent) !important;
        }

    .page-hero .section-tag,
    .contact-hero-badge,
    .about-kicker,
    .partner-kicker,
    .oem-kicker {
        order: 2 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        max-width: 720px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #fff !important;
        font-size: clamp(1.15rem, 2.4vw, 1.75rem) !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        min-height: 1.35em !important;
        max-height: 2.7em !important;
        overflow: hidden !important;
        align-self: center !important;
    }

        .page-hero .section-tag::before,
        .page-hero .section-tag::after,
        .contact-hero-badge::before,
        .contact-hero-badge::after,
        .about-kicker::before,
        .about-kicker::after,
        .partner-kicker::before,
        .partner-kicker::after,
        .oem-kicker::before,
        .oem-kicker::after {
            display: none !important;
        }

        .page-hero .section-tag span,
        .contact-hero-badge span,
        .about-kicker span,
        .partner-kicker span,
        .oem-kicker span {
            color: var(--accent) !important;
        }

.product-hero .contact-hero-badge {
    gap: .28em !important;
}

.partner-kicker {
    white-space: nowrap !important;
}

.page-hero p,
.contact-hero-lead,
.about-hero-lead,
.partner-lead,
.oem-lead {
    order: 3 !important;
    max-width: 700px !important;
    margin: 14px auto 0 !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 15.5px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    min-height: 3.4em !important;
    max-height: 5.1em !important;
    overflow: hidden !important;
    align-self: start !important;
}

.contact-hero-actions,
.about-hero-actions,
.partner-actions,
.oem-actions {
    display: none !important;
}

.page-hero-card,
.contact-hero-card,
.about-hero-panel,
.partner-panel,
.oem-panel {
    display: none !important;
}

.contact-hero h1 {
    text-transform: uppercase !important;
    margin-bottom: 18px !important;
}

/* Alternating inner-page section backgrounds */
main > .section:nth-of-type(even) {
    background: var(--bg) !important;
}

main > .section:nth-of-type(odd) {
    background: var(--bg-mint) !important;
}

.contact-panel-section,
.about-section-soft,
.partner-soft,
.oem-soft {
    background: var(--bg-mint) !important;
}

.map-section,
.leadership-section,
.products-section {
    background: var(--bg) !important;
}

.catalog-section {
    background: var(--bg) !important;
}

/* ====== About ====== */
.about-section {
    background: var(--bg-mint);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 420px;
}

.about-image-card {
    position: relative;
    height: 420px;
    border-radius: 30px 12px 30px 12px;
    overflow: hidden;
    border: 1px solid rgba(30,64,175,.15);
    box-shadow: var(--shadow-lg);
    background: var(--primary-soft);
}

    .about-image-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10,23,41,0) 35%, rgba(10,23,41,.72) 100%), radial-gradient(circle at 20% 20%, rgba(6,182,212,.18), transparent 34%);
        pointer-events: none;
    }

    .about-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-image-caption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
}

    .about-image-caption span {
        display: inline-block;
        color: var(--accent);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .about-image-caption h3 {
        color: #fff;
        font-size: 1.65rem;
        margin-bottom: 6px;
    }

    .about-image-caption p {
        color: #dbeafe;
        font-size: 14px;
    }

.about-badge-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: stretch;
    margin-top: 14px;
}

.about-floater,
.experience-badge,
.about-mini-badge {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    min-height: 58px;
}

    .about-badge-icon,
    .about-floater > i {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 10px;
        background: var(--primary-soft);
        color: var(--primary);
        font-size: 16px;
        font-weight: 800;
    }

    .about-floater strong,
    .experience-badge strong,
    .about-mini-badge strong {
        display: block;
        color: var(--text);
        font-size: 12.5px;
        line-height: 1.2;
    }

    .about-floater span,
    .experience-badge span,
    .about-mini-badge span {
        color: var(--text-muted);
        font-size: 11.5px;
        line-height: 1.3;
    }

.about-content .section-desc {
    margin: 0 0 22px;
    max-width: 560px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-muted);
        background: var(--primary-soft);
        border-radius: 16px;
        padding: 16px;
    }

    .feature-list i {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 10px;
        background: #fff;
        color: var(--primary);
        font-size: 17px;
    }

    .feature-list strong {
        display: block;
        color: var(--text);
        font-size: 15px;
        line-height: 1.25;
    }

    .feature-list span {
        display: block;
        color: var(--text-muted);
        font-size: 13px;
        line-height: 1.35;
        margin-top: 2px;
    }

/* ====== Products ====== */
.products-section {
    background: var(--bg);
}

    .products-section .section-tag {
        color: var(--primary);
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card-hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.product-image {
    background: #f7fbf9;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-body {
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .product-body h3 {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0;
        color: var(--text);
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .product-body p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.55;
        margin-bottom: 14px;
        flex: 1;
    }

.product-link {
    font-size: 12px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    color: var(--primary);
    transition: var(--transition);
    margin-top: auto;
    align-self: flex-start;
}

    .product-link:hover {
        gap: 10px;
        color: var(--primary-dark);
    }

    .product-link i {
        font-size: 11px;
    }

/* ====== Why Kenton ====== */
.why-section {
    background: var(--bg-mint);
    padding: 64px 0;
}

.why-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.why-head .section-title {
    margin-bottom: 16px;
}

.why-head .section-desc {
    margin: 0;
    max-width: 420px;
}

.why-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 10px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    transition: var(--transition);
}

    .why-item:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow);
        transform: translateY(-4px);
    }

.why-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 14px;
    font-size: 24px;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    background: var(--primary);
    color: #fff;
}

.why-item h4 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text);
    line-height: 1.35;
}

/* ====== Distributor ====== */
.distributor-section {
    padding: 64px 0;
    background: var(--bg);
}

.distributor-card {
    background: radial-gradient(circle at 88% 50%, rgba(6,182,212,.18), transparent 55%), linear-gradient(135deg, #0a1729 0%, #0f1f3a 55%, #1e3a8a 120%);
    color: #fff;
    border-radius: 12px;
    padding: 26px 32px;
    display: grid;
    grid-template-columns: 1.08fr .92fr 1.22fr;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 190px;
}

    .distributor-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
        background-size: 22px 22px;
        opacity: .55;
        pointer-events: none;
    }

    .distributor-card::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 4%;
        width: 360px;
        height: 250px;
        transform: translateY(-50%);
        background: radial-gradient(circle, rgba(6,182,212,.25) 0%, rgba(59,130,246,.08) 35%, transparent 70%);
        pointer-events: none;
        z-index: 1;
    }

.distributor-left {
    position: relative;
    z-index: 2;
}

.distributor-tag {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .9px;
    padding: 0;
    border-radius: 0;
    margin-bottom: 8px;
}

.distributor-left h2 {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.distributor-left p {
    color: #dbeafe;
    font-size: 13px;
    max-width: 390px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.distributor-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .distributor-cta .btn {
        padding: 10px 19px;
        font-size: 12px;
    }

.distributor-mid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 22px;
    position: relative;
    z-index: 2;
    padding-left: 26px;
}

    .distributor-mid::before,
    .distributor-right::before {
        content: '';
        position: absolute;
        top: -26px;
        bottom: -26px;
        left: 0;
        width: 1px;
        background: rgba(255,255,255,.11);
    }

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 50%;
    font-size: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

.benefit:hover .benefit-icon {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(6,182,212,.12);
}

.benefit strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 2px;
}

.benefit span {
    display: block;
    font-size: 12px;
    color: #b6d4c4;
    line-height: 1.35;
}

.distributor-right {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    padding-left: 28px;
}

.india-map {
    width: 100%;
    max-width: 330px;
    margin-left: auto;
}

    .india-map svg {
        width: 100%;
        height: auto;
        display: block;
    }

.india-shape {
    filter: drop-shadow(0 0 12px rgba(6,182,212,.3));
}

.india-map .map-dots circle {
    fill: #fbbf24;
    filter: drop-shadow(0 0 7px rgba(251,191,36,.95));
    animation: mapPulse 2.6s infinite ease-in-out;
}

    .india-map .map-dots circle:nth-child(2n) {
        animation-delay: .4s;
    }

    .india-map .map-dots circle:nth-child(3n) {
        animation-delay: .9s;
    }

@keyframes mapPulse {
    0%, 100% {
        opacity: 1;
        r: 2.2;
    }

    50% {
        opacity: .4;
        r: 3.2;
    }
}

.india-map .map-hub circle:nth-child(1) {
    animation: hubPulse 2.6s infinite ease-in-out;
    transform-origin: 140px 170px;
    transform-box: fill-box;
}

.india-map .map-hub circle:nth-child(2) {
    filter: drop-shadow(0 0 8px rgba(251,191,36,.85));
}

.india-map .map-hub circle:nth-child(3) {
    animation: hubBlink 1.6s infinite ease-in-out;
}

@keyframes hubPulse {
    0%, 100% {
        opacity: .7;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(1.25);
    }
}

@keyframes hubBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .55;
    }
}

.india-map .map-beams path {
    stroke-dasharray: 4 6;
    animation: beamFlow 6s linear infinite;
}

    .india-map .map-beams path:nth-child(2n) {
        animation-duration: 8s;
        animation-direction: reverse;
    }

    .india-map .map-beams path:nth-child(3n) {
        animation-duration: 7s;
    }

@keyframes beamFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -100;
    }
}

/* ====== Why Choose Us ====== */
.why-choose-section {
    background: var(--bg-mint);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

    .why-card:hover {
        transform: translateY(-6px);
        border-color: rgba(30,64,175,.28);
        box-shadow: var(--shadow);
    }

.why-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(30,64,175,.12);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.why-card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 16px;
    font-size: 22px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.why-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
}

/* ====== Leadership ====== */
.leadership-section {
    background: var(--bg);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.leader-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 34px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .leader-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
        border-color: rgba(30,64,175,.28);
    }

.leader-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.leader-avatar-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.4rem;
}

.leader-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.leader-card span {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.leader-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ====== Testimonials ====== */
.testimonials-section {
    background: var(--bg-mint);
}

.testimonial-carousel {
    position: relative;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform .45s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        border-color: rgba(30,64,175,.28);
        box-shadow: var(--shadow);
    }

.quote-mark {
    color: var(--primary);
    font-size: 30px;
    opacity: .22;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-top: 14px;
    margin-bottom: 22px;
    min-height: 132px;
}

.testimonial-author {
    border-top: 1px solid var(--border-soft);
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
}

.testimonial-author span {
    display: block;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px;
}

.testimonial-author small {
    color: var(--text-light);
    font-size: 12px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .carousel-btn:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(30,64,175,.25);
    border: 0;
    transition: var(--transition);
}

    .carousel-dot.active {
        width: 22px;
        border-radius: 999px;
        background: var(--primary);
    }

/* ====== Catalog ====== */
.catalog-section {
    padding: 64px 0;
    background: radial-gradient(circle at 12% 18%, rgba(6,182,212,.12), transparent 28%), linear-gradient(180deg, var(--bg) 0%, var(--bg-mint) 100%);
}

.catalog-card {
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.9)), radial-gradient(circle at top left, rgba(30,64,175,.12), transparent 36%);
    border: 1px solid rgba(30,64,175,.14);
    border-radius: 34px;
    padding: 34px;
    display: grid;
    grid-template-columns: 360px minmax(260px, .9fr) minmax(280px, .95fr);
    gap: 34px;
    align-items: center;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .12);
    position: relative;
    overflow: hidden;
}

    .catalog-card::before {
        content: '';
        position: absolute;
        inset: auto -80px -120px auto;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(6,182,212,.18);
        filter: blur(4px);
        pointer-events: none;
    }

.catalog-left {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.open-book {
    width: 350px;
    height: 242px;
    display: grid;
    grid-template-columns: 1fr 8px 1fr;
    position: relative;
    filter: drop-shadow(0 24px 36px rgba(15, 23, 42, .24));
}

    .open-book::before,
    .open-book::after {
        content: '';
        position: absolute;
        left: 18px;
        right: 18px;
        height: 10px;
        bottom: -9px;
        background: linear-gradient(90deg, #d6dde9, #fff, #d6dde9);
        border-radius: 0 0 18px 18px;
        opacity: .9;
    }

    .open-book::after {
        left: 36px;
        right: 36px;
        bottom: -18px;
        height: 8px;
        opacity: .55;
    }

.book-page {
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}

.book-page-left {
    background: linear-gradient(135deg, rgba(10,23,41,.96) 0%, rgba(30,64,175,.94) 70%, rgba(6,182,212,.88) 140%), url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,.16)' stroke-width='1'%3E%3Cpath d='M20 90C42 42 72 42 100 18'/%3E%3Cpath d='M8 64C32 34 58 26 92 8'/%3E%3C/g%3E%3C/svg%3E");
    color: #fff;
    border-radius: 18px 2px 2px 18px;
    transform: perspective(800px) rotateY(8deg);
    transform-origin: right center;
}

.book-page-right {
    background: linear-gradient(90deg, rgba(15,23,42,.08), transparent 16%), linear-gradient(180deg, #ffffff, #f3f7f1);
    border-radius: 2px 18px 18px 2px;
    transform: perspective(800px) rotateY(-8deg);
    transform-origin: left center;
    border: 1px solid rgba(30,64,175,.12);
    border-left: 0;
}

.book-spine-center {
    background: radial-gradient(ellipse at center, rgba(15,23,42,.22), transparent 72%), linear-gradient(180deg, rgba(10,23,41,.45), rgba(30,64,175,.14));
    box-shadow: 0 0 12px rgba(15,23,42,.18);
    z-index: 2;
}

.bp-inner {
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.book-page-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 40%), radial-gradient(circle at 20% 100%, rgba(6,182,212,.18), transparent 55%);
    pointer-events: none;
}

.bp-logo {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 5px;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

    .bp-logo img {
        max-width: 80%;
        max-height: 80%;
    }

.book-page-left h5 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.18;
}

.bp-year {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 6px;
}

.bp-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36px;
    height: 26px;
    background: radial-gradient(ellipse at 30% 50%, var(--accent) 0%, transparent 48%), radial-gradient(ellipse at 85% 50%, var(--primary-light) 0%, transparent 48%);
    opacity: .55;
    filter: blur(3px);
}

.book-page-left small {
    font-size: 10px;
    color: #dbeafe;
    letter-spacing: .3px;
    position: relative;
    z-index: 2;
}

.bp-inner-right {
    gap: 9px;
    justify-content: flex-start;
    padding-top: 22px;
}

.bp-kicker {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bp-inner-right h6 {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
}

.bp-product-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 4px 0 6px;
}

    .bp-product-strip img {
        width: 100%;
        aspect-ratio: 1 / .72;
        object-fit: contain;
        background: #fff;
        border: 1px solid rgba(30,64,175,.12);
        border-radius: 10px;
        padding: 6px;
    }

.bp-row {
    display: flex;
    gap: 6px;
}

    .bp-row span {
        height: 7px;
        background: #dce8df;
        border-radius: 3px;
        flex: 1;
    }

.bp-row-short span {
    flex: .55;
}

.bp-row:nth-child(odd) span {
    background: #eef4e9;
}

.catalog-mid .section-tag {
    color: var(--primary);
}

.catalog-mid {
    position: relative;
    z-index: 1;
}

    .catalog-mid h3 {
        font-family: var(--font-display);
        font-size: clamp(1.4rem, 2.2vw, 1.8rem);
        font-weight: 800;
        color: var(--text);
        letter-spacing: 0;
        margin: 6px 0 12px;
    }

    .catalog-mid p {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
        max-width: 420px;
    }

.catalog-points {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

    .catalog-points span {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text);
        font-size: 14px;
        font-weight: 600;
    }

    .catalog-points i {
        width: 22px;
        height: 22px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--primary-soft);
        color: var(--primary);
        font-size: 11px;
    }

.catalog-right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
    background: #f8fbf5;
    border: 1px solid rgba(30,64,175,.12);
    border-radius: 24px;
    padding: 16px;
    position: relative;
    z-index: 1;
}

.catalog-preview-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

    .catalog-preview-head span {
        color: var(--text);
        font-weight: 800;
        font-size: 14px;
    }

    .catalog-preview-head small {
        color: var(--primary);
        font-weight: 700;
        font-size: 12px;
    }

.catalog-thumb {
    min-height: 142px;
    background: #fff;
    border: 1px solid rgba(30,64,175,.12);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 12px 10px 10px;
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(15,23,42,.05);
}

    .catalog-thumb:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(15,23,42,.1);
    }

    .catalog-thumb img {
        width: 100%;
        height: 92px;
        object-fit: contain;
    }

    .catalog-thumb span {
        color: var(--text);
        font-size: 12px;
        font-weight: 800;
        margin-top: 8px;
        text-align: center;
    }

/* ====== Footer ====== */
.footer {
    background: #111827;
    color: #9CA3AF;
    padding-top: 46px;
    border-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 34px;
}

.footer-col {
    min-width: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .footer-brand .logo {
        margin-bottom: 12px;
    }

    .footer-brand .logo-img {
        height: 44px;
        filter: brightness(0) invert(1);
    }

.footer-tag {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 300px;
}

.footer-desc {
    color: #9CA3AF;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 50%;
        color: #fff;
        font-size: 13px;
        transition: var(--transition);
    }

        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 18px;
    font-family: var(--font-display);
    position: relative;
    padding-bottom: 10px;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 28px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
    }

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9CA3AF;
    font-size: 13px;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--accent);
        padding-left: 4px;
    }

.footer-contact li {
    display: flex;
    gap: 10px;
    color: #9CA3AF;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
    min-width: 14px;
}

.footer-contact a {
    color: #9CA3AF;
    transition: var(--transition);
}

    .footer-contact a:hover {
        color: var(--accent);
    }

.footer-phone-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom-wrap {
    border-top: 1px solid rgba(255,255,255,.08);
    background: #111827;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    font-size: 12px;
    color: #9CA3AF;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

    .footer-bottom-links a {
        color: #D1D5DB;
        transition: var(--transition);
        font-weight: 600;
    }

        .footer-bottom-links a:hover {
            color: var(--accent);
        }

/* ====== Responsive ====== */
@media (max-width: 1080px) {
    .nav-list {
        gap: 18px;
    }

        .nav-list a,
        .nav-list .nav-link {
            font-size: 14px;
        }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        max-width: 620px;
        margin: 0 auto;
        width: 100%;
    }

    .about-content {
        text-align: center;
    }

        .about-content .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

    .feature-list {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .why-head .section-desc {
        margin: 0 auto;
    }

    .why-icons {
        grid-template-columns: repeat(5, 1fr);
    }

    .testimonial-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .distributor-card {
        grid-template-columns: 1.04fr .9fr 1.14fr;
        padding: 24px 26px;
        gap: 24px;
    }

    .distributor-left h2 {
        font-size: 1.5rem;
    }

    .distributor-left p {
        font-size: 12.5px;
    }

    .distributor-cta .btn {
        padding: 9px 15px;
        font-size: 11.5px;
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .benefit strong {
        font-size: 12px;
    }

    .benefit span {
        font-size: 11.5px;
    }

    .india-map {
        max-width: 300px;
    }

    .catalog-card {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-left {
        justify-content: center;
    }

    .catalog-mid {
        align-self: center;
    }

    .catalog-right {
        grid-column: 1 / -1;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .catalog-preview-head {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    :root {
        --hero-offset: 96px;
    }

    .top-bar-left {
        display: none;
        justify-content: center;
        width: 100%;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

        .top-bar-right .hide-mobile {
            display: inline-flex;
        }

        .top-bar-right .tb-sep.hide-mobile {
            display: inline;
        }

        .top-bar-right .social-icons {
            display: none;
        }

    .hero {
        min-height: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(10, 23, 41, .22) 0%, rgba(10, 23, 41, .16) 50%, rgba(10, 23, 41, .12) 100%);
    }

    .hero-trust {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .distributor-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 30px;
    }

    .distributor-mid,
    .distributor-right {
        padding-left: 0;
    }

        .distributor-mid::before,
        .distributor-right::before {
            display: none;
        }

    .distributor-right {
        max-width: 380px;
        margin: 0 auto;
    }

    .india-map {
        margin: 0 auto;
        max-width: 360px;
    }

    .menu-toggle {
        display: flex;
    }

    .hide-mobile {
        display: none;
    }

    .nav {
        display: none;
    }

        .nav.open {
            display: block;
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            background: #fff;
            padding: 14px 20px 18px;
            border-top: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

            .nav.open .nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
            }

                .nav.open .nav-list > li {
                    width: 100%;
                }

                .nav.open .nav-list a,
                .nav.open .nav-list .nav-link {
                    padding: 12px 0;
                    width: 100%;
                    justify-content: space-between;
                    font-size: 14px;
                    white-space: normal;
                    text-align: left;
                }

                .nav.open .nav-list > li > a::after,
                .nav.open .nav-list > li > .nav-link::after {
                    bottom: 6px;
                    width: 42px;
                    left: 0;
                    transform: scaleX(0);
                    transform-origin: left;
                }

                .nav.open .nav-list > li > a:hover::after,
                .nav.open .nav-list > li > a.active::after,
                .nav.open .nav-list > li > .nav-link:hover::after,
                .nav.open .has-dropdown.open > .nav-link::after {
                    transform: scaleX(1);
                }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        min-width: 0;
        padding: 2px 0 8px 16px;
        display: none;
    }

    .has-dropdown:hover .dropdown {
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .dropdown li a {
        width: auto;
        padding: 9px 0;
        font-size: 13px;
    }

        .dropdown li a::after {
            left: 0;
            right: 0;
            bottom: 4px;
        }
}

@media (max-width: 720px) {
    .section {
        padding: 44px 0;
    }

    .section-head {
        margin-bottom: 28px;
    }

    .catalog-section,
    .why-section,
    .distributor-section {
        padding: 44px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .page-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 0;
    }

    .about-image-card {
        min-height: 320px;
        height: 320px;
    }

    .about-badge-row {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 420px;
    }

        .feature-list li {
            align-items: flex-start;
            padding: 14px;
            border-radius: 14px;
        }

        .feature-list i {
            width: 38px;
            height: 38px;
            font-size: 16px;
        }

    .why-choose-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 14px;
        padding: 24px;
    }

    .why-card-icon {
        order: 1;
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        border-radius: 14px;
        font-size: 20px;
    }

    .why-number {
        position: static;
        order: 2;
        justify-self: end;
        grid-column: 3;
        font-size: 2.25rem;
        line-height: 1;
    }

    .why-card h3,
    .why-card p,
    .why-card-tag {
        grid-column: 1 / -1;
    }

    .why-card h3 {
        order: 3;
        margin-top: 16px;
    }

    .why-card p {
        order: 4;
    }

    .why-card-tag {
        order: 5;
        justify-self: start;
    }

    .why-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex-basis: 100%;
    }

    .distributor-mid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .catalog-card {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        text-align: center;
    }

    .catalog-left {
        display: grid;
    }

    .open-book {
        width: min(100%, 320px);
        height: 222px;
    }

    .catalog-mid p {
        margin-left: auto;
        margin-right: auto;
    }

    .catalog-points {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .catalog-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 14px;
    }

    .catalog-thumb {
        min-height: 126px;
        padding: 10px 8px;
    }

        .catalog-thumb img {
            height: 76px;
        }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .top-bar-right {
        gap: 10px;
        font-size: 12px;
    }

        .top-bar-right .hide-mobile {
            display: inline-flex;
        }

        .top-bar-right .tb-sep.hide-mobile {
            display: inline;
        }
}

@media (max-width: 480px) {
    :root {
        --hero-offset: 82px;
    }

    .hero {
        min-height: 0;
        padding: 0;
    }

        .hero h1 {
            font-size: clamp(1.85rem, 9vw, 2.3rem);
        }

    .hero-desc {
        font-size: .94rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-cta .btn {
            justify-content: center;
        }

    .hero-trust {
        gap: 10px 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card {
        padding: 24px 16px;
    }

    .open-book {
        width: min(100%, 280px);
        height: 196px;
    }

    .bp-inner {
        padding: 18px 14px;
    }

    .book-page-left h5 {
        font-size: 14px;
    }

    .catalog-right {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-preview-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        text-align: left;
    }

    .catalog-thumb {
        min-height: 112px;
        border-radius: 14px;
    }

        .catalog-thumb img {
            height: 62px;
        }

        .catalog-thumb span {
            font-size: 11px;
        }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-height: 720px) and (min-width: 901px) {
    .hero h1 {
        font-size: clamp(1.95rem, 3.5vw, 3rem);
    }

    .hero-desc {
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .hero-cta {
        margin-bottom: 16px;
    }

    .hero-trust {
        gap: 10px 18px;
    }

    .trust-item {
        font-size: 13px;
    }
}

@media (max-height: 560px) {
    .hero h1 {
        font-size: clamp(1.65rem, 7vw, 2.4rem);
    }

    .hero-desc {
        display: none;
    }

    .hero-cta {
        margin-bottom: 14px;
    }
}

/* ====== Floating Buttons (same size/shape) ====== */
.whatsapp-float,
.scroll-top {
    position: fixed;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    border: 0;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float {
    bottom: 24px;
    background: #25d366;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
    animation: wa-pulse 2s infinite;
}

    .whatsapp-float:hover {
        background: #1fb855;
        transform: translateY(-4px);
    }

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 10px 24px rgba(37,211,102,.4);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 24px rgba(37,211,102,.4);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 24px rgba(37,211,102,.4);
    }
}

.scroll-top {
    bottom: 88px;
    background: var(--primary);
    box-shadow: 0 10px 24px rgba(30, 64, 175, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top:hover {
        background: var(--primary-dark);
        transform: translateY(-4px);
    }

@media (max-width: 720px) {
    .page-hero,
    .contact-hero,
    .about-hero-custom,
    .partner-hero,
    .oem-hero {
        height: auto !important;
        min-height: 280px !important;
        padding: 36px 0 !important;
    }

        .page-hero h1,
        .contact-hero h1,
        .about-hero-custom h1,
        .partner-hero h1,
        .oem-hero h1 {
            white-space: normal !important;
        }

        .page-hero-wrap > div,
        .contact-hero-wrap > div,
        .about-hero-wrap > div,
        .partner-hero-grid > div,
        .oem-hero-grid > div,
        .page-hero > .container {
            grid-template-rows: auto !important;
            gap: 16px !important;
        }

    .product-hero .contact-hero-badge {
        display: block !important;
        max-width: 320px !important;
        font-size: 1.22rem !important;
        line-height: 1.35 !important;
    }

        .product-hero .contact-hero-badge span {
            display: inline !important;
        }

    .product-hero .contact-hero-lead {
        max-width: 340px !important;
        margin-top: 0 !important;
        font-size: 15px !important;
    }

    .partner-kicker {
        white-space: normal !important;
    }

    .whatsapp-float,
    .scroll-top {
        right: 16px;
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .scroll-top {
        bottom: 78px;
    }
}

/* Final section background rhythm */
main > .section:nth-of-type(even) {
    background: var(--bg-mint) !important;
}

main > .section:nth-of-type(odd) {
    background: var(--bg) !important;
}

.about-section,
.why-choose-section,
.testimonials-section,
.contact-panel-section,
.about-section-soft,
.partner-soft,
.oem-soft {
    background: var(--bg-mint) !important;
}

.products-section,
.leadership-section,
.catalog-section,
.map-section {
    background: var(--bg) !important;
}

/* ====== Premium Product Pages ====== */
.product-category-section {
    background: radial-gradient(circle at 6% 12%, rgba(6, 182, 212, .12), transparent 28%), var(--bg-mint) !important;
}

.product-category-section-alt {
    background: var(--bg) !important;
}

.product-category-section .section-header {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

    .product-category-section .section-header .section-tag {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .product-category-section .section-header .section-title {
        margin: 14px auto 14px;
    }

    .product-category-section .section-header .section-desc {
        max-width: 680px;
        margin: 0 auto;
    }

.category-showcase {
    display: grid;
    gap: 30px;
}

.category-feature-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 44%) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
    overflow: hidden;
    padding: 32px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.category-visual {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background: #f1f5f9;
}

    .category-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.category-copy {
    position: relative;
}

.category-eyebrow,
.product-watt {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.category-copy h3 {
    color: var(--text);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: .045em;
    white-space: nowrap;
}

.category-copy p {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
}

.category-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-assurance-section {
    background: var(--bg) !important;
}

.assurance-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 40px;
    align-items: center;
}

.assurance-list {
    display: grid;
    gap: 14px;
}

    .assurance-list div {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow-sm);
        color: var(--text);
        font-weight: 700;
    }

    .assurance-list i {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 14px;
        background: var(--primary-soft);
        color: var(--primary);
    }

.product-listing-section {
    background: var(--bg-mint) !important;
}

.product-listing-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    gap: 36px;
    align-items: end;
    margin-bottom: 34px;
}

    .product-listing-head p {
        color: var(--text-muted);
        font-size: 15.5px;
        line-height: 1.75;
    }

.premium-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.premium-product-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 24px;
    border: 1px solid rgba(30, 64, 175, .14);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 48px rgba(6, 78, 59, .07);
    transition: var(--transition);
}

    .premium-product-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 6px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .premium-product-card:hover {
        transform: translateY(-6px);
        border-color: rgba(30, 64, 175, .32);
        box-shadow: 0 24px 70px rgba(6, 78, 59, .12);
    }

.premium-product-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: radial-gradient(circle at 70% 20%, rgba(6, 182, 212, .24), transparent 34%), var(--primary-soft);
    color: var(--primary);
    font-size: 23px;
}

.premium-product-card h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.18rem;
    line-height: 1.25;
}

.premium-product-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.indoor-product-listing .premium-product-card,
.outdoor-product-listing .premium-product-card {
    min-height: auto;
    padding: 8px;
    text-align: center;
}

    .indoor-product-listing .premium-product-card::before,
    .outdoor-product-listing .premium-product-card::before {
        display: none;
    }

.indoor-product-media {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin-bottom: 16px;
    border-radius: 20px;
    background: var(--bg-mint);
}

    .indoor-product-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
        transition: transform .35s ease;
    }

.indoor-product-media-empty {
    background: radial-gradient(circle at 50% 28%, rgba(6, 182, 212, .16), transparent 34%), #f1f5f9;
}

.indoor-product-no-image {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.indoor-product-hover {
    position: absolute;
    inset: auto 18px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.indoor-product-media:hover img,
.indoor-product-media:focus-visible img {
    transform: scale(1.06);
}

.indoor-product-media:hover .indoor-product-hover,
.indoor-product-media:focus-visible .indoor-product-hover {
    opacity: 1;
    transform: translateY(0);
}

.indoor-product-listing .product-watt,
.outdoor-product-listing .product-watt {
    justify-content: center;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    min-height: 27px;
    text-align: center;
}

.indoor-product-listing .product-watt-empty,
.outdoor-product-listing .product-watt-empty {
    visibility: hidden;
}

.indoor-product-listing .premium-product-card h3,
.outdoor-product-listing .premium-product-card h3 {
    text-align: center;
    text-transform: uppercase;
}

    .indoor-product-listing .premium-product-card h3 a,
    .outdoor-product-listing .premium-product-card h3 a {
        color: inherit;
        transition: var(--transition);
    }

        .indoor-product-listing .premium-product-card h3 a:hover,
        .indoor-product-listing .premium-product-card h3 a:focus-visible,
        .outdoor-product-listing .premium-product-card h3 a:hover,
        .outdoor-product-listing .premium-product-card h3 a:focus-visible {
            color: var(--primary);
        }

/* ====== Product Details ====== */
.product-detail-page {
    background: var(--bg);
}

.product-detail-section {
    padding: 36px 0 72px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(460px, 1fr);
    gap: clamp(32px, 4.5vw, 64px);
    align-items: start;
}

.product-detail-gallery {
    position: relative;
    position: sticky;
    top: 104px;
    overflow: hidden;
    min-height: 390px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: radial-gradient(circle at 80% 10%, rgba(6, 182, 212, .2), transparent 32%), linear-gradient(135deg, #eff6ff 0%, #f8fafc 54%, #dbeafe 100%);
    border: 1px solid rgba(30, 64, 175, .13);
    box-shadow: 0 22px 58px rgba(6, 78, 59, .09);
}

.product-detail-image-wrap {
    position: relative;
    width: min(76%, 320px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-detail-slide {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(.96);
    filter: drop-shadow(0 24px 30px rgba(6, 78, 59, .16));
    transition: opacity .28s ease, transform .28s ease;
}

    .product-detail-slide.active {
        opacity: 1;
        transform: scale(1);
    }

.product-zoom-pill {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.product-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(30, 64, 175, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    color: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(6, 78, 59, .12);
    opacity: 0;
    transform: translateY(-50%) scale(.92);
    transition: var(--transition);
}

.product-slider-prev {
    left: 16px;
}

.product-slider-next {
    right: 16px;
}

.product-detail-gallery:hover .product-slider-arrow,
.product-detail-gallery:focus-within .product-slider-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.product-slider-arrow:hover {
    background: var(--primary);
    color: #fff;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    place-content: center;
    padding: 58px 72px;
    background: radial-gradient(circle at 78% 10%, rgba(56, 189, 248, .22), transparent 32%), linear-gradient(135deg, rgba(224, 242, 254, .84), rgba(236, 253, 245, .76));
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

    .product-lightbox.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.product-lightbox-top {
    position: absolute;
    top: 14px;
    right: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
}

.product-lightbox-count {
    font-size: 13px;
    font-weight: 700;
}

.product-lightbox-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-lightbox-action {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
    opacity: .9;
    transition: var(--transition);
}

    .product-lightbox-action:hover {
        opacity: 1;
        transform: scale(1.08);
    }

    .product-lightbox-action.active {
        color: var(--accent);
    }

.product-lightbox-stage {
    width: min(92vw, 980px);
    max-width: 100%;
    display: grid;
    place-items: center;
    padding: clamp(18px, 3vw, 42px);
    background: transparent;
    cursor: zoom-in;
}

    .product-lightbox-stage.is-zoomed {
        cursor: zoom-out;
    }

.product-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 170px);
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .3));
    transform-origin: center;
    transition: transform .2s ease;
    cursor: inherit;
}

.product-lightbox-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--primary-dark);
    font-size: 28px;
    cursor: pointer;
    opacity: .9;
    transform: translateY(-50%);
    transition: var(--transition);
}

    .product-lightbox-arrow:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.08);
    }

.product-lightbox-prev {
    left: 22px;
}

.product-lightbox-next {
    right: 22px;
}

body.lightbox-open {
    overflow: hidden;
}

.product-detail-info {
    padding-top: 2px;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--text-muted);
}

    .product-breadcrumb a {
        color: var(--primary-dark);
        transition: var(--transition);
    }

    .product-breadcrumb a:hover {
        color: var(--primary);
    }

    .product-breadcrumb i {
        font-size: 9px;
        opacity: .55;
    }

    .product-breadcrumb [aria-current] {
        color: var(--text);
    }

.product-finish-panel {
    margin-top: -6px;
}

.product-detail-watt {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: .04em;
}

.product-detail-info h1 {
    max-width: 100%;
    margin: 0;
    color: var(--text);
    font-size: clamp(1.55rem, 2.55vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: .01em;
    text-transform: uppercase;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.product-detail-lead {
    max-width: 640px;
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.product-detail-note {
    max-width: 640px;
    margin: 16px 0 0;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--primary-soft);
    border: 1px solid rgba(30, 64, 175, .1);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 34px;
}

.detail-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 210px;
    padding: 13px 22px;
    border: 1px solid var(--primary);
    border-radius: 999px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: var(--transition);
}

    .detail-action-primary,
    .detail-action:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 26px 42px;
    max-width: 620px;
    margin-bottom: 34px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

    .product-feature-item i,
    .feature-number {
        width: 50px;
        display: inline-grid;
        place-items: center;
        flex-shrink: 0;
        color: var(--primary);
        font-size: 44px;
        line-height: 1;
    }

.feature-number {
    font-weight: 900;
}

.product-feature-item span {
    font-size: 12px;
    line-height: 1.25;
    text-transform: uppercase;
}

.product-feature-item strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
}

.product-color-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 18px;
    max-width: 640px;
    margin-bottom: 22px;
}

    .product-color-row .product-color-panel {
        flex: 1 1 240px;
        max-width: none;
        margin: 0;
    }

.product-color-panel {
    max-width: 640px;
    margin-bottom: 22px;
    padding: 24px 28px 26px;
    border-radius: 18px;
    background: var(--primary-soft);
    border: 1px solid rgba(30, 64, 175, .1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

    .product-color-panel > span {
        display: block;
        margin-bottom: 0;
        color: var(--primary-dark);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

.product-color-dots {
    display: flex;
    align-items: center;
    gap: 14px;
}

.color-dot {
    position: relative;
    width: 34px;
    height: 34px;
    border: 3px solid rgba(255, 255, 255, .94);
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(6, 78, 59, .12);
    cursor: pointer;
    transition: var(--transition);
}

    .color-dot:hover,
    .color-dot:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(6, 78, 59, .18);
        outline: none;
    }

    .color-dot::before,
    .color-dot::after {
        position: absolute;
        left: 50%;
        z-index: 5;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, 8px);
        transition: opacity .18s ease, transform .18s ease;
    }

    .color-dot::before {
        content: attr(data-tooltip);
        bottom: calc(100% + 15px);
        width: max-content;
        max-width: 150px;
        padding: 9px 12px;
        border: 0;
        border-radius: 10px;
        background: #030b08;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
    }

    .color-dot::after {
        content: "";
        bottom: calc(100% + 9px);
        width: 0;
        height: 0;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-top: 6px solid #030b08;
        background: transparent;
        transform: translate(-50%, 8px);
    }

    .color-dot:hover::before,
    .color-dot:hover::after,
    .color-dot:focus-visible::before,
    .color-dot:focus-visible::after {
        opacity: 1;
    }

    .color-dot:hover::before,
    .color-dot:focus-visible::before {
        transform: translate(-50%, 0);
    }

    .color-dot:hover::after,
    .color-dot:focus-visible::after {
        transform: translate(-50%, 0);
    }

.color-warm {
    --tooltip-color: #ffe15e;
    background: #ffe15e;
}

.color-natural {
    --tooltip-color: #fff5b8;
    background: #fff5b8;
}

.color-cool {
    --tooltip-color: #dff7ff;
    background: #fff;
}

.color-gunblack {
    --tooltip-color: #2a2a2e;
    background: #2a2a2e;
}

.color-rosegold {
    --tooltip-color: #d9a679;
    background: linear-gradient(135deg, #e8bd9a, #c98a63);
}

.color-3in1 {
    --tooltip-color: #ffd34d;
    background: conic-gradient(#ffe15e 0 33.34%, #fff5b8 0 66.67%, #ffffff 0 100%);
}

.color-rgb {
    --tooltip-color: #ff4d6d;
    background: conic-gradient(from 90deg, #ff3b3b, #ffd93b, #38e54d, #3bd9ff, #6b5bff, #ff3bd0, #ff3b3b);
}

.product-spec-table-wrap {
    max-width: 640px;
    overflow-x: auto;
    border: 1px solid rgba(30, 64, 175, .12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 46px rgba(6, 78, 59, .07);
}

.product-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 520px;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
}

    .product-spec-table th {
        padding: 15px 18px;
        background: var(--primary);
        color: #fff;
        font-weight: 900;
        text-align: left;
    }

        .product-spec-table th:first-child {
            border-top-left-radius: 17px;
        }

        .product-spec-table th:last-child {
            border-top-right-radius: 17px;
        }

    .product-spec-table td {
        padding: 16px 18px;
        border: 0;
        border-bottom: 1px solid var(--border-soft);
    }

    .product-spec-table tbody tr:nth-child(even) {
        background: #f8fcfa;
    }

    .product-spec-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .product-spec-table td:first-child {
        color: var(--text);
        font-weight: 800;
    }

@media (max-width: 980px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-gallery {
        position: relative;
        top: auto;
        min-height: auto;
        aspect-ratio: 1 / .78;
    }

    .product-detail-info h1 {
        white-space: normal;
    }
}

@media (max-width: 720px) {
    .product-detail-section {
        padding: 18px 0 46px;
    }

    .product-detail-grid {
        gap: 24px;
    }

    .product-detail-gallery {
        border-radius: 18px;
        aspect-ratio: 1 / .92;
        box-shadow: 0 14px 38px rgba(6, 78, 59, .08);
    }

    .product-detail-image-wrap {
        width: min(74%, 260px);
    }

    .product-zoom-pill {
        top: 12px;
        right: 12px;
        padding: 8px 11px;
        font-size: 10px;
    }

    .product-detail-info h1 {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
        line-height: 1.18;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .product-detail-watt {
        margin-bottom: 8px;
        font-size: .9rem;
    }

    .product-slider-arrow {
        width: 36px;
        height: 36px;
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    .product-slider-prev {
        left: 10px;
    }

    .product-slider-next {
        right: 10px;
    }

    .product-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .product-detail-actions {
        flex-direction: column;
        gap: 10px;
        margin: 20px 0 26px;
    }

    .detail-action {
        min-width: 0;
        width: 100%;
        padding: 12px 16px;
        font-size: 12px;
    }

    .product-feature-item {
        gap: 10px;
    }

        .product-feature-item i,
        .feature-number {
            width: 36px;
            font-size: 30px;
        }

        .product-feature-item strong {
            font-size: 13px;
        }

        .product-feature-item span {
            font-size: 10.5px;
        }

    .product-color-panel {
        padding: 18px;
        gap: 14px;
        justify-content: space-between;
    }

    .product-color-dots {
        gap: 12px;
    }

    .color-dot {
        width: 32px;
        height: 32px;
    }

    .product-spec-table-wrap {
        overflow: visible;
        border-radius: 18px;
        background: transparent;
        box-shadow: none;
        border: 0;
    }

    .product-spec-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 12px;
        font-size: 13px;
    }

        .product-spec-table thead {
            display: none;
        }

        .product-spec-table tbody,
        .product-spec-table tr,
        .product-spec-table td {
            display: block;
        }

        .product-spec-table tr {
            overflow: hidden;
            border: 1px solid rgba(30, 64, 175, .12);
            border-radius: 16px;
            background: #fff;
            box-shadow: 0 10px 28px rgba(6, 78, 59, .06);
        }

        .product-spec-table td {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 12px 14px;
            border-bottom: 1px solid var(--border-soft);
            text-align: right;
        }

            .product-spec-table td::before {
                content: attr(data-label);
                color: var(--primary-dark);
                font-weight: 900;
                text-align: left;
            }

            .product-spec-table td:first-child {
                background: var(--primary-soft);
            }

            .product-spec-table td:last-child {
                border-bottom: 0;
            }

    .product-lightbox {
        padding: 58px 18px 42px;
    }

    .product-lightbox-actions {
        gap: 8px;
    }

    .product-lightbox-action {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .product-lightbox-stage {
        width: 100%;
        padding: 12px;
    }

    .product-lightbox-image {
        max-height: calc(100vh - 120px);
    }

    .product-lightbox-arrow {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .product-lightbox-prev {
        left: 8px;
    }

    .product-lightbox-next {
        right: 8px;
    }
}

.product-cta-band {
    background: var(--bg) !important;
}

.product-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: 28px;
    background: radial-gradient(circle at 90% 10%, rgba(6, 182, 212, .2), transparent 26%), linear-gradient(135deg, #0a1729, #0f1f3a);
    color: #fff;
}

    .product-cta-inner .section-tag {
        color: var(--accent);
    }

    .product-cta-inner h2 {
        max-width: 720px;
        color: #fff;
        font-size: clamp(1.6rem, 3vw, 2.5rem);
    }

@media (max-width: 1080px) {
    .category-feature-card {
        grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
        gap: 28px;
    }

    .premium-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .product-listing-head {
        grid-template-columns: 1fr;
    }

    .category-visual {
        min-height: 240px;
    }
}

@media (max-width: 720px) {
    .category-feature-card,
    .assurance-grid,
    .product-listing-head {
        grid-template-columns: 1fr;
    }

    .category-feature-card {
        padding: 24px;
    }

    .category-copy h3 {
        white-space: normal;
    }

    .category-visual {
        min-height: 180px;
    }

    .category-actions,
    .product-cta-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .premium-product-grid {
        grid-template-columns: 1fr;
    }

    .product-cta-inner {
        padding: 26px;
    }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES (moved from inline <style> blocks)
   ========================================================================== */

/* ---------- Catalog Page (catalog.html) ---------- */
.catalog-view-section {
    position: relative;
    background: #fff;
}

.catalog-pdf-card {
    position: relative;
    border: 1px solid rgba(30, 64, 175, .14);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .1);
    overflow: hidden;
}

.catalog-pdf-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border-soft);
    background: #fff;
}

.catalog-pdf-head h2 {
    font-size: clamp(1.35rem, 2.6vw, 2.1rem);
    margin-top: 4px;
}

.catalog-pdf-head p {
    max-width: 720px;
    margin-top: 8px;
    color: var(--text-muted);
    line-height: 1.65;
}

.catalog-pdf-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
    padding-top: 6px;
}

.catalog-pdf-shell {
    padding: 0;
    background: #fff;
}

.catalog-pdf-frame {
    display: block;
    width: 100%;
    height: min(1180px, calc(100vh - 170px));
    min-height: 760px;
    border: 0;
    background: #fff;
}

.catalog-view-fallback {
    padding: 12px 18px;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    background: #fff;
    border-top: 1px solid var(--border-soft);
}

.catalog-view-fallback a {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 820px) {
    .catalog-pdf-head { display: block; }
    .catalog-pdf-actions { justify-content: flex-start; margin-top: 18px; }
    .catalog-pdf-actions .btn { width: 100%; }
    .catalog-pdf-frame { height: 72vh; min-height: 560px; }
}

/* ---------- Legal Pages (privacy.html, terms.html) ---------- */
.legal-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.contact-hero-badge {
    gap: .28em !important;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(260px, .36fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.legal-summary,
.legal-card,
.legal-contact-card {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.legal-summary {
    position: sticky;
    top: 116px;
    overflow: hidden;
}

.legal-summary-head {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 28px;
    background: radial-gradient(circle at top right, rgba(6,182,212,.18), transparent 42%), linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.legal-summary-head i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.legal-summary-head h2 {
    margin-top: 0;
    color: #fff;
    font-size: clamp(19px, 2vw, 22px);
    white-space: nowrap;
}

.legal-summary-head p {
    grid-column: 1 / -1;
    margin-top: 10px;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
}

.legal-meta-list {
    display: grid;
    gap: 14px;
    padding: 24px 28px 28px;
}

.legal-meta-list li {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.legal-meta-list i {
    margin-top: 4px;
    color: var(--primary);
}

.legal-content {
    display: grid;
    gap: 18px;
}

.legal-intro {
    padding: 32px;
    border: 1px solid rgba(30,64,175,.15);
    border-radius: 28px;
    background: var(--primary-softer);
}

.legal-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.legal-intro p {
    max-width: 820px;
    margin-top: 12px;
    color: var(--text-muted);
}

.legal-card {
    padding: 28px;
}

.legal-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 21px;
}

.legal-card h3 i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 17px;
}

.legal-card p {
    margin-top: 12px;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.legal-list li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-list i {
    margin-top: 5px;
    color: var(--primary);
}

.legal-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 30px;
    background: radial-gradient(circle at top right, rgba(6,182,212,.16), transparent 36%), #fff;
}

.legal-contact-card h3 {
    font-size: 24px;
}

.legal-contact-card p {
    margin-top: 8px;
    color: var(--text-muted);
}

@media (max-width: 1080px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-summary { position: static; }
}

@media (max-width: 720px) {
    .legal-intro,
    .legal-card,
    .legal-contact-card,
    .legal-summary-head,
    .legal-meta-list {
        padding: 24px;
    }
    .legal-contact-card {
        align-items: flex-start;
        flex-direction: column;
    }
    .legal-contact-card .btn { width: 100%; }
}

/* ---------- Contact Page (contact.html) ---------- */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, .16), transparent 34%), linear-gradient(135deg, #0a1729 0%, #0f1f3a 48%, #050f1f 100%);
    color: #fff;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .35;
}

.contact-hero-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 44px;
    align-items: center;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-hero h1 {
    max-width: 720px;
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(2.25rem, 4.6vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.contact-hero h1 span {
    color: var(--accent);
}

.contact-hero-lead {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.7;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-hero-actions .btn {
    padding: 12px 22px;
}

.contact-hero-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    backdrop-filter: blur(14px);
}

.contact-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(6,182,212,.22), transparent 42%);
    pointer-events: none;
}

.contact-hero-card > * {
    position: relative;
    z-index: 1;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #fff;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.hero-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-hero-card h2 {
    color: #fff;
    font-size: 24px;
}

.contact-hero-card p {
    margin-top: 8px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
}

.hero-service-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.hero-service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.45;
}

.hero-service-list i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    font-size: 11px;
    margin-top: 0;
}

.hero-service-list strong {
    display: block;
    color: #fff;
    font-size: 13.5px;
    line-height: 1.35;
    margin-bottom: 2px;
}

.contact-panel-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.contact-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: stretch;
}

.get-touch-card,
.join-card {
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.get-touch-card {
    padding: 34px;
}

.contact-info-stack {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: var(--primary-softer);
    border: 1px solid rgba(30,64,175,.1);
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff;
    color: var(--primary);
    font-size: 20px;
}

.contact-info-item h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.join-card {
    padding: 0;
}

.join-card-head {
    padding: 34px 34px 24px;
    background: radial-gradient(circle at top right, rgba(6,182,212,.18), transparent 42%), linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.join-card-head .section-tag,
.join-card-head h2 {
    color: #fff;
}

.join-card-head .section-tag::before,
.join-card-head .section-tag::after {
    background: rgba(255,255,255,.8);
}

.join-card-head p {
    margin-top: 10px;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 28px 34px 34px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--text);
    font: inherit;
    background: #fff;
    outline: none;
    transition: var(--transition);
}

.form-field textarea {
    min-height: 126px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30,64,175,.1);
}

.map-section {
    padding: 64px 0;
    background: var(--bg-soft);
}

.map-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow);
}

.map-card-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    background: #fff;
}

.map-card-head h2 {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    margin-top: 4px;
}

.map-card-head p {
    color: var(--text-muted);
    max-width: 620px;
    margin-top: 8px;
}

.map-frame {
    width: 100%;
    height: 430px;
    border: 0;
    display: block;
    filter: saturate(.95);
}

@media (max-width: 1080px) {
    .contact-hero-wrap,
    .contact-panel-grid {
        grid-template-columns: 1fr;
    }
    .contact-hero-card { max-width: 520px; }
}

@media (max-width: 720px) {
    .contact-hero { padding: 34px 0; }
    .contact-hero-wrap { gap: 28px; }
    .contact-hero-badge {
        display: inline !important;
        max-width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
        white-space: normal !important;
        text-align: center;
    }
    .contact-hero-badge span { display: inline !important; }
    .contact-hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .contact-hero-actions { flex-direction: column; align-items: stretch; }
    .contact-hero-actions .btn { justify-content: center; }
    .get-touch-card,
    .join-card-head,
    .contact-form,
    .map-card-head { padding: 24px; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-info-item { grid-template-columns: 1fr; }
    .map-card-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }
    .map-frame { height: 340px; }
}

/* ---------- About Page (about.html) ---------- */
.about-hero-custom {
    position: relative;
    overflow: hidden;
    padding: 46px 0;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, .16), transparent 34%), linear-gradient(135deg, #0a1729 0%, #0f1f3a 48%, #050f1f 100%);
    color: #fff;
}

.about-hero-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .35;
}

.about-hero-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 44px;
    align-items: center;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.about-hero-custom h1 {
    max-width: 720px;
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(2.25rem, 4.6vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.about-hero-custom h1 span {
    color: var(--accent);
}

.about-hero-lead {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.7;
}

.about-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.about-hero-actions .btn {
    padding: 12px 22px;
}

.about-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    backdrop-filter: blur(14px);
}

.about-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(6,182,212,.22), transparent 42%);
    pointer-events: none;
}

.about-hero-panel > * {
    position: relative;
    z-index: 1;
}

.about-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #fff;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.about-hero-panel h2 {
    color: #fff;
    font-size: 24px;
}

.about-hero-panel p {
    margin-top: 8px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
}

.about-hero-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.about-hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.45;
}

.about-hero-list i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    font-size: 11px;
}

.about-hero-list strong {
    display: block;
    color: #fff;
    font-size: 13.5px;
    line-height: 1.35;
    margin-bottom: 2px;
}

.about-section-soft {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.about-two-col {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: start;
}

.about-sticky-card {
    position: sticky;
    top: 116px;
    padding: 34px;
    border-radius: 28px;
    background: var(--primary-softer);
    border: 1px solid rgba(30,64,175,.15);
    box-shadow: var(--shadow-sm);
}

.about-sticky-card h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-sticky-card p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 16px;
}

.about-story-stack {
    display: grid;
    gap: 22px;
}

.story-block {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.story-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
}

.story-block h3 i {
    color: var(--primary);
}

.story-block p {
    margin-top: 12px;
    color: var(--text-muted);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.capability-card {
    padding: 26px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.capability-card i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 20px;
}

.capability-card h3 {
    margin-top: 18px;
    font-size: 19px;
}

.capability-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.quality-process {
    counter-reset: quality;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.process-step {
    position: relative;
    padding: 30px 24px;
    border-radius: 24px;
    background: #0a1729;
    color: #fff;
    overflow: hidden;
}

.process-step::before {
    counter-increment: quality;
    content: "0" counter(quality);
    position: absolute;
    right: 18px;
    top: 10px;
    color: rgba(255,255,255,.1);
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
}

.process-step h3 {
    position: relative;
    color: #fff;
    font-size: 19px;
}

.process-step p {
    position: relative;
    margin-top: 12px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.about-market {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.market-card {
    padding: 34px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.market-card h3 {
    font-size: 26px;
}

.market-card p {
    margin-top: 14px;
    color: var(--text-muted);
}

.market-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.market-list li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
}

.market-list i {
    margin-top: 4px;
    color: var(--primary);
}

.about-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.about-cta-card h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.about-cta-card p {
    max-width: 760px;
    margin-top: 10px;
    color: rgba(255,255,255,.82);
}

@media (max-width: 1080px) {
    .about-hero-wrap,
    .about-two-col,
    .about-market {
        grid-template-columns: 1fr;
    }
    .about-sticky-card { position: static; }
    .capability-grid,
    .quality-process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .about-hero-custom { padding: 34px 0; }
    .about-hero-wrap { gap: 28px; }
    .about-hero-custom h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .about-hero-actions { flex-direction: column; align-items: stretch; }
    .about-hero-actions .btn { justify-content: center; }
    .capability-grid,
    .quality-process { grid-template-columns: 1fr; }
    .about-cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }
}

/* ---------- Dealer/Distributor Page (dealer-distributor.html) ---------- */
.partner-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, .16), transparent 34%), linear-gradient(135deg, #0a1729 0%, #0f1f3a 48%, #050f1f 100%);
    color: #fff;
}

.partner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .35;
}

.partner-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 44px;
    align-items: center;
}

.partner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.partner-hero h1 {
    max-width: 720px;
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(2.25rem, 4.6vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.partner-hero h1 span {
    color: var(--accent);
}

.partner-lead {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.7;
}

.partner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.partner-actions .btn {
    padding: 12px 22px;
}

.partner-panel {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    backdrop-filter: blur(14px);
}

.partner-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(6,182,212,.22), transparent 42%);
    pointer-events: none;
}

.partner-panel > * {
    position: relative;
    z-index: 1;
}

.partner-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.partner-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #fff;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.partner-panel h2 {
    color: #fff;
    font-size: 24px;
}

.partner-panel p {
    margin-top: 8px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
}

.partner-stat-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.partner-stat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.45;
}

.partner-stat-list i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    font-size: 11px;
}

.partner-stat-list strong {
    display: block;
    color: #fff;
    font-size: 13.5px;
    line-height: 1.35;
    margin-bottom: 2px;
}

.partner-soft {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.partner-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.partner-card {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.partner-card i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 21px;
}

.partner-card h3 {
    margin-top: 18px;
    font-size: 20px;
}

.partner-card p {
    margin-top: 10px;
    color: var(--text-muted);
}

.partner-split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: stretch;
}

.partner-box {
    padding: 36px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.partner-box h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.partner-box p {
    margin-top: 14px;
    color: var(--text-muted);
}

.check-list {
    display: grid;
    gap: 13px;
    margin-top: 24px;
}

.check-list li {
    display: flex;
    gap: 11px;
    color: var(--text-muted);
}

.check-list i {
    margin-top: 4px;
    color: var(--primary);
}

.partner-steps {
    counter-reset: step;
    display: grid;
    gap: 16px;
}

.partner-step {
    position: relative;
    padding: 24px 24px 24px 78px;
    border-radius: 22px;
    background: var(--primary-softer);
    border: 1px solid rgba(30,64,175,.16);
}

.partner-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 24px;
    top: 24px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-weight: 800;
}

.partner-step h3 {
    font-size: 19px;
}

.partner-step p {
    margin-top: 8px;
    color: var(--text-muted);
}

.partner-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.partner-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.partner-cta p {
    max-width: 760px;
    margin-top: 10px;
    color: rgba(255,255,255,.82);
}

@media (max-width: 1080px) {
    .partner-hero-grid,
    .partner-split { grid-template-columns: 1fr; }
    .partner-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .partner-hero { padding: 34px 0; }
    .partner-hero-grid { gap: 28px; }
    .partner-hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .partner-actions { flex-direction: column; align-items: stretch; }
    .partner-actions .btn { justify-content: center; }
    .partner-card-grid { grid-template-columns: 1fr; }
    .partner-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }
}

/* ---------- OEM Page (oem.html) ---------- */
.oem-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, .16), transparent 34%), linear-gradient(135deg, #0a1729 0%, #0f1f3a 48%, #050f1f 100%);
    color: #fff;
}

.oem-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .35;
}

.oem-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 44px;
    align-items: center;
}

.oem-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.oem-kicker span {
    color: var(--accent);
}

.oem-hero h1 {
    max-width: 720px;
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(2.25rem, 4.6vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.oem-hero h1 span {
    color: var(--accent);
}

.oem-lead {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.7;
}

.oem-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.oem-actions .btn {
    padding: 12px 22px;
}

.oem-panel {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    backdrop-filter: blur(14px);
}

.oem-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(6,182,212,.22), transparent 42%);
    pointer-events: none;
}

.oem-panel > * {
    position: relative;
    z-index: 1;
}

.oem-product-card {
    padding: 0;
    color: #fff;
}

.oem-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.oem-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #fff;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.oem-product-card h2 {
    color: #fff;
    font-size: 24px;
}

.oem-product-card p {
    margin-top: 8px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
}

.oem-mini-grid {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.oem-mini-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.45;
}

.oem-mini-grid i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    font-size: 11px;
}

.oem-mini-grid strong {
    display: block;
    color: #fff;
    font-size: 13.5px;
    line-height: 1.35;
    margin-bottom: 2px;
}

.oem-soft {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.oem-card-grid {
    counter-reset: capability;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.oem-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    min-height: 220px;
    padding: 26px;
    border-radius: 26px;
    background: radial-gradient(circle at 92% 8%, rgba(6,182,212,.18), transparent 34%), linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(30,64,175,.12);
    box-shadow: 0 14px 34px rgba(30,64,175,.08);
    transition: var(--transition);
}

.oem-card::before {
    counter-increment: capability;
    content: counter(capability);
    position: absolute;
    left: 26px;
    top: 26px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(30,64,175,.24);
}

.oem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30,64,175,.28);
    box-shadow: var(--shadow);
}

.oem-capability-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding-left: 74px;
    min-height: 58px;
}

.oem-card i {
    display: none;
}

.oem-card h3 {
    max-width: 150px;
    font-size: 18px;
    line-height: 1.25;
}

.oem-card p {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.oem-split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: stretch;
}

.oem-box {
    padding: 36px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.oem-box h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.oem-box p {
    margin-top: 14px;
    color: var(--text-muted);
}

.oem-list {
    display: grid;
    gap: 13px;
    margin-top: 24px;
}

.oem-list li {
    display: flex;
    gap: 11px;
    color: var(--text-muted);
}

.oem-list i {
    margin-top: 4px;
    color: var(--primary);
}

.oem-process {
    counter-reset: oemstep;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.oem-step {
    position: relative;
    padding: 24px 24px 24px 78px;
    border-radius: 22px;
    background: var(--primary-softer);
    border: 1px solid rgba(30,64,175,.16);
}

.oem-step::before {
    counter-increment: oemstep;
    content: counter(oemstep);
    position: absolute;
    left: 24px;
    top: 24px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-weight: 800;
}

.oem-step h3 {
    font-size: 19px;
}

.oem-step p {
    margin-top: 8px;
    color: var(--text-muted);
}

.oem-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.oem-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.oem-cta p {
    max-width: 760px;
    margin-top: 10px;
    color: rgba(255,255,255,.82);
}

@media (max-width: 1080px) {
    .oem-hero-grid,
    .oem-split { grid-template-columns: 1fr; }
    .oem-card-grid,
    .oem-process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .oem-hero { padding: 34px 0; }
    .oem-hero-grid { gap: 28px; }
    .oem-hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .oem-actions { flex-direction: column; align-items: stretch; }
    .oem-actions .btn { justify-content: center; }
    .oem-card-grid,
    .oem-process,
    .oem-mini-grid { grid-template-columns: 1fr; }
    .oem-card { min-height: auto; padding: 22px; }
    .oem-card::before {
        left: 22px;
        top: 22px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .oem-capability-head { min-height: 50px; padding-left: 64px; }
    .oem-card h3 { max-width: none; }
    .oem-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }
}
