:root {
    --color-1: #8CC402;
    --color-2: #00A559;
    --color-3: #3DD1D1;
    --color-4: #0084CE;
    --color-5: #5E42C6;
    --color-6: #A5357F;
    --color-7: #DD4F70;
    --color-8: #EDAF07;
    --text-gold: #EDAF07;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url('../images/video-illunos.gif') no-repeat center center;
    background-size: 115%;
    display: flex;
    flex-direction: column;
}

.navbar-brand {
    margin-left: 40px;
}

.navbar-brand img {
    height: 60px;
    display: block;
}

.menu-wrapper {
    position: relative;
    padding: 1.5px;
    border-radius: 12px;
    overflow: visible;
    z-index: 1;
    display: inline-block;
}

.menu-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* Tebalkan sedikit agar lebih solid */
    border-radius: 12px;
    background: conic-gradient(from var(--border-angle),
            rgba(102, 86, 200, 1),
            rgba(250, 166, 26, 1),
            rgba(102, 86, 200, 1));
    animation: rotateBorder 4s linear infinite;

    /* Perbaikan Masking */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    /* Gunakan destination-out untuk hasil lebih bersih */
    mask-composite: exclude;

    pointer-events: none;
    z-index: 10;
}

.menu-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.menu-inner::before {
    top: 0;
}

.menu-inner::after {
    bottom: 0;
}

@keyframes flowLinear {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes backgroundFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* Vertical Separator */
.nav-item:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0;
    display: inline-block;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.05rem;
    padding: 0 28px !important;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* 1. Memberikan perspektif 3D pada kontainer utama */
    perspective: 1000px;
    /* Pastikan overflow terlihat agar kubus bisa menonjol keluar */
    overflow: visible !important;
}

.nav-link span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Penting agar elemen anak (::before) tetap dalam ruang 3D */
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link span::before {
    content: attr(data-text);
    position: absolute;
    /* Posisikan tepat di atas teks asli */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Putar 180 derajat ke belakang secara default */
    transform: rotateX(-180deg);
    /* Sembunyikan muka belakang saat tidak menghadap user */
    backface-visibility: hidden;

    color: #FAA61A !important;
    font-weight: 700;
    white-space: nowrap;
}

.nav-link span {
    backface-visibility: hidden;
}

/* Efek Hover: Putar 180 derajat */
.nav-link:hover span {
    transform: rotateX(180deg);
}

.nav-link:hover {
    background: transparent;
}

.nav-link.active {
    color: #FAA61A !important;
    font-weight: 700;
    background: radial-gradient(circle, rgba(250, 166, 26, 0.15) 0%, transparent 100%);
    border-radius: 8px;
}

.action-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
}

.action-icon i {
    font-size: 1.35rem;
    line-height: 1;
}

.action-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.header-actions {
    margin-right: 40px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding-bottom: 80px; */
}

.hero-title-top {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2.2rem, 9vw, 4.5rem);
    margin-bottom: 0.2rem;
    display: inline-block;
    letter-spacing: -0.02em;
    color: var(--text-gold);
}

.hero-title-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 9vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}

.hero-desc {
    max-width: 1350px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: clamp(1.1rem, 4vw, 1.95rem);
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
    padding: 0 20px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .navbar-brand img {
        height: 50px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 10px 15px !important;
    }

    .hero-title-top {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-title-main {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 30px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        width: 100%;
        gap: 15px;
        text-align: left;
        padding: 10px 0;
    }

    .nav-item {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-item:not(:last-child)::after {
        display: none;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0 !important;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link.active {
        background: transparent;
        color: #FAA61A !important;
        font-weight: 700;
    }

    .menu-wrapper {
        padding: 0;
        width: 100%;
        border-radius: 0;
        background: none;
    }

    .menu-wrapper::before {
        display: none;
    }

    .menu-inner {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        width: 100%;
        display: block;
        border-radius: 0;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Mobile Mega Menu */
    .mega-menu-wrapper {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
        padding: 15px;
        margin-top: 10px;
        display: none;
        /* Hidden by default, toggled via JS */
    }

    .nav-item.show-mega .mega-menu-wrapper {
        display: block;
    }

    .mega-menu-header {
        margin-bottom: 1rem;
    }

    .mega-menu-title {
        color: #fff;
        font-size: 1.1rem;
    }

    .mega-menu-subtitle {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .mega-menu-content {
        flex-direction: column;
        gap: 1rem;
    }

    .mega-menu-list {
        width: 100%;
    }

    .mega-menu-item {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mega-menu-item:hover,
    .mega-menu-item.active {
        color: #FAA61A;
    }

    .mega-menu-preview {
        display: none;
    }

    /* Hide preview image on mobile */
}

@media (max-width: 767.98px) {

    .hero-title-top,
    .hero-title-main {
        font-size: 2.2rem;
    }

    .btn-custom-outline,
    .btn-custom-primary {
        min-width: 100%;
        width: 100%;
        font-size: 1.1rem;
        height: 55px;
    }

    .header-actions {
        display: none !important;
    }
}

.products-section {
    padding: 80px 0;
    background-color: #ffffff;
    background-image: radial-gradient(#e5e5f7 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    position: relative;
    color: #333;
}

.section-title-top {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    color: #2D2D2D;
    margin-bottom: 5px;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-title-gradient {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2rem, 8vw, 3.2rem);
    /* color: #7964ca; */
    background: linear-gradient(to right, #8272C2 25%, #A28DC3 50%, #CD976E 75%, #FAA61A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.title-underline {
    width: clamp(200px, 60%, 580px);
    height: 8px;
    background: linear-gradient(to right, #FFCF80 0%, #B47100 100%);
    margin: 0 auto 30px;
    border-radius: 120px;
}

.product-slider-wrapper {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.product-slider-container {
    display: flex;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
    padding: 0 50px;
}

.product-card {
    width: 950px;
    height: 480px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: all 0.6s ease;
    opacity: 1;
    transform: scale(0.85);
    flex-shrink: 0;
    box-shadow: none;
}

.product-card.active:hover {
    transform: scale(1) translateY(-12px);
    filter: drop-shadow(0 45px 70px rgba(0, 0, 0, 0.18));
}

.product-card.active {
    transform: scale(1) translateY(-8px);
    position: relative;
    padding: 3px;
    border: none;
    z-index: 2;
    background: #eeeeeeff;
    background-clip: padding-box;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from var(--border-angle),
            rgba(102, 86, 200, 1),
            rgba(250, 166, 26, 1),
            rgba(102, 86, 200, 1));
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
    border-radius: 12px;
}

.product-card.active::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 5%;
    width: 90%;
    height: 30px;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.08) 40%,
            rgba(0, 0, 0, 0.03) 70%,
            transparent 100%);
    filter: blur(6px);
    z-index: -2;
}

.product-card.active .card-content-wrap,
.product-card.active .card-image-wrap {
    background: #eeeeeeff;
    position: relative;
    z-index: 2;
}

.product-card.active .card-content-wrap {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.product-card.active .card-image-wrap {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.card-content-wrap {
    flex: 1.5;
    padding: 60px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-num-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.product-num {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: rgba(48, 35, 123, 0.4);
    line-height: 1;
}

.num-bar {
    width: 100px;
    height: 8px;
    background: #F6921E;
}

.product-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.product-title span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    margin-right: 5px;
}

.product-description {
    font-family: 'Manrope', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.section-desc {
    font-family: 'Manrope', sans-serif;
    color: #666;
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 0.5rem;
    font-weight: 500;
}

.btn-view-details {
    background: linear-gradient(90deg, rgba(102, 86, 200, 1) 0%, rgba(250, 166, 26, 1) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 35px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    font-family: 'Manrope', sans-serif;
}

.btn-view-details:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 15px 35px rgba(237, 175, 7, 0.45); */
    color: #fff;
    filter: brightness(1.05);
}

.btn-letstalk:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 20px 40px rgba(250, 166, 26, 0.4); */
    color: #fff;
    filter: brightness(1.1);
}

/* Footer Section */
.footerend-section {
    background-color: #fff;
    padding: 30px 0 30px;
    font-family: 'Manrope', sans-serif;
    color: #333;
    border-top: 1px solid #eee;
}

.footer-logo {
    width: 150px;
    margin-bottom: 25px;
}

.footer-headline {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.footer-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}

.footer-links-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #6656C8;
    /* Brand Purple */
}

.footer-bottom-bar {
    margin: 25px 0;
    /* Centered with top margin */
    width: 96%;
    /* Shorten the line slightly */
    padding-top: 20px;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, #6656C8, #FAA61A) 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #6656C8;
}

/* Hero Animations */
@keyframes pureFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Base Scroll Trigger Style - SAFE REVEAL (Visible by default) */
.scroll-trigger {
    opacity: 1;
    visibility: visible;
    will-change: transform, opacity;
}

.scroll-trigger.revealed {
    opacity: 1 !important;
    visibility: visible !important;
}

.reveal-on-scroll {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Typewriter Animation Keyframes */
/* Typewriter Animation Keyframes - Reveals from Left to Right */
@keyframes typing {
    from {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes cardArrange {
    0% {
        opacity: 0;
        transform: translateY(100px) rotate(10deg) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0) scale(1);
    }
}

@keyframes fadeReveal {
    from {
        opacity: 0;
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

    to {
        opacity: 1;
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@-webkit-keyframes typing {
    from {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
    /* Helper to hide before animation starts */
}

.animate-slide-right {
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
}

.animate-pure-fade {
    opacity: 0;
    animation: pure-fade 1.2s ease forwards;
}

.typewriter-container {
    display: flex;
    /* Pastikan dimulai dari kiri */
    justify-content: center;
    /* Hapus width: 100% agar container mengikuti lebar teks */
    width: 100%;
    overflow: visible;
}

.animate-typewriting {
    display: inline-block;
    overflow: visible;
    white-space: nowrap;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    vertical-align: bottom;
}

.hero-buttons-container {
    opacity: 0;
}

body.is-loaded .line-1 {
    animation: typing 0.8s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
    animation-delay: 0.1s;
    background: linear-gradient(180deg, #FFCF80 0%, #B47100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

body.is-loaded .line-1-animate {
    animation: typing 0.8s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
    animation-delay: 0.2s;
}

body.is-loaded .line-2 {
    animation: typing 1s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
    animation-delay: 1s;
}

body.is-loaded .line-3 {
    animation: typing 1.2s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
    animation-delay: 2.1s;
}

body.is-loaded .line-4 {
    animation: typing 1.2s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
    animation-delay: 3.4s;
}

body.is-loaded .line-5 {
    animation: typing 1.2s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
    animation-delay: 4.7s;
}

body.is-loaded .line-6 {
    animation: typing 1.2s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
    animation-delay: 6s;
}

.profe-desc-un,
.profe-desc-badge,
.profe-desc {
    opacity: 0;
}

body.is-loaded .hero-buttons-container {
    opacity: 0;
    animation: pureFade 1.2s ease forwards;
    animation-delay: 6s;
}

/* body.is-loaded .profe-desc-un {
    animation: pureFade 1.2s ease forwards;
    animation-delay: 4s;
}

body.is-loaded .profe-desc {
    animation: pureFade 1.2s ease forwards;
    animation-delay: 5s;
}

body.is-loaded .profe-desc-badge {
    animation: pureFade 1.2s ease forwards;
    animation-delay: 6s;
} */

/* Adjust for mobile to prevent overflow */
@media (max-width: 768px) {
    .animate-typewriting {
        white-space: normal;
        width: 100% !important;
        border-right: none;
        opacity: 0;
        /* Let JS or animation handle it */
    }

    .line-1,
    .line-2,
    .line-3,
    .line-4,
    .line-5,
    .line-6 {
        animation-delay: 0.2s !important;
    }
}


.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-1100 {
    animation-delay: 11.5s;
}

/* Mega Menu Styles */
.nav-item {
    position: relative;
}

.nav-item:hover .nav-link {
    color: #FAA61A !important;
}

.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;

    /* KONFIGURASI GRADASI: LINGKARAN BERSARANG (NESTED GLOW) */
    background:
        /* 1. Lingkaran Cahaya Ungu (Kecil & Intens) */
        radial-gradient(circle 150px at 22% 62%, rgba(200, 193, 247, 1) 0%, transparent 100%),
        /* 2. Lingkaran Cahaya Oranye (Besar & Halus) */
        radial-gradient(circle 280px at 18% 55%, rgba(250, 166, 26, 0.25) 0%, transparent 100%),
        /* 3. Background Putih Solid */
        linear-gradient(#ffffff, #ffffff) padding-box,
        /* 4. Border Gradient */
        linear-gradient(135deg, rgba(102, 86, 200, 1), rgba(250, 166, 26, 1)) border-box;

    border: 2px solid transparent;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    background-clip: padding-box, padding-box, padding-box, border-box;
}

.nav-item:hover .mega-menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.mega-menu-header {
    margin-bottom: 1.5rem;
}

.mega-menu-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-family: 'Manrope', sans-serif;
}

.mega-menu-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.mega-menu-content {
    display: flex;
    font-family: 'Manrope', sans-serif;
    gap: 2rem;
}

.mega-menu-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #999;
    font-size: 1rem;
}

.mega-menu-item .menu-num {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    width: 24px;
    font-size: 20px;
}

.mega-menu-item .menu-text {
    font-weight: 300;
    transition: all 0.2s ease;
    font-size: 20px;
}

.mega-menu-item:hover,
.mega-menu-item.active {
    color: #1a1a1a;
}

.mega-menu-item:hover .menu-text,
.mega-menu-item.active .menu-text {
    font-weight: 600;
    transform: translateX(5px);
}

.mega-menu-preview {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 320px;
}

.mega-menu-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.card-image-wrap {
    flex: 1.3;
    background: #FFFFFF;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #30237B;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, rgba(102, 86, 200, 1) 0%, rgba(250, 166, 26, 1) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-arrow:hover {
    transform: scale(1.1);
    /* box-shadow: 0 8px 25px rgba(102, 86, 200, 0.2); */
    filter: brightness(1.02);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 30px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .menu-wrapper {
        padding: 0;
        width: 100%;
        border-radius: 0;
    }

    .menu-inner {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        width: 100%;
        border-radius: 0;
    }

    .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0 28px !important;
        border-radius: 12px;
    }

    .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        color: #fff !important;
    }

    .navbar-brand img {
        height: 60px;
    }

    .header-actions {
        margin-right: 20px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .products-section {
        padding: 60px 0;
    }

    .product-card {
        flex-direction: column;
        width: 92vw;
        height: auto;
        min-height: auto;
    }

    .product-card.active .card-content-wrap,
    .product-card.active .card-image-wrap {
        border-radius: 0;
    }

    .card-content-wrap {
        padding: 40px 30px;
        flex: none;
    }

    .card-image-wrap {
        height: 300px;
        flex: none;
        order: -1;
    }

    .product-num {
        font-size: 2.5rem;
    }

    .num-bar {
        width: 60px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .slider-nav {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding-top: 20px;
    }

    .hero-title-main {
        margin-bottom: 1.5rem;
    }

    .hero-desc {
        padding: 0 15px;
        margin-bottom: 2.5rem;
    }

    .d-flex.flex-wrap.justify-content-center.gap-4 {
        flex-direction: column;
        padding: 0 20px;
    }

    .btn-custom-outline,
    .btn-custom-primary {
        width: 100%;
        font-size: 1.1rem;
    }

    .card-content-wrap {
        padding: 30px 20px;
    }

    .card-image-wrap {
        height: 220px;
    }
}

.btn-custom-outline,
.btn-custom-primary {
    min-width: 280px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Manrope', sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.btn-custom-outline {
    background: linear-gradient(#2d2d2d, #2d2d2d) padding-box,
        linear-gradient(90deg, rgba(102, 86, 200, 1) 0%, rgba(250, 166, 26, 1) 100%) border-box;
    border: 2px solid transparent;
    color: #ffffff !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-custom-outline span {
    color: #ffffff;
    display: inline-block;
}

.btn-custom-outline:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 18px 45px rgba(237, 175, 7, 0.55); */
}

.btn-custom-primary {
    background: linear-gradient(90deg, rgba(102, 86, 200, 1) 0%, rgba(250, 166, 26, 1) 100%);
    border: 2px solid rgba(250, 166, 26, 1);
    background-clip: padding-box;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-custom-primary:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(250, 166, 26, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.chat-container {
    position: fixed;
    bottom: 80px;
    right: 50px;
    z-index: 9999;
}

.chat-bubble {
    background: #F6921E;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(255, 236, 185, 0.6),
        0 0 70px rgba(255, 236, 185, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

.chat-popover {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 320px;
    background: #ffffff;
    padding: 24px 40px 24px 24px;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.chat-container:hover .chat-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-popover-text {
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
}

.chat-popover-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.chat-popover-close:hover {
    color: #333;
}

/* Speech Bubble Tail */
.chat-popover::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
}

@media (max-width: 1200px) {
    .navbar-brand {
        margin-left: 0;
    }
}

.solutions-scrolly-container {
    height: 350vh;
    /* Balanced space for 10 cards */
    position: relative;
}

.solutions-section {
    padding: 0;
    background: #0a0a0a;
    background-image: url("../images/solution-bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    z-index: 20;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
    /* Softened from 150px 0.8 */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Lightened */
    z-index: 1;
    transition: background 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dynamic-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.dynamic-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), clip-path 2s cubic-bezier(0.16, 1, 0.3, 1);
    clip-path: circle(0% at 50% 50%);
}

.dynamic-bg-layer.active {
    opacity: 1;
    z-index: 1;
    clip-path: circle(120% at 50% 50%);
}

.dynamic-bg-layer.previous {
    opacity: 0;
    z-index: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
    /* Deep shadows for clarity */
    display: flex;
    flex-direction: column;
    z-index: 10;
    position: relative;
}

.top-right-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at top right, rgba(255, 236, 154, 0.55) 0%, transparent 75%);
    pointer-events: none;
    z-index: 5;
}

.solutions-title .line {
    display: inline-block;
    white-space: nowrap;
    vertical-align: bottom;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.solutions-title .line.reveal-left.revealed,
.solutions-title .line.reveal-right.revealed {
    transform: translateX(0) !important;
    animation: typing 1s steps(30, end) forwards;
    opacity: 1;
}

.solutions-title span.highlight {
    color: #F6921E;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.reveal-left {
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
    transform: translateX(100px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.text-playfair-gold {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    background: linear-gradient(90deg, #f1c57a 0%, #c08000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.font-playfair {
    font-family: 'Playfair Display', serif !important;
    /* font-style: italic !important; */
}

@keyframes typing {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 1;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.reveal-left.revealed,
.reveal-right.revealed {
    transform: translateX(0);
    opacity: 1;
}

.premium-scrolly-wrapper {
    height: 250vh;
    position: relative;
}

.premium-section {
    padding: 0;
    background-color: #ffffff;
    background-image: radial-gradient(#e5e5f7 1.2px, transparent 1.2px);
    background-size: 30px 30px;
    color: #333;
    overflow: hidden;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 25;
}

.premium-section .container {
    max-width: 1600px;
}

.premium-tag {
    background: linear-gradient(90deg, #f1c57a 0%, #c08000 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 70px;
}

.premium-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    color: #2D2D2D;
    margin-bottom: 10px;
    max-width: 400px;
}

.premium-title .gradient-text {
    background: linear-gradient(90deg, rgba(83, 63, 204, 1) 0%, rgba(142, 131, 184, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
    font-family: 'Playfair Display', serif;
}

.premium-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555;
    max-width: 470px;
    margin-bottom: 40px;
}

/* Stepper Styles */
.stepper-list {
    position: relative;
    padding-left: 30px;
    list-style: none;
}

.stepper-walking-bar {
    position: absolute;
    left: -0.75px;
    top: 0;
    width: 3px;
    background: #F6921E;
    z-index: 2;
    height: 0;
    transition: height 0.1s linear;
}

.stepper-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: #e0e0e0;
}

.stepper-item {
    position: relative;
    padding-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stepper-item:last-child {
    padding-bottom: 0;
}

.stepper-item::before {
    content: '';
    position: absolute;
    left: -30.75px;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(246, 146, 30, 0);
}

/* Removed .stepper-item.active::before background since we use walking bar */

.step-num {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ccc;
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stepper-item.active .step-num {
    color: #F6921E;
}

.step-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #888;
    transition: all 0.3s ease;
}

.stepper-item.active .step-label {
    color: #2D2D2D;
}

/* Right Column Styles */
.advantage-card {
    position: relative;
    padding-top: 40px;
}

.large-bg-num {
    position: absolute;
    top: -30px;
    /* left: -50px; */
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 16rem;
    color: rgba(246, 146, 30, 0.05);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.phase-tag {
    border: 1px solid #c5b6ff;
    background: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.phase-tag span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, #5E42C6 0%, #F6921E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantage-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #2D2D2D;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.advantage-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.advantage-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    height: 450px;
}

.advantage-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-visual {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #f1c57a 0%, #c08000 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 12px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-bottom: 2rem;
    position: relative;
    z-index: 15;
    text-transform: uppercase;
}

.badge-visual.reveal-left.revealed,
.badge-visual.reveal-right.revealed {
    transform: translateX(0) !important;
    animation: pureFade 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 1;
}

.badge-visual i {
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.badge-visual span {
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.06em;
    font-family: 'Manrope', sans-serif;
}

.solutions-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    z-index: 10;
    position: relative;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.solutions-subtitle.reveal-left.revealed,
.solutions-subtitle.reveal-right.revealed {
    transform: translateX(0) !important;
    animation: pureFade 3.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 1;
}

.stack-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Tighter gap for "neat" stacking */
    perspective: 1500px;
    padding: 20px;
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(80%);
    /* Closer starting position for instant response */
    max-width: 580px;
    /* Consistent width */
    margin-left: auto;
    /* Align to right column naturally */
}

.stack-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    /* More breathable padding */
    display: flex;
    flex-direction: column;
    /* Portfolio vertical layout */
    align-items: flex-start;
    /* Left aligned like screenshot */
    gap: 0;
    /* Managed by margins below */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.1, 0.9, 0.2, 1);
    pointer-events: none;
}

.stack-card:last-child {
    margin-top: 20px;
}

.stack-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.stack-card:not(.revealed) {
    filter: blur(5px);
}

.stack-card h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
    /* Bold and prominent like screenshot */
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.02em;
}

.stack-card p {
    color: #444444;
    /* Clean gray readable text */
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
}

.stack-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.stack-card:not(.revealed) {
    filter: blur(5px);
}

/* Revealed state for unified entrance */
.stack-container.revealed .stack-card {
    opacity: 1;
    transform: translateY(0);
}

.stack-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 991.98px) {

    .solutions-scrolly-container,
    .premium-scrolly-wrapper {
        height: auto !important;
    }

    .solutions-section,
    .premium-section {
        position: relative !important;
        height: auto !important;
        top: auto !important;
        padding: 60px 0 !important;
    }

    .stack-container {
        transform: none !important;
        height: auto !important;
        margin-left: 0;
        max-width: 100%;
        padding: 0;
    }

    .stack-card {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        margin-bottom: 20px;
        top: auto !important;
        filter: none !important;
    }

    .solutions-title {
        font-size: 2.5rem;
    }

    .solutions-subtitle {
        font-size: 1.1rem;
    }
}

/* Staggered delays removed for unified togetherness */

.card-icon-wrapper {
    width: 68px;
    /* Slightly larger like screenshot */
    height: 68px;
    background: linear-gradient(135deg, #ffca81 0%, #f6921e 100%);
    /* Lush warm gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 32px;
    color: #fff;
    margin-bottom: 24px;
    /* Space above title */
    box-shadow: 0 12px 24px rgba(246, 146, 30, 0.25);
}

.feature-content h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #1a1a1a;
    /* Darker heading */
    margin-bottom: 8px;
}

.feature-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    /* Darker text */
    margin-bottom: 0;
    line-height: 1.6;
}

/* Removed ::after sticky overlay */

@media (max-width: 992px) {
    .solutions-section {
        padding: 80px 0;
        text-align: center;
    }

    .solutions-section .text-start {
        text-align: center !important;
    }

    .background-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .stack-card {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.impact-section {
    padding: 200px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100px, transparent 350px), radial-gradient(circle at center, rgba(255, 209, 83, 0.3) 0%, transparent 55%), #ffffff;
    position: relative;
    z-index: 5;
    color: #333;
    overflow: hidden;
    margin-top: -120px;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d1d1d1 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.impact-badge {
    background: linear-gradient(90deg, #f1c57a 0%, #c08000 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
}

.impact-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #2D2D2D;
    position: relative;
    z-index: 1;
}

.impact-title span {
    /* color: #5E42C6; */
    background: linear-gradient(90deg, #533FCC 0%, #8E83B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.impact-title-underline {
    width: 400px;
    height: 6px;
    background: linear-gradient(90deg, #FFCF80 0%, #B47100 100%);
    margin-bottom: 40px;
    position: relative;
    border-radius: 20px;
    z-index: 1;
}

.impact-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.40rem;
    color: #444;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 25px;
    position: relative;
    z-index: 2;
}

.impact-section .container {
    position: relative;
    z-index: 2;
}

.stat-card {
    position: relative;
    overflow: hidden;
    background: rgba(225, 225, 225, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:nth-child(1),
.stat-card:nth-child(2) {
    align-self: end;
    margin-top: 0;
    margin-bottom: 0;
}

.stat-card:nth-child(3),
.stat-card:nth-child(4) {
    align-self: start;
    margin-top: 0;
    margin-bottom: 0;
}

.stat-card:nth-child(1),
.stat-card:nth-child(3) {
    min-height: 280px;
}

.stat-card:nth-child(2),
.stat-card:nth-child(4) {
    min-height: 380px;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: conic-gradient(from var(--border-angle),
            rgba(102, 86, 200, 1),
            rgba(250, 166, 26, 1),
            rgba(102, 86, 200, 1));
    animation: rotateBorder 4s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes rotateBorder {
    to {
        --border-angle: 360deg;
    }
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.45), transparent 65%);
    opacity: 0.5;
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.stat-card:hover::before {
    filter: brightness(1.2);
}

.stat-card.card-gradient-border {
    border: none;
}

.stat-card.card-gradient-border::before {
    background: conic-gradient(from var(--border-angle),
            rgba(102, 86, 200, 1),
            rgba(250, 166, 26, 1),
            rgba(102, 86, 200, 1));
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 3.3rem;
    color: #30237B;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #F6921E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.stat-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

.stats-section {
    padding: 80px 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    background-color: #f3f3f3;
}

@media (max-width: 992px) {
    .impact-section {
        padding: 60px 0;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .impact-title {
        font-size: 3.2rem;
    }

    .impact-desc {
        max-width: 100%;
    }

    .impact-title-underline {
        width: 120px;
    }
}

.trust-header {
    text-align: center;
}

.trust-header h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #666;
    letter-spacing: 0.1em;
}

.trust-section {
    padding: 0 0 20px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 10;
    background-color: #fff;
    margin-top: -80px;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#d1d1d1 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;

}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    padding: 0;
    min-width: max-content;
    position: relative;
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-card:hover {
    transform: translateY(-8px);
}

.logo-box,
.content-box {
    background: #fff;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-card:hover .logo-box,
.trust-card:hover .content-box {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    filter: brightness(1.02);
}

.logo-box::before,
.content-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 86, 200, 1), rgba(250, 166, 26, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.logo-box {
    width: 120px;
    height: 120px;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.logo-box img,
.logo-box svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content-box {
    height: 120px;
    padding: 0;
    min-width: 320px;
    display: flex;
    justify-content: space-between;
}

.trust-info {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.trust-info h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 6px;
}

.trust-info p {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 140px;
}

.trust-headshot {
    width: 120px;
    height: 120px;
    position: relative;
    flex-shrink: 0;
}

.trust-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.headshot-badge {
    position: absolute;
    left: -35px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 10px;
    z-index: 5;
}

.headshot-badge img,
.headshot-badge svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.choice-section .container {
    max-width: 1600px;
}

.choice-section {
    padding: 50px 0;
    background-color: #fdfdfd;
    background-image: radial-gradient(#e0e0e0 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    position: relative;
    z-index: 300;
    overflow: hidden;
}

.choice-main-card {
    max-width: 1800px;
    margin: 0 auto;
    background: #1e1b15;
    border-radius: 30px;
    padding: 80px 50px;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Moving Glows Inside Card - Maximum Visibility */
.choice-side-glow {
    position: absolute;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.glow-left {
    background: radial-gradient(circle, rgba(255, 203, 61, 0.95) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation: moveGlowInside1 10s ease-in-out infinite alternate;
}

.glow-right {
    background: radial-gradient(circle, rgba(255, 203, 61, 0.85) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: moveGlowInside2 15s ease-in-out infinite alternate;
}

@keyframes moveGlowInside1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(400px, 200px) scale(1.2);
    }

    100% {
        transform: translate(200px, 500px) scale(0.9);
    }
}

@keyframes moveGlowInside2 {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    50% {
        transform: translate(-500px, -250px) scale(0.8);
    }

    100% {
        transform: translate(-250px, -600px) scale(1.3);
    }
}

.choice-glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 80px;
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.choice-header {
    text-align: center;
    margin-bottom: 50px;
}

.choice-header h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
}

.choice-header-underline {
    width: 650px;
    height: 8px;
    background: #FAA61A;
    margin: 0 auto;
}

.choice-list {
    margin-top: 20px;
}

.choice-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.choice-item:last-child {
    border-bottom: none;
}

.choice-index {
    width: 60px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    flex-shrink: 0;
}

.choice-content {
    flex-grow: 1;
}

.choice-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.choice-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

.choice-icon {
    flex-shrink: 0;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.choice-dot-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.choice-dot {
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
}

.choice-dot:first-child {
    background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .choice-main-card {
        margin: 0 15px;
        padding: 60px 20px;
    }

    .choice-glass-card {
        padding: 40px 30px;
    }

    .choice-header h2 {
        font-size: 2.5rem;
    }

    .choice-header-underline {
        width: 200px;
    }

    .choice-content h3 {
        font-size: 1.8rem;
    }

    .choice-content p {
        font-size: 1.1rem;
    }
}

/* Display Use Section */
.displayuse-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    background-image: radial-gradient(#e5e5f7 1.2px, transparent 1.2px);
    background-size: 30px 30px;
    position: relative;
}

.displayuse-section .container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 15px;
}

.displayuse-header {
    text-align: right;
    margin-bottom: 60px;
    max-width: 1300px;
    margin-left: auto;
}

.displayuse-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.displayuse-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #FFCF80 0%, #B47100 100%);
    border-radius: 10px;
}

.displayuse-title span.purple-highlight {
    color: #6A55CA;
    font-family: 'Playfair Display', serif;
}

.displayuse-subtitle {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    max-width: 1300px;
    margin-left: auto;
    font-weight: 400;
}

.displayuse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 991.98px) {
    .displayuse-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .displayuse-title {
        font-size: 2.5rem;
    }

    .displayuse-subtitle {
        font-size: 1.1rem;
    }
}

/* Slide Card Base */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 350px;
    cursor: pointer;
    overflow: hidden;
    /* Hide sliding overlay */
    border-radius: 8px;
    position: relative;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

/* Front Side: Image */
.flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Back Side: Slide-up Content */
.flip-card-back {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 35, 123, 0.95) 0%, rgba(124, 109, 212, 0.95) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
    text-align: left;
    border-radius: 8px;
    transform: translateY(100%);
    /* Start hidden below */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

.flip-card:hover .flip-card-back {
    transform: translateY(0);
    /* Slide up on hover */
}

.flip-card-back h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    color: white;
    line-height: 1.2;
}

.flip-card-back p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 992px) {
    .displayuse-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .displayuse-title {
        font-size: 2.8rem;
    }

    .displayuse-header {
        text-align: center;
        margin-right: auto;
    }

    .displayuse-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .displayuse-grid {
        grid-template-columns: 1fr;
    }

    .flip-card {
        height: 300px;
    }

    .displayuse-title {
        font-size: 2.2rem;
    }
}

/* Trusted Clients Section */
.trustclient-section {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: radial-gradient(#E5E7EB 1.2px, transparent 1.2px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Avatar Cluster Styles */
.trust-avatar-cluster {
    position: relative;
    height: 600px;
    width: 100%;
    margin-left: -100px;
}

.trust-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-bg-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    filter: blur(20px);
}

.testimonial-trigger {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-trigger.active {
    transform: scale(1.1);
    filter: grayscale(0) !important;
    opacity: 1 !important;
    z-index: 20 !important;
}

.main-avatar-wrapper {
    position: absolute;
    left: 54%;
    /* Re-centered horizontally - Adjusted slightly right from 50% */
    top: 72%;
    /* Moved down to align with bottom-most avatars */
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-info-cluster {
    position: absolute;
    top: 240px;
    /* Positioned below 220px image */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 400px;
    /* Wider for full name length */
}

/* Prevent the container from showing a shadow or scaling the whole block */
.main-avatar-wrapper.testimonial-trigger:hover,
.main-avatar-wrapper.testimonial-trigger.active {
    transform: translate(-40%, -60%) !important;
    box-shadow: none !important;
}

.main-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: none;
    /* No shadow as requested */
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-avatar-glow {
    position: absolute;
    left: 50%;
    top: calc(50% - 25px);
    /* Offset upwards to center on 260px image, not info cluster */
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 86, 200, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(20px);
}

.brand-logo-badge {
    position: absolute;
    bottom: 0px;
    /* Aligned to bottom of 260px parent */
    right: 0px;
    /* Aligned to right of 260px parent */
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 11;
}

.floating-avatar {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    filter: grayscale(0.1);
    opacity: 0.9;
    z-index: 5;
}

.floating-avatar.testimonial-trigger:hover {
    border: 3px solid transparent;
    background: linear-gradient(135deg, rgba(102, 86, 200, 1), rgba(250, 166, 26, 1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    /* Ensures gradient shows in border area */
    /* Note: For img, background paints behind. Transparent border reveals it. */
}

/* Mathematically Equidistant Symmetrical Orbiting Avatars */
.fa-1 {
    width: 90px;
    height: 90px;
    left: 4%;
    top: 72%;
}

.fa-2 {
    width: 95px;
    height: 95px;
    left: 14%;
    top: 40%;
}

.fa-3 {
    width: 92px;
    height: 92px;
    left: 34%;
    top: 18%;
}

.fa-4 {
    width: 90px;
    height: 90px;
    left: 66%;
    top: 18%;
}

.fa-5 {
    width: 95px;
    height: 95px;
    left: 86%;
    top: 40%;
}

.fa-6 {
    width: 88px;
    height: 88px;
    left: 96%;
    top: 72%;
}

.testimonial-trigger:hover,
.testimonial-trigger.active {
    transform: scale(1.1);
    z-index: 20;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2px !important;
}

/* Scattered Background Avatars */
.fa-bg {
    z-index: 1;
    filter: blur(4px) grayscale(0.6);
    opacity: 0.15;
    pointer-events: none;
    border: none;
    box-shadow: none;
}

.b-1 {
    width: 100px;
    height: 100px;
    left: -5%;
    top: 5%;
}

.b-2 {
    width: 80px;
    height: 80px;
    left: 18%;
    top: 0%;
}

.b-3 {
    width: 120px;
    height: 120px;
    left: 40%;
    top: -10%;
}

.b-4 {
    width: 90px;
    height: 90px;
    right: 15%;
    top: 5%;
}

.b-5 {
    width: 130px;
    height: 130px;
    left: 10%;
    bottom: -5%;
}

.b-6 {
    width: 100px;
    height: 100px;
    left: 45%;
    bottom: 5%;
}

.b-7 {
    width: 110px;
    height: 110px;
    right: 30%;
    bottom: 10%;
}

.b-8 {
    width: 120px;
    height: 120px;
    right: 0%;
    bottom: 0%;
}

.avatar-info-cluster {
    text-align: center;
    width: 100%;
}

.avatar-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: #2D2D2D;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.avatar-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    color: #777;
    font-weight: 500;
}

/* Testimonial Area Styles */
.trust-info-area {
    position: relative;
    z-index: 2;
    margin-right: -50px;
}

.trust-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    background: linear-gradient(90deg, #533FCC 0%, #8E83B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: right;
    letter-spacing: -0.01em;
}

.trust-accent-bar {
    height: 6px;
    background: #F6921E;
    margin-bottom: 40px;
    border-radius: 3px;
    width: 520px;
    margin-left: 20px;
}

.trust-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: right;
    max-width: 500px;
    margin-left: auto;
}

.testimonial-glass-card {
    background: linear-gradient(rgba(240, 240, 240, 0.85), rgba(240, 240, 240, 0.85)) padding-box,
        linear-gradient(135deg, rgba(102, 86, 200, 1) 0%, rgba(250, 166, 26, 1) 100%) border-box;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    max-width: 650px;
    margin-left: auto;
    transition: all 0.5s ease;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-glass-card::before {
    display: none;
}

.quote-icon {
    font-size: 3rem;
    color: #F6921E;
    line-height: 1;
    margin-bottom: 25px;
}

.testimonial-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2D2D2D;
    margin: 0;
}

.author-details span {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 991.98px) {
    .trustclient-section {
        padding: 60px 0;
    }

    .trust-avatar-cluster {
        height: 400px;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .main-avatar-wrapper {
        left: 50%;
        top: 50%;
        width: 180px;
        height: 180px;
    }

    .avatar-info-cluster {
        top: 50%;
        left: 50%;
        transform: translate(-50%, 110px);
    }

    .trust-info-area {
        margin-right: 0;
        text-align: center;
    }

    .trust-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .trust-accent-bar {
        margin: 0 auto 30px;
        width: 100px;
    }

    .trust-desc {
        text-align: center;
        margin: 0 auto 40px;
    }

    .testimonial-glass-card {
        margin: 0 auto;
        padding: 30px;
    }
}

/* Let's Talk Section */
.letstalk-section {
    position: relative;
    padding: 200px 0;
    background-image: url("../images/lets-talk.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.letstalk-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(15, 12, 30, 0.1) 0%, rgba(15, 12, 30, 0.2) 100%);
    z-index: 1;
}

.letstalk-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.letstalk-title-small {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: -0.01em;
}

@media (max-width: 991.98px) {
    .letstalk-section {
        padding: 80px 0;
    }

    .letstalk-title-small,
    .letstalk-title-large {
        font-size: 2.5rem;
    }

    .footerend-section {
        padding: 40px 0;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .copyright {
        order: 2;
    }

    .footer-bottom-links a {
        margin-left: 0;
    }
}

.letstalk-title-large {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.letstalk-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-letstalk {
    background: linear-gradient(90deg, #6656C8 0%, #FAA61A 100%);
    border: 2px solid #FAA61A;
    padding: 15px 40px;
    border-radius: 15px;
    /* Rounded pill shape */
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(237, 175, 7, 0.1);
}

.btn-letstalk:hover {
    transform: translateY(-5px);
    color: #fff;
    filter: brightness(1.1);
}

/* responsive layar */
/* Responsive for 14-inch laptops (992px - 1400px) */
@media (min-width: 992px) and (max-width: 1399.98px) {

    /* General Typography Scaling */
    h1,
    .hero-title-top,
    .hero-title-main {
        font-size: 3rem !important;
    }

    .hero-title-main {
        margin-bottom: 1rem;
    }

    h2,
    .section-title-gradient,
    .choice-header h2,
    .displayuse-title {
        font-size: 2.2rem !important;
    }

    h3,
    .stat-number {
        font-size: 1.8rem !important;
    }

    /* Navbar Adjustments */
    .navbar-brand img {
        height: 50px;
    }

    .nav-link {
        padding: 10px 12px !important;
        font-size: 0.95rem;
    }

    .header-actions {
        margin-right: 10px;
    }

    /* Hero Section */
    .hero-content {
        padding-top: 100px;
    }

    .hero-desc {
        font-size: 1.1rem;
        max-width: 800px;
    }

    /* Stats Grid - Compact Layout */
    .stats-section {
        padding: 50px 0;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {

    .contact-overlap-left,
    .contact-overlap-right {
        margin-left: 0px;
    }
}

/* Target Layar yang LEBIH BESAR dari 14 inci (1600px ke atas) */
@media (min-width: 1600px) {
    .contact-overlap-left {
        margin-left: -120px;
    }

    .contact-overlap-right {
        margin-left: 120px;
    }
}

.stat-card {
    padding: 25px;
    min-height: auto !important;
}

.stat-card:nth-child(odd) {
    min-height: 250px !important;
}

.stat-card:nth-child(even) {
    min-height: 350px !important;
}

.stat-number {
    font-size: 2.5rem;
}

/* Choice Section */
.choice-main-card {
    padding: 40px 30px;
}

.choice-glass-card {
    padding: 30px;
}


/* Solutions Section - Ensure readability */
.solutions-section {
    padding: 60px 0;
}

.solutions-title {
    font-size: 2.5rem;
}

.stack-container {
    max-width: 100%;
    margin-left: 20px;
}

.stack-card {
    padding: 20px;
}

/* Products */
.product-card {
    height: 420px;
}

.card-content-wrap {
    padding: 30px;
}

.product-num {
    font-size: 2.5rem;

}

/* Products Hero Section */
.products-hero-section {
    position: relative;
    min-height: 170vh;
    background-color: #0d0d0d;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 0;
}

.dot-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 1;
}

.glow-side-left,
.glow-side-right {
    position: absolute;
    top: 0;
    width: 20px;
    /* Exact 50px width */
    height: 100%;
    filter: blur(30px);
    /* Adjusted for a bold but smooth look */
    opacity: 1;
    /* Fully opaque core */
    z-index: 2;
    pointer-events: none;
    border-radius: 100px;
    /* 100px Radius */
}

.glow-side-left {
    left: 130px;
    /* Exact 160px distance from left */
    background: linear-gradient(90deg, #FAA61A 0%, #FFE7BE 50%, #FAA61A 100%);
    box-shadow: 0 0 40px rgba(250, 166, 26, 0.6);
}

.glow-side-right {
    right: 130px;
    /* Exact 160px distance from right */
    background: linear-gradient(-90deg, #FAA61A 0%, #FFE7BE 50%, #FAA61A 100%);
    box-shadow: 0 0 40px rgba(250, 166, 26, 0.6);
}

.glow-bottom {
    position: absolute;
    bottom: 330px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, #FAA61A 0%, rgba(250, 166, 26, 0.6) 40%, transparent 100%);
    filter: blur(40px);
    z-index: 2;
    pointer-events: none;
}

.products-hero-content {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    width: 100%;
}

.products-hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, #EDAF07 0%, #A67B05 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* margin-top: 20px; */
}

.products-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 840px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.products-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.products-hero-gallery-viewport {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -80px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    perspective: 2000px;
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.products-hero-gallery-track {
    display: flex;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    width: max-content;
    transform-style: preserve-3d;
    padding: 100px 0;
    /* Padding for spatial peaks */
}

.gallery-card-item {
    position: relative;
    width: 480px;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    flex-shrink: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s linear, box-shadow 0.3s ease;
    backface-visibility: hidden;
    transform-origin: center center;
}

.gallery-card-item:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.gallery-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    .products-hero-gallery {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .gallery-card-item {
        flex: none;
        width: calc((100vw - (4 * 2vw)) / 4.4);
        height: 250px;
    }

    .products-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-custom-outline,
    .btn-custom-primary {
        min-width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 991.98px) {
    .gallery-card-item {
        width: 130px;
        height: 200px;
    }
}

/* Detailed Products Section */
.products-detailed-section {
    background-color: #ffffff;
    background-image: radial-gradient(#e5e5f7 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    padding: 120px 0;
    margin-top: -350px;
    border-radius: 80px 80px 0 0;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.container-detailed {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 40px;
}

.detailed-timeline-container {
    position: relative;
    /* padding: 40px 0; */
    margin-top: -200px;
}

.timeline-v-line {
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 50px;
    width: 5px;
    background: #e9ecef;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-v-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f1f3f5;
    opacity: 0.5;
}

.timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    /* Updated via JS */
    background: #FAAF1A;
    z-index: 2;
    transition: height 0.1s linear;
}

.detailed-product-item {
    position: relative;
    z-index: 2;
    margin-bottom: 120px;
}

.detailed-product-item:first-child {
    margin-top: -320px;
}

.detailed-product-item:last-child {
    margin-bottom: 0;
}

.product-image-side {
    padding: 0 40px;
}

.detailed-img-wrapper {
    position: relative;
    width: 600px;
    height: 450px;
    max-width: 100%;
    border-radius: 32px;
    overflow: hidden;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12); */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #fff;
    padding: 3px;
}

.detailed-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 32px;
    background: conic-gradient(from var(--border-angle),
            #6656C8,
            #FAA61A,
            #6656C8);
    animation: rotateBorder 6s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

.detailed-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #fff;
    border-radius: 28px;
    z-index: 1;
}

.detailed-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 26px;
    transition: transform 0.6s ease;
}

.detailed-product-item:hover .detailed-img-wrapper {
    transform: translateY(-10px);
}

.detailed-product-item:hover .detailed-img-wrapper img {
    transform: scale(1.05);
}

.product-text-side {
    position: relative;
    padding: 160px 60px 0;
}

.timeline-dot-wrapper {
    position: absolute;
    left: -1px;
    top: 205px;
    transform: translateX(-50%);
    z-index: 3;
}

.timeline-dot-container-right {
    position: absolute;
    right: -1px;
    top: 205px;
    transform: translateX(50%);
    z-index: 3;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background: #e9ecef;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 5;
}

.timeline-dot.active {
    background: #FAAF1A;
    width: 8px;
    height: 8px;
    box-shadow:
        0 0 0 5px rgba(250, 175, 26, 0.45),
        /* Layer 1 */
        0 0 0 10px rgba(250, 175, 26, 0.25),
        /* Layer 2 */
        0 0 0 15px rgba(250, 175, 26, 0.1);
    /* Layer 3 */
}

.detailed-content {
    opacity: 1;
}

.detailed-number-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: -50px;
}

.detailed-number {
    font-size: 64px;
    font-weight: 400;
    color: #30237B66;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
}

.detailed-accent-line {
    width: 80px;
    height: 6px;
    background: #FAAF1A;
    border-radius: 3px;
}

.detailed-product-title {
    font-size: 36px;
    font-weight: 700;
    color: #5E42C6;
    margin-bottom: 25px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.01em;
}

.detailed-product-title i {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    margin-right: 8px;
}

.detailed-product-desc {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    max-width: 500px;
}

.btn-product-details {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(90deg, #6259D8 0%, #FAAF1A 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 16px;
    font-weight: 500;
    font-size: 19px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(99, 89, 216, 0.25); */
    font-family: 'Manrope', sans-serif;
    gap: 12px;
}

.btn-product-details:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 15px 35px rgba(99, 89, 216, 0.35); */
}

.btn-product-details span {
    padding: 0;
    display: inline-block;
}

.btn-product-details i {
    background: transparent;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    font-size: 18px;
}

.btn-product-details:hover i {
    transform: translateX(6px);
}

.text-right-aligned {
    text-align: right;
}

/* Scroll Reveal */
.reveal-on-scroll {
    visibility: hidden;
}

.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
    transform: translateX(-100px);
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-on-scroll.revealed {
    visibility: visible;
}

.reveal-on-scroll.revealed .reveal-left,
.reveal-on-scroll.revealed .reveal-right {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .detailed-img-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 775/606;
    }

    .products-detailed-section {
        padding: 80px 0;
        border-radius: 40px 40px 0 0;
    }

    .timeline-v-line {
        display: none;
    }

    .detailed-product-item {
        margin-bottom: 60px;
    }

    .item-reverse .row {
        flex-direction: column-reverse;
    }

    .product-image-side,
    .product-text-side {
        padding: 0 15px;
    }

    .product-text-side {
        margin-top: 30px;
        text-align: center;
    }

    .detailed-number-group {
        justify-content: center !important;
    }

    .text-right-aligned {
        text-align: center;
    }

    .timeline-dot-wrapper,
    .timeline-dot-container-right {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .gallery-card-item {
        width: calc((100vw - (4 * 2vw)) / 4.4);
    }

    .products-hero-desc {
        font-size: 1.1rem;
    }
}

/* --- Hero Gallery Entrance Animations --- */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pure-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-pure-fade {
    opacity: 0;
    animation: pure-fade 1.2s ease forwards;
}

.text-playfair-purple {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    color: #6A55CA !important;
    font-weight: 400 !important;
}

.trust-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #000000 !important;
    margin-bottom: 25px;
}

/* Indoor Product Hero Section */
/* Indoor Product Hero Section */
.indoor-hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%); REMOVED */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.indoor-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%);
    z-index: 1;
}

.indoor-hero-section .container-fluid {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 10;
    /* Above the image */
}

.indoor-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    /* Above background but below content */
}

.indoor-breadcrumb {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
}

.indoor-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.indoor-breadcrumb span.separator {
    font-size: 0.8rem;
    opacity: 0.5;
}

.indoor-breadcrumb span.active {
    color: #FAA61A;
}

.indoor-hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.indoor-hero-title-group {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indoor-hero-title-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 12;
}

.indoor-hero-title-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-top: 25px;
    display: block;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
    /* Bring LED DISPLAY in front of the image */
}

.indoor-hero-master-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
}

.indoor-sticky-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Master wrapper height */
    z-index: 5;
    /* Between background (1) and content (10) */
    pointer-events: none;
}

.indoor-hero-img-wrapper {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    margin: 0;
    width: clamp(200px, 40vw, 280px);
    transition: transform 0.1s linear, width 0.1s linear, border-radius 0.1s linear;
    pointer-events: auto;
    z-index: 5;
}

.indoor-hero-img-wrapper img {
    width: 100%;
    /* border-radius: 16px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.indoor-scroll-container-image-start {
    /* height: 120vh; */
    /* Adjust this to control how long the "zoom" takes */
    background: transparent;
}

.indoor-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
}

.indoor-showcase-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Outdoor Product Hero Section */
/* Outdoor Product Hero Section */
.outdoor-hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%); REMOVED */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.outdoor-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%);
    z-index: 1;
}

.outdoor-hero-section .container-fluid {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 10;
    /* Above the image */
}

.outdoor-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    /* Above background but below content */
}

.outdoor-breadcrumb {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
}

.outdoor-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.outdoor-breadcrumb span.separator {
    font-size: 0.8rem;
    opacity: 0.5;
}

.outdoor-breadcrumb span.active {
    color: #FAA61A;
}

.outdoor-hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 2000px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outdoor-hero-title-group {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outdoor-hero-title-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 12;
}

.outdoor-hero-title-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-top: 25px;
    display: block;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
    /* Bring LED DISPLAY in front of the image */
}

.outdoor-hero-master-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
}

.outdoor-sticky-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Master wrapper height */
    z-index: 5;
    /* Between background (1) and content (10) */
    pointer-events: none;
}

.outdoor-hero-img-wrapper {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    margin: 0;
    width: clamp(200px, 40vw, 280px);
    transition: transform 0.1s linear, width 0.1s linear, border-radius 0.1s linear;
    pointer-events: auto;
    z-index: 5;
}

.outdoor-hero-img-wrapper img {
    width: 100%;
    /* border-radius: 16px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.outdoor-scroll-container-image-start {
    /* height: 120vh; */
    /* Adjust this to control how long the "zoom" takes */
    background: transparent;
}

.outdoor-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1050px;
    margin: 0 auto;
    font-weight: 400;
}

.outdoor-showcase-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Flexible Product Hero Section */
/* Flexible Product Hero Section */
.flexible-hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%); REMOVED */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.flexible-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%);
    z-index: 1;
}

.flexible-hero-section .container-fluid {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 10;
    /* Above the image */
}

.flexible-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    /* Above background but below content */
}

.flexible-breadcrumb {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
}

.flexible-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.flexible-breadcrumb span.separator {
    font-size: 0.8rem;
    opacity: 0.5;
}

.flexible-breadcrumb span.active {
    color: #FAA61A;
}

.flexible-hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 2000px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flexible-hero-title-group {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flexible-hero-title-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 12;
}

.flexible-hero-title-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-top: 25px;
    display: block;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
    /* Bring LED DISPLAY in front of the image */
}

.flexible-hero-master-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
}

.flexible-sticky-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Master wrapper height */
    z-index: 5;
    /* Between background (1) and content (10) */
    pointer-events: none;
}

.flexible-hero-img-wrapper {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    margin: 0;
    width: clamp(200px, 40vw, 280px);
    transition: transform 0.1s linear, width 0.1s linear, border-radius 0.1s linear;
    pointer-events: auto;
    z-index: 5;
}

.flexible-hero-img-wrapper img {
    width: 100%;
    /* border-radius: 16px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.flexible-scroll-container-image-start {
    /* height: 120vh; */
    /* Adjust this to control how long the "zoom" takes */
    background: transparent;
}

.flexible-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1050px;
    margin: 0 auto;
    font-weight: 400;
}

.flexible-showcase-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}


/* Transparent Product Hero Section */
/* Transparent Product Hero Section */
.transparent-hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%); REMOVED */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.transparent-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%);
    z-index: 1;
}

.transparent-hero-section .container-fluid {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 10;
    /* Above the image */
}

.transparent-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    /* Above background but below content */
}

.transparent-breadcrumb {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
}

.transparent-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.transparent-breadcrumb span.separator {
    font-size: 0.8rem;
    opacity: 0.5;
}

.transparent-breadcrumb span.active {
    color: #FAA61A;
}

.transparent-hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 2000px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transparent-hero-title-group {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.transparent-hero-title-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 12;
}

.transparent-hero-title-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-top: 25px;
    display: block;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
    /* Bring LED DISPLAY in front of the image */
}

.transparent-hero-master-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
}

.transparent-sticky-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Master wrapper height */
    z-index: 5;
    /* Between background (1) and content (10) */
    pointer-events: none;
}

.transparent-hero-img-wrapper {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    margin: 0;
    width: clamp(200px, 40vw, 280px);
    transition: transform 0.1s linear, width 0.1s linear, border-radius 0.1s linear;
    pointer-events: auto;
    z-index: 5;
}

.transparent-hero-img-wrapper img {
    width: 100%;
    /* border-radius: 16px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.transparent-scroll-container-image-start {
    /* height: 120vh; */
    /* Adjust this to control how long the "zoom" takes */
    background: transparent;
}

.transparent-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
}

.transparent-showcase-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Rental Product Hero Section */
/* Rental Product Hero Section */
.rental-hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%); REMOVED */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.rental-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%);
    z-index: 1;
}

.rental-hero-section .container-fluid {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 10;
    /* Above the image */
}

.rental-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    /* Above background but below content */
}

.rental-breadcrumb {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
}

.rental-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.rental-breadcrumb span.separator {
    font-size: 0.8rem;
    opacity: 0.5;
}

.rental-breadcrumb span.active {
    color: #FAA61A;
}

.rental-hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 2000px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rental-hero-title-group {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rental-hero-title-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 12;
}

.rental-hero-title-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-top: 25px;
    display: block;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
    /* Bring LED DISPLAY in front of the image */
}

.rental-hero-master-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
}

.rental-sticky-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Master wrapper height */
    z-index: 5;
    /* Between background (1) and content (10) */
    pointer-events: none;
}

.rental-hero-img-wrapper {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    margin: 0;
    width: clamp(200px, 40vw, 280px);
    transition: transform 0.1s linear, width 0.1s linear, border-radius 0.1s linear;
    pointer-events: auto;
    z-index: 5;
}

.rental-hero-img-wrapper img {
    width: 100%;
    /* border-radius: 16px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.rental-scroll-container-image-start {
    /* height: 120vh; */
    /* Adjust this to control how long the "zoom" takes */
    background: transparent;
}

.rental-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
}

.rental-showcase-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Outdoor Cabinet Hero Section */
/* Outdoor Cabinet Hero Section */
.outdoorcabinet-hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%); REMOVED */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.outdoorcabinet-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%);
    z-index: 1;
}

.outdoorcabinet-hero-section .container-fluid {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 10;
    /* Above the image */
}

.outdoorcabinet-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    /* Above background but below content */
}

.outdoorcabinet-breadcrumb {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
}

.outdoorcabinet-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.outdoorcabinet-breadcrumb span.separator {
    font-size: 0.8rem;
    opacity: 0.5;
}

.outdoorcabinet-breadcrumb span.active {
    color: #FAA61A;
}

.outdoorcabinet-hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 2000px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outdoorcabinet-hero-title-group {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outdoorcabinet-hero-title-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 12;
}

.outdoorcabinet-hero-title-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-top: 25px;
    display: block;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
    /* Bring LED DISPLAY in front of the image */
}

.outdoorcabinet-hero-master-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
}

.outdoorcabinet-sticky-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Master wrapper height */
    z-index: 5;
    /* Between background (1) and content (10) */
    pointer-events: none;
}

.outdoorcabinet-hero-img-wrapper {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    margin: 0;
    width: clamp(200px, 40vw, 280px);
    transition: transform 0.1s linear, width 0.1s linear, border-radius 0.1s linear;
    pointer-events: auto;
    z-index: 5;
}

.outdoorcabinet-hero-img-wrapper img {
    width: 100%;
    /* border-radius: 16px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.outdoorcabinet-scroll-container-image-start {
    /* height: 120vh; */
    /* Adjust this to control how long the "zoom" takes */
    background: transparent;
}

.outdoorcabinet-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
}

.outdoorcabinet-showcase-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Indoor Cabinet Hero Section */
/* Indoor Cabinet Hero Section */
.indoorcabinet-hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%); REMOVED */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 110px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.indoorcabinet-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #30237B 0%, #7C6DD4 100%);
    z-index: 1;
}

.indoorcabinet-hero-section .container-fluid {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 10;
    /* Above the image */
}

.indoorcabinet-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    /* Above background but below content */
}

.indoorcabinet-breadcrumb {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
}

.indoorcabinet-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.indoorcabinet-breadcrumb span.separator {
    font-size: 0.8rem;
    opacity: 0.5;
}

.indoorcabinet-breadcrumb span.active {
    color: #FAA61A;
}

.indoorcabinet-hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 2000px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.indoorcabinet-hero-title-group {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indoorcabinet-hero-title-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 12;
}

.indoorcabinet-hero-title-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-top: 25px;
    display: block;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
    /* Bring LED DISPLAY in front of the image */
}

.indoorcabinet-hero-master-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
}

.indoorcabinet-sticky-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Master wrapper height */
    z-index: 5;
    /* Between background (1) and content (10) */
    pointer-events: none;
}

.indoorcabinet-hero-img-wrapper {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    margin: 0;
    width: clamp(200px, 40vw, 280px);
    transition: transform 0.1s linear, width 0.1s linear, border-radius 0.1s linear;
    pointer-events: auto;
    z-index: 5;
}

.indoorcabinet-hero-img-wrapper img {
    width: 100%;
    /* border-radius: 16px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.indoorcabinet-scroll-container-image-start {
    /* height: 120vh; */
    /* Adjust this to control how long the "zoom" takes */
    background: transparent;
}

.indoorcabinet-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
}

.indoorcabinet-showcase-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.showcase-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

#showcaseTargetWrapper {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-img-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* Reduced width */
    margin: 0 auto;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); */
    aspect-ratio: 16 / 9;
    /* Force landscape aspect ratio */
}

.showcase-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crop to fit landscape while hiding edges */
    object-position: center;
    display: block;
    transform: scale(1.2);
}

.product-innovative-section {
    position: relative;
    background-color: #ffffff;
    padding: 0px 0 60px;
    overflow: hidden;
}

.innovative-header {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.innovative-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a1a1a;
    margin-bottom: 10px;
    /* Reduced to bring line closer */
}

.oc-innovative-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.3rem);
    color: #1a1a1a;
    margin-bottom: 10px;
    /* Reduced to bring line closer */
}

.innovative-title i {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #7C6DD4;
    font-weight: 700;
}

.oc-innovative-title i {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #7C6DD4;
    font-weight: 700;
}

.innovative-accent-line {
    width: 100%;
    max-width: 950px;
    /* Lengthened as per screenshot */
    height: 7px;
    background-color: #FAA61A;
    margin: 0 auto 40px;
    border-radius: 4px;
}

.oc-innovative-accent-line {
    width: 100%;
    height: 7px;
    background-color: #FAA61A;
    margin: 0 auto 40px;
    border-radius: 4px;
}

.innovative-desc-indoor {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    /* line-height: 1.7; */
    color: #4a4a4a;
    font-weight: 400;
}

.innovative-desc-outdoor {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    /* line-height: 1.7; */
    color: #4a4a4a;
    font-weight: 400;
}

.innovative-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 400;
}

.innovative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.innovative-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    background: #000;
}

.innovative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.innovative-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.innovative-card:hover img {
    transform: scale(1.15);
    filter: blur(10px) brightness(0.85);
    /* Slightly less blur, more brightness */
}

.innovative-card-overlay {
    position: absolute;
    inset: 0;
    /* Initial state: Orange branding */
    background: linear-gradient(to top, rgba(250, 166, 26, 0.85) 0%, rgba(250, 166, 26, 0.4) 30%, transparent 60%);
    display: flex;
    align-items: flex-end;
    /* Bottom align both initially and on hover to match screenshot */
    padding: 35px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.innovative-card:hover .innovative-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 40px;
}

.innovative-card-content {
    width: 100%;
    text-align: left;
    transition: all 0.5s ease;
}

.innovative-card:hover .innovative-card-content {
    text-align: left;
}

.innovative-card-title {
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.innovative-card:hover .innovative-card-title {
    margin-bottom: 20px;
    font-size: 2rem;
}

.innovative-card-desc {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.innovative-card:hover .innovative-card-desc {
    opacity: 1;
    max-height: 300px;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .innovative-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .innovative-title {
        font-size: 2.2rem;
    }

    .innovative-card-title {
        font-size: 1.5rem;
    }
}

.product-indoor-series-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.product-indoor-series-section .container {
    transform: translateX(-50px);
}

.series-header {
    /* margin-bottom: 40px; */
}

.series-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.series-title sup {
    font-size: 1.5rem;
    top: -1em;
}

.series-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.series-divider {
    width: 100%;
    height: 7px;
    background-color: #FAA61A;
    margin: 20px 0;
    border-radius: 12px;
}

.series-params-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #000000;
}

.series-params-label i {
    color: #FAA61A;
}

.series-table-container {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.series-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Manrope', sans-serif;
}

.series-table th,
.series-table td {
    padding: 20px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.series-table thead tr {
    background: linear-gradient(90deg, #30237B 0%, #7C6DD4 100%);
}

.series-table th {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.series-table th:first-child {
    text-align: left;
}

.series-table td:first-child {
    text-align: left;
    background-color: #f7f7f7;
    font-weight: 600;
    color: #555;
    width: 25%;
}

.series-table tr:nth-child(even) td:not(:first-child) {
    background-color: #ffffff;
}

.series-table tr:nth-child(odd) td:not(:first-child) {
    /* background-color: #fcfcfc; */
}

.series-table td {
    color: #333;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .series-table-container {
        overflow-x: auto;
    }

    .series-table {
        min-width: 800px;
    }
}

@media (max-width: 768px) {
    .indoor-hero-title-group {
        margin-bottom: 40px;
    }

    .indoor-hero-img-wrapper {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        margin: 20px auto;
        width: 100%;
        max-width: 300px;
    }

    .indoor-hero-title-sub {
        margin-top: 10px;
    }
}

/* Sustainable Section */
.sustainable-section {
    position: relative;
    padding: 140px 0 180px;
    background: url('../images/sustainability.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.sustainable-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    /* High opacity dark overlay */
    z-index: 1;
}

.sustainable-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: 2;
}

.sustainable-container {
    position: relative;
    z-index: 5;
}

.certificates-wrapper {
    display: flex;
    gap: 30px;
    perspective: 1000px;
}

.cert-item {
    flex: 1;
    background: #fff;
    padding: 5px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.cert-item img {
    width: 100%;
    height: auto;
    display: block;
}

.cert-1 {
    transform: rotateY(15deg);
}

.cert-2 {
    transform: rotateY(-15deg);
}

.sustainable-content {
    max-width: 600px;
    margin-left: auto;
}

.sustainable-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.sustainable-title .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(90deg, #f1c57a 0%, #c08000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
    font-size: 0.65em;
    margin-bottom: -10px;
}

.sustainable-title .main-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #fff;
    display: block;
    font-size: 48px;
}

.sustainable-title .gradient-text {
    background: linear-gradient(90deg, #f1c57a 0%, #c08000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Playfair Display', serif;
}

.sustainable-desc {
    font-size: 1.35rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2.5rem;
    font-family: 'Manrope', sans-serif;
    max-width: 580px;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn i {
    font-size: 1.5rem;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .sustainable-content {
        margin: 0 auto;
        text-align: center !important;
    }

    .sustainable-nav {
        justify-content: center !important;
    }

    .sustainable-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   Comprehensive Responsive Overrides (Laptops, Tablets, Mobile)
   ========================================================================== */

/* ==========================================================================
   Comprehensive Responsive Overrides (Laptops, Tablets, Mobile)
   ========================================================================== */

/* 1. Large Desktops & Laptops (1200px - 1600px) */
@media (max-width: 1600px) {
    .premium-section .container {
        max-width: 1320px;
    }
}

@media (max-width: 1440px) {
    .product-card {
        width: 850px;
        height: 450px;
    }

    .premium-tag {
        margin-bottom: 40px;
    }

    .detailed-number {
        font-size: 48px;
    }

    .detailed-product-title {
        font-size: 28px;
    }

    .impact-section {
        padding: 120px 0;
    }
}

/* 2. Tablets & Small Laptops (992px - 1199px) */
@media (max-width: 1199.98px) {
    .navbar-brand {
        margin-left: 20px;
    }

    .header-actions {
        margin-right: 20px;
    }

    .product-card {
        width: 700px;
        height: 400px;
    }

    .premium-title {
        font-size: 2.8rem;
    }

    .premium-desc {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .advantage-image-wrapper {
        height: 350px;
    }

    .stack-container {
        max-width: 100%;
    }
}

/* 3. Mobile Landscape & Small Tablets (768px - 991px) */
@media (max-width: 991.98px) {
    .hero-section {
        background-size: cover;
        height: auto;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .hero-content .container>div {
        width: 100% !important;
        /* Fix max-content overflow */
        max-width: 100%;
    }

    .hero-title-top,
    .hero-title-main {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
        white-space: normal;
        text-align: center;
    }

    .hero-desc {
        font-size: 1rem;
        padding: 0;
        text-align: center;
        max-width: 100%;
    }

    .products-section {
        padding: 80px 0;
    }

    .product-slider-container {
        padding: 0 10px;
    }

    .product-card {
        width: 100%;
        max-width: 500px;
        height: auto;
        flex-direction: column;
        transform: scale(1) !important;
        margin: 0 auto 40px;
        border-radius: 20px;
    }

    .card-image-wrap {
        height: 220px;
        width: 100%;
        order: -1;
    }

    .card-content-wrap {
        padding: 30px 20px;
        width: 100%;
        text-align: center;
    }

    .product-num-row {
        justify-content: center;
    }

    .solutions-section {
        padding: 80px 0;
    }

    .solutions-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .solutions-title span {
        display: block;
        margin: 0 auto;
    }

    .solutions-subtitle {
        text-align: center !important;
        margin: 20px auto !important;
    }

    /* Fix Stacked Cards in Solutions */
    .stack-container {
        margin-top: 40px;
    }

    .stack-card {
        padding: 20px !important;
        margin-bottom: 20px !important;
        transform: none !important;
        position: static !important;
    }

    .premium-section {
        height: auto;
        padding: 80px 0;
    }

    .premium-scrolly-wrapper {
        height: auto;
    }

    .premium-tag {
        margin: 0 auto 20px;
        display: table;
    }

    .premium-title {
        text-align: center;
    }

    .premium-desc {
        text-align: center;
        margin: 0 auto 30px;
    }

    .stepper-list {
        margin-bottom: 40px;
    }

    .advantage-card {
        padding-top: 20px;
        text-align: center;
    }

    .large-bg-num {
        font-size: 8rem;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.1;
    }

    .sustainable-section {
        padding: 80px 0;
    }

    .sustainable-title {
        text-align: center;
    }

    .certificates-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        max-width: 350px;
        margin: 40px auto;
    }

    .cert-1,
    .cert-2 {
        transform: none !important;
        width: 100%;
    }

    .impact-section {
        padding: 80px 0;
        margin-top: 0;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .stat-card {
        min-height: auto !important;
        padding: 30px;
        text-align: center;
    }

    .detailed-product-item .row {
        flex-direction: column !important;
    }

    .product-text-side {
        padding: 40px 20px 0 !important;
        text-align: center !important;
    }

    .detailed-number-group {
        justify-content: center;
        margin-top: 0;
    }
}

/* 4. Small Mobile (< 767px) */
@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 40px;
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .typewriter-container {
        width: 100% !important;
    }

    .hero-title-top,
    .hero-title-main {
        font-size: 1.6rem;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-custom-outline,
    .btn-custom-primary {
        min-width: 100% !important;
        width: 100% !important;
        font-size: 0.95rem;
        height: 50px;
        margin: 0 0 10px 0 !important;
    }

    .section-title-top {
        font-size: 1.3rem;
    }

    .section-title-gradient {
        font-size: 1.6rem;
    }

    .title-underline {
        width: 120px;
        height: 3px;
    }

    .solutions-title {
        font-size: 2rem;
    }

    .badge-visual {
        margin: 0 auto 20px;
        display: table;
    }

    .sustainable-title .main-text {
        font-size: 24px;
    }

    .sustainable-desc {
        font-size: 0.95rem;
    }

    .impact-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .impact-title-underline {
        margin: 15px auto;
    }

    .impact-desc {
        text-align: center;
    }

    .impact-badge {
        margin: 0 auto 20px;
    }

    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-bottom-bar {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {

    .hero-title-top,
    .hero-title-main {
        font-size: 1.4rem;
    }

    .detailed-product-title {
        font-size: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Application Scenario Section */
.scen-scrolly-wrapper {
    position: relative;
    background: #000;
}

.scenario-scrolly-container {
    position: relative;
    height: 450vh;
    /* Increased to 500vh to allow for Education scenario sticky hold */
}

.sticky-scen {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: visible;
    /* Changed from hidden to prevent indicator clipping */
    z-index: 5;
    background: #111;
    border-radius: 24px;
    /* Added rounded corners for premium feel */
    margin: 0 20px;
    /* Slight inset to show the rounding */
}

.scen-background-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dot-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.scen-dot-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

/* Reveal Text Layer */
.scen-reveal-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.scen-intro-content {
    max-width: 800px;
    /* padding-left: 100px; */
    margin-top: -300px;
    padding-left: 50px;
}

.scen-main-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    /* Increased size */
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 0.85;
    letter-spacing: -3px;
}

.scen-luxury-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3.5rem, 8vw, 6rem);
    /* Increased size */
    background: linear-gradient(90deg, #f1c57a 0%, #c08000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    line-height: 0.85;
    letter-spacing: -1px;
}

.scen-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 25px;
    font-weight: 400;
    max-width: 450px;
    line-height: 1.4;
}

/* Section-Specific Scrollytelling Indicators */
.scen-indicators {
    position: absolute;
    right: -10px;
    /* Adjusted from -60px to be visible on the edge, accounting for 20px parent margin */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.scen-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.scen-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scen-dot.active {
    background-color: #FAA61A;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(250, 166, 26, 0.6);
}

.scen-dot.active::after {
    border-color: rgba(250, 166, 26, 0.4);
    transform: scale(1.1);
}

@media (max-width: 1400px) {
    .scen-indicators {
        right: -30px;
    }
}

@media (max-width: 1200px) {
    .scen-indicators {
        right: 15px;
        /* Bring inside for smaller screens */
    }
}

@media (max-width: 768px) {
    .scen-indicators {
        gap: 15px;
        right: 10px;
    }

    .scen-dot {
        width: 8px;
        height: 8px;
    }
}

/* Parallax Images Layer */
.scen-parallax-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.scen-parallax-layer .scen-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 10px;
    /* More rounded as in screenshot */
    overflow: hidden;
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty)));
    opacity: 0.8;
    transition: transform 0.1s linear, opacity 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.scen-parallax-layer .scen-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Background Layer */
.scenario-featured-bg {
    position: absolute;
    width: 85vw;
    height: 80vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    /* Centered but slightly lowered to leave room for floating title */
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-featured-bg.visible {
    opacity: 1;
    visibility: visible;
}

.scenario-featured-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.1);
}

.scenario-featured-bg img.active {
    opacity: 0.6;
    transform: scale(1);
    z-index: 2;
}

.overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(to bottom, transparent 60%, #000 100%);
    z-index: 3;
}

/* Content Cards Layer */
.scenario-content-card {
    position: absolute;
    bottom: 12%;
    /* left: 12%; */
    z-index: 25;
    max-width: 700px;
    background: transparent;
    padding: 0;
    border: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.scenario-content-card.visible {
    visibility: visible;
}

.scenario-content-card.active {
    opacity: 1;
    transform: translateY(0);
}

.scen-floating-title-wrap {
    position: absolute;
    top: 5%;
    /* Floating above the image container */
    left: 45%;
    transform: translateX(-50%);
    z-index: 20;
    width: 100%;
    text-align: left;
    pointer-events: none;
    /* Visibility Sync */
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scen-floating-title-wrap.visible {
    opacity: 1;
    visibility: visible;
}

.scenario-label-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(4rem, 10vw, 7.8rem);
    margin: 0;
    /* line-height: 0.9;
    letter-spacing: -2px; */
    /* Advanced multi-stop gradient from white to gold */
    background: linear-gradient(to bottom,
            #FFFFFF 0%,
            #FFFFFF 45%,
            #FFFFFF 55%,
            #feb028 65%,
            #f6be3b 80%,
            #f4c161 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.scenario-label-title .italic-part {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    margin-right: -10px;
    /* Tighter overlap */
}

.accent-line {
    width: 610px;
    height: 6px;
    background: #EDAF07;
    margin: 25px 0;
    border-radius: 10px;
}

.scenario-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
    max-width: 90%;
}

.scenario-main-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 650px;
}

/* Nav Indicator Circle */
.scen-nav-indicator {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
}

.scen-nav-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #004b3e;
    /* Dark green base */
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.scen-nav-circle span {
    transform: translateY(-1px);
}

/* Triggers */
.scenario-triggers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400vh;
    pointer-events: none;
    z-index: 30;
}

.scen-trigger,
.scen-trigger-reveal {
    width: 100%;
}

.scen-trigger {
    height: 100vh;
}

@media (max-width: 991px) {
    .scen-reveal-text {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .scen-parallax-layer .scen-thumb {
        width: 200px;
        height: 150px;
    }

    .scenario-label-title {
        font-size: 2.5rem;
    }

    .scenario-content-card {
        margin: 0 15px;
        padding: 30px;
    }
}

/* --- MEEBITS STYLE PRELOADER --- */
.meebits-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --lightness-1: 30%;
    --lightness-2: 45%;
    --lightness-3: 60%;

    background: linear-gradient(to bottom,
            hsl(255, 80%, var(--lightness-1)) 0%,
            hsl(255, 85%, var(--lightness-2)) 50%,
            hsl(255, 90%, var(--lightness-3)) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s; */
    transition: background 0.2s linear;
}

.meebits-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.preloader-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    pointer-events: none;
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-percentage-bg {
    position: absolute;
    font-size: clamp(200px, 40vw, 600px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Inter', sans-serif;
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    transition: transform 0.1s linear;
}

.preloader-logo-wrap {
    position: relative;
    z-index: 3;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.preloader-logo {
    width: 280px;
    height: auto;
    /* Removed white filter to keep original colors as per screenshot */
}

.preloader-logo.flying {
    transition: all 1.2s cubic-bezier(0.7, 0, 0.3, 1) !important;
}

@keyframes preloader-pulse {
    0% {
        transform: scale(1);
        opacity: 0.03;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.05;
    }

    100% {
        transform: scale(1);
        opacity: 0.03;
    }
}

.preloader-percentage-bg.animating {
    animation: preloader-pulse 0.5s ease-in-out;
}

/* --- FOOTER REDESIGN --- */
.footerend-section {
    position: relative;
    background-color: #fbfbfb;
    padding: 100px 0 40px;
    overflow: hidden;
    color: #1a1a1a;
}

.footerend-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Dot Pattern Layer - Increased visibility */
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1.5px, transparent 1.6px);
    background-size: 34px 34px;
    pointer-events: none;
    z-index: 1;
}

.footerend-section::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Combined Glows: Top-Left Purple and Bottom-Center Gold */
    background:
        radial-gradient(circle at 0% 0%, rgba(229, 224, 255, 0.6) 0%, transparent 45%),
        radial-gradient(circle at center 100%, rgba(237, 175, 7, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.footerend-section .container-fluid {
    position: relative;
    z-index: 10;
}

.footer-logo {
    height: 55px;
    margin-bottom: 30px;
}

.footer-headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.footer-desc {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 850px;
    margin-bottom: 60px;
}

.footer-links-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #EDAF07;
    transform: translateX(5px);
}

.footer-bottom-bar {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1.5px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.95rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #1a1a1a;
}

@media (max-width: 991.98px) {
    .footerend-section {
        padding: 60px 0 30px;
    }

    .footer-headline {
        font-size: 1.8rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

.scroll-indicator-bubble {
    position: fixed;
    bottom: 80px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.scroll-indicator-bubble i {
    font-size: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}