.header .nav-link {
    font-size: 11px;
}

img#logo {
    width: 250px;
    margin-top: 60px;
}

.category-pill svg.category-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold, #f5a623);
    stroke: var(--accent-gold, #f5a623);
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease, stroke 0.25s ease;
}

.category-pill:hover svg.category-icon,
.category-pill.active svg.category-icon {
    color: #ffbf00;
    stroke: #ffbf00;
    transform: scale(1.18);
    filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.6));
}

.hero .container {
    padding-top: 200px;
}

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

/* About Hero Banner */
.about-hero {
    position: relative;
    padding-top: 170px;
    padding-bottom: 90px;
    overflow: hidden;
    background: #080b11;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(8, 11, 17, 0.7) 0%, rgba(8, 11, 17, 0.95) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 20px;
    font-weight: 600;
}

.breadcrumb a {
    color: var(--accent-gold, #f5a623);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .current {
    color: #fff;
}

.about-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-desc {
    font-size: 1.15rem;
    color: var(--text-light, #cbd5e1);
    line-height: 1.6;
    max-width: 680px;
}

/* Our Story Section (Light Theme) */
.story-section {
    background: #ffffff;
    color: #0f172a;
    padding: 90px 0;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle-dark {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0f172a;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.story-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

.story-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-dark-journey {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-dark-journey:hover {
    background: #f5a623;
    color: #000000;
    transform: translateY(-2px);
}

.story-right-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: #f5a623;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.metric-icon {
    color: #0f172a;
    margin-bottom: 12px;
}

.metric-num {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.metric-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 6px;
    line-height: 1.3;
}

/* Mission Vision Values Section (Dark Blue) */
.mvv-section {
    background: #080c16;
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.mvv-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.35s ease;
}

.mvv-box:hover {
    border-color: #f5a623;
    background: rgba(245, 166, 35, 0.05);
    transform: translateY(-6px);
}

.mvv-icon {
    margin-bottom: 20px;
}

.mvv-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.mvv-desc {
    font-size: 0.95rem;
    color: var(--text-light, #cbd5e1);
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.values-list li {
    font-size: 0.92rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.gold-check {
    color: #f5a623;
    font-weight: 900;
    font-size: 1.1rem;
}

/* Founder & Timeline Section (Light Theme) */
.founder-timeline-section {
    background: #ffffff;
    color: #0f172a;
    padding: 90px 0;
}

.founder-timeline-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.founders-section-header {
    margin-bottom: -10px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.founder-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.founder-body {
    display: flex;
    gap: 20px;
}

.founder-photo-wrap {
    width: 140px;
    height: 175px;
    min-width: 140px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.founder-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.founder-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.founder-bio {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.founder-signature {
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-size: 1.7rem;
    color: #0f172a;
    font-weight: bold;
    opacity: 0.85;
}

/* Timeline Component */
.timeline-wrapper {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px;
}

.timeline-steps-container {
    position: relative;
    margin-top: 24px;
}

.timeline-line {
    position: absolute;
    top: 22px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #0f172a;
    z-index: 1;
}

.timeline-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0f172a;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
}

.step-year {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.step-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
}

/* Global Presence Section (Light Theme) */
.global-presence-section {
    background: #ffffff;
    color: #0f172a;
    padding: 90px 0;
    border-top: 1px solid #e2e8f0;
}

.section-header-dark {
    margin-bottom: 40px;
}

.presence-desc {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin-top: 6px;
}

.presence-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-graphic-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    height: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.office-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.office-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.office-card:hover {
    border-color: #f5a623;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.office-img-wrap {
    height: 120px;
    width: 100%;
    overflow: hidden;
}

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

.office-info {
    padding: 16px;
}

.office-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.office-loc {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
}

.office-contact {
    font-size: 0.76rem;
    color: #475569;
    margin-bottom: 2px;
}

/* About CTA Banner */
.about-cta-section {
    padding: 60px 0 90px 0;
    background: #080b11;
}

.about-cta-banner {
    background: linear-gradient(135deg, #090e1a 0%, #131c30 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-cta-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.about-cta-desc {
    font-size: 1rem;
    color: var(--text-light, #cbd5e1);
    max-width: 600px;
}

/* Responsive Styles for About Us Page */
@media (max-width: 1100px) {
    .story-container {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .presence-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .story-right-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-line {
        display: none;
    }

    .about-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 30px;
    }

    .founder-body {
        flex-direction: column;
    }

    .founder-photo-wrap {
        width: 100%;
        height: 220px;
    }
}

/* Container Wide for IP Worlds Page */
.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* IP Banner Section (Dark Hero) */
.ip-banner-section {
    position: relative;
    background: #090d16;
    color: #ffffff;
    padding: 140px 0 60px 0;
    min-height: 480px;
    overflow: hidden;
}

.ip-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ip-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ip-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.94) 0%, rgba(8, 12, 20, 0.85) 50%, rgba(8, 12, 20, 0.6) 100%);
}

.ip-banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.ip-banner-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.gold-text {
    color: #f5a623;
}

.gold-line-accent {
    width: 50px;
    height: 3px;
    background: #f5a623;
    margin: 16px 0;
    border-radius: 2px;
}

.ip-banner-sub {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 540px;
    line-height: 1.5;
    margin-bottom: 28px;
}

.ip-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ip-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ip-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ip-feature-text strong {
    display: block;
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 700;
}

.ip-feature-text span {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.3;
}

/* Quote Card Right */
.ip-hero-quote-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quote-mark {
    font-size: 3.5rem;
    color: #f5a623;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: -15px;
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 24px;
}

.quote-author-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-signature {
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-size: 1.6rem;
    color: #f5a623;
    font-weight: bold;
    margin-bottom: 4px;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.author-role {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.3;
}

.author-photo-wrap {
    width: 90px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #f5a623;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.author-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Philosophy Section */
.philosophy-section {
    background: #ffffff;
    color: #0f172a;
    padding: 40px 0 20px 0;
    text-align: center;
}

.philosophy-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.phi-line {
    height: 2px;
    width: 80px;
    background: #f5a623;
}

.philosophy-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #0f172a;
    text-transform: uppercase;
}

.philosophy-sub {
    font-size: 0.95rem;
    color: #475569;
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.55;
}

/* IP Worlds Cards Grid (3 Columns x 2 Rows) */
.ip-worlds-grid-section {
    background: #ffffff;
    padding: 24px 0 50px 0;
}

.ip-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ip-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.ip-card-img-wrap {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

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

.ip-card:hover .ip-card-img-wrap img {
    transform: scale(1.06);
}

.ip-card-header {
    padding: 14px 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ip-card-header h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Colored Header Bars */
.green-bar { background: #15803d; }
.blue-bar { background: #0284c7; }
.purple-bar { background: #6366f1; }
.orange-bar { background: #ea580c; }
.pink-bar { background: #db2777; }
.ice-bar { background: #1e40af; }

.ip-card-body {
    padding: 18px 20px;
    flex-grow: 1;
}

.ip-card-body p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

/* Split Bottom Process & Applications Section */
.ip-process-apps-section {
    background: #ffffff;
    padding: 30px 0 70px 0;
    border-top: 1px solid #e2e8f0;
}

.ip-split-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ip-process-col,
.ip-apps-col {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.split-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.bar-accent {
    font-size: 1.8rem;
    font-weight: 900;
    color: #f5a623;
}

.col-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-transform: uppercase;
}

/* Process Steps Row */
.process-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 170px;
    flex: 1;
}

.proc-icon-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}

.proc-num-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.proc-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

.proc-arrow {
    font-size: 1.5rem;
    color: #f5a623;
    margin-top: 10px;
    font-weight: bold;
}

/* Applications Row */
.apps-items-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
    flex: 1;
}

.app-icon-node {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}

.app-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Responsive Styles for IP Worlds Page */
@media (max-width: 1200px) {
    .ip-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .ip-banner-content {
        grid-template-columns: 1fr;
    }

    .ip-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .ip-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .proc-arrow {
        display: none;
    }

    .apps-items-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* Products Page Hero Section */
.products-hero-section {
    position: relative;
    background: #080c14;
    color: #ffffff;
    padding: 130px 0 50px 0;
    min-height: 440px;
    overflow: hidden;
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.82) 45%, rgba(8, 12, 20, 0.5) 100%);
}

.products-hero-content {
    position: relative;
    z-index: 2;
}

.products-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 12px;
}

.products-hero-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 600px;
    line-height: 1.55;
    margin-bottom: 36px;
}

/* 4 Feature Boxes Bar */
.products-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    max-width: 1050px;
}

.p-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.p-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-feature-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.p-feature-info span {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* Product Categories Section */
.product-categories-section {
    background: #ffffff;
    padding: 60px 0;
}

.cat-header {
    text-align: center;
    margin-bottom: 40px;
}

.cat-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #0f172a;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.title-underline {
    display: block;
    width: 50px;
    height: 3px;
    background: #f5a623;
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

.cat-subtitle {
    font-size: 0.98rem;
    color: #64748b;
    max-width: 700px;
    margin: 10px auto 0 auto;
}

/* Product Cards Grid (3 Columns x 2 Rows) */
.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.p-cat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.p-cat-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.p-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.p-cat-card:hover .p-cat-img-wrap img {
    transform: scale(1.06);
}

.p-cat-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 2px solid #ffffff;
}

.badge-green { background: #16a34a; }
.badge-purple { background: #9333ea; }
.badge-blue { background: #0284c7; }
.badge-teal { background: #0d9488; }
.badge-orange { background: #ea580c; }
.badge-gold { background: #d97706; }

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

.p-cat-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.p-cat-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.p-cat-checklist {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 14px;
}

.p-cat-checklist li {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    font-size: 0.75rem;
    font-weight: 900;
    color: #0f172a;
}

/* Products Bottom Section (Stacked Rows) */
.products-bottom-section {
    background: #ffffff;
    padding: 30px 0 70px 0;
}

.products-bottom-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Built To Last Box (Row 1) */
.built-to-last-box {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.box-main-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.built-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.built-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.built-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.built-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.built-info p {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Premium Materials Box (Row 2) */
.materials-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 40px;
}

.materials-main-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #0f172a;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.materials-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.mat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.mat-card:hover {
    transform: translateY(-4px);
}

.mat-img-wrap {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

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

.mat-info {
    padding: 12px 10px;
    text-align: center;
}

.mat-info strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 4px;
}

.mat-info p {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.35;
}

/* Bottom Full-Width Quote Banner */
.products-quote-banner {
    background: #080c14;
    padding: 22px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.p-quote-text {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Responsive Styles for Products Page */
@media (max-width: 1200px) {
    .product-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .products-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .products-features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .materials-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

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

    .products-features-bar {
        grid-template-columns: 1fr;
    }

    .built-grid {
        grid-template-columns: 1fr;
    }

    .materials-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Solutions Page Hero Section */
.solutions-hero-section {
    position: relative;
    background: #080c14;
    color: #ffffff;
    padding: 130px 0 50px 0;
    min-height: 440px;
    overflow: hidden;
}

.solutions-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solutions-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solutions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.82) 45%, rgba(8, 12, 20, 0.5) 100%);
}

.solutions-hero-content {
    position: relative;
    z-index: 2;
}

.solutions-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 12px;
}

.solutions-hero-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 620px;
    line-height: 1.55;
    margin-bottom: 36px;
}

/* 4 Feature Boxes Bar */
.solutions-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    max-width: 1050px;
}

.sol-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sol-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-feature-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.sol-feature-info span {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* Core Solutions Section (2 Rows of 3 Cards) */
.core-solutions-section {
    background: #ffffff;
    padding: 60px 0;
}

.core-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sol-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.sol-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.sol-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sol-card:hover .sol-img-wrap img {
    transform: scale(1.06);
}

.sol-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border: 2px solid #f5a623;
}

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

.sol-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sol-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.sol-checklist {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 14px;
}

.sol-checklist li {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-dot {
    font-size: 1rem;
    color: #f5a623;
    font-weight: 900;
}

/* Solutions Bottom Stacked Section */
.solutions-bottom-section {
    background: #ffffff;
    padding: 30px 0 70px 0;
}

.solutions-bottom-stacked {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Row 1: Solution Process Box */
.solution-process-box {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.box-dark-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.sol-proc-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.sol-proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 160px;
    flex: 1;
}

.sol-proc-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.sol-proc-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.sol-proc-text {
    font-size: 0.76rem;
    color: #94a3b8;
    line-height: 1.35;
}

.sol-proc-arrow {
    font-size: 1.4rem;
    color: #f5a623;
    margin-top: 10px;
    font-weight: bold;
}

/* Row 2: Advantage Box */
.adv-box {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.adv-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.adv-main-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.adv-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.adv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.adv-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.adv-item p {
    font-size: 0.76rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* Solutions Bottom Full-Width Quote Banner */
.solutions-quote-banner {
    background: #080c14;
    padding: 22px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.s-quote-text {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Responsive Styles for Solutions Page */
@media (max-width: 1200px) {
    .core-solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .adv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .solutions-features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .core-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sol-proc-steps-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .sol-proc-arrow {
        display: none;
    }
}

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

    .solutions-features-bar {
        grid-template-columns: 1fr;
    }

    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* OEM Partnership Page Hero Section */
.oem-hero-section {
    position: relative;
    background: #080c14;
    color: #ffffff;
    padding: 130px 0 50px 0;
    min-height: 460px;
    overflow: hidden;
}

.oem-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.oem-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oem-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.85) 45%, rgba(8, 12, 20, 0.45) 100%);
}

.oem-hero-content {
    position: relative;
    z-index: 2;
}

.sub-brand-tag {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f5a623;
    margin-bottom: 6px;
}

.oem-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 14px;
}

.oem-hero-desc {
    font-size: 1.02rem;
    color: #cbd5e1;
    max-width: 600px;
    line-height: 1.55;
    margin-bottom: 36px;
}

/* 4 OEM Feature Boxes */
.oem-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    max-width: 1050px;
}

.oem-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.oem-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.oem-feature-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.oem-feature-info span {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* Section 2: Split Middle Section */
.oem-split-section {
    background: #ffffff;
    padding: 60px 0;
}

.oem-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.col-head {
    margin-bottom: 30px;
}

.col-sub {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0f172a;
    margin-bottom: 2px;
}

.col-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-transform: uppercase;
}

.title-gold-bar {
    width: 50px;
    height: 3px;
    background: #f5a623;
    margin-top: 8px;
    border-radius: 2px;
}

/* Circular Diagram Styling */
.eco-diagram-container {
    position: relative;
    width: 540px;
    height: 520px;
    margin: 10px auto;
}

.center-badge {
    position: absolute;
    top: 260px;
    left: 270px;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #080c14;
    border: 3px solid #f5a623;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    z-index: 5;
}

.cb-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: #f5a623;
    line-height: 1;
}

.cb-sub {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.cb-tag {
    font-size: 0.58rem;
    font-weight: 700;
    color: #94a3b8;
    line-height: 1.25;
    text-transform: uppercase;
}

.ring-svg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 540px;
    height: 520px;
    pointer-events: none;
}

/* 6 Connected Nodes positioning */
.eco-node {
    position: absolute;
    width: 44px;
    height: 44px;
    margin-left: -22px;
    margin-top: -22px;
    z-index: 6;
}

.node-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #080c14;
    border: 2px solid #f5a623;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.node-text {
    position: absolute;
    line-height: 1.3;
}

.node-text strong {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.node-text span {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
}

/* Text position directions */
.node-text.text-above {
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    text-align: center;
}

.node-text.text-below {
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    text-align: center;
}

.node-text.text-right {
    left: 54px;
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    text-align: left;
}

.node-text.text-left {
    right: 54px;
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    text-align: right;
}

/* Precise Node Center Positions on 540x520 container (center 270, 260, radius 155) */
.node-1 { left: 270px; top: 105px; }
.node-2 { left: 404px; top: 182px; }
.node-3 { left: 404px; top: 338px; }
.node-4 { left: 270px; top: 415px; }
.node-5 { left: 136px; top: 338px; }
.node-6 { left: 136px; top: 182px; }

/* Right Column Value Cards */
.value-cards-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v-card {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.v-card:hover {
    transform: translateX(6px);
}

.v-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-card-info strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.v-card-info p {
    font-size: 0.76rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* Section 3: Bottom Split Grid */
.oem-bottom-section {
    background: #ffffff;
    padding: 20px 0 60px 0;
}

.oem-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Work Together Box */
.work-together-box {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.work-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
}

.work-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.work-icon-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.work-title {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.work-desc {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.3;
}

.work-arrow {
    font-size: 1.2rem;
    color: #f5a623;
    margin-top: 10px;
}

/* Categories Box */
.categories-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
}

.box-light-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #0f172a;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.cat-items-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-icon-node {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.cat-item-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    text-transform: uppercase;
}

/* Section 4: OEM CTA Banner */
.oem-cta-section {
    background: #ffffff;
    padding: 0 0 60px 0;
}

.oem-cta-banner-card {
    background: #080c14;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 7fr 3fr;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.oem-cta-left {
    padding: 32px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.oem-cta-title-bar {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 24px;
}

.oem-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pillar-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(245, 166, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.pillar-text span {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.3;
}

.oem-cta-right {
    background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #080c14;
}

.oem-cta-right h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.oem-cta-right p {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 18px;
}

.btn-join-ecosystem {
    background: #080c14;
    color: #f5a623;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-join-ecosystem:hover {
    transform: translateY(-2px);
    background: #0f172a;
}

/* Responsive Styles for OEM Partnership Page */
@media (max-width: 1200px) {
    .oem-grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .oem-bottom-grid {
        grid-template-columns: 1fr;
    }

    .oem-cta-banner-card {
        grid-template-columns: 1fr;
    }

    .oem-cta-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Investor Centre Hero Section */
.investor-hero-section {
    position: relative;
    background: #080c14;
    color: #ffffff;
    padding: 130px 0 50px 0;
    min-height: 480px;
    overflow: hidden;
}

.investor-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.investor-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investor-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.88) 50%, rgba(8, 12, 20, 0.5) 100%);
}

.investor-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 40px;
    align-items: center;
}

.investor-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 6px;
}

.investor-hero-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.investor-hero-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    max-width: 680px;
    line-height: 1.55;
    margin-bottom: 28px;
}

/* 5 Key Metric Cards */
.investor-metrics-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    margin-top: 10px;
}

.inv-metric-box {
    background: rgba(10, 15, 29, 0.75);
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: 14px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.inv-metric-box:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.6);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.15);
}

.inv-metric-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inv-metric-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inv-sub {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #f5a623;
    text-transform: uppercase;
    line-height: 1.25;
}

.inv-stat {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.45rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
}

.inv-lbl {
    font-size: 0.73rem;
    color: #cbd5e1;
    line-height: 1.35;
}

.source-footnote {
    font-size: 0.68rem;
    color: #64748b;
    margin-top: 14px;
}

/* Right Quote Card */
.hero-quote-card {
    background: rgba(10, 15, 29, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-mark {
    font-size: 3.5rem;
    color: #f5a623;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: -15px;
}

.quote-text {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
}

.q-globe-icon {
    font-size: 1.2rem;
}

.quote-footer span {
    font-size: 0.76rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 0.5px;
}

/* Section 2: Middle 3-Column Section */
.investor-middle-section {
    background: #ffffff;
    padding: 60px 0;
}

.investor-3col-grid {
    display: grid;
    grid-template-columns: 3.5fr 5fr 3.5fr;
    gap: 30px;
    align-items: flex-start;
}

.col-main-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #0f172a;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hl-card {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hl-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-info strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.hl-info p {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* Center Pie Chart Column */
.inv-use-col {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 24px;
}

.donut-chart-wrapper {
    position: relative;
    width: 100%;
    min-height: 320px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-chart-box {
    position: relative;
    width: 280px;
    height: 280px;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #080c14;
    border: 2px solid #f5a623;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.donut-center strong {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.72rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

/* Donut Callouts */
.callout {
    position: absolute;
    max-width: 130px;
    font-size: 0.7rem;
    line-height: 1.25;
}

.callout-percent {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.3rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.gold-txt { color: #f5a623; }
.teal-txt { color: #0d9488; }
.blue-txt { color: #0284c7; }
.purple-txt { color: #9333ea; }
.dblue-txt { color: #1e3a8a; }

.callout-info strong {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    color: #0f172a;
}

.callout-info p {
    font-size: 0.68rem;
    color: #64748b;
}

/* Callout Absolute Positions */
.callout-tr { top: 10px; right: 0; text-align: left; }
.callout-mr { top: 130px; right: -15px; text-align: left; }
.callout-bc { bottom: -15px; left: 50%; transform: translateX(-50%); text-align: center; }
.callout-ml { top: 130px; left: -15px; text-align: right; }
.callout-tl { top: 10px; left: 0; text-align: right; }

.donut-focus-banner {
    background: #0a0f1d;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    margin-top: 24px;
}

.df-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(245, 166, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.df-text strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
}

/* Right Value Cards */
.inv-v-card {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.inv-v-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inv-v-info strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.inv-v-info p {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* Section 3: Bottom Split Section */
.investor-bottom-section {
    background: #ffffff;
    padding: 20px 0 60px 0;
}

.inv-bottom-grid {
    display: grid;
    grid-template-columns: 5fr 3.5fr 3.5fr;
    gap: 24px;
}

.pipeline-box {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pipeline-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.pipe-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pipe-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.pipe-item strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pipe-item p {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.3;
}

/* Future Image Card */
.future-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.future-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8,12,20,0.4) 0%, rgba(8,12,20,0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.future-overlay h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.future-overlay p {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Right Gold CTA Card */
.inv-cta-card {
    background: linear-gradient(135deg, #0a0f1d 0%, #080c14 100%);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.inv-cta-card h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #f5a623;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.inv-cta-card p {
    font-size: 0.78rem;
    color: #cbd5e1;
    line-height: 1.4;
    margin-bottom: 16px;
}

.btn-invest-now {
    background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
    color: #080c14;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease;
}

.btn-invest-now:hover {
    transform: translateY(-2px);
}

.inv-contact-footer {
    font-size: 0.68rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

/* Section 4: Full-Width Ticker Bar */
.investor-ticker-bar {
    background: #080c14;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-icon {
    font-size: 1.2rem;
}

.ticker-item strong {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

.ticker-divider {
    color: rgba(245, 166, 35, 0.4);
    font-weight: bold;
}

/* Responsive Styles for Investors Page */
@media (max-width: 1200px) {
    .investor-hero-grid {
        grid-template-columns: 1fr;
    }

    .investor-3col-grid {
        grid-template-columns: 1fr;
    }

    .inv-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .investor-metrics-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .pipeline-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .investor-metrics-row {
        grid-template-columns: 1fr;
    }

    .pipeline-metrics-grid {
        grid-template-columns: 1fr;
    }

    .ticker-flex {
        flex-direction: column;
        gap: 14px;
    }

    .ticker-divider {
        display: none;
    }
}

/* Projects Page Hero Section */
.projects-hero-section {
    position: relative;
    background: #080c14;
    color: #ffffff;
    padding: 130px 0 50px 0;
    min-height: 440px;
    overflow: hidden;
}

.projects-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.projects-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.85) 45%, rgba(8, 12, 20, 0.45) 100%);
}

.projects-hero-content {
    position: relative;
    z-index: 2;
}

.projects-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 14px;
}

.white-text { color: #ffffff; }

.projects-hero-desc {
    font-size: 1.02rem;
    color: #cbd5e1;
    max-width: 620px;
    line-height: 1.55;
    margin-bottom: 36px;
}

/* 5 Metric Badges */
.projects-metrics-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    max-width: 1100px;
}

.p-metric-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.p-metric-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-stat {
    display: block;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
}

.p-sub {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #f5a623;
    line-height: 1.25;
}

.p-lbl {
    display: block;
    font-size: 0.68rem;
    color: #94a3b8;
    line-height: 1.25;
}

/* Filter Tabs Section */
.filter-tabs-section {
    background: #ffffff;
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.filter-tabs-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.filter-tabs-scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.filter-tab.active {
    background: #080c14;
    color: #ffffff;
    border-color: #080c14;
}

.filter-btn-toggle {
    background: #080c14;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-icon-bars {
    color: #f5a623;
    font-size: 1.1rem;
}

/* Projects Cards Grid (5 Columns x 2 Rows) */
.projects-grid-section {
    background: #ffffff;
    padding: 40px 0 60px 0;
}

.projects-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.project-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.project-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img-wrap img {
    transform: scale(1.06);
}

/* Top Pill Badge */
.project-top-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.tag-blue { background: #0284c7; }
.tag-cyan { background: #06b6d4; }
.tag-teal { background: #0d9488; }
.tag-purple { background: #9333ea; }
.tag-navy { background: #1e3a8a; }
.tag-orange { background: #ea580c; }

.project-icon-badge {
    position: absolute;
    bottom: -18px;
    left: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border: 2px solid #ffffff;
    z-index: 2;
}

.project-body {
    padding: 26px 16px 18px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.92rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.project-location {
    font-size: 0.7rem;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 16px;
}

.project-link {
    font-size: 0.72rem;
    font-weight: 800;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #d97706;
}

/* Projects Bottom Section */
.projects-bottom-cta {
    background: #ffffff;
    padding: 0 0 60px 0;
}

.projects-cta-card {
    background: #080c14;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 7fr 3fr;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.projects-cta-left {
    padding: 32px 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.p-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.p-pillar-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-pillar-info strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-pillar-info span {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.3;
}

.projects-cta-right {
    background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #080c14;
}

.projects-cta-right h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.projects-cta-right p {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 18px;
}

.btn-discuss-project {
    background: #080c14;
    color: #f5a623;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-discuss-project:hover {
    transform: translateY(-2px);
    background: #0f172a;
}

/* Responsive Styles for Projects Page */
@media (max-width: 1200px) {
    .projects-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-cta-card {
        grid-template-columns: 1fr;
    }

    .projects-cta-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .projects-metrics-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .projects-metrics-bar {
        grid-template-columns: 1fr;
    }

    .projects-cards-grid {
        grid-template-columns: 1fr;
    }

    .projects-cta-left {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Hero Section */
.contact-hero-section {
    position: relative;
    background: #080c14;
    color: #ffffff;
    padding: 130px 0 50px 0;
    min-height: 440px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.85) 45%, rgba(8, 12, 20, 0.45) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 14px;
}

.contact-hero-desc {
    font-size: 1.02rem;
    color: #cbd5e1;
    max-width: 650px;
    line-height: 1.55;
    margin-bottom: 36px;
}

/* 4 Process Badges */
.contact-process-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    max-width: 1000px;
}

.c-process-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.c-process-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-title {
    display: block;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.cp-desc {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* Contact Main Split Section */
.contact-main-section {
    background: #ffffff;
    padding: 60px 0;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 30px;
    align-items: stretch;
}

/* Left Get In Touch Card */
.get-in-touch-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.contact-card-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #0f172a;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.c-info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #0a0f1d;
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-info-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.c-info-text p {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.45;
}

.c-info-text p a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-info-text p a:hover {
    color: #f5a623;
}

/* Right Send Us A Message Form Card */
.send-message-card {
    background: #0a0f1d;
    color: #ffffff;
    border-radius: 20px;
    padding: 36px 36px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.form-card-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.form-card-sub {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row.2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.82rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f5a623;
}

.form-group select option {
    background: #0a0f1d;
    color: #ffffff;
}

.checkbox-group {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    color: #94a3b8;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #f5a623;
}

.checkbox-label a {
    color: #f5a623;
    text-decoration: underline;
}

.btn-send-message {
    background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
    color: #080c14;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

/* Global Offices Section */
.global-offices-section {
    background: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.office-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.office-img-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

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

.office-body {
    padding: 18px 16px;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.office-header h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.84rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.office-address {
    font-size: 0.74rem;
    color: #64748b;
    margin-bottom: 6px;
}

.office-phone,
.office-email {
    font-size: 0.72rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 2px;
}

/* World Map Banner Section */
.world-map-section {
    background: #ffffff;
    padding: 30px 0;
}

.map-graphic-box {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-svg {
    width: 100%;
    max-height: 280px;
}

/* Contact Actions Bottom Bar */
.contact-actions-bar {
    background: #080c14;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.c-action-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 20px;
}

.contact-actions-grid .c-action-item:last-child {
    border-right: none;
    padding-right: 0;
}

.c-action-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-action-text strong {
    display: block;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.85rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.c-action-text p {
    font-size: 0.74rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.btn-action-outline {
    display: inline-block;
    border: 1px solid #f5a623;
    color: #f5a623;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-action-outline:hover {
    background: #f5a623;
    color: #080c14;
}

/* Footer Newsletter Styles */
.newsletter-col {
    max-width: 240px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 8px 10px;
    font-size: 0.75rem;
    color: #ffffff;
    outline: none;
    width: 100%;
}

.newsletter-form button {
    background: #f5a623;
    border: none;
    color: #080c14;
    padding: 8px 14px;
    font-weight: bold;
    cursor: pointer;
}

.footer-legal-links {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #f5a623;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1200px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-process-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-actions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .c-action-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .contact-process-bar {
        grid-template-columns: 1fr;
    }

    .form-row.2col {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }
}
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .oem-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .oem-features-bar {
        grid-template-columns: 1fr;
    }

    .cat-items-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .oem-pillars-grid {
        grid-template-columns: 1fr;
    }

    .eco-diagram-container {
        width: 320px;
        height: 320px;
    }
}