/* styles.css */
:root {
    /* Backgrounds */
    --surface: #EFF6FF;
    --surface-low: #E8F1FC;
    --surface-lowest: #FFFFFF;
    --inverse-surface: #0C1929;

    /* Brand */
    --primary: #1D6FD1;
    --primary-container: #2563EB;
    --primary-hover: #1559AB;
    --primary-soft: #DBEAFE;
    --secondary: #0891B2;
    --secondary-hover: #0E7490;

    /* Text */
    --on-surface: #111827;
    --on-surface-variant: #4B5563;
    --text-muted: #6B7280;
    --on-primary: #FFFFFF;
    --on-inverse: #F1F5F9;

    /* Borders */
    --outline-variant: #CBD5E1;
    --divider: #E2E8F0;

    /* Links */
    --link: #1D6FD1;
    --link-hover: #1559AB;

    /* Focus */
    --focus-ring: #60A5FA;

    /* Status */
    --success: #059669;
    --success-bg: #ECFDF5;
    --warning: #D97706;
    --warning-bg: #FFFBEB;
    --error: #DC2626;
    --error-bg: #FEF2F2;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 20px rgba(29,111,209,0.06);
    --shadow-lg: 0 8px 30px rgba(29,111,209,0.10);
    --shadow-hover: 0 8px 30px rgba(29,111,209,0.08);

    /* Typography */
    --font-headline: 'Instrument Serif', serif;
    --font-body: 'Inter', sans-serif;

    /* Borders & Spacing */
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --space-y-massive: 120px;
    --space-y-large: 64px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: var(--surface);
    color: var(--on-surface);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(circle, rgba(29,111,209,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Typography Utilities */
.eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.text-primary { color: var(--primary); }
.text-white { color: #ffffff; }

h1, h2, h3, .section-title {
    font-family: var(--font-headline);
    font-weight: 400;
    line-height: 1.1;
}

/* Layout Layers */
.layer-base { background: var(--surface); }
.layer-low { background: var(--surface-low); }
.layer-lowest { background: var(--surface-lowest); }
.layer-inverse { background: var(--inverse-surface); color: #fff;}

/* Containers */
.max-w { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Interactive Elements */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300;
    vertical-align: middle;
}

/* Nav */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(239, 246, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--divider);
    box-shadow: 0 1px 8px rgba(29,111,209,0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.brand-logo {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links a {
    text-decoration: none;
    color: var(--on-surface-variant);
    font-size: 0.875rem;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}
.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
}

/* Hamburger Button */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 60; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--on-surface); margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(239,246,255,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 55;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu a {
    text-decoration: none;
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--on-surface);
    transition: color 0.3s;
    text-align: center;
    display: block;
    margin: 0;
    padding: 0.75rem 1rem;
    width: auto;
    max-width: 90vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); }
body.menu-open { overflow: hidden; }
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.05);
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 60;
}
.mobile-menu-close span {
    font-size: 2rem; color: var(--on-surface); transition: color 0.3s;
}
.mobile-menu-close:hover span { color: var(--primary); }

/* FB icon in footer */
.socials a { color: #94a3b8; text-decoration: none; transition: color 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.socials a:hover { color: var(--secondary); }
.socials svg { width: 20px; height: 20px; fill: currentColor; }

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
    box-shadow: 0 4px 16px rgba(29, 111, 209, 0.3);
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}
.btn-primary:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
}
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-gradient:hover {
    box-shadow: 0 6px 20px rgba(29,111,209,0.3);
    transform: translateY(-1px);
}
.btn-primary-gradient:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
}

.btn-text {
    background: none;
    border: none;
    font-family: var(--font-body);
    color: var(--on-surface);
    font-size: 0.875rem;
    cursor: pointer;
    margin-right: 1.5rem;
}

.icon-btn { cursor: pointer; color: var(--on-surface-variant); margin-right: 1.5rem;}
.icon-btn:hover { color: var(--primary); }

/* Hero */
.hero-section {
    padding: var(--space-y-massive) 2rem var(--space-y-large);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(29,111,209,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: var(--on-surface);
}
.hero-title em { opacity: 0.8; }
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--on-surface-variant);
    margin-top: 2rem;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.btn-secondary-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-secondary-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(29,111,209,0.2);
    transform: translateY(-1px);
}
.btn-secondary-outline:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
}

/* Logo Strip */
.logo-strip {
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 3rem 0;
    overflow: hidden;
    background: var(--surface-lowest);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 4rem;
}

.logo-item {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: #a0a4b8;
    font-style: italic;
    white-space: nowrap;
}

.logo-img-item {
    flex-shrink: 0;
    width: 240px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}
.logo-img-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(1.2);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Common */
.mission-section { padding: var(--space-y-massive) 2rem; }
.mission-container { max-width: 900px; margin: 0 auto; text-align: center; }
.mission-statement { font-size: 1.25rem; font-style: italic; color: var(--on-surface-variant); margin-top: 2rem;}

/* Partners Grid */
.partners-section { padding: var(--space-y-massive) 2rem; }
.partners-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.5;
}

.partners-item {
    font-family: var(--font-headline);
    color: var(--on-surface);
    font-size: 1.25rem;
    text-align: center;
}

/* Services */
.services-section { padding: var(--space-y-massive) 2rem; }
.services-container { max-width: 1200px; margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}
.service-card {
    background: var(--surface-lowest);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--divider);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(29,111,209,0.2);
}
.service-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-family: var(--font-headline);
}
.service-list {
    list-style: none;
    padding: 0;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--on-surface-variant);
}
.service-list .material-symbols-outlined {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* Products */
.products-section { padding: var(--space-y-massive) 2rem; }
.products-container { max-width: 1200px; margin: 0 auto; }
.products-section .section-title { font-size: 3.5rem; margin-bottom: 6rem; }

.product-feature {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.product-feature.reverse { flex-direction: row-reverse; }

.product-info { flex: 1; }
.product-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.product-desc { color: #94a3b8; font-size: 1.125rem; margin-bottom: 2rem;}

.link-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 4px;
    transition: border-color 0.3s;
}
.link-with-icon:hover { border-color: var(--primary); }

.product-image-cont {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-image-cont img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.8s ease;
}

.product-image-cont:hover img { filter: grayscale(0%); }

/* Editorial Section */
.editorial-section { padding: var(--space-y-massive) 2rem; }
.asym-grid {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.col-image { flex: 1.2; position: relative;}
.col-image img { width: 100%; border-radius: var(--radius-md); filter: grayscale(100%); transition: filter 0.5s;}
.col-image:hover img { filter: grayscale(0%);}

.stat-card {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    background: var(--inverse-surface);
    color: #fff;
    padding: 3rem;
    max-width: 300px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.stat-number { font-family: var(--font-headline); font-size: 3rem; margin-bottom: 0.5rem;}
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #a0a4b8;}

.col-text { flex: 1; }
.col-text .section-title { font-size: 3rem; margin-bottom: 2rem;}
.col-text .quote { font-style: italic; color: var(--on-surface-variant); font-size: 1.125rem; margin-bottom: 2rem;}
.col-text .desc { color: var(--on-surface-variant); margin-bottom: 3rem;}

.feature-list { border-top: 1px solid var(--divider); padding-top: 2rem; }
.feature-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-weight: 500;
}

/* Contact Section */
.contact-section { padding: var(--space-y-massive) 2rem; }
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
}

.contact-info .section-title { font-size: 3rem; margin-bottom: 2rem;}
.contact-desc { color: #94a3b8; font-size: 1.125rem; margin-bottom: 4rem;}

.contact-details { margin-bottom: 4rem; }
.detail-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; color: #cbd5e1;}

.msme-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}
.msme-logo { background: rgba(255,255,255,0.1); padding: 1rem; border-radius: var(--radius-md); }
.msme-logo img { height: 40px; filter: invert(1); opacity: 0.8;}
.msme-title { color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem;}
.msme-desc { color: #64748b; font-size: 0.875rem;}

.contact-form {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: var(--radius-md);
}

.input-group { margin-bottom: 2rem;}
.input-group label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}
.ghost-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(203,213,225,0.3);
    color: #fff;
    padding: 0.5rem 0;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.ghost-input:focus {
    border-color: var(--focus-ring);
    box-shadow: 0 2px 0 0 var(--focus-ring);
}
.w-full { width: 100%; }

/* Footer */
.footer {
    background: #0f172a;
    color: #fff;
    padding: var(--space-y-large) 2rem 2rem;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-name {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}
.brand-col p { color: #64748b; font-size: 0.875rem; margin-bottom: 2rem;}
.footer-msme { height: 32px; filter: grayscale(100%); opacity: 0.5; }

.footer-col h5 {
    color: var(--secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; padding: 0;}
.footer-col li { margin-bottom: 1rem;}
.footer-col a { color: #94a3b8; text-decoration: none; font-size: 0.875rem; transition: color 0.3s;}
.footer-col a:hover { color: #fff;}

.socials { display: flex; gap: 1rem;}
.socials span { color: #94a3b8; cursor: pointer; transition: color 0.3s;}
.socials span:hover { color: var(--secondary); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

/* ====== ABOUT US PAGE ====== */

/* About Detail */
.about-detail-section { padding: var(--space-y-massive) 2rem; }
.about-detail-container { max-width: 1200px; margin: 0 auto; }
.about-detail-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.about-detail-header .section-title { font-size: 3rem; margin-top: 0.5rem; }

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.about-detail-text p {
    color: var(--on-surface-variant);
    font-size: 1.0625rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

/* Channel Partners */
.channel-partners-block {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--divider);
}
.channel-partners-title {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--on-surface);
}
.channel-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.channel-partner-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--surface-lowest);
    border-radius: var(--radius-sm);
    border: 1px solid var(--divider);
    font-weight: 500;
    color: var(--on-surface);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.channel-partner-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(29,111,209,0.2);
}
.channel-partner-item .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Vision / Mission */
.vm-section { padding: var(--space-y-massive) 2rem; }
.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.vm-card {
    position: relative;
    padding: 4rem;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.vm-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.vm-icon-wrap .material-symbols-outlined {
    font-size: 1.5rem;
    color: #fff;
}
.vm-card .section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.vm-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Mission Pillars */
.mission-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.mission-pillar {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s, border-color 0.3s;
}
.mission-pillar:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}
.pillar-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(0, 74, 198, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pillar-icon .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--secondary);
}
.pillar-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.pillar-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Core Values */
.values-section { padding: var(--space-y-massive) 2rem; }
.values-container { max-width: 1200px; margin: 0 auto; }
.values-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.values-header .section-title { font-size: 3rem; margin-top: 0.5rem; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
}
.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface-lowest);
    border-radius: var(--radius-md);
    border: 1px solid var(--divider);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(29,111,209,0.2);
}
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,74,198,0.1), rgba(37,99,235,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.value-icon .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--primary);
}
.value-title {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--on-surface);
}
.value-desc {
    color: var(--on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Client Logo Carousel */
.clients-section { padding: var(--space-y-massive) 2rem; }
.clients-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.clients-header .section-title { font-size: 3rem; margin-top: 0.5rem; }

.clients-carousel-wrapper {
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-carousel-track {
    display: flex;
    width: max-content;
    animation: clientsScroll 35s linear infinite;
    gap: 2.5rem;
}
.clients-carousel-track.reverse {
    animation: clientsScrollReverse 40s linear infinite;
}
.client-logo-card {
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    background: var(--surface-lowest);
    border: 1px solid var(--divider);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.client-logo-card:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.client-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes clientsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes clientsScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* About CTA */
.about-cta-section { padding: var(--space-y-large) 2rem; }
.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-cta-container .section-title { font-size: 2.5rem; margin-bottom: 1.25rem; }
.about-cta-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* Fade-in animation for scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== END ABOUT US PAGE ====== */

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .product-feature, .product-feature.reverse { gap: 2rem; }
    .product-title { font-size: 2rem; }
    .section-title { font-size: 2.75rem; }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .hamburger { display: block; }
    .mobile-menu { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .hero-section { padding: 60px 1.25rem 40px; }
    .products-section .section-title { font-size: 2.25rem; margin-bottom: 3rem; }
    .product-feature, .product-feature.reverse { flex-direction: column; gap: 2rem; }
    .product-title { font-size: 1.75rem; }
    .asym-grid { flex-direction: column; gap: 3rem; }
    .stat-card { position: static; margin-top: -2rem; margin-left: auto; max-width: 100%; }
    .col-text .section-title { font-size: 2rem; }
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    /* About page */
    .about-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-detail-header .section-title { font-size: 2.25rem; }
    .mission-pillars { grid-template-columns: 1fr; }
    .vm-card { padding: 2rem; }
    .vm-card .section-title { font-size: 2rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .channel-partners-grid { grid-template-columns: 1fr 1fr; }
    .about-cta-container .section-title { font-size: 2rem; }
    .clients-header .section-title { font-size: 2.25rem; }
    .values-header .section-title { font-size: 2.25rem; }
    /* Spacing */
    :root { --space-y-massive: 64px; --space-y-large: 40px; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .nav-container { padding: 0.75rem 1rem; }
    .brand-logo img { height: 36px !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .channel-partners-grid { grid-template-columns: 1fr; }
    .vm-card .section-title { font-size: 1.5rem; }
    .about-detail-header .section-title { font-size: 1.75rem; }
    .about-cta-container .section-title { font-size: 1.5rem; }
    .whatsapp-btn { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
}
.whatsapp-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}
