/* --- THE MASTER GRID SYSTEM (v15.0) --- */

/* --- Global Theme Definitions --- */
:root {
    /* Colors - Modern Professional Palette */
    --primary-color: #0f172a;   /* Slate 900 */
    --secondary-color: #1e293b; /* Slate 800 */
    --accent-color: #38bdf8;    /* Sky 400 - Better contrast than Gray */
    --accent-hover: #0ea5e9;    /* Sky 500 */
    --text-main: #334155;       /* Slate 700 */
    --text-muted: #64748b;      /* Slate 500 */
    --text-light: #f8fafc;      /* Slate 50 */
    --white: #ffffff;
    --bg-light: #f1f5f9;        /* Slate 100 */

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Layout */
    --container-max: 1240px;
    --site-gutter: 30px;
    --section-gap: 100px;
    --section-gap-mobile: 60px;
}

/* --- Base Body Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--site-gutter);
    position: relative;
}

section, .full-width-section {
    padding: var(--section-gap) 0;
    position: relative;
}

/* --- Section Variations --- */
.section-dark { 
    background: var(--primary-color); 
    color: var(--white); 
}

/* Animated Tech Gradient for Produk Unggulan */
#custom-products {
    background: linear-gradient(-45deg, #0f172a, #0c4a6e, #075985, #1e1b4b, #0f172a);
    background-size: 300% 300%;
    animation: techGradient 10s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes techGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Blue Gradient for Solusi Section */
#solution-products {
    background: linear-gradient(-45deg, #1d4ed8, #2773F5, #3b82f6, #1e40af, #2773F5);
    background-size: 300% 300%;
    animation: techGradient 12s ease infinite;
    position: relative;
    overflow: hidden;
}

#solution-products::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Animated Dark Indigo Gradient for Team Section - Matched to Highlight Section */
#team-section {
    background: linear-gradient(-45deg, #0f172a, #0c4a6e, #075985, #1e1b4b, #0f172a);
    background-size: 300% 300%;
    animation: techGradient 10s ease infinite;
    position: relative;
    overflow: hidden;
}

#team-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

#team-section .container {
    position: relative;
    z-index: 2;
}

#team-section .team-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#team-section .team-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px -10px rgba(56, 189, 248, 0.2);
}

#team-section .team-card h3 { color: #ffffff; font-size: 1.4rem; margin-bottom: 5px; }
#team-section .team-card .team-position { color: var(--accent-color); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.85rem; }
#team-section .team-card .team-bio { color: #94a3b8; font-size: 0.95rem; line-height: 1.5; }

#custom-products::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
}

.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #cbd5e1; } /* Slate 300 for readability */

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

@media (max-width: 768px) {
    section, .full-width-section {
        padding: var(--section-gap-mobile) 0;
    }

    .hero {
        min-height: 60vh !important;
        padding: 80px 0 !important;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* Precision Grid Fixes */
    .contact-grid, .builder-grid, .detail-grid, .about-grid, .form-grid-inner {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .contact-form-card, .card {
        padding: 30px 20px !important;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh !important;
        padding: 60px 0 !important;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .product-meta-footer {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        flex: 0 0 85vw; /* Better for horizontal sliders on small mobile */
    }
}

/* --- Header & Navigation --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 9990;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-header {
    background: var(--white);
    color: var(--text-main);
    padding: 6px 0 4px; /* Slightly more top, less bottom */
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04); /* Even lighter border */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
    max-height: 36px; /* Slightly tighter max-height */
    overflow: hidden;
}

.top-contact {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-contact a {
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-contact a:hover {
    color: var(--accent-hover);
}

.top-contact i {
    color: var(--accent-color);
    font-size: 0.8rem;
}


header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0; /* Adjusted for 80px height */
    min-height: 80px; /* Precision height as requested */
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .top-contact {
        justify-content: center;
        gap: 10px 20px;
        flex-wrap: wrap;
    }
    
    .top-header {
        max-height: 50px; /* Allow more height on mobile for wrapping */
        padding: 8px 0;
    }

    /* Grid layout adjustments for mobile */
    .contact-grid, .builder-grid, .detail-grid, .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 20px;
    }

    /* Custom Builder Mobile */
    .builder-card {
        grid-template-columns: 1fr !important;
    }

    .builder-visual {
        padding: 40px 20px !important;
    }

    .builder-config {
        padding: 30px 20px !important;
    }

    /* Modal adjustments */
    .modal-content {
        width: 95%;
        margin: 10px auto;
        height: 90vh;
    }

    .modal-header, .modal-footer {
        padding: 15px 20px;
    }

    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .scroll-track {
        gap: 15px;
        padding-bottom: 10px;
    }

    .card {
        flex: 0 0 280px;
    }
}

.logo img {
    height: 40px; /* Reduced from 55px for a better balance */
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}


.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-links a i {
    font-size: 1rem;
    opacity: 0.7;
}

/* WhatsApp Nav Item */
.wa-nav-item a {
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.wa-nav-item a:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* --- Hero Section --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: var(--primary-color);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}

.hero-slider,
.hero > .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%); z-index: 3; }

.hero .container { z-index: 4; }

.hero, .hero * {
    color: #ffffff !important;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* --- Typography & Headings --- */
h1, h2, h3, h4 {
    color: var(--primary-color);
    line-height: 1.3;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

/* --- Cards & Grids --- */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.1rem;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.5rem;
}
.card-footer {
    padding: 0 20px 20px;
    margin-top: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    gap: 10px;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

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

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-white-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

/* --- Slider/Track Logic --- */
.slider-wrapper {
    position: relative;
    padding: 0 10px;
}

.scroll-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 5px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.scroll-track::-webkit-scrollbar { display: none; }

.scroll-track > * {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 100; /* Higher z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.nav-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev { left: -25px; }
.nav-btn.next { right: -25px; }

/* Prevent buttons from being clipped on smaller screens */
@media (max-width: 1200px) {
    .nav-btn.prev { left: 0px; }
    .nav-btn.next { right: 0px; }
}

@media (max-width: 768px) {
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    .nav-btn.prev { left: 5px; }
    .nav-btn.next { right: 5px; }
}

/* --- Footer --- */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        padding: 40px;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-links a {
        font-size: 1.5rem !important;
        font-weight: 700;
        color: var(--primary-color) !important;
        padding: 10px 0;
        display: block;
    }

    .wa-nav-item a {
        background: #25D366 !important;
        color: white !important;
        padding: 15px 35px !important;
        border-radius: 50px !important;
        display: inline-flex !important;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem !important;
        margin-top: 10px;
        width: auto !important;
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 2100;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Specific Components --- */
.product-showcase-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    height: 180px;
    overflow: hidden;
}

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

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 { 
    margin-bottom: 10px; 
    font-size: 1.2rem; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.1rem;
}
.product-content p { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    margin-bottom: 20px; 
    line-height: 1.6; 
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.3rem;
}

.product-meta-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.product-meta-footer .btn {
    width: 100%;
}

.product-price-tag {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Highlight Cards (Dark Background) */
.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.highlight-card .card-img {
    height: 180px;
    overflow: hidden;
}

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

.highlight-card .card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.highlight-card h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.1rem;
}

.highlight-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.5rem;
}

.highlight-card .card-footer {
    margin-top: auto;
    padding: 20px 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-card .price-tag {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.15rem;
}

/* Blog Cards */
.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card .card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card .card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.1rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.5rem;
}

.blog-card .card-footer {
    padding: 0 25px 25px;
    margin-top: auto;
}

/* Team Section */
.team-card {
    text-align: center;
    padding: 40px 30px !important;
}

.team-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--bg-light);
}

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

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
}

.team-placeholder i {
    font-size: 3.5rem;
}

.team-card h3 {
    margin-bottom: 8px !important;
    font-size: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.5rem;
}

.team-position {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
    min-height: 1.2rem;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.3rem;
}

/* Clients Section - Modern Premium Cards */
.slider-wrapper {
    padding: 30px 0;
}

#client-track {
    display: flex;
    gap: 30px;
}

.client-card {
    min-width: 200px;
    padding: 35px 15px !important;
    background: white;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: auto;
}

.client-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-light);
}

.client-logo-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #ffffff;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.client-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0) saturate(1) brightness(1) !important;
    -webkit-filter: grayscale(0) saturate(1) brightness(1) !important;
    opacity: 1 !important;
    background: transparent;
}

.client-meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.client-name {
    display: block;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.3px;
}

.client-web-link {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-light);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.client-web-link:hover {
    background: var(--primary-color);
    color: white;
}

.client-web-link i {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .client-card {
        min-width: 180px;
        padding: 25px 10px !important;
    }
}


/* About Section */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar-item {
    text-align: center;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }
}

/* Utility */
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* --- Global Modal System --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.active {
    display: flex !important;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 1000px;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    flex-grow: 1;
    background: #f8fafc;
    scroll-behavior: smooth;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    gap: 20px;
}

/* Picker Specific Styles */
.picker-section {
    padding: 0 30px 30px;
}

.picker-category-title {
    position: sticky;
    top: 0;
    background: #f8fafc;
    padding: 20px 0 15px;
    margin: 0;
    z-index: 10;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.picker-category-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #e2e8f0;
}

.picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.picker-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    user-select: none;
}

.picker-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.picker-item.selected {
    border-color: var(--accent-color);
    background: #f0f9ff;
    box-shadow: 0 0 0 1px var(--accent-color);
}

.picker-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.picker-item.selected .picker-checkbox {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.picker-checkbox i {
    font-size: 0.75rem;
    color: white;
    display: none;
}

.picker-item.selected .picker-checkbox i {
    display: block;
}

.picker-item-info {
    flex-grow: 1;
}

.picker-item-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.picker-item-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.picker-search-container {
    position: relative;
    flex-grow: 1;
    max-width: 400px;
}

.picker-search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.picker-search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.picker-search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
        border-radius: 0;
    }
    .modal-footer {
        flex-direction: column;
        padding: 15px 20px;
    }
    .picker-search-container {
        max-width: 100%;
        width: 100%;
    }
    .picker-section {
        padding: 0 20px 20px;
    }
    .modal-header {
        padding: 15px 20px;
    }
}

/* --- MASTER MOBILE OVERRIDES --- */
@media (max-width: 768px) {
    /* Layout */
    .container {
        padding: 0 1.5rem;
    }
    
    section, .full-width-section {
        padding: 60px 0;
    }

    /* Hero Refinement */
    .hero {
        min-height: 400px !important;
        height: auto !important;
        padding: 100px 0 60px !important;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }

    /* Grids & Cards */
    .modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid, .contact-grid, .detail-grid, .builder-grid, .form-grid-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .card {
        padding: 25px !important;
    }

    .post-container {
        padding: 25px 20px !important;
        border-radius: 12px !important;
    }

    /* Mobile Navigation Refinement */
    .nav-links {
        padding: 120px 2rem 2rem !important;
        gap: 1.5rem !important;
    }

    .nav-links a {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
    }

    /* Buttons */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }

    /* Footer */
    footer {
        padding: 60px 0 0;
        text-align: center;
    }

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

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem !important;
    }

    .section-title {
        font-size: 1.7rem !important;
    }

    .logo img {
        height: 32px !important;
    }

    header nav {
        min-height: 70px !important;
    }
}

/* --- Modern Company Profile + Catalog Refresh (v43) --- */
:root {
    --primary-color: #102033;
    --secondary-color: #172a42;
    --accent-color: #18b6a4;
    --accent-hover: #0f9f90;
    --warm-accent: #f59e0b;
    --success-color: #16a34a;
    --text-main: #243246;
    --text-muted: #66758a;
    --bg-light: #f5f8fb;
    --surface-soft: #eef6f7;
    --border-soft: #dce6ee;
    --shadow-soft: 0 14px 34px rgba(16, 32, 51, 0.08);
    --shadow-card: 0 10px 24px rgba(16, 32, 51, 0.07);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
}

body {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbfc 46%, #ffffff 100%);
    color: var(--text-main);
}

.container {
    max-width: 1180px;
}

section,
.full-width-section {
    padding: 88px 0;
}

header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 230, 238, 0.9);
    box-shadow: 0 6px 24px rgba(16, 32, 51, 0.04);
}


.top-header {
    background: #f7fafc;
    border-bottom: 1px solid var(--border-soft);
}

.top-contact a {
    color: #526174;
}

.logo img {
    height: 42px;
}

.nav-links {
    gap: 2rem;
}

.nav-links a {
    color: #23344a;
    font-size: 0.93rem;
    letter-spacing: 0;
    padding: 8px 2px;
    position: relative;
}

.nav-links > li:not(.wa-nav-item) > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-links > li:not(.wa-nav-item) > a:hover::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    width: min(520px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 2300;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 18px;
}

.nav-dropdown-menu a {
    display: flex !important;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
    padding: 12px !important;
    border-radius: 12px;
    color: #0f172a !important;
    text-decoration: none;
    transition: 0.18s ease;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.nav-dropdown-menu a > i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex: 0 0 34px;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 0.95rem;
}

.nav-dropdown-menu span {
    min-width: 0;
}

.nav-dropdown-menu strong,
.nav-dropdown-menu small {
    display: block;
}

.nav-dropdown-menu strong {
    color: #0f172a;
    font-size: 0.88rem;
    line-height: 1.25;
    margin-bottom: 3px;
}

.nav-dropdown-menu small {
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-dropdown-overview {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
}

.wa-nav-item a {
    background: #18b76f;
    box-shadow: 0 10px 22px rgba(24, 183, 111, 0.22);
}

.wa-nav-item a:hover {
    background: #0f9f5d;
    box-shadow: 0 12px 26px rgba(24, 183, 111, 0.28);
}

.hero,
#nusa-hero {
    min-height: 72vh !important;
    background: #102033;
}

.hero-overlay,
#nusa-hero .nusa-slide > div {
    background:
        linear-gradient(90deg, rgba(16, 32, 51, 0.86) 0%, rgba(16, 32, 51, 0.62) 48%, rgba(16, 32, 51, 0.42) 100%) !important;
}

.hero .container {
    text-align: left !important;
}

.hero h1 {
    max-width: 820px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28) !important;
}

.hero p {
    max-width: 720px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

.section-title {
    color: #13243a;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 46px;
}

.section-light {
    background: #f6f9fb;
}

.section-white {
    background: #ffffff;
}

.section-dark {
    background: linear-gradient(135deg, #102033 0%, #12364a 56%, #0d2236 100%);
}

#custom-products,
#team-section {
    background: linear-gradient(-45deg, #102033, #12364a, #0f4a55, #17324a, #102033);
    background-size: 300% 300%;
}

#solution-products {
    background: linear-gradient(-45deg, #0f766e, #102033, #12738a, #19527a, #0f766e);
    background-size: 300% 300%;
}

.card,
.product-showcase-card,
.highlight-card,
.blog-card,
.client-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
}

.card {
    background: #ffffff;
}

.card:hover,
.product-showcase-card:hover,
.blog-card:hover,
.client-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 182, 164, 0.45);
    box-shadow: var(--shadow-soft);
}

.card-img,
.product-img-wrapper,
.highlight-card .card-img,
.blog-card .card-img {
    background: #eef3f7;
}

.product-showcase-card {
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-img-wrapper {
    height: 190px;
}

.product-img-wrapper img,
.card-img img,
.highlight-card .card-img img,
.blog-card .card-img img {
    transition: transform 0.55s ease, filter 0.3s ease;
}

.product-showcase-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-content {
    padding: 22px;
}

.product-content h3,
.card-body h3,
.highlight-card h3,
.blog-card h3 {
    color: #13243a;
    font-weight: 800;
    letter-spacing: 0;
}

.product-content p,
.card-body p,
.blog-card p {
    color: var(--text-muted);
}

.product-meta-footer {
    border-top: 1px solid var(--border-soft);
    gap: 14px;
}

.product-price-tag,
.highlight-card .price-tag {
    color: #0f766e;
    font-size: 1rem;
    line-height: 1.35;
}

.btn {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 800;
    letter-spacing: 0;
    min-height: 46px;
}

.btn-sm {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 0.86rem;
}

.btn-primary {
    background: #102033;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(16, 32, 51, 0.16);
}

.btn-primary:hover {
    background: #18344f;
    box-shadow: 0 12px 26px rgba(16, 32, 51, 0.22);
}

.btn-accent {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(24, 182, 164, 0.2);
}

.btn-accent:hover {
    background: var(--accent-hover);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(24, 182, 164, 0.28);
}

.btn-outline,
.btn-white-outline {
    border-width: 1px;
    box-shadow: none;
}

.scroll-track {
    gap: 22px;
    padding: 16px 4px 36px;
}

.scroll-track > * {
    flex-basis: 310px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.12);
}

.nav-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
}

.about-pillars {
    gap: 18px;
}

.pillar-item.card {
    border-left: 4px solid var(--accent-color);
}

.pillar-icon {
    background: var(--surface-soft);
    color: var(--accent-color);
    border-radius: 10px;
}

.team-card {
    border-radius: var(--radius-md);
}

.team-img-wrapper {
    border-color: rgba(255, 255, 255, 0.22);
}

.client-card {
    min-width: 220px;
    border-radius: var(--radius-md);
}

.client-logo-wrapper {
    background: #ffffff;
    border: 1px solid #edf2f6;
}

.client-name {
    color: #13243a;
}

.client-web-link {
    color: #0f766e;
    background: var(--surface-soft);
}

.client-web-link:hover {
    background: var(--accent-color);
}

.contact-form-card,
.contact-item-card,
.builder-card,
.modal-content {
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border-soft) !important;
    box-shadow: var(--shadow-soft) !important;
}

.contact-item-card {
    background: #f7fafc !important;
}

input,
textarea,
select,
.picker-search-input {
    border-radius: 10px !important;
    border: 1px solid var(--border-soft) !important;
    background: #ffffff !important;
    color: var(--text-main);
}

input:focus,
textarea:focus,
select:focus,
.picker-search-input:focus {
    outline: none;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 4px rgba(24, 182, 164, 0.12);
}

.catalog-tabs-wrapper {
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid var(--border-soft) !important;
}

.catalog-tabs-inner {
    background: #edf5f6 !important;
    border-color: var(--border-soft) !important;
    border-radius: 12px !important;
}

.catalog-tab {
    border-radius: 9px !important;
}

.catalog-tab.active {
    background: var(--accent-color) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(24, 182, 164, 0.22) !important;
}

.builder-visual {
    background: linear-gradient(135deg, #102033, #0f4a55) !important;
}

.builder-badge {
    background: var(--surface-soft) !important;
    color: #0f766e !important;
}

.fab-trigger {
    background: #18b76f !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(24, 183, 111, 0.28) !important;
}

footer {
    background: #0d1b2d;
}

.footer-grid {
    gap: 50px;
}

.footer-links a,
footer p,
footer span {
    color: #b3c0ce;
}

.footer-links a:hover,
.contact-item i,
.footer-col h4 {
    color: #7dd3c7;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
    .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-links > li:not(.wa-nav-item) > a::after {
        display: none;
    }

    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-dropdown-menu {
        position: static;
        width: min(100%, 520px);
        max-height: 42vh;
        overflow-y: auto;
        grid-template-columns: 1fr;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        padding: 10px;
        box-shadow: none;
        background: #f8fafc;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        text-align: left;
    }

    .nav-dropdown-menu strong {
        font-size: 0.86rem;
    }

    .nav-dropdown-menu small {
        font-size: 0.74rem;
    }
}

@media (max-width: 768px) {
    section,
    .full-width-section {
        padding: 58px 0;
    }

    .hero,
    #nusa-hero {
        min-height: 560px !important;
        padding: 96px 0 64px !important;
    }

    .hero .container {
        text-align: center !important;
    }

    .hero h1,
    .hero p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-overlay,
    #nusa-hero .nusa-slide > div {
        background: rgba(16, 32, 51, 0.68) !important;
    }

    .scroll-track > * {
        flex-basis: min(82vw, 320px);
    }

    .product-img-wrapper {
        height: 180px;
    }

    .contact-form-card,
    .contact-item-card,
    .builder-card,
    .modal-content {
        border-radius: 14px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .top-contact a {
        font-size: 0.7rem;
    }

    .btn {
        min-height: 44px;
        padding: 11px 18px;
    }

    .product-content,
    .card-body,
    .highlight-card .card-body {
        padding: 18px;
    }
}

/* --- Text Hierarchy & Contrast Polish (v44) --- */
body {
    font-size: 16px;
    line-height: 1.68;
    color: #2d3a4c;
}

p,
li,
input,
textarea,
select,
button {
    letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
    color: #122238;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    line-height: 1.16;
}

h3 {
    font-size: clamp(1.08rem, 1.6vw, 1.32rem);
    line-height: 1.28;
}

h4 {
    font-size: 1rem;
    line-height: 1.35;
}

.hero h1 {
    font-size: clamp(2.35rem, 5.4vw, 4.1rem) !important;
    line-height: 1.08 !important;
    max-width: 860px;
}

.hero p {
    font-size: clamp(1.02rem, 1.45vw, 1.2rem) !important;
    line-height: 1.72 !important;
    max-width: 760px;
}

.section-title {
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    line-height: 1.16;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
    line-height: 1.72;
    max-width: 720px;
    color: #627084;
}

.card-body h3,
.product-content h3,
.highlight-card h3,
.blog-card h3,
.team-card h3 {
    font-size: 1.12rem;
    line-height: 1.34;
    min-height: auto;
    margin-bottom: 10px;
}

.card-body p,
.product-content p,
.highlight-card p,
.blog-card p,
.team-bio {
    font-size: 0.93rem;
    line-height: 1.62;
    color: #66758a;
}

.product-content h3,
.card-body h3,
.blog-card h3,
.client-name,
.builder-title-text,
.picker-item-name {
    color: #14253a;
}

.product-price-tag,
.highlight-card .price-tag,
.picker-item-price,
.builder-item-price {
    color: #0f766e;
    font-weight: 800;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
#custom-products h1,
#custom-products h2,
#custom-products h3,
#solution-products h1,
#solution-products h2,
#solution-products h3,
#team-section h1,
#team-section h2,
#team-section h3 {
    color: #ffffff !important;
}

.section-dark p,
#custom-products p,
#solution-products p,
#team-section p,
.highlight-card p,
#team-section .team-bio {
    color: #d5dee8 !important;
}

.highlight-card .price-tag,
#solution-products .price-tag {
    color: #7dd3c7 !important;
}

.section-dark .card {
    color: #ffffff;
}

.section-dark .card p {
    color: #d5dee8 !important;
}

.top-contact a {
    font-size: 0.78rem;
    line-height: 1.35;
}

.nav-links a {
    font-size: 0.92rem;
    line-height: 1.2;
}

.btn {
    font-size: 0.92rem;
    line-height: 1.15;
    white-space: normal;
}

.btn-sm {
    font-size: 0.84rem;
}

.catalog-tab {
    font-size: 0.92rem;
    line-height: 1.2;
}

.category-group h2,
#catalog h2 {
    line-height: 1.2;
}

.contact-item-card h4,
label,
.picker-category-title {
    color: #536277 !important;
    font-size: 0.78rem !important;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

.contact-item-card p {
    color: #14253a !important;
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-form-card h2 {
    font-size: clamp(1.55rem, 2.6vw, 2rem);
}

input,
textarea,
select {
    font-size: 0.95rem;
    line-height: 1.45;
}

footer {
    font-size: 0.94rem;
}

.footer-col h4 {
    font-size: 1rem;
    line-height: 1.25;
}

.footer-links a,
footer p,
footer span {
    line-height: 1.65;
}

.footer-bottom {
    font-size: 0.86rem;
}

@media (max-width: 768px) {
    body {
        font-size: 15.5px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.7rem) !important;
        line-height: 1.12 !important;
    }

    .hero p {
        font-size: 0.98rem !important;
        line-height: 1.62 !important;
        padding: 0 !important;
    }

    .section-title {
        font-size: clamp(1.55rem, 7vw, 2.05rem) !important;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.96rem;
        line-height: 1.62;
        margin-bottom: 32px;
    }

    .card-body h3,
    .product-content h3,
    .highlight-card h3,
    .blog-card h3,
    .team-card h3 {
        font-size: 1.05rem;
    }

    .card-body p,
    .product-content p,
    .highlight-card p,
    .blog-card p,
    .team-bio {
        font-size: 0.9rem;
    }

    .catalog-tab {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem !important;
    }

    .hero p {
        font-size: 0.94rem !important;
    }

    .section-title {
        font-size: 1.55rem !important;
    }

    .btn {
        font-size: 0.88rem;
    }

    .top-contact {
        gap: 6px 14px;
    }
}

/* --- Section Text Centering & Vertical Space Tune (v45) --- */
section,
.full-width-section {
    padding-top: 104px;
    padding-bottom: 108px;
}

.hero,
#nusa-hero {
    min-height: 78vh !important;
}

.hero .container {
    text-align: center !important;
}

.hero h1,
.hero p {
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero h1 {
    max-width: 980px;
}

.hero p {
    max-width: 860px;
}

section > .container > h1,
section > .container > h2,
section > .container > .section-title,
.full-width-section > .container > h1,
.full-width-section > .container > h2,
.full-width-section > .container > .section-title {
    text-align: center !important;
    max-width: 920px;
    margin-left: auto !important;
    margin-right: auto !important;
}

section > .container > p,
section > .container > .section-subtitle,
.full-width-section > .container > p,
.full-width-section > .container > .section-subtitle {
    text-align: center !important;
    max-width: 820px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 56px;
}

.section-title {
    margin-bottom: 18px;
}

.section-subtitle {
    max-width: 820px;
    margin-bottom: 56px;
}

.section-light .section-subtitle,
.section-white .section-subtitle {
    color: #5f6f83;
}

@media (max-width: 768px) {
    section,
    .full-width-section {
        padding-top: 72px;
        padding-bottom: 76px;
    }

    .hero,
    #nusa-hero {
        min-height: 600px !important;
    }

    section > .container > p,
    section > .container > .section-subtitle,
    .section-subtitle {
        margin-bottom: 38px;
    }
}

@media (max-width: 480px) {
    section,
    .full-width-section {
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .hero,
    #nusa-hero {
        min-height: 540px !important;
    }
}

/* --- Hero Text Clearance Fix (v46) --- */
.hero,
#nusa-hero {
    min-height: 720px !important;
}

.hero {
    padding-top: 150px !important;
    padding-bottom: 120px !important;
}

#nusa-hero {
    height: 86vh !important;
}

#nusa-hero > div[style*="position: absolute"] {
    padding-top: 130px !important;
    padding-bottom: 110px !important;
    box-sizing: border-box;
}

.hero h1 {
    margin-bottom: 24px !important;
}

.hero p {
    margin-bottom: 38px !important;
}

@media (max-width: 768px) {
    .hero,
    #nusa-hero {
        min-height: 680px !important;
    }

    .hero {
        padding-top: 135px !important;
        padding-bottom: 92px !important;
    }

    #nusa-hero {
        height: auto !important;
    }

    #nusa-hero > div[style*="position: absolute"] {
        padding-top: 125px !important;
        padding-bottom: 86px !important;
    }
}

@media (max-width: 480px) {
    .hero,
    #nusa-hero {
        min-height: 640px !important;
    }

    .hero {
        padding-top: 124px !important;
        padding-bottom: 78px !important;
    }

    #nusa-hero > div[style*="position: absolute"] {
        padding-top: 116px !important;
        padding-bottom: 76px !important;
    }
}

/* --- Fixed Card Sizing System (v47) --- */
:root {
    --card-width: 310px;
    --card-img-height: 188px;
    --card-body-min: 190px;
    --card-footer-min: 92px;
}

.scroll-track > *,
.product-showcase-card,
.highlight-card,
.blog-card,
.team-card,
.client-card {
    width: var(--card-width);
}

.scroll-track > * {
    flex: 0 0 var(--card-width) !important;
}

.modern-grid {
    align-items: stretch;
}

.modern-grid > .card,
.modern-grid > .product-showcase-card,
.modern-grid > .blog-card {
    width: 100%;
}

.card,
.product-showcase-card,
.highlight-card,
.blog-card,
.team-card,
.client-card {
    min-height: 430px;
    height: 100%;
}

.product-showcase-card,
.highlight-card,
.blog-card,
.card {
    display: flex;
    flex-direction: column;
}

.card-img,
.product-img-wrapper,
.highlight-card .card-img,
.blog-card .card-img {
    height: var(--card-img-height) !important;
    min-height: var(--card-img-height);
    flex: 0 0 var(--card-img-height);
}

.card-body,
.product-content,
.highlight-card .card-body,
.blog-card .card-body {
    min-height: var(--card-body-min);
    flex: 1 1 auto;
}

.card-body h3,
.product-content h3,
.highlight-card h3,
.blog-card h3 {
    min-height: 3rem !important;
    max-height: 3rem;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.card-body p,
.product-content p,
.highlight-card p,
.blog-card p {
    min-height: 4.55rem !important;
    max-height: 4.55rem;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.card-footer,
.product-meta-footer,
.highlight-card .card-footer,
.blog-card .card-footer {
    min-height: var(--card-footer-min);
    margin-top: auto !important;
}

.product-meta-footer .btn,
.highlight-card .card-footer .btn,
.blog-card .card-footer .btn,
.card-footer .btn {
    width: 100%;
}

.team-card {
    min-height: 390px;
    width: var(--card-width);
}

.team-img-wrapper {
    width: 132px;
    height: 132px;
    flex: 0 0 132px;
}

.team-card h3 {
    min-height: 1.45rem !important;
    max-height: 1.45rem;
    -webkit-line-clamp: 1 !important;
}

.team-position {
    min-height: 1.25rem;
    max-height: 1.25rem;
    overflow: hidden;
}

.team-bio {
    min-height: 4.35rem !important;
    max-height: 4.35rem;
    -webkit-line-clamp: 3 !important;
}

.client-card {
    min-height: 300px;
    width: 240px;
    flex-basis: 240px !important;
    justify-content: flex-start;
}

.client-logo-wrapper {
    height: 104px;
    min-height: 104px;
    flex: 0 0 104px;
}

.client-name {
    min-height: 3rem;
    max-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.client-meta p {
    min-height: 4.35rem;
    max-height: 4.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.contact-item-card {
    min-height: auto;
}

.pillar-item.card {
    min-height: 250px;
}

@media (max-width: 768px) {
    :root {
        --card-width: min(82vw, 320px);
        --card-img-height: 178px;
        --card-body-min: 178px;
        --card-footer-min: 88px;
    }

    .modern-grid > .card,
    .modern-grid > .product-showcase-card,
    .modern-grid > .blog-card {
        width: 100%;
        min-height: 410px;
    }

    .client-card {
        width: 220px;
        flex-basis: 220px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --card-width: min(86vw, 300px);
    }
}

/* --- Client Section Cleanup (v48) --- */
#client-track {
    gap: 18px !important;
    align-items: stretch;
    padding-top: 8px;
}

#client-track .client-card {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    flex: 0 0 260px !important;
    min-height: 286px !important;
    padding: 22px 18px !important;
    border-radius: 14px !important;
    background: #ffffff;
    border: 1px solid #dfe8ef !important;
    box-shadow: 0 8px 22px rgba(16, 32, 51, 0.06) !important;
    justify-content: flex-start;
}

#client-track .client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 32, 51, 0.1) !important;
}

#client-track .client-logo-wrapper {
    width: 100%;
    height: 96px !important;
    min-height: 96px !important;
    flex: 0 0 96px !important;
    margin: 0 0 18px !important;
    padding: 16px;
    border-radius: 12px;
    background: #f8fbfc;
    border: 1px solid #edf3f6;
}

#client-track .client-logo-img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

#client-track .client-logo-icon {
    color: #9aacbd;
    font-size: 2.1rem;
}

#client-track .client-meta {
    flex: 1;
    gap: 8px;
    justify-content: flex-start;
}

#client-track .client-name {
    width: 100%;
    min-height: 2.8rem !important;
    max-height: 2.8rem !important;
    color: #14253a;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#client-track .client-meta p {
    width: 100%;
    min-height: 2.8rem !important;
    max-height: 2.8rem !important;
    margin: 0 !important;
    color: #66758a !important;
    font-size: 0.86rem !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#client-track .client-web-link {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 9px 12px;
    border-radius: 10px;
    background: #eef7f6;
    color: #0f766e;
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: nowrap;
}

#client-track .client-web-link:hover {
    background: var(--accent-color);
    color: #ffffff;
}

@media (max-width: 768px) {
    #client-track {
        gap: 14px !important;
    }

    #client-track .client-card {
        width: 230px !important;
        min-width: 230px !important;
        max-width: 230px !important;
        flex-basis: 230px !important;
        min-height: 274px !important;
        padding: 18px 14px !important;
    }
}

/* --- Transparent Client Logo Frame (v50) --- */
#client-track .client-logo-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 8px !important;
}

/* --- Remove Inner Client Logo Box Shape (v51) --- */
#client-track .client-logo-wrapper {
    width: 100% !important;
    height: 74px !important;
    min-height: 74px !important;
    flex: 0 0 74px !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

#client-track .client-logo-img {
    max-width: 180px !important;
    max-height: 70px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* --- Header WhatsApp Button Fit Fix (v52) --- */
header .wa-nav-item a {
    min-height: 38px !important;
    height: 38px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    font-size: 0.86rem !important;
    line-height: 1 !important;
    gap: 7px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

header .wa-nav-item a i {
    font-size: 0.98rem !important;
    line-height: 1 !important;
    opacity: 1 !important;
    flex: 0 0 auto;
}

@media (max-width: 992px) {
    header .wa-nav-item a {
        width: auto !important;
        max-width: min(260px, 86vw) !important;
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 24px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    header .wa-nav-item a {
        height: 42px !important;
        min-height: 42px !important;
        padding: 0 18px !important;
        font-size: 0.92rem !important;
    }
}

/* --- About Company Section Polish (v53) --- */
.about-company-section {
    background: linear-gradient(180deg, #f7fafc 0%, #eef6f7 100%);
}

.about-company-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr) !important;
    gap: 54px !important;
    align-items: stretch !important;
}

.about-company-copy {
    background: #ffffff;
    border: 1px solid #dfe8ef;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.07);
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef7f6;
    color: #0f766e;
    font-size: 0.78rem;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-company-copy h2 {
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    line-height: 1.15;
    margin-bottom: 16px;
    color: #122238;
}

.section-rule {
    width: 72px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 999px;
    margin-bottom: 24px;
}

.about-company-copy p {
    color: #536277 !important;
    font-size: 1.02rem !important;
    line-height: 1.75 !important;
    margin-bottom: 28px !important;
}

.about-company-copy .btn {
    width: fit-content;
}

.about-company-section .about-pillars {
    margin-top: 0;
    height: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.about-company-section .pillar-item.card {
    min-height: 100%;
    padding: 28px 22px !important;
    border: 1px solid #dfe8ef !important;
    border-top: 4px solid var(--accent-color) !important;
    border-left: 1px solid #dfe8ef !important;
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
    text-align: left;
}

.about-company-section .pillar-icon {
    margin: 0 0 18px;
}

.about-company-section .pillar-item h3 {
    color: #122238;
    font-size: 1.02rem;
    margin-bottom: 10px;
}

.about-company-section .pillar-item p {
    color: #627084;
    font-size: 0.92rem;
    line-height: 1.62;
    margin: 0;
}

@media (max-width: 992px) {
    .about-company-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

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

@media (max-width: 768px) {
    .about-company-copy {
        padding: 28px 22px;
        text-align: center;
        align-items: center;
    }

    .section-rule {
        margin-left: auto;
        margin-right: auto;
    }

    .about-company-copy .btn {
        width: 100%;
    }

    .about-company-section .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-company-section .pillar-item.card {
        text-align: center;
        min-height: auto;
    }

    .about-company-section .pillar-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Compact Professional About Section (v54) --- */
.about-company-section {
    background: #ffffff;
    padding-top: 82px;
    padding-bottom: 84px;
}

.about-company-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
    gap: 44px !important;
    align-items: center !important;
}

.about-company-copy {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: block;
}

.about-company-copy .section-kicker {
    background: transparent;
    padding: 0;
    margin-bottom: 12px;
    color: #0f766e;
}

.about-company-copy h2 {
    max-width: 520px;
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
    margin-bottom: 14px;
}

.about-company-copy .section-rule {
    width: 54px;
    height: 3px;
    margin-bottom: 20px;
}

.about-company-copy p {
    max-width: 560px;
    font-size: 0.98rem !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
}

.about-company-section .about-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0;
}

.about-company-section .pillar-item.card {
    min-height: auto !important;
    padding: 18px 20px !important;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: start;
    text-align: left;
    border: 1px solid #e2eaf0 !important;
    border-left: 3px solid var(--accent-color) !important;
    border-top: 1px solid #e2eaf0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(16, 32, 51, 0.045) !important;
}

.about-company-section .pillar-icon {
    width: 46px;
    height: 46px;
    margin: 0 !important;
    border-radius: 10px;
    font-size: 1.1rem;
}

.about-company-section .pillar-item h3 {
    margin: 0 0 5px;
    font-size: 0.98rem;
}

.about-company-section .pillar-item p {
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .about-company-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

@media (max-width: 768px) {
    .about-company-section {
        padding-top: 64px;
        padding-bottom: 66px;
    }

    .about-company-copy {
        text-align: center;
    }

    .about-company-copy h2,
    .about-company-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-company-copy .section-rule {
        margin-left: auto;
        margin-right: auto;
    }

    .about-company-copy .btn {
        width: 100%;
    }

    .about-company-section .pillar-item.card {
        grid-template-columns: 42px 1fr;
        gap: 14px;
        text-align: left;
    }

    .about-company-section .pillar-icon {
        width: 42px;
        height: 42px;
    }
}

/* --- Natural About Layout (v55) --- */
.about-company-section {
    background: #f7fafc;
    padding-top: 86px;
    padding-bottom: 88px;
}

.about-company-head {
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.about-company-head .section-kicker {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
    background: #eef7f6;
    padding: 7px 13px;
}

.about-company-head h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    font-size: clamp(1.9rem, 3.1vw, 2.55rem);
    line-height: 1.16;
}

.about-company-head p {
    max-width: 780px;
    margin: 0 auto 26px;
    color: #5f6f83;
    font-size: 1rem;
    line-height: 1.72;
}

.about-company-head .btn {
    width: auto;
}

.about-company-section > .container > .about-pillars {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin: 0 !important;
}

.about-company-section > .container > .about-pillars > .pillar-item.card {
    min-height: 230px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 26px !important;
    border: 1px solid #dfe8ef !important;
    border-radius: 14px !important;
    border-top: 3px solid var(--accent-color) !important;
    border-left: 1px solid #dfe8ef !important;
    background: #ffffff !important;
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.055) !important;
}

.about-company-section > .container > .about-pillars .pillar-icon {
    width: 52px;
    height: 52px;
    margin: 0 0 20px !important;
    border-radius: 12px;
}

.about-company-section > .container > .about-pillars h3 {
    margin: 0 0 10px;
    color: #122238;
    font-size: 1.05rem;
}

.about-company-section > .container > .about-pillars p {
    margin: 0;
    color: #627084;
    font-size: 0.92rem;
    line-height: 1.62;
}

@media (max-width: 900px) {
    .about-company-section > .container > .about-pillars {
        grid-template-columns: 1fr !important;
    }

    .about-company-section > .container > .about-pillars > .pillar-item.card {
        min-height: auto !important;
    }
}

@media (max-width: 768px) {
    .about-company-section {
        padding-top: 68px;
        padding-bottom: 70px;
    }

    .about-company-head {
        margin-bottom: 30px;
    }

    .about-company-head .btn {
        width: 100%;
    }

    .about-company-section > .container > .about-pillars > .pillar-item.card {
        padding: 22px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .about-company-section > .container > .about-pillars .pillar-icon {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* --- Smaller About Section Scale (v56) --- */
.about-company-section {
    padding-top: 68px !important;
    padding-bottom: 70px !important;
}

.about-company-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.about-company-head .section-kicker {
    font-size: 0.7rem;
    padding: 6px 10px;
    margin-bottom: 10px;
}

.about-company-head h2 {
    max-width: 680px;
    font-size: clamp(1.65rem, 2.45vw, 2.15rem);
    margin-bottom: 12px;
}

.about-company-head p {
    max-width: 700px;
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.about-company-head .btn {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 0.86rem;
}

.about-company-section > .container > .about-pillars {
    gap: 14px !important;
    max-width: 980px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.about-company-section > .container > .about-pillars > .pillar-item.card {
    min-height: 190px !important;
    padding: 20px !important;
    border-radius: 12px !important;
}

.about-company-section > .container > .about-pillars .pillar-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px !important;
    font-size: 1rem;
}

.about-company-section > .container > .about-pillars h3 {
    font-size: 0.98rem;
    margin-bottom: 7px;
}

.about-company-section > .container > .about-pillars p {
    font-size: 0.86rem;
    line-height: 1.52;
}

@media (max-width: 768px) {
    .about-company-section {
        padding-top: 56px !important;
        padding-bottom: 58px !important;
    }

    .about-company-section > .container > .about-pillars > .pillar-item.card {
        padding: 18px !important;
    }
}

/* --- Infrastructure Section (v57) --- */
#infrastructure-products {
    background: linear-gradient(-45deg, #0b1324, #12364a, #0f766e, #155e75, #0b1324);
    background-size: 320% 320%;
    animation: techGradient 11s ease infinite;
    position: relative;
    overflow: hidden;
}

#infrastructure-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(125, 211, 199, 0.18), transparent 28%),
        radial-gradient(circle at 84% 72%, rgba(245, 158, 11, 0.13), transparent 32%);
    pointer-events: none;
}

#infrastructure-products .container {
    position: relative;
    z-index: 2;
}

#infrastructure-products .section-title,
#infrastructure-products .highlight-card h3 {
    color: #ffffff !important;
}

#infrastructure-products .section-subtitle,
#infrastructure-products .highlight-card p {
    color: #d5dee8 !important;
}

#infrastructure-products .infrastructure-card {
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#infrastructure-products .infrastructure-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(125, 211, 199, 0.65);
    box-shadow: 0 24px 46px rgba(15, 118, 110, 0.24);
}

#infrastructure-products .price-tag {
    color: #7dd3c7 !important;
}

/* --- Security Section (v58) --- */
#security-products {
    background: linear-gradient(-45deg, #111827, #3b0764, #7f1d1d, #0f172a, #111827);
    background-size: 320% 320%;
    animation: techGradient 12s ease infinite;
    position: relative;
    overflow: hidden;
}

#security-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(248, 113, 113, 0.2), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(168, 85, 247, 0.18), transparent 32%);
    pointer-events: none;
}

#security-products .container {
    position: relative;
    z-index: 2;
}

#security-products .section-title,
#security-products .highlight-card h3 {
    color: #ffffff !important;
}

#security-products .section-subtitle,
#security-products .highlight-card p {
    color: #f1f5f9 !important;
}

#security-products .security-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#security-products .security-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(248, 113, 113, 0.68);
    box-shadow: 0 24px 48px rgba(127, 29, 29, 0.25);
}

#security-products .price-tag {
    color: #fca5a5 !important;
}

/* --- Software Section (v59) --- */
#software-products {
    background: linear-gradient(-45deg, #0f172a, #1e3a8a, #0369a1, #0f766e, #0f172a);
    background-size: 320% 320%;
    animation: techGradient 12s ease infinite;
    position: relative;
    overflow: hidden;
}

#software-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(56, 189, 248, 0.2), transparent 28%),
        radial-gradient(circle at 82% 74%, rgba(45, 212, 191, 0.16), transparent 32%);
    pointer-events: none;
}

#software-products .container {
    position: relative;
    z-index: 2;
}

#software-products .section-title,
#software-products .highlight-card h3 {
    color: #ffffff !important;
}

#software-products .section-subtitle,
#software-products .highlight-card p {
    color: #e6f3fb !important;
}

#software-products .software-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#software-products .software-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(56, 189, 248, 0.68);
    box-shadow: 0 24px 48px rgba(3, 105, 161, 0.25);
}

#software-products .price-tag {
    color: #7dd3fc !important;
}

/* --- Compact Why Us Cards (v60) --- */
.why-us-section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

.why-us-section .modern-grid {
    gap: 18px !important;
    align-items: stretch;
}

.why-us-section .why-card {
    min-height: 0 !important;
    padding: 24px 24px !important;
    justify-content: flex-start;
}

.why-us-section .why-card i {
    font-size: 1.8rem !important;
    margin-bottom: 12px !important;
}

.why-us-section .why-card h3 {
    margin-bottom: 8px !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
}

.why-us-section .why-card p {
    margin: 0 !important;
    color: #d5dee8 !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .why-us-section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .why-us-section .why-card {
        padding: 20px !important;
    }
}

/* --- Hero Title Width and Size Override (v61) --- */
#nusa-hero .container {
    width: min(96vw, 1440px) !important;
    max-width: none !important;
}

#nusa-hero .hero-title-text {
    max-width: 1360px !important;
    font-size: clamp(1.58rem, 3vw, 2.32rem) !important;
    line-height: 1.14 !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    #nusa-hero .hero-title-text {
        font-size: clamp(1.35rem, 7vw, 1.85rem) !important;
        max-width: 94vw !important;
    }
}

/* --- Professional Blog Pages (v69) --- */
.blog-hero .container,
.blog-post-hero .container {
    max-width: 980px;
    text-align: center;
}

.blog-kicker,
.post-back-link,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #7dd3c7;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.post-back-link {
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 12px;
    border-radius: 999px;
}

.blog-index-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.blog-section-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.blog-section-head h2 {
    margin: 0 0 10px;
    color: #102033;
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    line-height: 1.2;
}

.blog-section-head p {
    margin: 0;
    color: #66758a;
    line-height: 1.65;
}

.blog-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-card-pro {
    display: flex;
    flex-direction: column;
    min-height: 450px;
    background: #ffffff;
    border: 1px solid #dce6ee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card-pro:hover {
    transform: translateY(-5px);
    border-color: rgba(24, 182, 164, 0.45);
    box-shadow: 0 22px 44px rgba(16, 32, 51, 0.12);
}

.blog-card-media {
    position: relative;
    display: block;
    height: 210px;
    background: #eef6f7;
    overflow: hidden;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card-pro:hover .blog-card-media img {
    transform: scale(1.04);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18b6a4;
    font-size: 2.5rem;
}

.blog-date-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(16, 32, 51, 0.92);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.76rem;
    font-weight: 800;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.blog-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
    color: #66758a;
    font-size: 0.78rem;
    font-weight: 700;
}

.blog-meta-line i {
    color: #18b6a4;
}

.blog-card-content h3 {
    margin: 0 0 10px;
    min-height: 3.15rem;
    font-size: 1.18rem;
    line-height: 1.34;
}

.blog-card-content h3 a {
    color: #102033;
    text-decoration: none;
}

.blog-card-content p {
    margin: 0 0 18px;
    color: #66758a;
    font-size: 0.92rem;
    line-height: 1.62;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #0f9f90;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.blog-empty-state {
    grid-column: 1 / -1;
    padding: 48px 24px;
    text-align: center;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
}

.blog-empty-state i {
    color: #18b6a4;
    font-size: 2rem;
    margin-bottom: 12px;
}

.blog-post-hero h1 {
    max-width: 960px;
    margin: 18px auto 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.12;
}

.post-meta-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.post-meta-pills span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #eef6f7;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.84rem;
    font-weight: 700;
}

.post-hero-summary {
    max-width: 820px !important;
    margin-top: 16px !important;
    color: #d5dee8 !important;
}

.post-detail-section {
    padding: 76px 0 88px;
    background: #f5f8fb;
}

.post-shell {
    max-width: 1120px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dce6ee;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
    overflow: hidden;
}

.post-cover {
    height: min(430px, 48vw);
    margin: 0;
    background: #eef6f7;
}

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

.post-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 38px;
    padding: 44px;
}

.post-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.post-side-box,
.post-share-box {
    padding: 18px;
    border-radius: 12px;
    background: #f5f8fb;
    border: 1px solid #dce6ee;
}

.post-side-box span,
.post-share-box span {
    display: block;
    margin-bottom: 6px;
    color: #66758a;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.post-side-box strong {
    color: #102033;
    line-height: 1.35;
}

.post-share-box .share-links {
    display: flex;
    gap: 8px;
}

.post-share-box .share-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    background: #102033;
    text-decoration: none;
}

.post-body {
    color: #243246;
    font-size: 1.04rem;
    line-height: 1.86;
}

.post-body p {
    margin: 0 0 22px;
}

.post-body h2,
.post-body h3 {
    margin: 34px 0 14px;
    color: #102033;
    line-height: 1.25;
}

.post-body a {
    color: #0f9f90;
    font-weight: 700;
}

.post-footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 0 44px 44px;
}

@media (max-width: 980px) {
    .blog-grid-pro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .post-layout {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .post-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .blog-grid-pro {
        grid-template-columns: 1fr;
    }

    .blog-card-pro {
        min-height: auto;
    }

    .blog-card-media {
        height: 198px;
    }

    .post-detail-section {
        padding: 42px 0 56px;
    }

    .post-cover {
        height: 230px;
    }

    .post-layout {
        padding: 24px;
    }

    .post-side {
        grid-template-columns: 1fr;
    }

    .post-footer-nav {
        flex-direction: column;
        padding: 0 24px 28px;
    }
}

/* --- Grouped Featured Product Section (v70) --- */
.grouped-featured-section {
    background: linear-gradient(-45deg, #0f172a, #12364a, #3b0764, #0f766e, #0f172a);
    background-size: 340% 340%;
    animation: techGradient 13s ease infinite;
    position: relative;
    overflow: hidden;
}

.grouped-featured-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(125, 211, 199, 0.16), transparent 28%),
        radial-gradient(circle at 86% 70%, rgba(56, 189, 248, 0.14), transparent 30%);
    pointer-events: none;
}

.grouped-featured-section .container {
    position: relative;
    z-index: 2;
}

.grouped-featured-section .section-title,
.grouped-featured-section .section-subtitle {
    color: #ffffff !important;
}

.grouped-featured-section .section-subtitle {
    color: #d5dee8 !important;
}

.grouped-featured-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 4px 4px 16px;
    scrollbar-width: thin;
}

.featured-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 24px;
}

.featured-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #e5eef7;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-tab:hover,
.featured-tab.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #102033;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.featured-group-panels {
    max-width: 1120px;
    margin: 0 auto;
}

.featured-group-card {
    min-height: 0;
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    scroll-snap-align: start;
}

.featured-group-card.active {
    display: flex;
}

.featured-group-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.featured-group-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #7dd3c7;
    flex: 0 0 42px;
}

.featured-group-head h3 {
    margin: 0 0 2px;
    color: #ffffff !important;
    font-size: 1.02rem;
    line-height: 1.22;
}

.featured-group-head p {
    margin: 0;
    color: #d5dee8 !important;
    font-size: 0.78rem;
    line-height: 1.3;
}

.featured-group-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
    scrollbar-width: thin;
}

.grouped-product-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.grouped-product-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(125, 211, 199, 0.45);
}

.grouped-product-img {
    width: 100%;
    height: 150px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.grouped-product-img img,
.grouped-product-img .team-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grouped-product-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 12px;
}

.grouped-product-body h3 {
    margin: 0 0 6px;
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grouped-product-body p {
    margin: 0 0 8px;
    color: #d5dee8 !important;
    font-size: 0.84rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grouped-product-body .price-tag {
    color: #7dd3c7 !important;
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: auto;
}

.grouped-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
}

.group-security .featured-group-icon,
.group-security .price-tag {
    color: #fca5a5 !important;
}

.group-software .featured-group-icon,
.group-software .price-tag {
    color: #7dd3fc !important;
}

.group-highlight .featured-group-icon {
    color: #facc15 !important;
}

@media (max-width: 1180px) {
    .featured-group-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .featured-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .featured-tab {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .featured-group-track {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }

    .grouped-product-card {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 11px;
        min-height: auto;
        padding: 10px;
    }

    .grouped-product-img {
        width: 82px;
        height: 94px;
    }

    .grouped-product-body {
        padding-top: 0;
    }

    .grouped-product-body h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .grouped-product-body p {
        font-size: 0.76rem;
        line-height: 1.38;
        -webkit-line-clamp: 2;
        margin-bottom: 6px;
    }

    .grouped-product-body .price-tag,
    .grouped-detail-link {
        font-size: 0.74rem;
    }

    .featured-group-head {
        padding: 14px;
    }

    .featured-group-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .featured-group-head h3 {
        font-size: 0.95rem;
    }

    .featured-group-head p {
        font-size: 0.72rem;
    }
}

@media (max-width: 430px) {
    .featured-tab {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .featured-group-panels {
        margin-left: -6px;
        margin-right: -6px;
    }

    .featured-group-card {
        border-radius: 12px;
    }

    .grouped-product-card {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .grouped-product-img {
        width: 76px;
        height: 86px;
    }
}

/* --- Single Horizontal Featured Slider (v74) --- */
.featured-single-slider {
    position: relative;
}

.featured-tab-panels {
    max-width: 1120px;
    margin: 0 auto;
}

.featured-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
}

.featured-tab-panel.active {
    display: block;
    animation: featuredPanelIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes featuredPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.featured-combined-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px !important;
    padding: 6px 4px 10px;
}

.featured-combined-track::-webkit-scrollbar {
    display: none;
}

.featured-combined-track .grouped-product-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 12px;
    scroll-snap-align: start;
    animation: featuredCardIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.featured-tab-panel.active .grouped-product-card:nth-child(1) { animation-delay: 0.02s; }
.featured-tab-panel.active .grouped-product-card:nth-child(2) { animation-delay: 0.07s; }
.featured-tab-panel.active .grouped-product-card:nth-child(3) { animation-delay: 0.12s; }
.featured-tab-panel.active .grouped-product-card:nth-child(4) { animation-delay: 0.17s; }
.featured-tab-panel.active .grouped-product-card:nth-child(5) { animation-delay: 0.22s; }
.featured-tab-panel.active .grouped-product-card:nth-child(6) { animation-delay: 0.27s; }

@keyframes featuredCardIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Solutions page */
.solutions-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 82px;
    background:
        radial-gradient(circle at 18% 18%, rgba(16, 185, 129, 0.22), transparent 28%),
        linear-gradient(135deg, #07111f 0%, #123042 52%, #0f766e 100%);
    color: #fff;
}

.solutions-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -42% 42%;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(-8deg);
    border-radius: 50%;
}

.solutions-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: end;
}

.solutions-eyebrow,
.section-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.solutions-eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #d1fae5;
    margin-bottom: 18px;
}

.solutions-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.2rem, 4.8vw, 4.6rem);
    line-height: 1.04;
    font-weight: 850;
}

.solutions-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.75;
}

.solutions-hero-panel {
    padding: 26px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.solutions-hero-panel i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0f766e;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.solutions-hero-panel strong,
.solutions-hero-panel span {
    display: block;
}

.solutions-hero-panel strong {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.solutions-hero-panel span {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.solutions-page {
    background: #f8fafc;
    padding: 74px 0 92px;
}

.solutions-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 24px;
}

.section-badge {
    background: #e0f2fe;
    color: #0369a1;
    margin-bottom: 14px;
}

.solutions-intro h2 {
    color: #0f172a;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.12;
    margin: 0;
}

.solutions-intro p {
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

.solution-nav-pills {
    counter-reset: solution-nav;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 34px;
}

.solution-nav-pills a {
    counter-increment: solution-nav;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 14px 14px 14px 52px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    color: #0f172a;
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.3;
    font-weight: 800;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.solution-nav-pills a::before {
    content: counter(solution-nav, decimal-leading-zero);
    position: absolute;
    left: 14px;
    top: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 900;
    transform: translateY(-50%);
}

.solution-nav-pills a:hover {
    border-color: rgba(15, 118, 110, 0.28);
    color: #0f766e;
    box-shadow: 0 18px 34px rgba(15, 118, 110, 0.12);
    transform: translateY(-2px);
}

.solution-story-list {
    display: grid;
    gap: 26px;
}

.solution-story-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    scroll-margin-top: 125px;
}

.solution-story-media {
    min-height: 360px;
    background: linear-gradient(135deg, #e0f2fe, #ecfdf5);
}

.solution-story-media img,
.solution-media-placeholder {
    width: 100%;
    height: 100%;
}

.solution-story-media img {
    display: block;
    object-fit: cover;
}

.solution-media-placeholder {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-media-placeholder i {
    width: 116px;
    height: 116px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    color: #0f766e;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 22px 45px rgba(15, 118, 110, 0.18);
    font-size: 2.6rem;
}

.solution-story-body {
    padding: 34px;
}

.solution-number {
    display: inline-flex;
    margin-bottom: 14px;
    color: #0f766e;
    font-weight: 850;
    font-size: 0.8rem;
}

.solution-story-body h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.15;
}

.solution-story-body h2 a {
    color: inherit;
    text-decoration: none;
}

.solution-story-body h2 a:hover {
    color: #0f766e;
}

.solution-story-body h3 {
    margin: 10px 0 14px;
    color: #2563eb;
    font-size: 1.03rem;
    line-height: 1.45;
}

.solution-story-body > p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

.solution-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 22px 0;
}

.solution-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 650;
}

.solution-benefits i {
    color: #059669;
}

.solution-offer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 24px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.solution-offer small,
.solution-offer strong,
.solution-offer p {
    display: block;
}

.solution-offer small {
    color: #0f766e;
    font-weight: 850;
    margin-bottom: 5px;
}

.solution-offer strong {
    color: #0f172a;
    font-size: 1.03rem;
    margin-bottom: 5px;
}

.solution-offer p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-detail-hero {
    padding: 160px 0 76px;
    background:
        radial-gradient(circle at 80% 18%, rgba(125, 211, 199, 0.2), transparent 30%),
        linear-gradient(135deg, #08111f, #123042 52%, #115e59);
    color: #fff;
    overflow: hidden;
}

.solution-detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
    gap: 46px;
    align-items: center;
}

.solution-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 700;
}

.solution-back-link:hover {
    color: #fff;
}

.solution-detail-copy h1 {
    max-width: 820px;
    margin: 18px 0;
    color: #fff;
    font-size: clamp(2.2rem, 4.8vw, 4.8rem);
    line-height: 1.03;
    font-weight: 850;
}

.solution-detail-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    line-height: 1.7;
}

.solution-detail-media {
    min-height: 360px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #ecfdf5);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.solution-detail-media img,
.solution-detail-media .solution-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.solution-detail-media img {
    display: block;
    object-fit: cover;
}

.solution-detail-page {
    padding: 74px 0 92px;
    background: #f8fafc;
}

.solution-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.solution-article,
.solution-product-box,
.other-solutions-box {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.07);
}

.solution-article {
    padding: 36px;
}

.solution-article h2 {
    margin: 16px 0;
    color: #0f172a;
    font-size: clamp(1.55rem, 2.6vw, 2.4rem);
    line-height: 1.15;
}

.solution-article > p {
    color: #475569;
    font-size: 1.03rem;
    line-height: 1.85;
    margin: 0;
}

.solution-detail-benefits {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #e2e8f0;
}

.solution-detail-benefits h3 {
    color: #0f172a;
    margin: 0 0 16px;
}

.solution-detail-benefits div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.solution-detail-benefits span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-weight: 650;
    line-height: 1.45;
}

.solution-detail-benefits i {
    color: #059669;
    margin-top: 3px;
}

.solution-detail-aside {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.solution-product-box,
.other-solutions-box {
    padding: 24px;
}

.solution-product-box {
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
}

.solution-product-box small {
    display: block;
    color: #0f766e;
    font-weight: 850;
    margin-bottom: 8px;
}

.solution-product-box h3,
.other-solutions-box h3 {
    margin: 0 0 12px;
    color: #0f172a;
    line-height: 1.25;
}

.solution-product-box p {
    color: #475569;
    line-height: 1.65;
    margin: 0 0 20px;
}

.other-solutions-box a {
    display: flex;
    gap: 11px;
    padding: 12px 0;
    color: #0f172a;
    text-decoration: none;
    border-top: 1px solid #e2e8f0;
}

.other-solutions-box a:hover strong {
    color: #0f766e;
}

.other-solutions-box i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ecfdf5;
    color: #0f766e;
    flex: 0 0 34px;
}

.other-solutions-box strong,
.other-solutions-box small {
    display: block;
}

.other-solutions-box strong {
    font-size: 0.92rem;
}

.other-solutions-box small {
    color: #64748b;
    line-height: 1.4;
    font-size: 0.78rem;
}

@media (max-width: 992px) {
    .solutions-hero {
        padding: 138px 0 66px;
    }

    .solutions-hero-inner,
    .solutions-intro,
    .solution-story-card {
        grid-template-columns: 1fr;
    }

    .solutions-hero-panel {
        max-width: 460px;
    }

    .solution-nav-pills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-story-media,
    .solution-media-placeholder {
        min-height: 245px;
    }

    .solution-detail-hero {
        padding: 136px 0 62px;
    }

    .solution-detail-hero-inner,
    .solution-detail-layout {
        grid-template-columns: 1fr;
    }

    .solution-detail-aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .solutions-hero {
        padding: 126px 0 54px;
    }

    .solutions-hero h1 {
        font-size: 2.05rem;
    }

    .solutions-page {
        padding: 52px 0 70px;
    }

    .solution-nav-pills {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px 10px;
        border-radius: 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .solution-nav-pills::-webkit-scrollbar {
        display: none;
    }

    .solution-nav-pills a {
        flex: 0 0 78%;
        min-height: 58px;
        scroll-snap-align: start;
    }

    .solution-story-card {
        border-radius: 18px;
    }

    .solution-story-body {
        padding: 24px 20px;
    }

    .solution-offer {
        grid-template-columns: 1fr;
    }

    .solution-offer .btn {
        width: 100%;
        justify-content: center;
    }

    .solution-detail-hero {
        padding: 124px 0 52px;
    }

    .solution-detail-copy h1 {
        font-size: 2.08rem;
    }

    .solution-detail-media,
    .solution-detail-media img,
    .solution-detail-media .solution-media-placeholder {
        min-height: 235px;
    }

    .solution-article,
    .solution-product-box,
    .other-solutions-box {
        border-radius: 18px;
        padding: 22px;
    }

    .solution-detail-benefits div {
        grid-template-columns: 1fr;
    }
}

.featured-combined-track .grouped-product-img {
    width: 100%;
    height: 178px;
    flex: 0 0 178px;
}

.featured-combined-track .grouped-product-body {
    padding-top: 12px;
    flex: 1;
}

.featured-combined-track .grouped-product-body h3 {
    font-size: 1rem;
    min-height: 2.55rem;
}

.featured-combined-track .grouped-product-body p {
    font-size: 0.84rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
}

.featured-product-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 44px);
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(16, 32, 51, 0.9);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-combined-track .group-highlight .featured-product-badge {
    color: #facc15;
}

.featured-combined-track .group-infrastructure .featured-product-badge {
    color: #7dd3c7;
}

.featured-combined-track .group-security .featured-product-badge {
    color: #fca5a5;
}

.featured-combined-track .group-software .featured-product-badge {
    color: #7dd3fc;
}

@media (max-width: 720px) {
    .featured-tab-panels {
        margin-left: -4px;
        margin-right: -4px;
    }

    .featured-combined-track {
        grid-template-columns: 1fr;
        gap: 12px !important;
    }

    .featured-combined-track .grouped-product-card {
        min-height: auto;
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 11px;
    }

    .featured-combined-track .grouped-product-img {
        width: 82px;
        height: 94px;
        flex-basis: auto;
    }

    .featured-combined-track .grouped-product-body {
        padding-top: 0;
    }
}


/* Expanded solution longform */
.solution-longform {
    position: relative;
    overflow: hidden;
}

.solution-longform::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0f766e, #2563eb, #10b981);
}

.solution-longform-copy {
    display: grid;
    gap: 18px;
}

.solution-longform-copy p {
    margin: 0;
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.88;
}

.solution-longform-copy p:first-child {
    font-size: 1.08rem;
    color: #1e293b;
}

.solution-process-panel {
    margin-top: 30px;
    padding: 26px;
    border-radius: 22px;
    background: #0f172a;
    color: #fff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.solution-process-panel h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.2rem;
}

.solution-process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.solution-process-grid div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-process-grid strong {
    display: block;
    width: max-content;
    margin-bottom: 10px;
    color: #7dd3c7;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

.solution-process-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    font-size: 0.92rem;
}

.solution-detail-benefits span {
    min-height: 72px;
}

.solution-detail-aside .btn {
    justify-content: center;
}

@media (max-width: 768px) {
    .solution-longform-copy p {
        font-size: 0.98rem;
        line-height: 1.78;
    }

    .solution-process-panel {
        padding: 20px;
        border-radius: 18px;
    }

    .solution-process-grid {
        grid-template-columns: 1fr;
    }

    .solution-detail-benefits span {
        min-height: auto;
    }
}

/* Consolidated layout, header, and mobile navigation stability (v89) */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
}

body {
    position: relative;
}

#main-header,
main,
footer,
section,
.full-width-section,
.container,
.slider-wrapper,
.solutions-page,
.solution-detail-page {
    max-width: 100% !important;
}

#main-header,
main,
footer,
section,
.full-width-section,
.solutions-hero,
.solution-detail-hero {
    overflow-x: clip !important;
}

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

#main-header,
#main-header.scrolled,
#main-header.mobile-scrolled,
#main-header .top-header,
#main-header.scrolled .top-header,
#main-header.mobile-scrolled .top-header,
#main-header nav,
#main-header.scrolled nav,
#main-header.mobile-scrolled nav,
#main-header .logo,
#main-header .logo img,
#main-header .mobile-menu-toggle,
#main-header .mobile-menu-toggle i {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
}

#main-header,
#main-header.scrolled,
#main-header.mobile-scrolled {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 6px 24px rgba(16, 32, 51, 0.04) !important;
    overflow: visible !important;
    contain: layout style !important;
}

#main-header .top-header,
#main-header.scrolled .top-header,
#main-header.mobile-scrolled .top-header {
    display: block !important;
    max-height: none !important;
    height: auto !important;
    min-height: 32px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    opacity: 1 !important;
    overflow: hidden !important;
    border-bottom-width: 1px !important;
    pointer-events: auto !important;
}

#main-header nav,
#main-header.scrolled nav,
#main-header.mobile-scrolled nav {
    min-height: 74px !important;
    height: 74px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
}

#main-header .logo,
#main-header.scrolled .logo,
#main-header.mobile-scrolled .logo {
    min-height: 56px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto;
}

#main-header .logo img,
#main-header.scrolled .logo img,
#main-header.mobile-scrolled .logo img {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 190px;
    object-fit: contain !important;
}

#main-header .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 10px;
}

.scroll-track,
.featured-tabs,
.featured-combined-track,
.solution-nav-pills,
.nav-links,
.nav-dropdown-menu {
    max-width: 100% !important;
    min-width: 0 !important;
    overscroll-behavior-x: contain;
}

.scroll-track {
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
}

.scroll-track > *,
.featured-combined-track > *,
.solution-story-card,
.solution-detail-layout,
.solution-detail-hero-inner {
    min-width: 0 !important;
}

@supports not (overflow: clip) {
    #main-header,
    main,
    footer,
    section,
    .full-width-section,
    .solutions-hero,
    .solution-detail-hero {
        overflow-x: hidden !important;
    }
}

@media (max-width: 992px) {
    #main-header .mobile-menu-toggle {
        display: inline-flex !important;
        position: relative;
        z-index: 2100;
    }

    #main-header .top-contact {
        justify-content: center !important;
        gap: 6px 14px !important;
        flex-wrap: wrap !important;
        line-height: 1.2 !important;
    }

    #main-header .top-contact a {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        white-space: nowrap;
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        height: 100vh !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 14px !important;
        padding: 96px 22px 34px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none !important;
        transition: opacity 0.18s ease, visibility 0.18s ease !important;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links > li {
        width: 100% !important;
        text-align: center !important;
        opacity: 1 !important;
        transform: none !important;
        transition: opacity 0.18s ease !important;
    }

    .nav-links > li > a {
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
    }

    .nav-links.active li:nth-child(1),
    .nav-links.active li:nth-child(2),
    .nav-links.active li:nth-child(3),
    .nav-links.active li:nth-child(4),
    .nav-links.active li:nth-child(5),
    .nav-links.active li:nth-child(6) {
        transition-delay: 0s !important;
    }

    .nav-dropdown {
        width: min(100%, 560px) !important;
        margin: 0 auto !important;
        align-items: stretch !important;
        gap: 8px !important;
    }

    .nav-dropdown-toggle {
        justify-content: center !important;
        font-size: 1.45rem !important;
    }

    .nav-dropdown-toggle i {
        display: inline-flex !important;
        font-size: 0.75rem !important;
        transform: none !important;
        transition: transform 0.2s ease !important;
    }

    .nav-dropdown.mobile-open .nav-dropdown-toggle i {
        transform: rotate(180deg) !important;
    }

    .nav-dropdown .nav-dropdown-menu,
    .nav-dropdown:not(.mobile-open):hover .nav-dropdown-menu,
    .nav-dropdown:not(.mobile-open):focus-within .nav-dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        padding: 0 10px !important;
        margin-top: 0 !important;
        border: 0 !important;
        border-radius: 16px !important;
        background: #f8fafc !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: none !important;
        transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease, margin 0.2s ease !important;
    }

    .nav-dropdown.mobile-open .nav-dropdown-menu,
    .nav-dropdown.mobile-open:hover .nav-dropdown-menu,
    .nav-dropdown.mobile-open:focus-within .nav-dropdown-menu {
        max-height: none !important;
        overflow: visible !important;
        padding: 10px !important;
        margin-top: 2px !important;
        border: 1px solid #e2e8f0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .nav-dropdown-menu a,
    .nav-links .nav-dropdown-menu a {
        width: 100% !important;
        margin: 0 !important;
        display: grid !important;
        grid-template-columns: 34px minmax(0, 1fr) !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 11px !important;
        text-align: left !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        color: #0f172a !important;
        font-size: 0.9rem !important;
        line-height: 1.25 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus-visible {
        background: #ecfdf5 !important;
        color: #0f766e !important;
    }

    .nav-dropdown-menu a > i {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.9rem !important;
    }

    .nav-dropdown-menu strong {
        font-size: 0.86rem !important;
        line-height: 1.25 !important;
        margin-bottom: 2px !important;
        white-space: normal !important;
    }

    .nav-dropdown-menu small {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 1 !important;
    }

    .nav-dropdown-overview {
        background: #ecfdf5 !important;
    }

    .wa-nav-item a {
        margin-top: 2px !important;
    }
}

@media (max-width: 640px) {
    .solution-nav-pills,
    .scroll-track {
        contain: layout paint;
    }
}

@media (max-width: 480px) {
    #main-header nav,
    #main-header.scrolled nav,
    #main-header.mobile-scrolled nav {
        min-height: 70px !important;
        height: 70px !important;
    }

    #main-header .logo img,
    #main-header.scrolled .logo img,
    #main-header.mobile-scrolled .logo img {
        height: 38px !important;
        max-height: 38px !important;
        max-width: 168px;
    }

    #main-header .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.35rem !important;
    }

    #main-header .top-contact {
        gap: 4px 10px !important;
    }

    #main-header .top-contact a {
        font-size: 0.66rem !important;
    }

    .nav-links {
        padding-left: 16px !important;
        padding-right: 16px !important;
        gap: 12px !important;
    }

    .nav-dropdown-toggle {
        font-size: 1.32rem !important;
    }

    .nav-dropdown.mobile-open .nav-dropdown-menu {
        padding: 8px !important;
    }

    .nav-dropdown-menu a,
    .nav-links .nav-dropdown-menu a {
        padding: 9px !important;
    }
}


/* Stable Solusi dropdown desktop/mobile behavior (v93) */
.nav-dropdown-head {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-caret {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #23344a;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.nav-dropdown-caret i {
    font-size: 0.72rem;
    transition: transform 0.18s ease;
}

@media (min-width: 993px) {
    .nav-dropdown {
        position: relative !important;
        width: auto !important;
    }

    .nav-dropdown-head {
        height: 100%;
    }

    .nav-dropdown-toggle {
        margin: 0 !important;
        white-space: nowrap;
    }

    .nav-dropdown-caret:hover,
    .nav-dropdown-caret:focus-visible {
        background: #f1f5f9;
        color: #0f766e;
        outline: none;
    }

    .nav-dropdown-menu {
        position: absolute !important;
        top: calc(100% + 14px) !important;
        left: 50% !important;
        right: auto !important;
        width: min(560px, calc(100vw - 32px)) !important;
        max-width: calc(100vw - 32px) !important;
        max-height: none !important;
        overflow: visible !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 14px !important;
        margin: 0 !important;
        border: 1px solid rgba(15, 23, 42, 0.08) !important;
        border-radius: 18px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate(-50%, 8px) !important;
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease !important;
        z-index: 2300 !important;
    }

    .nav-dropdown-menu::before {
        content: "" !important;
        position: absolute !important;
        top: -14px !important;
        left: 0 !important;
        right: 0 !important;
        height: 14px !important;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.desktop-open .nav-dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) !important;
    }

    .nav-dropdown:focus-within:not(:hover):not(.desktop-open) .nav-dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate(-50%, 8px) !important;
    }

    .nav-dropdown:hover .nav-dropdown-caret i,
    .nav-dropdown.desktop-open .nav-dropdown-caret i {
        transform: rotate(180deg) !important;
    }

    .nav-dropdown:focus-within:not(:hover):not(.desktop-open) .nav-dropdown-caret i {
        transform: none !important;
    }

    .nav-dropdown-menu a,
    .nav-links .nav-dropdown-menu a {
        display: grid !important;
        grid-template-columns: 34px minmax(0, 1fr) !important;
        align-items: start !important;
        gap: 11px !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 12px !important;
        text-align: left !important;
    }

    .nav-dropdown-overview {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 992px) {
    .nav-dropdown.desktop-open .nav-dropdown-menu {
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .nav-dropdown-head {
        justify-content: center;
    }

    .nav-dropdown-caret {
        width: 34px;
        height: 34px;
        background: #f1f5f9;
        color: #0f172a;
        margin-left: 2px;
        flex: 0 0 34px;
    }

    .nav-dropdown-caret i {
        font-size: 0.78rem;
        transition: none !important;
    }

    .nav-dropdown.mobile-open .nav-dropdown-caret i {
        transform: rotate(180deg);
    }

    .nav-dropdown:hover .nav-dropdown-caret i,
    .nav-dropdown:focus-within .nav-dropdown-caret i {
        transform: none;
    }

    .nav-dropdown.mobile-open:hover .nav-dropdown-caret i,
    .nav-dropdown.mobile-open:focus-within .nav-dropdown-caret i {
        transform: rotate(180deg);
    }

    .nav-dropdown-toggle {
        margin: 0 !important;
    }
}

/* Fixed header lock (v95) */
:root {
    --fixed-header-height: 106px;
}

html {
    scroll-padding-top: var(--fixed-header-height);
}

body {
    padding-top: var(--fixed-header-height) !important;
}

#main-header,
#main-header.scrolled,
#main-header.mobile-scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9990 !important;
    transform: none !important;
    transition: none !important;
}

@media (max-width: 992px) {
    :root {
        --fixed-header-height: 118px;
    }

    .nav-links {
        top: 0 !important;
        padding-top: calc(var(--fixed-header-height) + 18px) !important;
    }
}

@media (max-width: 480px) {
    :root {
        --fixed-header-height: 114px;
    }
}

/* Layout repair after fixed header (v96) */
.why-us-section .container {
    text-align: center !important;
}

.why-us-section .section-title,
.why-us-section .section-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.why-us-section .modern-grid {
    width: min(100%, 1040px) !important;
    margin: 34px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    justify-content: center !important;
    justify-items: stretch !important;
}

.why-us-section .why-card {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.catalog-tabs-wrapper,
.catalog-tabs-wrapper.is-sticky {
    position: relative !important;
    top: auto !important;
    z-index: 20 !important;
}

#catalog,
#custom-builder {
    scroll-margin-top: calc(var(--fixed-header-height, 110px) + 24px) !important;
}

@media (max-width: 900px) {
    .why-us-section .modern-grid {
        grid-template-columns: 1fr !important;
        max-width: 560px !important;
    }
}
