:root {
    --dark: #0b2535;
    --blue: #123f5c;
    --blue-2: #0f5f7a;
    --teal: #0f7fa6;
    --gold: #f3b23c;
    --light: #f5f8fa;
    --light-2: #f8fafc;
    --border: #dfe8ee;
    --text: #263238;
    --muted: #667984;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img,
video {
    max-width: 100%;
}

.container {
    width: min(1480px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
}
/* =========================================
   FINAL LOGO POPUP FIX
========================================= */
/* =========================================
   LOGO POPUP
========================================= */

.logo-modal {
    position: fixed !important;
    inset: 0 !important;

    z-index: 99999 !important;

    display: none !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;
}

.logo-modal.is-open {
    display: flex !important;
}

.logo-modal-backdrop {
    position: absolute !important;
    inset: 0 !important;

    background: rgba(0,0,0,0.62) !important;

    backdrop-filter: blur(5px) !important;
}

.logo-modal-content {
    position: relative !important;

    z-index: 2 !important;

    width: min(420px, 88vw) !important;

    padding: 22px !important;

    border-radius: 24px !important;

    background: rgba(255,255,255,0.97) !important;

    box-shadow:
        0 28px 90px rgba(0,0,0,0.36) !important;
}

.logo-modal-image {
    display: block !important;

    width: 100% !important;
    max-height: 65vh !important;

    object-fit: contain !important;
    object-position: center !important;

    margin: 0 auto !important;
}

.logo-modal-close {
    position: absolute !important;

    top: 10px !important;
    right: 10px !important;

    width: 32px !important;
    height: 32px !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: rgba(0,0,0,0.08) !important;

    color: #17324d !important;

    font-size: 22px !important;
    line-height: 1 !important;

    cursor: pointer !important;
}

/* =========================================
   HEADER LOGO
========================================= */

.site-header .logo {
    display: inline-flex !important;
    align-items: center !important;

    flex-direction: row !important;

    gap: 10px !important;

    min-width: 0 !important;

    text-decoration: none !important;

    white-space: nowrap !important;
}

.site-header .logo-img {
    height: 42px !important;
    width: auto !important;

    max-width: 170px !important;

    object-fit: contain !important;
    object-position: center left !important;

    display: block !important;

    flex-shrink: 0 !important;
}

.logo-text-wrap {
    display: flex !important;

    flex-direction: column !important;

    justify-content: center !important;
    align-items: flex-start !important;

    min-width: 0 !important;

    line-height: 1 !important;

    white-space: nowrap !important;
}

.site-header .logo-text-wrap {
    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    justify-content: center !important;

    text-align: center !important;
}

.site-header .logo-text {
    display: block !important;

    margin: 0 !important;

    white-space: nowrap !important;

    font-size: clamp(22px, 1.8vw, 30px) !important;

    font-weight: 950 !important;

    color: var(--blue-2) !important;

    letter-spacing: 0.15px !important;

    line-height: 1 !important;

    text-align: center !important;
}

.logo-subtitle {
    display: block !important;

    margin-top: 3px !important;

    font-size: 11px !important;

    font-weight: 600 !important;

    color: #45616d !important;

    white-space: nowrap !important;

    opacity: 0.92 !important;

    line-height: 1.1 !important;

    text-align: center !important;
}

/* =========================================
   POPUP ANIMATION
========================================= */

@keyframes logoPopupIn {

    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
.header-center-title {
    text-align: center;
    font-size: 21px;
    font-weight: 800;
    color: var(--blue-2);
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #1f3440;
    font-size: 15px;
    font-weight: 650;
}

.nav a:hover {
    color: var(--teal);
}

.nav-btn,
.header-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--teal);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

.language-switcher {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;

    gap: 3px;

    min-width: auto;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 3px;

    padding: 3px 6px;

    border-radius: 999px;

    text-decoration: none;
    white-space: nowrap;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    color: #35505c;

    opacity: 0.58;
    transform: scale(0.92);

    border: 1px solid transparent;

    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease,
        opacity 0.18s ease,
        box-shadow 0.18s ease,
        border 0.18s ease;
}

.lang-link:hover {
    background: rgba(15,127,166,0.08);

    opacity: 1;

    transform: scale(1);
}

.lang-link.active {

    background: #ffffff;

    color: var(--teal);

    opacity: 1;

    transform: scale(1.12);

    border: 2px solid rgba(15,127,166,0.35);

    box-shadow:
        0 4px 12px rgba(15,127,166,0.16);

    z-index: 2;

    position: relative;
}

.lang-link.active .lang-code {
    font-weight: 900;
}

.lang-link.active .lang-flag {
    width: 18px;
    height: 13px;
}

.lang-flag {
    width: 14px;
    height: 10px;

    object-fit: cover;

    border-radius: 2px;

    display: block;

    flex-shrink: 0;

    transition:
        width 0.18s ease,
        height 0.18s ease;
}

.lang-flag-fallback {
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
}

.lang-code {
    font-size: 9px;
    letter-spacing: 0;
    line-height: 1;

    transition:
        font-weight 0.18s ease;
}

/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 88px 0;
}

.section-light {
    background: var(--light);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2,
.dark-section h2,
.cta-section h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    color: var(--blue);
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.grid {
    display: grid;
    gap: 26px;
}

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

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

.grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 32px rgba(11,37,53,0.07);
}

.card h3 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 21px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243,178,60,0.18);
    color: var(--blue);
    border-radius: 14px;
    font-weight: 900;
}

.image-placeholder,
.split-image {
    min-height: 220px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(18,63,92,0.92), rgba(15,52,76,0.65)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 10px, transparent 10px 20px);
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

/* =========================================================
   HERO: DEFAULT CENTER VIDEO LAYOUT
========================================================= */

.hero-section {
    width: 100%;
    padding: 24px 0 0;
    background: transparent;
}

.hero-layout,
.hero-layout-default {
    width: min(1560px, calc(100% - 32px));
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-center {
    width: 100%;
    min-width: 0;

    display: flex;
    justify-content: center;
}

.hero-box {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-bg-video {
    width: 100%;
    display: block;
}

/* =========================================================
   HERO DYNAMIC TEXT SYSTEM
   Text is restricted inside hero video box
========================================================= */

.hero-layout .hero-box {
    overflow: hidden;
    position: relative;
}

.hero-dynamic-text-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    pointer-events: none;
    overflow: hidden;
    contain: paint;
}

.hero-dynamic-text,
.hero-floating-text,
.hero-text-item {
    position: absolute;
    left: 50%;
    top: 50%;

    max-width: 88%;
    width: max-content;

    opacity: 0;
    color: var(--white);
    font-weight: 900;
    text-align: center;
    white-space: normal;

    text-shadow: 0 4px 18px rgba(0,0,0,0.65);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-dynamic-text.hero-text-active,
.hero-floating-text.active,
.hero-text-item.active {
    opacity: 1;
}

.hero-font-small {
    font-size: clamp(18px, 2vw, 30px);
}

.hero-font-medium {
    font-size: clamp(24px, 3vw, 42px);
}

.hero-font-large {
    font-size: clamp(30px, 4vw, 56px);
}

.hero-text-line-1,
.hero-text-line-2 {
    line-height: 1.08;
}

.hero-text-line-2 {
    margin-top: 8px;
    font-size: 0.62em;
    font-weight: 800;
}

/* positions inside video box */
.hero-pos-center {
    left: 50%;
    top: 50%;
}

.hero-pos-top-center {
    left: 50%;
    top: 24%;
}

.hero-pos-bottom-center {
    left: 50%;
    top: 74%;
}

.hero-pos-left-center {
    left: 32%;
    top: 50%;
}

.hero-pos-right-center {
    left: 68%;
    top: 50%;
}

/* active animations */
.hero-text-style-1.hero-text-active {
    animation: heroStyle1 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-2.hero-text-active {
    animation: heroStyle2 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-3.hero-text-active {
    animation: heroStyle3 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-4.hero-text-active {
    animation: heroStyle4 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-5.hero-text-active {
    animation: heroStyle5 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-6.hero-text-active {
    animation: heroStyle6 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-7.hero-text-active {
    animation: heroStyle7 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-8.hero-text-active {
    animation: heroStyle8 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-9.hero-text-active {
    animation: heroStyle9 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-10.hero-text-active {
    animation: heroStyle10 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-11.hero-text-active {
    animation: heroStyle11 var(--total-ms, 4800ms) linear forwards;
}

.hero-text-style-12.hero-text-active {
    animation: heroStyle12 var(--total-ms, 4800ms) linear forwards;
}

/* all movement now stays within hero box */
@keyframes heroStyle1 {
    0% { opacity: 0; transform: translate(-95%, -95%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(10%, -50%); }
}

@keyframes heroStyle2 {
    0% { opacity: 0; transform: translate(35%, -50%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-135%, -50%); }
}

@keyframes heroStyle3 {
    0% { opacity: 0; transform: translate(-50%, 80%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, -150%); }
}

@keyframes heroStyle4 {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.88); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes heroStyle5 {
    0% { opacity: 0; transform: translate(-135%, -50%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(35%, -50%); }
}

@keyframes heroStyle6 {
    0% { opacity: 0; transform: translate(-50%, 20%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, -120%); }
}

@keyframes heroStyle7 {
    0% { opacity: 0; transform: translate(-95%, 45%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(10%, -100%); }
}

@keyframes heroStyle8 {
    0% { opacity: 0; transform: translate(-95%, -95%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, 45%); }
}

@keyframes heroStyle9 {
    0% { opacity: 0; transform: translate(10%, 45%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-100%, -100%); }
}

@keyframes heroStyle10 {
    0% { opacity: 0; transform: translate(10%, -95%); }
    20% { opacity: 1; transform: translate(-50%, -50%); }
    80% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, 45%); }
}

@keyframes heroStyle11 {
    0% { opacity: 0; transform: translate(-140%, -50%); }
    18% { opacity: 1; transform: translate(-50%, -50%); }
    72% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(40%, -50%); }
}

@keyframes heroStyle12 {
    0% { opacity: 0; transform: translate(40%, -50%); }
    18% { opacity: 1; transform: translate(-50%, -50%); }
    72% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-140%, -50%); }
}



/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    width: 100%;
    height: 44px;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            #0f766e,
            #0b6b88
        );

    color: #ffffff;
}

.announcement-inner {

    width: min(1560px, calc(100% - 32px));
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 24px;
}

.announcement-title {

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    white-space: nowrap;

    opacity: 0.92;
}

.announcement-message-wrap {

    position: relative;

    height: 44px;

    overflow: hidden;
}

.announcement-message {

    position: absolute;

    top: 0;
    left: 0;

    height: 100%;

    display: flex;
    align-items: center;

    font-size: 15px;
    font-weight: 800;

    white-space: nowrap;

    opacity: 0;

    transform: translateX(0);

    pointer-events: none;
}

.announcement-message.is-active {

    opacity: 1;

    animation:
        announcementTravel 4.8s linear forwards;
}

.announcement-message.is-leaving {
    opacity: 0;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.announcement-socials {

    display: flex;
    align-items: center;

    gap: 14px;

    white-space: nowrap;
}

.announcement-socials a {

    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,0.92);

    text-decoration: none;

    font-size: 16px;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.announcement-socials a:hover {

    opacity: 1;

    transform: translateY(-1px);
}

/* =========================================================
   MESSAGE MOVEMENT
========================================================= */

@keyframes announcementTravel {

    0% {
        opacity: 0;
        transform: translateX(-18%);
    }

    10% {
        opacity: 1;
        transform: translateX(-6%);
    }

    72% {
        opacity: 1;
        transform: translateX(78%);
    }

    100% {
        opacity: 0;
        transform: translateX(96%);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .announcement-bar {
        height: 40px;
    }

    .announcement-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .announcement-title {
        display: none;
    }

    .announcement-message-wrap {
        height: 40px;
        min-width: 0;
    }

    .announcement-message {
        justify-content: flex-start;
        font-size: 13px;
        text-align: left;
    }

    .announcement-socials {
        gap: 9px;
    }

    .announcement-socials a,
    .announcement-social-disabled {
        width: 16px;
        height: 16px;
        font-size: 14px;
    }

    @keyframes announcementTravel {

        0% {
            opacity: 0;
            transform: translateX(-10%);
        }

        10% {
            opacity: 1;
            transform: translateX(-2%);
        }

        72% {
            opacity: 1;
            transform: translateX(28%);
        }

        100% {
            opacity: 0;
            transform: translateX(38%);
        }
    }
}

/* ===== FINAL FIX: ENQUIRY FORM GRID ===== */

.inquiry-page {
    padding: 72px 0 90px !important;
    background: linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%) !important;
}

.inquiry-page .inquiry-container {
    width: min(1180px, calc(100% - 36px)) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
}

.inquiry-page .inquiry-header {
    text-align: center !important;
    margin-bottom: 38px !important;
}

.inquiry-page .inquiry-form {
    display: block !important;
    width: 100% !important;
    background: #ffffff !important;
    border-radius: 22px !important;
    padding: 38px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06) !important;
}

.inquiry-page .form-section {
    width: 100% !important;
    margin-bottom: 34px !important;
    padding-bottom: 28px !important;
    border-bottom: 1px solid #e6eaf0 !important;
}

.inquiry-page .inquiry-grid-3 {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
}

.inquiry-page .inquiry-grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
}

.inquiry-page .form-group {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
}

.inquiry-page label {
    display: block !important;
    min-height: 38px !important;
    font-weight: 600 !important;
    margin-bottom: 7px !important;
}

.inquiry-page input,
.inquiry-page select,
.inquiry-page textarea {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 13px !important;
    border: 1px solid #cfd7e3 !important;
    border-radius: 9px !important;
    font-size: 15px !important;
    margin-bottom: 16px !important;
}

@media (max-width: 980px) {
    .inquiry-page .inquiry-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .inquiry-page .inquiry-grid-3,
    .inquiry-page .inquiry-grid-2 {
        grid-template-columns: 1fr !important;
    }
}

/* ===== ACTIVE LANGUAGE ONLY ===== */

.site-header .language-switcher .lang-link.active {

    transform: scale(1.22) !important;

    background: #ffffff !important;

    border: 2px solid #0f7fa6 !important;

    box-shadow:
        0 5px 16px rgba(15,127,166,0.32) !important;

    z-index: 10 !important;

    position: relative !important;
}

.site-header .language-switcher .lang-link.active .lang-flag {

    width: 22px !important;
    height: 16px !important;
}

.site-header .language-switcher .lang-link.active .lang-code {

    font-size: 11px !important;

    font-weight: 950 !important;

    color: #0f7fa6 !important;
}

/* =========================================================
   PRODUCTS - FINAL RESTORE FROM BACKUP + TITLE FILTER BAR
========================================================= */

.products-section {
    margin-top: 0 !important;
    padding: 8px 0 2px !important;
    background: var(--light-2) !important;
}

.products-section .section-header {
    display: none !important;
}

.products-grid,
.products-section .grid-3 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
}

.product-card {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    background: var(--white) !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12) !important;
}

.product-image-wrap {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    overflow: hidden !important;
    background: var(--white) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-image-wrap img,
.product-img,
.product-image {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center center !important;
}

.product-card-topline {
    position: absolute !important;
    top: 14px !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    pointer-events: none !important;
}

.product-model-top,
.product-code-top {
    color: var(--white) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 2px rgba(0,0,0,0.95) !important;
}

.product-model-top {
    font-size: 18px !important;
}

.product-code-top {
    font-size: 13px !important;
    font-weight: 800 !important;
}

.product-overlay {
    position: absolute !important;
    left: 18px !important;
    right: 18px !important;
    bottom: 14px !important;
    z-index: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    pointer-events: none !important;
}

.product-name-overlay {
    color: var(--white) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 2px rgba(0,0,0,0.95) !important;
}

.product-price-overlay,
.product-subtitle {
    color: var(--gold) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 0 2px rgba(0,0,0,1) !important;
}

.product-content,
.product-content h3,
.product-description,
.product-application,
.product-code,
.product-price {
    display: none !important;
}

.product-image-placeholder {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
    font-weight: 700 !important;
}

/* New green products title/filter bar */

.product-category-tabs,
.product-category-tab {
    display: none !important;
}

.products-title-filter-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin-bottom: 12px !important;
    padding: 16px 22px !important;
    background: linear-gradient(135deg, #0f8f5f 0%, #0b6f4a 100%) !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10) !important;
}

.products-title-left {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
}

.products-bar-logo {
    height: 46px !important;
    width: auto !important;
    display: block !important;
}

.products-bar-title {
    color: #ffffff !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

.products-filter-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.products-filter-right label {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

.product-category-select {
    min-width: 340px !important;
    padding: 12px 18px !important;
    border: none !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #17425c !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    outline: none !important;
}

@media (max-width: 1100px) {
    .products-grid,
    .products-section .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .product-image-wrap {
        height: 280px !important;
        min-height: 280px !important;
    }
}

@media (max-width: 700px) {
    .products-grid,
    .products-section .grid-3 {
        grid-template-columns: 1fr !important;
    }

    .product-image-wrap {
        height: 300px !important;
        min-height: 300px !important;
    }

    .products-title-filter-bar {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .products-title-left,
    .products-filter-right {
        justify-content: center !important;
    }

    .product-category-select {
        min-width: 0 !important;
        width: 100% !important;
    }
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #10263b;
    color: #dbe7f3;
    padding: 58px 0 26px;
    margin-top: 0;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns:
        1.4fr
        1fr
        1fr
        1fr;

    gap: 42px;

    align-items: start;
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
}

.site-footer h4 {
    margin: 0 0 16px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.site-footer p,
.site-footer a {
    color: #c6d3df;
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
    margin: 0 0 8px;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer .footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;

    color: #8ea3b7;

    font-size: 14px;
}

@media (max-width: 980px) {

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

        gap: 34px;
    }
}

@media (max-width: 760px) {

    .site-footer {
        padding: 46px 0 24px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer h3 {
        font-size: 24px;
    }
}

/* =====================================================
   HOW SOLAR BIWATER WORKS SECTION
===================================================== */

.biwater-works-section {
    padding: 12px 0 28px !important;
    background:
        radial-gradient(circle at 15% 20%, rgba(36, 137, 255, 0.10), transparent 34%),
        linear-gradient(180deg, #f6f9fc 0%, #eef4f8 100%);
}

.biwater-works-container {
    width: 96% !important;
    max-width: 1480px !important;
    margin: 0 auto;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* TITLE BAR */
.biwater-top-title-bar {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    margin-bottom: 28px;
    min-height: 128px;
    border-radius: 24px;
    background: linear-gradient(90deg, #0c6aa4 0%, #1188c9 38%, #19a2df 100%);
    box-shadow: 0 14px 38px rgba(15, 77, 120, 0.18);
    overflow: hidden;
}

.biwater-top-title-logo {
    height: 100%;
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.22);
}

.biwater-top-title-logo .logo-img,
.biwater-top-title-logo img {
    height: 108px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.16));
}

.biwater-top-title-content {
    position: relative;
    padding: 22px 42px 24px;
    overflow: hidden;
}

.biwater-top-title-content h2 {
    margin: 0 120px 12px 0;
    font-size: clamp(32px, 3.4vw, 50px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.035em;
    color: #ffffff;
    white-space: nowrap;
}

/* MOVING MESSAGE */
.biwater-title-message-wrap {
    position: relative;
    height: 52px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.22);
    padding-top: 14px;
}

.biwater-title-message {
    position: absolute;
    top: 14px;
    left: 100%;
    opacity: 0;
    white-space: nowrap;
    font-size: clamp(20px, 1.7vw, 28px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.96);
}

.biwater-title-message.active {
    opacity: 1;
    animation: biwaterTitleMove 22s linear forwards;
}

@keyframes biwaterTitleMove {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        transform: translateX(-140vw);
        opacity: 0;
    }
}

/* DOTS */
.biwater-title-dots {
    position: absolute;
    right: 36px;
    top: 48px;
    display: flex;
    gap: 8px;
}

.biwater-title-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
}

.biwater-title-dots button.active {
    width: 26px;
    border-radius: 999px;
    background: #ffffff;
}

/* MAIN CONTENT SHELL */
.biwater-works-shell {
    padding: 28px 28px 16px !important;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.96), rgba(236,244,250,0.92));
    border: 1px solid rgba(20,96,148,0.10);
    box-shadow: 0 24px 60px rgba(16,60,96,0.10);
}

/* GRID */
.biwater-works-grid {
    display: grid !important;
    grid-template-columns: 1.02fr 0.98fr !important;
    gap: 34px !important;
    align-items: start !important;
}

/* COLUMNS */
.biwater-left-column,
.biwater-works-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    height: auto !important;
}

.biwater-left-column {
    justify-content: flex-start !important;
}

.biwater-works-steps {
    justify-content: flex-start !important;
}

/* IMAGE */
.biwater-works-visual {
    min-height: 420px !important;
    height: 420px !important;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.biwater-how-image {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px !important;
    object-fit: contain !important;
    object-position: center;
    border-radius: 22px;
    display: block;
    box-shadow: 0 20px 46px rgba(15,65,105,0.16);
}

/* STEPS */
.work-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(24,84,126,0.10);
    box-shadow: 0 14px 34px rgba(24,68,100,0.08);
}

.featured-step {
    background:
        linear-gradient(135deg, rgba(12,106,164,0.06), rgba(25,162,223,0.10));
}

.work-step span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(145deg, #1f8bc9, #125f9a);
    color: white;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-step h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 850;
    color: #17324d;
}

.work-step p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: #617080;
}

/* REMOVE OLD ANIMATION SYSTEM */
.biwater-work-banner,
.biwater-work-banner-left,
.biwater-work-banner-right,
.sun-node,
.system-card,
.tube-group,
.steam-line,
.output-row,
.output-box {
    display: none !important;
}

/* MOBILE */
@media (max-width: 980px) {
    .biwater-works-section {
        padding: 10px 0 40px !important;
    }

    .biwater-top-title-bar {
        grid-template-columns: 95px 1fr;
        min-height: 112px;
        border-radius: 20px;
        margin-bottom: 24px;
    }

    .biwater-top-title-logo {
        min-height: 112px;
    }

    .biwater-top-title-logo .logo-img,
    .biwater-top-title-logo img {
        height: 96px;
    }

    .biwater-top-title-content {
        padding: 18px 18px 26px;
    }

    .biwater-top-title-content h2 {
        margin: 0 86px 8px 0;
        font-size: 25px;
        line-height: 1.08;
        white-space: normal;
    }

    .biwater-title-message-wrap {
        height: 40px;
        padding-top: 11px;
    }

    .biwater-title-message {
        top: 11px;
        left: 100%;
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .biwater-title-dots {
        right: 18px;
        top: 20px;
        left: auto;
        bottom: auto;
    }

    .biwater-works-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .biwater-left-column,
    .biwater-works-steps {
        gap: 16px !important;
    }

    .biwater-works-visual {
        min-height: 260px !important;
        height: auto !important;
    }

    .biwater-how-image {
        min-height: 260px !important;
    }

    .work-step {
        grid-template-columns: 46px 1fr;
        padding: 18px;
    }

    .work-step span {
        width: 42px;
        height: 42px;
    }
}

/* =====================================================
   BIWATER ADVANTAGES SECTION
===================================================== */

.biwater-advantages-section {
    padding: 14px 0 28px;
    background: linear-gradient(180deg, #eef4f7 0%, #f7fafc 100%);
}

.biwater-advantages-container {
    width: 94%;
    max-width: 1420px;
    margin: 0 auto;
}

/* TITLE BAR */
.biwater-advantages-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;

    min-height: 168px;
    margin-bottom: 34px;
    padding: 30px 42px;

    border-radius: 24px;
    background:
        radial-gradient(circle at 82% 18%, rgba(48, 160, 110, 0.32), transparent 32%),
        linear-gradient(135deg, #061c34 0%, #07324b 48%, #075f63 100%);
    box-shadow: 0 18px 42px rgba(12, 55, 78, 0.18);
}

.biwater-advantages-title-text {
    flex: 1;
}

.biwater-advantages-title-text h2 {
    margin: 0 0 10px;

    font-size: clamp(32px, 3.25vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;

    color: #ffffff;
}

.biwater-advantages-title-text p {
    max-width: 900px;
    margin: 0;

    font-size: 17px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.92);
}

.biwater-advantages-title-logo img {
    max-width: 172px;
    max-height: 150px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* BODY LAYOUT */
.biwater-advantages-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}

.biwater-advantages-left,
.biwater-advantages-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CARDS */
.biwater-advantage-card {
    background: #ffffff;

    border-radius: 18px;
    padding: 18px 22px;

    border: 1px solid rgba(20, 70, 95, 0.07);
    box-shadow: 0 10px 26px rgba(15, 55, 76, 0.08);
}

.biwater-advantage-card h3 {
    margin: 0 0 7px;

    font-size: 19px;
    line-height: 1.22;
    font-weight: 850;

    color: #0d3850;
}

.biwater-advantage-card p {
    margin: 0;

    font-size: 14.5px;
    line-height: 1.55;

    color: #4f6878;
}

/* FEATURED GREEN CARD */
.biwater-advantage-featured {
    padding: 22px 26px;

    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 22%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #2f8f3b 0%, #4fa642 48%, #237c36 100%);
    box-shadow: 0 14px 32px rgba(38, 120, 56, 0.20);
}

.biwater-advantage-featured h3,
.biwater-advantage-featured p {
    color: #ffffff;
}

/* IMAGE */
.biwater-advantages-image-wrap {
    overflow: hidden;

    min-height: 420px;
    max-height: 520px;

    border-radius: 22px;
    background: #dce8ee;
    box-shadow: 0 16px 36px rgba(20, 60, 80, 0.14);
}

.biwater-advantages-image-wrap img {
    width: 100%;
    height: 100%;

    min-height: 420px;
    max-height: 520px;

    object-fit: cover;
    display: block;
}

/* MOBILE */
@media (max-width: 900px) {
    .biwater-advantages-container {
        width: 92%;
    }

    .biwater-advantages-titlebar {
        flex-direction: column;
        align-items: flex-start;

        min-height: auto;
        padding: 26px 24px;
    }

    .biwater-advantages-title-logo img {
        max-width: 150px;
    }

    .biwater-advantages-layout {
        grid-template-columns: 1fr;
    }

    .biwater-advantages-image-wrap,
    .biwater-advantages-image-wrap img {
        min-height: 280px;
        max-height: none;
    }
}

/* =====================================================
   BIWATER APPLICATIONS SECTION
===================================================== */
.biwater-applications-section {
    padding: 6px 0 18px;
    background: linear-gradient(180deg, #f7fafc 0%, #eef5f7 100%);
}

.biwater-applications-container {
    width: 94%;
    max-width: 1420px;
    margin: 0 auto;
}

.biwater-applications-titlebar {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0;
    align-items: stretch;

    margin-bottom: 34px;

    min-height: 150px;

    border-radius: 24px;
    overflow: hidden;

    background:
        radial-gradient(circle at 90% 18%, rgba(255,255,255,0.18), transparent 32%),
        linear-gradient(135deg, #0a6f88 0%, #0f8f89 52%, #4fa642 100%);

    box-shadow: 0 18px 42px rgba(12, 55, 78, 0.16);
}

.biwater-applications-title-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(255,255,255,0.24);
}

.biwater-applications-title-logo img {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.16));
}

.biwater-applications-title-text {
    padding: 30px 42px;
}

.biwater-applications-title-text h2 {
    margin: 0 0 10px;
    font-size: clamp(32px, 3.25vw, 52px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.biwater-applications-title-text p {
    max-width: 960px;
    margin: 0;
    font-size: 17px;
    line-height: 1.62;
    color: rgba(255,255,255,0.92);
}

.biwater-applications-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.biwater-application-featured-card {
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(16,60,96,0.12);
    border: 1px solid rgba(20,70,95,0.08);
}

.biwater-application-featured-image {
    height: 420px;
    background: #dce8ee;
}

.biwater-application-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biwater-application-featured-content {
    padding: 28px 30px 30px;
}

.biwater-application-featured-content span {
    display: inline-block;
    margin-bottom: 10px;
    color: #2f8f3b;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.biwater-application-featured-content h3 {
    margin: 0 0 10px;
    color: #10384e;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.biwater-application-featured-content p {
    margin: 0;
    color: #526b78;
    font-size: 15.5px;
    line-height: 1.62;
}

.biwater-application-output {
    margin-top: 18px;
    padding: 13px 16px;
    border-radius: 14px;
    background: #edf8f0;
    color: #236c35;
    font-size: 14px;
    font-weight: 850;
}

.biwater-applications-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.biwater-application-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0;

    overflow: hidden;
    border-radius: 20px;

    background: #ffffff;
    border: 1px solid rgba(20,70,95,0.08);
    box-shadow: 0 10px 26px rgba(15,55,76,0.08);
}

.biwater-application-card-image {
    background: #dce8ee;
    min-height: 150px;
}

.biwater-application-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biwater-application-card-content {
    padding: 18px 20px;
}

.biwater-application-card-content h3 {
    margin: 0 0 7px;
    color: #10384e;
    font-size: 19px;
    line-height: 1.22;
    font-weight: 850;
}

.biwater-application-card-content p {
    margin: 0;
    color: #526b78;
    font-size: 14.2px;
    line-height: 1.52;
}

.biwater-application-small-output {
    margin-top: 10px;
    color: #27743a;
    font-size: 13px;
    font-weight: 850;
}

@media (max-width: 900px) {
    .biwater-applications-titlebar {
        grid-template-columns: 1fr;
    }

    .biwater-applications-title-logo {
        min-height: 110px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.24);
    }

    .biwater-applications-layout {
        grid-template-columns: 1fr;
    }

    .biwater-application-card {
        grid-template-columns: 1fr;
    }

    .biwater-application-card-image {
        min-height: 220px;
    }
}

/* MOVE LAST CARD TO LEFT COLUMN UNDER FEATURED */

.biwater-applications-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.biwater-applications-layout {
    align-items: start;
}

/* LAST CARD UNDER FEATURED */
.biwater-application-card.last-left {
    margin-top: 16px;
}

/* =========================================================
   HERO PANEL SYSTEM - FINAL CLEAN VERSION
========================================================= */

.hero-layout-panels {
    width: min(1680px, calc(100% - 28px)) !important;

    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns:
        minmax(180px, 0.18fr)
        minmax(0, 1fr)
        minmax(180px, 0.18fr) !important;

    gap: 18px !important;

    align-items: stretch !important;
}


/* =========================================================
   VIDEO CONTAINER
========================================================= */

.hero-box {
    width: 100% !important;

    max-width: 1180px !important;

    height: clamp(400px, 33vw, 540px) !important;

    margin: 0 auto !important;

    position: relative !important;

    overflow: hidden !important;

    border-radius: 28px !important;

    box-shadow:
        0 25px 80px rgba(0,0,0,0.22),
        0 10px 35px rgba(0,0,0,0.12) !important;
}

.hero-bg-video {
    width: 100% !important;

    height: 100% !important;

    display: block !important;

    object-fit: cover !important;

    transition: opacity 0.25s ease !important;
}

.hero-bg-video.is-switching {
    opacity: 0.18;
}


/* =========================================================
   SIDE PANELS
========================================================= */

.hero-panel {
    height: clamp(400px, 33vw, 540px) !important;

    display: flex;
    flex-direction: column;

    padding: 18px 14px;

    border-radius: 26px;

    border: 1px solid rgba(255,255,255,0.16);

    overflow: hidden !important;

    backdrop-filter: blur(14px);

    box-shadow:
        0 16px 45px rgba(0,0,0,0.16),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-panel-left {
    background:
        linear-gradient(
            180deg,
            rgba(7, 54, 26, 0.92),
            rgba(5, 32, 18, 0.88)
        );
}

.hero-panel-right {
    background:
        linear-gradient(
            180deg,
            rgba(9, 72, 42, 0.92),
            rgba(5, 40, 24, 0.88)
        );
}


/* =========================================================
   PANEL HEADER
========================================================= */

.hero-panel-heading {
    flex: 0 0 auto;

    margin-bottom: 12px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(255,255,255,0.10);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: rgba(255,255,255,0.82);
}


/* =========================================================
   SCROLLABLE PANEL CONTENT
========================================================= */

.hero-panel-scroll {
    flex: 1 1 auto;

    overflow-y: auto;

    padding-right: 4px;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(140,255,140,0.35)
        transparent;
}

.hero-panel-scroll::-webkit-scrollbar {
    width: 6px;
}

.hero-panel-scroll::-webkit-scrollbar-thumb {
    background: rgba(140,255,140,0.35);
    border-radius: 999px;
}


/* =========================================================
   TOPIC ITEMS
========================================================= */

.hero-panel-topic {
    width: 100%;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 12px;

    padding: 14px 13px;

    border-radius: 18px;

    border: 1px solid rgba(180,255,180,0.10);

    background: rgba(255,255,255,0.06);

    color: #ffffff;

    text-align: left;

    cursor: pointer;

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.hero-panel-topic:hover,
.hero-panel-topic.is-active {
    transform: translateY(-2px);

    background: rgba(120,255,120,0.12);

    border-color: rgba(140,255,140,0.38);

    box-shadow:
        0 10px 24px rgba(0,0,0,0.18),
        0 0 18px rgba(80,255,120,0.14);
}

.hero-panel-topic i {
    width: 18px;

    margin-top: 3px;

    font-size: 17px;

    color: rgba(180,255,180,0.92);
}

.hero-panel-topic strong {
    display: block;

    font-size: 15px;

    font-weight: 900;

    line-height: 1.18;
}

.hero-panel-topic small {
    display: block;

    margin-top: 5px;

    font-size: 12px;

    line-height: 1.42;

    color: rgba(255,255,255,0.82);
}


/* =========================================================
   OVERLAY
========================================================= */

.hero-panel-overlay {
    position: absolute;

    inset: 0;

    z-index: 35;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 44px;

    pointer-events: none;
}

.hero-panel-overlay.is-active {
    display: flex;
}

.hero-panel-overlay-inner {
    max-width: 760px;

    padding: 34px 38px;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,0.16);

    background:
        linear-gradient(
            180deg,
            rgba(16, 90, 42, 0.56),
            rgba(6, 42, 22, 0.52)
        );

    backdrop-filter: blur(10px);

    text-align: center;

    color: #ffffff;

    box-shadow:
        0 22px 60px rgba(0,0,0,0.30);
}

.hero-panel-overlay h1 {
    margin: 0 0 14px;

    font-size: clamp(34px, 4.8vw, 68px);

    line-height: 1.02;

    font-weight: 950;

    text-shadow:
        0 4px 22px rgba(0,0,0,0.35);
}

.hero-panel-overlay p {
    margin: 0;

    font-size: clamp(15px, 1.35vw, 22px);

    line-height: 1.6;

    color: rgba(255,255,255,0.92);
}


/* =========================================================
   CTA BUTTON
========================================================= */

.hero-panel-cta {
    margin-top: 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 26px;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            #8df15e,
            #5dbf31
        );

    color: #ffffff !important;

    font-size: 15px;

    font-weight: 900;

    text-decoration: none;

    box-shadow:
        0 10px 24px rgba(80,200,80,0.28);

    pointer-events: auto;
}


/* =========================================================
   DYNAMIC TEXTS
========================================================= */

.hero-dynamic-text-layer.is-hidden {
    display: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .hero-layout-panels {
        grid-template-columns: 1fr !important;
    }

    .hero-panel {
        height: auto !important;

        max-height: 320px !important;
    }

    .hero-box {
        height: auto !important;

        aspect-ratio: 16 / 9;
    }
}
/* =========================================================
   HERO PANEL AUTO SHIFT
========================================================= */

.hero-panel-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden !important;
    position: relative;
}

.hero-panel-shift {
    will-change: transform;
}

.hero-panel-topic {
    flex: 0 0 auto;
}

.hero-panel-topic small {
    display: none !important;
}
/* =========================================================
   HERO PANEL TITLE-ONLY + HOVER SHIFT
========================================================= */

.hero-panel-topic small {
    display: none !important;
}

.hero-panel-topic {
    min-height: 48px !important;
    align-items: center !important;
}

.hero-panel-shift {
    transition: transform 0.12s linear;
}

