:root {
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-main: #1a1a1f;
    --text-muted: #6c757d;
    --accent-primary: #0066ff;
    --accent-secondary: #00d2ff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-color: #e2e8f0;
}

/* Soft Dark Theme */
[data-theme="dark"] {
    --bg-light: #111827;
    --bg-white: #1f2937;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --accent-primary: #38bdf8;
    --accent-secondary: #0ea5e9;
    --glass-bg: rgba(31, 41, 55, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-color: #374151;
}

[data-theme="dark"] .blob { opacity: 0.15; }

[data-theme="dark"] .nav-center-logo img,
[data-theme="dark"] .footer-logo-section .logo img {
    filter: brightness(0) invert(1) opacity(0.9);
}

/* Theme Toggle Button */
.theme-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-left: 10px;
}
.theme-btn:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.language-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 66px;
    height: 34px;
    padding: 0 10px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 400;
}

.language-btn:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.language-code {
    min-width: 22px;
    text-align: center;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background gradient blobs for a soft vibrant touch */
.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #ff9a9e 0%, transparent 70%);
}

.blob-2 {
    bottom: 20%;
    right: -10%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #a1c4fd 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Typography & Utils */
.gradient-text {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.nav-brand span {
    color: var(--accent-primary);
}

.nav-center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    margin-top: 25px;
    z-index: 101; /* Ensure it stays above the navbar border */
}

.nav-center-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transform: scale(1.8);
    transform-origin: center center;
    transition: var(--transition);
}

.nav-center-logo img:hover {
    transform: scale(1.9);
}

.footer .logo img {
    transition: var(--transition);
}

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

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 20px;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hero h1 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 102, 255, 0.3);
}

/* Projects Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.projects-section {
    padding-top: 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Project Card with Image */
.project-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    background: #f0f0f0;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.project-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.tech-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags li {
    font-size: 0.8rem;
    padding: 6px 12px;
    background: var(--bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555;
    font-weight: 500;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 5% 20px;
    margin-top: 60px;
    background: var(--bg-white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: flex;
        gap: 12px;
    }

    .nav-links li {
        display: none;
    }

    .nav-links .language-toggle-item,
    .nav-links .theme-toggle-item {
        display: block;
    }

    .theme-btn {
        margin-left: 0;
    }
}

/* Project Link Wrapper */
.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Detail Page Specifics */
.detail-hero {
    padding-top: 130px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
}

.detail-content {
    max-width: 1000px;
    margin: 15px auto 80px;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.detail-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.detail-gallery {
    margin-top: 50px;
}

.detail-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-muted);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.trend-graph-placeholder {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .detail-content {
        padding: 30px;
        margin: 5px 15px 50px;
    }
}

/* Detail Page Extras */
.project-features {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.project-features h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-muted);
}

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

.feature-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-box:hover {
    background: #fff;
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.cta-section {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(0,102,255,0.05) 0%, rgba(0,210,255,0.05) 100%);
    padding: 50px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(0,102,255,0.1);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

/* Floating contact shortcut */
.contact-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--accent-primary);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.contact-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 102, 255, 0.35);
    color: #FFF;
}

/* Process Section */
.process-section {
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.process-step p {
    color: var(--text-muted);
}

@media (min-width: 769px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: var(--glass-border);
        z-index: 1;
    }
}

/* Partners Section */
.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.6;
}

.partner-logo {
    padding: 20px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
    background: #fff;
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

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

/* --- EDITORIAL MINIMALIST & FLAT UI OVERRIDES --- */
/* Bu bölüm, sitenizi "Klasik Yapay Zeka Şablonu" görünümünden çıkarıp, 
   özel, net, köşeli ve ciddi bir kurumsal kimliğe büründürür. */

/* 1. Renkli arka plan bulanıklıklarını (blobs) yok et */
.blob { display: none !important; }

/* 2. Tüm renk geçişlerini (gradients) iptal edip tek, tok renge çevir */
.gradient-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    color: var(--text-main) !important;
}

/* 3. Menüdeki cam efekti (glassmorphism) ve gölgeleri kaldır, düz, sert çizgi ekle */
.navbar {
    background: var(--bg-white) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid var(--glass-border) !important;
}

/* 4. Tüm yuvarlak köşeleri (border-radius) ve tatlı gölgeleri (box-shadow) PURE SIFIRLA */
.project-card, .btn, .badge, .project-image, .tech-tags li, .partner-logo {
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* 5. Kartların arkasındaki beyaz dolguyu kaldırıp sade, çizgi tabanlı bir tasarıma çevir */
.project-card {
    background: transparent !important;
    border: 1px solid var(--glass-border) !important;
}

/* 6. Kartların üzerine gelince yukarı zıplamasını engelle, sadece rengini değiştir */
.project-card:hover {
    transform: none !important;
    border-color: var(--accent-primary) !important;
}
.project-card:hover .project-image {
    transform: none !important; /* Resim büyütmeyi (zoom) iptal et */
}

/* 7. Butonları ve etiketleri sadeleştir */
.btn-primary {
    background: var(--text-main) !important;
    color: var(--bg-white) !important;
}
.btn-primary:hover {
    background: var(--accent-primary) !important;
    transform: none !important;
}

/* 8. Genel Font Seçimlerini Daha Tok ve Sert Yap */
body {
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.5px;
}


/* Koyu Temada Logo Rengini Orijinal Haliyle (Sari) Birakma */
[data-theme="dark"] .nav-center-logo img,
[data-theme="dark"] .footer-logo-section .logo img {
    filter: none !important;
}

/* Beyaz/Acik Temada Sadece Ust Logoyu Hafif Koyu Yapma */
html:not([data-theme="dark"]) .nav-center-logo img,
body:not([data-theme="dark"]) .nav-center-logo img {
    filter: contrast(1.1) brightness(0.85) drop-shadow(0px 1px 2px rgba(0,0,0,0.08)) !important;
}
/* Project Card Brand Title Separation */
.project-brand {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

[data-theme="dark"] .tech-tags li {
    border-color: rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.03);
}


.detail-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}
.detail-content .hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ENTERPRISE DESIGN OVERRIDES */
:root {
    --ent-primary: #2563eb;
    --ent-primary-light: #eff6ff;
    --ent-primary-dark: #1e3a8a;
    --ent-text: #334155;
    --ent-border: #e2e8f0;
    --ent-card-bg: #ffffff;
    --ent-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --ent-primary: #38bdf8;
    --ent-primary-light: #18181b;
    --ent-primary-dark: #0ea5e9;
    --ent-text: #f8fafc;
    --ent-border: #2e2e2e;
    --ent-card-bg: #141414;
    --ent-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.8);
}

.detail-content {
    background: var(--ent-card-bg) !important;
    border: 1px solid var(--ent-border) !important;
    box-shadow: var(--ent-shadow) !important;
    border-radius: 8px !important;
    padding: 50px 70px !important;
    text-align: left !important;
}

.enterprise-header {
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--ent-border);
}

.enterprise-header .badge {
    background: var(--ent-primary-light) !important;
    color: var(--ent-primary) !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 600;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.enterprise-header h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
    margin-bottom: 15px;
    text-align: left !important;
    line-height: 1.2;
}

.enterprise-header p {
    font-size: 1.15rem !important;
    color: var(--ent-text) !important;
    line-height: 1.7 !important;
    max-width: 800px;
    margin: 0 !important;
}

.detail-content h2, .detail-content h3 {
    text-align: left !important;
    color: var(--text-main) !important;
    font-weight: 700;
    border-bottom: 1px solid var(--ent-border);
    padding-bottom: 15px;
    margin-bottom: 30px;
    display: block;
}

.detail-content .badge {
    display: inline-block;
    margin-bottom: 15px;
}

.detail-content p {
    text-align: left;
    color: var(--ent-text);
    line-height: 1.7;
}

.tech-tags {
    justify-content: flex-start !important;
}

.tech-tags li {
    background: transparent !important;
    border: 1px solid var(--ent-border) !important;
    color: var(--ent-text) !important;
    border-radius: 4px !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tech-tags li:hover {
    border-color: var(--ent-primary) !important;
    color: var(--ent-primary) !important;
    background: var(--ent-primary-light) !important;
}

.project-features {
    border-top: none !important;
    margin-top: 50px !important;
    padding-top: 0 !important;
}

.features-grid .feature-box {
    text-align: left !important;
    border: 1px solid var(--ent-border) !important;
    background: var(--ent-card-bg) !important;
    padding: 35px 30px !important;
    box-shadow: none !important;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.features-grid .feature-box:hover {
    box-shadow: var(--ent-shadow) !important;
    transform: translateY(-2px);
    border-color: var(--ent-primary) !important;
}

.features-grid .feature-box i {
    background: var(--ent-primary-light);
    color: var(--ent-primary);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 8px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: inline-block;
    text-align: center;
}

.features-grid .feature-box h4 {
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cta-section {
    text-align: left !important;
    background: var(--ent-primary-light);
    border: 1px solid var(--ent-border);
    border-radius: 8px;
    padding: 40px;
    margin-top: 60px;
}

.cta-section h3 {
    border-bottom: none !important;
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
    color: var(--text-main) !important;
}

.cta-section p {
    margin-bottom: 25px !important;
}

.btn-primary {
    background: var(--ent-primary) !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
}

.btn-primary:hover {
    background: var(--ent-primary-dark) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

/* DARK THEME BADGE & TAG FIXES */
[data-theme="dark"] .enterprise-header .badge {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #f8fafc !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .tech-tags li {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #cbd5e1 !important;
}

[data-theme="dark"] .tech-tags li:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .features-grid .feature-box i {
    color: #38bdf8 !important;
    background: transparent !important;
}

/* ==============================================================
   CORPORATE REDESIGN STYLES (Schneider Electric Inspired)
   ============================================================== */

/* --- Corporate Navbar --- */
.corp-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Inter', sans-serif;
}

[data-theme="dark"] .corp-navbar {
    background: #141414;
    border-bottom: 1px solid #333;
}

.corp-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    border-bottom: 1px solid #f0f0f0;
}

[data-theme="dark"] .corp-nav-top {
    border-bottom: 1px solid #262626;
}

.corp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.corp-logo img {
    height: 40px;
}

.corp-brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.corp-brand-name span {
    color: var(--accent-primary);
}

[data-theme="dark"] .corp-brand-name {
    color: #fff;
}

.corp-search-bar {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 5px 15px;
    flex-grow: 1;
    max-width: 500px;
    margin: 0 20px;
}

[data-theme="dark"] .corp-search-bar {
    background: #262626;
}

.corp-search-bar input {
    border: none;
    background: transparent;
    padding: 8px;
    width: 100%;
    outline: none;
    color: #333;
}

[data-theme="dark"] .corp-search-bar input {
    color: #fff;
}

.corp-search-bar button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
}

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

.corp-login {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-theme="dark"] .corp-login {
    color: #fff;
}

.corp-nav-bottom {
    padding: 0 5%;
    background: #ffffff;
}

[data-theme="dark"] .corp-nav-bottom {
    background: #141414;
}

.corp-nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.corp-nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 15px 0;
    display: inline-block;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

[data-theme="dark"] .corp-nav-links li a {
    color: #eee;
}

.corp-nav-links li a:hover {
    color: var(--accent-primary);
    border-bottom: 3px solid var(--accent-primary);
}

.corp-nav-links li a i {
    font-size: 0.8rem;
    margin-left: 5px;
}

/* --- Hero Carousel Styles --- */
.hero-carousel-section {
    position: relative;
    height: 35vh;
    min-height: 280px;
    margin-top: 100px; /* Offset for navbar */
    overflow: hidden;
    background: #000;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 3;
}

.carousel-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 5%;
}

.badge-top {
    display: inline-block !important;
    margin-bottom: 25px !important;
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.minimal-text {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots .dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .minimal-text {
        font-size: 1.1rem;
    }
    .hero-carousel-section {
        height: 30vh;
        min-height: 250px;
    }
    .carousel-btn {
        display: none;
    }
}

/* --- Dropdown Styles --- */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    border: 1px solid #eaeaea;
}

[data-theme="dark"] .dropdown-content {
    background-color: #1a1a1a;
    border-color: #333;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content li a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    border-bottom: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

[data-theme="dark"] .dropdown-content li a {
    color: #ddd;
}

.dropdown-content li a:hover {
    background-color: #f8f9fa;
    color: var(--accent-primary);
}

[data-theme="dark"] .dropdown-content li a:hover {
    background-color: #262626;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        display: none;
    }
    .dropdown:hover .dropdown-content {
        display: none;
    }
    .dropdown.mobile-open .dropdown-content {
        display: block;
    }
    .dropdown-content li a {
        padding: 10px 20px;
        font-size: 1.1rem;
    }
}

/* --- Corporate Catalog Grid --- */
.corp-catalog-section {
    padding-top: 60px !important;
    background: #f8f9fa;
}

[data-theme="dark"] .corp-catalog-section {
    background: #0a0a0a;
}

.corp-catalog-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

[data-theme="dark"] .corp-catalog-header h2 {
    color: #fff;
}

.corp-catalog-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.corp-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.corp-filter-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

[data-theme="dark"] .corp-filter-title {
    color: #fff;
}

.corp-filter-group {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    border: 1px solid #eee;
}

[data-theme="dark"] .corp-filter-group {
    background: #141414;
    border: 1px solid #262626;
}

.corp-filter-btn {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 0;
    margin-bottom: 15px;
}

[data-theme="dark"] .corp-filter-btn {
    color: #fff;
}

.corp-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corp-filter-list li {
    margin-bottom: 12px;
}

.corp-filter-list label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    line-height: 1.4;
}

[data-theme="dark"] .corp-filter-list label {
    color: #bbb;
}

.corp-main-grid {
    flex-grow: 1;
}

.corp-grid-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.corp-items-count {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

[data-theme="dark"] .corp-items-count {
    color: #aaa;
}

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

.corp-project-link {
    text-decoration: none;
    display: block;
}

.corp-project-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .corp-project-card {
    background: #141414;
    border: 1px solid #262626;
}

.corp-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

[data-theme="dark"] .corp-project-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.corp-card-image {
    background: #fdfdfd;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .corp-card-image {
    background: #0a0a0a;
    border-bottom: 1px solid #262626;
}

.corp-card-image img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 4px;
}

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

.corp-card-content .corp-brand {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.corp-card-content h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

[data-theme="dark"] .corp-card-content h3 {
    color: #fff;
}

.corp-card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

[data-theme="dark"] .corp-card-content p {
    color: #aaa;
}

/* --- Mega Footer --- */
.corp-footer {
    background: var(--bg-white);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    padding-top: 70px;
    border-top: 1px solid var(--border-color);
}

.corp-footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 1200px) {
    .corp-footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-col-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .corp-footer-top {
        grid-template-columns: 1fr;
    }
    .footer-col-brand {
        grid-column: span 1;
    }
}

.footer-col-brand {
    padding-right: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo-link img {
    height: 48px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.footer-brand-name span {
    color: var(--accent-primary);
}

.footer-brand-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 360px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-link i {
    color: var(--accent-primary);
    width: 18px;
    text-align: center;
}

a.footer-contact-link:hover {
    color: var(--accent-primary);
}

.corp-footer-col {
    min-width: 140px;
}

.corp-footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-main);
}

.corp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corp-footer-col ul li {
    margin-bottom: 15px;
}

.corp-footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.corp-footer-col ul li a i {
    font-size: 0.7rem;
}

.corp-footer-col ul li a:hover {
    color: var(--accent-primary);
}

.corp-footer-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.corp-footer-illustration {
    margin-top: 30px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.corp-footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
    color: var(--text-main);
}

.corp-footer-brand span {
    color: var(--accent-primary);
}

.corp-footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 30px 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.corp-social-links {
    display: flex;
    gap: 15px;
}

.corp-social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.corp-social-links a:hover {
    color: var(--accent-primary);
}

.corp-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.corp-legal-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.85rem;
}

.corp-legal-links a:hover {
    text-decoration: underline;
}

.corp-copyright {
    color: #888;
    font-size: 0.85rem;
}

/* Mobile Adjustments for Corporate Design */
@media (max-width: 992px) {
    .corp-catalog-layout {
        flex-direction: column;
    }
    
    .corp-sidebar {
        width: 100%;
    }
    
    .corp-nav-bottom {
        display: none; /* Hide bottom nav links on mobile, they should be in hamburger */
    }
    
    .corp-search-bar {
        display: none; /* Hide search on mobile header to save space */
    }
    
    .corp-footer-top {
        flex-direction: column;
    }
    
    .corp-footer-col {
        min-width: 100%;
    }
    
    .corp-footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .corp-legal-links {
        justify-content: center;
    }
}

/* --- COMPREHENSIVE MOBILE RESPONSIVENESS --- */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    /* Layout Reset */
    .section {
        padding: 50px 5% !important;
    }
    
    .detail-hero {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    .detail-content {
        padding: 25px 15px !important;
        margin: 0px 10px 40px !important;
    }

    /* Typography Scaling */
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .enterprise-header h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    
    .detail-content h1, .detail-content h2, .detail-content h3 {
        font-size: 1.4rem !important;
    }

    .enterprise-header p, .detail-content p, .hero-content p {
        font-size: 1rem !important;
    }

    /* Grid Layouts to 1 Column */
    .projects-grid,
    .gallery-grid,
    .features-grid,
    .process-steps,
    .partners-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Navbar & Mobile Menu */
    .navbar {
        padding: 10px 5% !important;
    }
    
    .nav-brand {
        display: none !important;
    }
    
    .nav-center-logo {
        position: relative !important;
        left: 0 !important;
        transform: none !important;
        margin-top: 0 !important;
    }
    
    .nav-center-logo img {
        height: 35px !important;
        transform: none !important;
        margin: 0 !important;
    }

    .mobile-menu-btn {
        display: block !important;
        background: transparent;
        border: none;
        color: var(--text-main);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        gap: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        display: block !important;
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }

    .theme-btn {
        margin: 0 auto !important;
    }

    /* Fix WhatsApp float overlay */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 25px !important;
        line-height: 50px !important;
    }
}

/* ==========================================================================
   Premium Inner Pages
   ========================================================================== */

.premium-inner-hero {
    position: relative;
    padding: 140px 5% 40px;
    background-color: var(--bg-light);
    color: var(--text-main);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    overflow: hidden;
}

.premium-inner-hero::before {
    content: attr(data-watermark);
    position: absolute;
    top: calc(50% + 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    display: block !important;
}

[data-theme="dark"] .premium-inner-hero::before {
    color: rgba(255, 255, 255, 0.02);
    display: block !important;
}

.premium-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.premium-inner-hero .badge {
    display: inline-block;
    background: transparent !important;
    color: var(--accent-primary) !important;
    border: none !important;
    border-bottom: 2px solid var(--accent-primary) !important;
    border-radius: 0 !important;
    padding: 0 0 5px 0 !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: none !important;
    backdrop-filter: none;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.premium-inner-hero .badge:hover {
    transform: none !important;
    box-shadow: none !important;
}

[data-theme="dark"] .premium-inner-hero .badge {
    background: transparent !important;
    color: var(--accent-secondary) !important;
    border: none !important;
    border-bottom: 2px solid var(--accent-secondary) !important;
    box-shadow: none !important;
}
[data-theme="dark"] .premium-inner-hero .badge:hover {
    box-shadow: none !important;
}

.premium-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 0 var(--bg-white);
}

.premium-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.premium-content-wrapper {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.premium-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.premium-card h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-main);
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 15px;
}

.premium-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.premium-card h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-main);
}
.premium-card ul {
    margin-bottom: 20px;
}
.premium-card ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .premium-inner-hero {
        padding: 100px 5% 60px;
    }
    .premium-hero-content h1 {
        font-size: 1.8rem;
    }
    .premium-card {
        padding: 30px;
    }
    .premium-card h2 {
        font-size: 1.5rem;
    }
}

html:not([data-theme="dark"]) .corp-logo img,
html:not([data-theme="dark"]) .corp-footer-illustration img {
    filter: brightness(0.7) contrast(1.5) drop-shadow(0px 0px 1px rgba(0,0,0,0.3));
}

.corp-logo img,
.corp-footer-illustration img {
    transition: filter 0.3s ease, transform 0.3s ease !important;
}

.corp-logo img:hover,
.corp-footer-illustration img:hover {
    transform: scale(1.05) !important;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.3)) brightness(1.1) !important;
}

html:not([data-theme="dark"]) .corp-logo img:hover,
html:not([data-theme="dark"]) .corp-footer-illustration img:hover {
    filter: brightness(0.7) contrast(1.5) drop-shadow(0 0 25px rgba(255, 215, 0, 0.4)) !important;
}


/* ==============================================================
   Alternatif 1: Soft & Modern Content Blocks
   ============================================================== */
.project-features {
    text-align: left !important;
}
.project-features .badge {
    display: inline-block !important;
    background: rgba(0, 102, 255, 0.1) !important;
    color: var(--accent-primary) !important;
    padding: 5px 15px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
    border: none !important;
    box-shadow: none !important;
    letter-spacing: normal !important;
}

[data-theme="dark"] .project-features .badge {
    background: rgba(56, 189, 248, 0.1) !important;
    color: var(--accent-primary) !important;
}

.project-features h2 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    border-left: 4px solid var(--accent-primary) !important;
    padding: 0 0 0 15px !important;
    border-bottom: none !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

.project-features > p {
    text-align: left !important;
    color: var(--text-muted) !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
}

.features-grid .feature-box {
    background: var(--bg-light) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
    border: none !important;
    text-align: left !important;
    box-shadow: none !important;
}

.features-grid .feature-box:hover {
    transform: translateY(-5px) !important;
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-soft) !important;
}

.features-grid .feature-box i {
    font-size: 1.8rem !important;
    color: var(--accent-primary) !important;
    margin-bottom: 15px !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    text-align: left !important;
    display: block !important;
}

.features-grid .feature-box h3, .features-grid .feature-box h4 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: var(--text-main) !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.features-grid .feature-box p {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.project-features .btn, .project-features .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--accent-primary) !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    border: none !important;
    margin-top: 15px !important;
    box-shadow: none !important;
}

.project-features .btn:hover, .project-features .btn-primary:hover {
    filter: brightness(1.1) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2) !important;
    color: #fff !important;
}

/* ZIG-ZAG LAYOUT */
.zig-zag-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.zig-zag-row {
    display: flex;
    align-items: center;
    gap: 50px;
}
.zig-zag-row:nth-child(even) {
    flex-direction: row-reverse;
}
.zig-zag-content {
    flex: 1;
}
.zig-zag-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.zig-zag-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.zig-zag-image:hover img {
    transform: scale(1.05);
}
.zig-zag-content .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}
.zig-zag-content .feature-box {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 5px;
    align-items: start;
    padding: 20px;
}
.zig-zag-content .feature-box i {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-top: 2px;
}
.zig-zag-content .feature-box h4 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 1.1rem;
}
.zig-zag-content .feature-box p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.95rem;
}
@media (max-width: 992px) {
    .zig-zag-row, .zig-zag-row:nth-child(even) {
        flex-direction: column;
    }
}

/* CONTACT FORM STYLES */
.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}
.form-hp {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(50%);
}
.contact-form .form-row {
    display: flex;
    gap: 20px;
}
.contact-form .form-row > input {
    flex: 1;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    background-color: var(--bg-white);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form button {
    justify-content: center;
    padding: 18px !important;
    font-size: 1.1rem !important;
}
@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.search-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}
.search-item:last-child {
    border-bottom: none;
}
.search-item:hover {
    background: var(--bg-light);
    color: var(--accent-primary);
}

/* Feature Box Links */
.feature-box a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.feature-box a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* Sidebar Guide Widget Styles */
.corp-guide-widget {
    padding: 24px;
}

.sidebar-widget-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #888;
    font-weight: 700;
    margin-bottom: 14px;
}

[data-theme="dark"] .sidebar-widget-title {
    color: #a0a0a0;
}

.divider-top {
    border-top: 1px solid rgba(150, 150, 150, 0.15);
    padding-top: 20px;
    margin-top: 24px;
}

.focus-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.focus-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

[data-theme="dark"] .focus-pill {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

.focus-pill:hover {
    transform: translateX(3px);
    background: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
    color: #0f172a;
}

[data-theme="dark"] .focus-pill:hover {
    background: #0f172a;
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 0.9rem;
    flex-shrink: 0;
    background: #e2e8f0;
    color: #475569;
    transition: all 0.25s ease;
}

[data-theme="dark"] .pill-icon {
    background: #334155;
    color: #94a3b8;
}

.focus-pill:hover .pill-icon {
    background: #0284c7;
    color: #ffffff;
}

[data-theme="dark"] .focus-pill:hover .pill-icon {
    background: #0284c7;
    color: #ffffff;
}

/* Override previous multi-colors for professional corporate unity */
.pill-blue .pill-icon,
.pill-cyan .pill-icon,
.pill-purple .pill-icon,
.pill-emerald .pill-icon {
    background: #e2e8f0;
    color: #475569;
}

[data-theme="dark"] .pill-blue .pill-icon,
[data-theme="dark"] .pill-cyan .pill-icon,
[data-theme="dark"] .pill-purple .pill-icon,
[data-theme="dark"] .pill-emerald .pill-icon {
    background: #334155;
    color: #94a3b8;
}

.focus-pill:hover .pill-blue .pill-icon,
.focus-pill:hover .pill-cyan .pill-icon,
.focus-pill:hover .pill-purple .pill-icon,
.focus-pill:hover .pill-emerald .pill-icon {
    background: #0284c7;
    color: #ffffff;
}

.pill-arrow {
    margin-left: auto;
    font-size: 0.75rem;
    color: #94a3b8;
    opacity: 0.6;
    transition: transform 0.25s ease, color 0.25s ease;
}

.focus-pill:hover .pill-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: #0284c7;
}

[data-theme="dark"] .focus-pill:hover .pill-arrow {
    color: #38bdf8;
}

.tech-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 500;
}

[data-theme="dark"] .tech-specs-list {
    color: #cbd5e1;
}

.tech-specs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-icon {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #64748b;
}

[data-theme="dark"] .spec-icon {
    color: #94a3b8;
}

/* Serious corporate monochrome/metallic accent for specs */
.icon-emerald,
.icon-blue,
.icon-amber,
.icon-purple {
    color: #475569;
}

[data-theme="dark"] .icon-emerald,
[data-theme="dark"] .icon-blue,
[data-theme="dark"] .icon-amber,
[data-theme="dark"] .icon-purple {
    color: #94a3b8;
}

.new-grid-top {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding-bottom: 16px;
    margin-bottom: 28px;
}

.grid-top-left {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

[data-theme="dark"] .grid-top-left {
    color: #aaa;
}

.corp-footer-contact {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    padding-right: 5px;
}

.corp-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.corp-footer-contact a:hover {
    color: var(--accent-primary);
}

.mobile-title-break {
    display: none;
}

@media (max-width: 992px) {
    .mobile-title-break {
        display: block;
    }

    .corp-nav-top {
        min-height: 61px;
        padding: 8px 5%;
        gap: 12px;
    }

    .corp-brand-name {
        font-size: clamp(1.1rem, 6vw, 1.5rem);
    }

    .corp-logo {
        min-width: 0;
    }

    .corp-logo img {
        height: 40px;
        flex: 0 0 auto;
    }

    .corp-utils {
        gap: 10px;
        margin-left: auto;
    }

    .corp-login {
        display: none !important;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
        position: fixed;
        top: 10px;
        right: auto;
        left: calc(100dvw - 56px);
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex: 0 0 auto;
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--text-main);
        font-size: 1.35rem;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        z-index: 1101;
    }

    .mobile-menu-btn i {
        display: none;
    }

    .mobile-menu-btn::before {
        content: "\2630";
        font-size: 1.45rem;
        line-height: 1;
    }

    .mobile-menu-btn.is-open::before {
        content: "\00d7";
        font-size: 1.8rem;
    }

    .corp-utils .theme-btn {
        display: none !important;
    }

    .corp-nav-bottom {
        display: block !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .corp-nav-links {
        position: fixed !important;
        top: 61px !important;
        right: -100% !important;
        width: min(82vw, 340px) !important;
        height: calc(100vh - 61px) !important;
        padding: 24px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        overflow-y: auto !important;
        background: var(--bg-white) !important;
        border-left: 1px solid var(--border-color);
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
        transition: right 0.25s ease !important;
        z-index: 1100 !important;
    }

    .corp-nav-links.mobile-active {
        right: 0 !important;
    }

    .corp-nav-links li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .corp-nav-links li a,
    .corp-nav-links .language-btn {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding: 11px 0 !important;
        font-size: 1rem !important;
    }

    .dropdown-content {
        position: static !important;
        display: block !important;
        min-width: 0 !important;
        padding: 0 0 0 12px !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .dropdown-content li a {
        font-size: 0.92rem !important;
        color: var(--text-muted) !important;
    }
}

@media (max-width: 992px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-carousel-section {
        margin-top: 61px !important;
        height: 292px !important;
        min-height: 292px !important;
    }

    .carousel-content {
        width: 100%;
        max-width: 100%;
        padding: 0 24px;
        overflow: hidden;
    }

    .badge-top {
        max-width: calc(100vw - 48px);
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.35;
        padding: 8px 16px !important;
        font-size: 0.78rem !important;
        letter-spacing: 0.04em !important;
    }

    .minimal-text {
        max-width: 100%;
        font-size: clamp(0.95rem, 4.2vw, 1.08rem) !important;
        line-height: 1.45 !important;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .carousel-dots {
        bottom: 18px;
    }

    .corp-catalog-header h2,
    .premium-hero-content h1 {
        width: calc(100vw - 64px) !important;
        width: calc(100dvw - 64px) !important;
        max-width: calc(100vw - 64px) !important;
        max-width: calc(100dvw - 64px) !important;
        font-size: clamp(1.75rem, 8vw, 2.2rem) !important;
        line-height: 1.15 !important;
        overflow-wrap: anywhere;
        text-shadow: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .premium-inner-hero {
        padding: 100px 24px 56px !important;
        overflow: hidden;
    }

    .premium-hero-content {
        max-width: 100%;
    }

    .premium-card {
        width: calc(100vw - 48px) !important;
        width: calc(100dvw - 48px) !important;
        max-width: calc(100vw - 48px) !important;
        max-width: calc(100dvw - 48px) !important;
        padding: 28px 24px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .premium-content-wrapper,
    .project-features,
    .features-grid,
    .features-grid .feature-box {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .project-features > p,
    .features-grid .feature-box p {
        width: calc(100vw - 104px) !important;
        width: calc(100dvw - 104px) !important;
        max-width: 100% !important;
        overflow-wrap: anywhere;
    }

    .corp-grid-top {
        justify-content: flex-start;
    }

    .corp-items-count {
        text-align: left;
    }

    .contact-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 22px !important;
        line-height: 50px !important;
    }

    .corp-footer-contact {
        justify-content: flex-start;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .corp-nav-bottom {
        position: fixed;
        top: 61px;
        left: 0;
        right: 0;
        max-width: 100vw;
        max-width: 100dvw;
        z-index: 1000;
        display: block !important;
        padding: 0 12px !important;
        overflow-x: hidden;
        overflow-y: hidden;
        white-space: normal;
        border-bottom: 1px solid var(--border-color);
        background: var(--bg-white) !important;
        -webkit-overflow-scrolling: touch;
    }

    .corp-nav-links {
        position: static !important;
        right: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 46px;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        overflow: visible !important;
        border-left: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .corp-nav-links li {
        width: auto !important;
        flex: 0 0 auto;
    }

    .corp-nav-links .language-toggle-item {
        display: none !important;
    }

    .corp-nav-links li a,
    .corp-nav-links .language-btn {
        width: auto;
        min-height: 46px;
        display: inline-flex !important;
        align-items: center;
        padding: 0 !important;
        font-size: 0.74rem !important;
    }

    .corp-nav-links li a i {
        display: none;
    }

    .corp-nav-links .dropdown-content {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .hero-carousel-section,
    .premium-inner-hero {
        margin-top: 107px !important;
    }

    .hero-carousel-section,
    .carousel-container {
        width: 100vw !important;
        width: 100dvw !important;
        max-width: 100vw !important;
        max-width: 100dvw !important;
        left: 0;
    }

    .carousel-content {
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: auto !important;
        transform: translateY(-50%) !important;
        width: calc(100vw - 32px) !important;
        width: calc(100dvw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        max-width: calc(100dvw - 32px) !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .carousel-dots {
        left: 50vw !important;
        left: 50dvw !important;
    }

    .badge-top,
    .minimal-text {
        width: 342px !important;
        max-width: calc(100vw - 48px) !important;
        max-width: calc(100dvw - 48px) !important;
        white-space: normal !important;
    }

    .minimal-text {
        display: block !important;
        margin-left: 24px !important;
        margin-right: 24px !important;
    }

    .badge-top {
        margin-left: 24px !important;
        margin-right: 24px !important;
    }

    .premium-hero-content h1 {
        width: calc(100vw - 80px) !important;
        width: calc(100dvw - 80px) !important;
        max-width: calc(100vw - 80px) !important;
        max-width: calc(100dvw - 80px) !important;
        font-size: 1.55rem !important;
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .premium-hero-content {
        width: 100vw !important;
        width: 100dvw !important;
        max-width: 100vw !important;
        max-width: 100dvw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .project-features > p {
        width: calc(100vw - 128px) !important;
        width: calc(100dvw - 128px) !important;
        max-width: calc(100vw - 128px) !important;
        max-width: calc(100dvw - 128px) !important;
    }
}

/* --- Premium Corporate Footer Overrides --- */
.corp-footer-bottom {
    border-top: 1px solid var(--border-color) !important;
    margin-top: 60px !important;
    padding: 24px 5% !important;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.corp-copyright {
    font-size: 0.88rem !important;
    color: var(--text-muted) !important;
    font-weight: 500;
}

.corp-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px !important;
}

.corp-legal-links a {
    color: var(--text-muted) !important;
    text-decoration: none;
    font-size: 0.88rem !important;
    font-weight: 500;
    transition: color 0.2s;
}

.corp-legal-links a:hover {
    color: var(--accent-primary) !important;
}

/* --- Prominent Crisp Logo Overrides --- */
html:not([data-theme="dark"]) .corp-logo img,
html:not([data-theme="dark"]) .footer-logo-link img {
    filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.1)) !important;
}

.corp-logo img {
    height: 55px !important;
    object-fit: contain !important;
}

.footer-logo-link img {
    height: 65px !important;
    object-fit: contain !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease !important;
}

.footer-logo-link:hover img {
    transform: scale(1.08) rotate(-2deg) !important;
    filter: drop-shadow(0 0 22px rgba(255, 193, 7, 0.65)) brightness(1.12) !important;
}

.corp-brand-name,
.footer-brand-name {
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    font-family: 'Outfit', sans-serif !important;
    transition: color 0.3s ease;
}

/* --- Final Mobile Layout Fixes --- */
@media (max-width: 992px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .corp-navbar {
        left: 0 !important;
        right: auto !important;
        width: 100vw !important;
        width: 100dvw !important;
        max-width: 100vw !important;
        max-width: 100dvw !important;
        min-width: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .corp-nav-top {
        width: 100vw !important;
        width: 100dvw !important;
        max-width: 100vw !important;
        max-width: 100dvw !important;
        min-height: 62px !important;
        padding: 8px 12px !important;
        box-sizing: border-box !important;
    }

    .corp-logo {
        min-width: 0 !important;
        max-width: calc(100% - 96px) !important;
    }

    .corp-logo img {
        height: 48px !important;
        flex: 0 0 auto !important;
    }

    .corp-brand-name {
        font-size: 1.6rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .corp-search-bar,
    .corp-login,
    .mobile-menu-btn,
    .language-toggle-item {
        display: none !important;
    }

    .corp-utils {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        gap: 8px !important;
        margin-left: auto !important;
    }

    .corp-utils .language-btn,
    .corp-utils .theme-btn,
    #theme-toggle.theme-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 999px !important;
        border: 1px solid var(--border-color) !important;
        background: var(--bg-light) !important;
        color: var(--text-main) !important;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08) !important;
        font-size: 1.05rem !important;
    }

    .corp-utils .language-btn {
        gap: 0 !important;
        font-size: 0.74rem !important;
        font-weight: 800 !important;
        letter-spacing: 0 !important;
    }

    .corp-utils .language-btn i {
        display: none !important;
    }

    .corp-utils .language-code {
        min-width: 0 !important;
    }

    [data-theme="dark"] .corp-utils .language-btn,
    [data-theme="dark"] .corp-utils .theme-btn,
    [data-theme="dark"] #theme-toggle.theme-btn {
        background: #1f2937 !important;
        color: #f8fafc !important;
        border-color: rgba(255, 255, 255, 0.12) !important;
    }

    .corp-nav-bottom {
        position: fixed !important;
        top: 62px !important;
        left: 0 !important;
        right: auto !important;
        width: 100vw !important;
        width: 100dvw !important;
        max-width: 100vw !important;
        max-width: 100dvw !important;
        min-width: 0 !important;
        padding: 0 8px !important;
        overflow: hidden !important;
        background: var(--bg-white) !important;
        border-bottom: 1px solid var(--border-color) !important;
        box-sizing: border-box !important;
    }

    .corp-nav-links {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 44px !important;
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
    }

    .corp-nav-links.detail-nav-links {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .corp-nav-links li {
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .corp-nav-links li a {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 2px !important;
        font-size: 0.72rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: clip !important;
    }

    .corp-nav-links li a i,
    .corp-nav-links .dropdown-content,
    .corp-nav-links .language-toggle-item {
        display: none !important;
    }

    .hero-carousel-section,
    .premium-inner-hero {
        margin-top: 106px !important;
        left: 0 !important;
        right: auto !important;
        width: 100vw !important;
        width: 100dvw !important;
        max-width: 100vw !important;
        max-width: 100dvw !important;
        min-width: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .premium-inner-hero {
        padding: 72px 16px 56px !important;
        text-align: center !important;
    }

    .premium-inner-hero::before {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-width: 100% !important;
        font-size: clamp(3.2rem, 18vw, 5rem) !important;
        overflow: hidden !important;
    }

    .premium-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .premium-hero-content .badge {
        display: inline-block !important;
        margin: 0 auto 18px !important;
    }

    .premium-hero-content h1 {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        font-size: 1.55rem !important;
        line-height: 1.16 !important;
        text-align: center !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        transform: none !important;
    }

    .premium-content-wrapper,
    .corp-catalog-section {
        width: 100vw !important;
        width: 100dvw !important;
        max-width: 100vw !important;
        max-width: 100dvw !important;
        min-width: 0 !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .premium-card,
    .project-features,
    .features-grid,
    .features-grid .feature-box,
    .corp-catalog-layout,
    .corp-sidebar,
    .corp-filter-group,
    .corp-main-grid,
    .corp-projects-grid,
    .corp-project-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .premium-card {
        padding: 28px 24px !important;
    }

    .project-features h2,
    .project-features > p,
    .features-grid .feature-box p,
    .corp-catalog-header h2,
    .corp-filter-title {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        box-sizing: border-box !important;
    }

    .project-features h2 {
        font-size: clamp(1.7rem, 8vw, 2.15rem) !important;
    }

    .project-features > p {
        font-size: 1rem !important;
        line-height: 1.55 !important;
    }

    .hero-carousel-section {
        height: 292px !important;
        min-height: 292px !important;
    }

    .carousel-container,
    .carousel-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .carousel-content {
        left: 0 !important;
        right: 0 !important;
        padding: 0 24px !important;
        transform: translateY(-50%) !important;
    }

    .badge-top,
    .minimal-text {
        width: 100% !important;
        max-width: 342px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .minimal-text {
        font-size: 1rem !important;
        line-height: 1.42 !important;
    }

    .contact-float {
        width: 48px !important;
        height: 48px !important;
        right: 16px !important;
        bottom: 16px !important;
        font-size: 1.2rem !important;
    }

    .corp-nav-links > li {
        width: 100% !important;
        max-width: 100% !important;
    }

    .corp-nav-links li a {
        font-size: 0.66rem !important;
        letter-spacing: 0 !important;
    }

    .hero-carousel-section .carousel-content {
        position: absolute !important;
        left: 0 !important;
        right: auto !important;
        width: 100vw !important;
        width: 100dvw !important;
        max-width: 100vw !important;
        max-width: 100dvw !important;
        padding: 0 24px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .hero-carousel-section .badge-top,
    .hero-carousel-section .minimal-text {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .hero-carousel-section .minimal-text {
        font-size: 0.95rem !important;
        line-height: 1.42 !important;
    }
}

/* ==========================================================================
   Clean & Elegant Logo Styling for White Theme
   ========================================================================== */
/* Light Theme: Use equalized logo */
html:not([data-theme="dark"]) .corp-logo img,
html:not([data-theme="dark"]) .footer-logo-link img {
    content: url("assets/images/logo-small.webp") !important;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15)) drop-shadow(0px 2px 4px rgba(180, 130, 20, 0.25)) saturate(1.1) !important;
}

html:not([data-theme="dark"]) .footer-logo-link:hover img {
    content: url("assets/images/logo-small.webp") !important;
    filter: drop-shadow(0 0 22px rgba(255, 193, 7, 0.75)) saturate(1.2) brightness(1.08) !important;
}

/* Dark Theme: Use original logo */
[data-theme="dark"] .corp-logo img,
[data-theme="dark"] .footer-logo-link img {
    content: url("assets/images/logo-dark.webp") !important;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4)) !important;
}

[data-theme="dark"] .footer-logo-link:hover img {
    content: url("assets/images/logo-dark.webp") !important;
    filter: drop-shadow(0 0 22px rgba(255, 193, 7, 0.8)) brightness(1.1) !important;
}

/* Make OPC VISION text solid, high-contrast, opaque in Light Theme */
html:not([data-theme="dark"]) .corp-brand-name,
html:not([data-theme="dark"]) .footer-brand-name {
    color: #090d16 !important; /* Pitch solid black for OPC */
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
}

html:not([data-theme="dark"]) .corp-brand-name span,
html:not([data-theme="dark"]) .footer-brand-name span {
    color: #004dd2 !important; /* Deep solid royal cobalt blue for VISION */
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
}

/* ==========================================================================
   Final Logo & Brand Alignment Lock
   ========================================================================== */
.corp-nav-top {
    display: grid !important;
    grid-template-columns: minmax(230px, auto) minmax(260px, 500px) auto !important;
    align-items: center !important;
    column-gap: 24px !important;
    min-height: 76px !important;
    padding: 10px max(5%, 32px) !important;
}

.corp-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    justify-self: start !important;
    gap: 12px !important;
    width: max-content !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.corp-logo img {
    display: block !important;
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    flex: 0 0 56px !important;
    object-fit: contain !important;
    transform: none !important;
}

.corp-brand-name {
    display: inline-flex !important;
    align-items: baseline !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    font-size: 1.85rem !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
}

.corp-search-bar {
    justify-self: center !important;
    width: min(100%, 500px) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.corp-utils {
    justify-self: end !important;
}

.footer-logo-link,
.corp-footer-illustration > div:first-child {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 0 16px !important;
    white-space: nowrap !important;
}

.corp-footer-illustration {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin: 0 0 16px !important;
}

.footer-logo-link img,
.corp-footer-illustration img {
    display: block !important;
    width: 62px !important;
    height: 62px !important;
    max-width: 62px !important;
    flex: 0 0 62px !important;
    object-fit: contain !important;
    transform: none !important;
}

.footer-brand-name,
.corp-footer-brand {
    display: inline-flex !important;
    align-items: baseline !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    color: var(--text-main) !important;
}

.footer-brand-name span,
.corp-footer-brand span {
    color: var(--accent-primary) !important;
}

.corp-footer-contact {
    justify-content: flex-start !important;
    padding-right: 0 !important;
    margin-top: 12px !important;
}

@media (max-width: 1120px) {
    .corp-nav-top {
        grid-template-columns: auto minmax(220px, 1fr) auto !important;
        column-gap: 16px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .corp-logo img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        flex-basis: 52px !important;
    }

    .corp-brand-name {
        font-size: 1.7rem !important;
    }
}

@media (max-width: 992px) {
    .corp-nav-top {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        min-height: 74px !important;
        padding: 10px 18px !important;
    }

    .corp-logo {
        width: auto !important;
        max-width: calc(100% - 112px) !important;
        gap: 10px !important;
        overflow: hidden !important;
    }

    .corp-logo img {
        width: 54px !important;
        height: 54px !important;
        max-width: 54px !important;
        flex-basis: 54px !important;
    }

    .corp-brand-name {
        min-width: 0 !important;
        font-size: clamp(1.45rem, 6.6vw, 1.8rem) !important;
        overflow: hidden !important;
        text-overflow: clip !important;
    }

    .corp-nav-bottom {
        top: 74px !important;
    }

    .hero-carousel-section,
    .premium-inner-hero {
        margin-top: 118px !important;
    }
}

@media (max-width: 520px) {
    .corp-nav-top {
        min-height: 70px !important;
        padding: 8px 12px !important;
        gap: 8px !important;
    }

    .corp-logo {
        max-width: calc(100% - 96px) !important;
        gap: 8px !important;
    }

    .corp-logo img {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
        flex-basis: 50px !important;
    }

    .corp-brand-name {
        font-size: clamp(1.3rem, 7vw, 1.65rem) !important;
    }

    .corp-nav-bottom {
        top: 70px !important;
    }

    .hero-carousel-section,
    .premium-inner-hero {
        margin-top: 114px !important;
    }

    .footer-logo-link,
    .corp-footer-illustration > div:first-child {
        gap: 10px !important;
    }

    .footer-logo-link img,
    .corp-footer-illustration img {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        flex-basis: 56px !important;
    }

    .footer-brand-name,
    .corp-footer-brand {
        font-size: 1.55rem !important;
    }
}
