:root {
    --bg-deep: #0e2042;      /* Deepest blue left (brighter) */
    --bg-mid: #153164;       /* Mid blue center (brighter) */
    --bg-light: #1f4280;     /* Lighter blue right (brighter) */
    
    --text-main: #e2e8f0;
    --text-heading: #ffffff;
    --text-muted: #94a3b8;
    
    --accent-blue: #00e1ff;  /* For glowing accents */
    --accent-indigo: #4f46e5;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body.tech-theme { 
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-light) 100%);
    color: var(--text-main); 
    font-family: var(--font-body); 
    line-height: 1.6; 
    overflow-x: hidden; 
    min-height: 100vh;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
}

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 10; }

/* Wavy Backgrounds simulating the intersecting network lines */
.wave-bg {
    position: absolute;
    top: 0;
    width: 60vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.15;
    background-image: repeating-radial-gradient(
        circle at 0 50%, 
        transparent 0, 
        transparent 10px, 
        rgba(255,255,255,0.8) 10px, 
        rgba(255,255,255,0.8) 11px
    );
    filter: blur(1px);
}
.wave-left { left: -10vw; transform: scaleY(0.7) rotate(-15deg); }
.wave-right { right: -10vw; transform: scaleY(0.8) rotate(15deg); background-image: repeating-radial-gradient(circle at 100% 50%, transparent 0, transparent 15px, rgba(255,255,255,0.6) 15px, rgba(255,255,255,0.6) 16px); }

/* Decorative Dots */
.bg-dot { position: absolute; width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; }
.dot-1 { top: 10%; right: -20px; box-shadow: 0 0 10px rgba(255,255,255,0.8); }
.dot-2 { bottom: 20%; left: -40px; box-shadow: 0 0 8px rgba(255,255,255,0.6); }
.dot-3 { bottom: 5%; right: 40px; }

/* Buttons */
.btn { 
    display: inline-block; 
    padding: 14px 28px; 
    border-radius: 4px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    border: none; 
    cursor: pointer; 
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-white { 
    background: #ffffff; 
    color: #0b163d; 
    box-shadow: 0 4px 15px rgba(255,255,255,0.1); 
}
.btn-white:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(255,255,255,0.2); 
    background: #f8fafc;
}

/* Navbar */
.navbar-tech { 
    padding: 30px 0; 
    width: 100%; 
    z-index: 1000; 
    position: relative;
    transition: all 0.3s ease;
}
body.menu-open .navbar-tech {
    z-index: 10000; /* Boost above everything when menu is open */
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }

/* Logo Design */
.logo-wrapper { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    color: #fff;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.0));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.logo-text { 
    font-size: 1.6rem; 
    font-weight: 700; 
    color: #fff; 
    font-family: var(--font-heading); 
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-sub {
    font-size: 0.55rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 3px;
    color: #94a3b8;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { 
    color: #cbd5e1; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.85rem; 
    letter-spacing: 1px;
    transition: color 0.3s; 
}
.nav-links a:hover { color: #ffffff; }

.nav-actions { display: flex; align-items: center; gap: 24px; }
.nav-link-sub { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; }
.nav-link-sub:hover { opacity: 0.8; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

/* Hero Section */
.hero-tech { 
    padding: 60px 0 100px; 
    min-height: calc(100vh - 100px); 
    display: flex; 
    align-items: center; 
}
.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: center; 
}

/* Hero Text Area */
.hero-text { padding-right: 40px; }
.hero-text h1 { 
    font-size: 3.5rem; 
    line-height: 1.15; 
    margin-bottom: 20px; 
    font-weight: 800; 
    letter-spacing: -1px; 
}
.hero-text p { 
    font-size: 1.1rem; 
    color: #cbd5e1; 
    margin-bottom: 32px; 
    max-width: 90%;
    font-weight: 400;
}

/* Stats Row */
.hero-stats { 
    display: flex; 
    gap: 40px; 
    margin-top: 60px; 
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item h3 { 
    font-size: 1.75rem; 
    margin-bottom: 4px; 
    color: #fff;
}
.stat-item p { 
    font-size: 0.75rem; 
    margin-bottom: 0; 
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pill Composition */
.pill-composition {
    position: relative;
    display: flex;
    gap: 20px;
    height: 600px;
    align-items: center;
    justify-content: flex-end;
}
.pill-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.col-left { height: 80%; justify-content: center; }
.col-right { height: 100%; justify-content: center; }

/* The Pill Shape */
.img-pill {
    position: relative;
    border-radius: 200px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.1);
}
.img-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.img-pill img.align-left {
    object-position: left center;
}
.img-pill:hover img { transform: scale(1.05); }

/* Specific Pill Sizes */
.pill-large { width: 280px; height: 420px; }
.pill-offset { transform: translateY(60px); }

/* Floating Accents (Blue glowing lines) */
.pill-accent {
    position: absolute;
    width: 8px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-indigo));
    box-shadow: 0 0 15px var(--accent-blue);
    z-index: 20;
}
.accent-top { height: 80px; top: 10%; left: -30px; opacity: 0.8; }
.accent-bottom { height: 120px; bottom: 5%; right: 45%; opacity: 0.8; }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Premium Section Global Typography */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.section-subtitle {
    color: var(--accent-cyan);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 225, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(0, 225, 255, 0.2);
}
.section-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}
.section-desc {
    color: #cbd5e1;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1200px) {
    .section-title { font-size: 3rem; }
    .hero-text h1 { font-size: 3rem; }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .hero-text { padding-right: 0; }
    .hero-text p { margin: 0 auto 32px; }
    .hero-stats { justify-content: center; }
    .pill-composition { justify-content: center; height: 500px; padding-top: 40px; }
    .nav-links { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #0e2042;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.5, 0, 0, 1);
        z-index: 10001; /* Above navbar background */
        box-shadow: -10px 0 50px rgba(0,0,0,0.8);
        pointer-events: none;
        visibility: hidden;
    }
    .nav-links.active { 
        right: 0;
        pointer-events: auto;
        visibility: visible;
    }
    .nav-links a { 
        font-size: 1.5rem; 
        color: #fff;
        text-decoration: none;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .nav-actions { display: none; }
    .menu-toggle { 
        display: block; 
        z-index: 10000; /* Above nav-links */
        position: relative;
    }
    .wave-bg { display: none; }
    
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-large { grid-column: span 2; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section-title { font-size: 2.25rem; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 24px; border-top: none; }
    .stat-item h3 { font-size: 2.25rem; }
    
    .pill-composition { height: auto; flex-direction: column; align-items: center; justify-content: center; transform: none; margin-top: 40px; }
    .pill-col { height: auto; }
    .pill-large { width: 240px; height: 360px; }
    .pill-offset { transform: none; margin-top: -80px; }
    .pill-accent, .bg-dot { display: none; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; }
    .bento-standard { grid-column: span 1; }
    
    .grid-3 { grid-template-columns: 1fr; gap: 30px; }
    .split-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    
    .form-row-sidebar {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .pricing-grid { grid-template-columns: 1fr; }
    .side-form { grid-template-columns: 1fr; }
    .pricing-grid-dark, .pricing-grid-dark.grid-3 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.85rem; }
    .hero-text h1 { font-size: 2.1rem; }
    .btn { width: 100%; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .logo-text { font-size: 1.3rem; }
    .pill-large { width: 200px; height: 300px; }
}

/* Menu Toggle Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9000; /* Below navbar when menu-open */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}
.menu-overlay.active { 
    opacity: 1; 
    visibility: visible;
    pointer-events: auto;
}

/* General utility extensions for Tech Theme */
/* Dark Theme specifically for Contact & Support Pages */
.dark-tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: -30px auto 40px;
    position: relative;
    z-index: 20;
    flex-wrap: wrap;
}
.dark-tab {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.dark-tab:hover { background: rgba(255,255,255,0.1); }
.dark-tab.active {
    background: var(--accent-indigo);
    border-color: var(--accent-indigo);
    color: #fff;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}
.dark-tab i { width: 18px; height: 18px; }

/* Pricing Elements */
.pricing-toggles {
    display: inline-flex;
    background: rgba(0,0,0,0.2);
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}
.pt-btn {
    padding: 10px 32px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 26px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pt-btn.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.pt-btn .badge {
    background: rgba(0, 225, 255, 0.2);
    color: var(--accent-cyan);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
}

.pricing-grid-dark {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.pricing-grid-dark.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}
@media (max-width: 1024px) {
    .pricing-grid-dark.grid-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}
@media (max-width: 768px) {
    .pricing-grid-dark, .pricing-grid-dark.grid-3 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}
.price-card-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.price-card-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}
.role-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(79, 70, 229, 0.2);
    color: #818cf8;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.role-badge.agile {
    background: rgba(0, 225, 255, 0.1);
    color: var(--accent-cyan);
}
.role-badge.evolution {
    background: rgba(79, 70, 229, 0.1);
    color: #818cf8;
}
.role-badge.popular {
    background: var(--accent-cyan);
    color: #ffffff;
}
.price-card-glass.highlight {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 225, 255, 0.1);
}
.role-badge.part-time {
    background: rgba(0, 225, 255, 0.1);
    color: var(--accent-cyan);
}
.price-value {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}
.price-value .currency { font-size: 1.5rem; color: #fff; font-weight: 600; }
.price-value .amount { font-size: 3rem; color: #fff; font-weight: 700; line-height: 1; margin: 0 4px; }
.price-value .period { color: var(--text-muted); font-size: 0.9rem; }

.feature-list-dark { list-style: none; padding: 0; margin: 0; }
.feature-list-dark li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.feature-list-dark i { width: 18px; height: 18px; color: var(--accent-cyan); }

/* Support Form Dark Styles */
.dark-support-form { display: flex; flex-direction: column; gap: 24px; }
.form-row-dark {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 20px;
}
.form-row-dark label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}
.form-row-dark .req { color: #f87171; }

.select-wrapper-dark { position: relative; width: 100%; }
.select-wrapper-dark select {
    appearance: none;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
}
.select-icon-dark {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}
.file-upload-dark { display: flex; align-items: center; gap: 12px; }
.file-input { display: none; }

.custom-checkbox-dark {
    display: block;
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
    user-select: none;
}
.custom-checkbox-dark input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark-dark {
    position: absolute;
    top: 0; left: 0;
    height: 20px; width: 20px;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.2s;
}
.custom-checkbox-dark:hover input ~ .checkmark-dark { border-color: rgba(255,255,255,0.4); }
.custom-checkbox-dark input:checked ~ .checkmark-dark {
    background-color: var(--accent-indigo);
    border-color: var(--accent-indigo);
}
.checkmark-dark:after { content: ""; position: absolute; display: none; }
.custom-checkbox-dark input:checked ~ .checkmark-dark:after { display: block; }
.custom-checkbox-dark .checkmark-dark:after {
    left: 6px; top: 2px;
    width: 5px; height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .pricing-grid-dark { grid-template-columns: 1fr; }
    .form-row-dark { grid-template-columns: 1fr; gap: 8px; }
}
.mb-4 { margin-bottom: 24px; }
.w-100 { width: 100%; }

.btn-outline-light { 
    border: 2px solid rgba(255,255,255,0.2); 
    color: #fff; 
    background: transparent; 
}
.btn-outline-light:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: rgba(255,255,255,0.4); 
}

/* Sections General */
.section { padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 10; }
.glass-section { background: rgba(0, 0, 0, 0.2); backdrop-filter: blur(10px); }
.section-subtitle { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-blue); margin-bottom: 12px; }
.section-title { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.2; letter-spacing: -0.5px; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 48px; }

/* Layouts */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* Trust Section */
.trust-section { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.trust-title { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 32px; }
.logo-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; opacity: 0.4; }
.logo-placeholder { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; }

/* Services - Glass Cards */
.glass-service-card { 
    background: rgba(255,255,255,0.03); 
    padding: 40px 32px; 
    border-radius: 12px; 
    border: 1px solid rgba(255,255,255,0.08); 
    transition: all 0.3s; 
    backdrop-filter: blur(10px);
}
.glass-service-card:hover { 
    transform: translateY(-5px); 
    background: rgba(255,255,255,0.06); 
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}
.service-icon { color: var(--accent-blue); width: 40px; height: 40px; margin-bottom: 24px; stroke-width: 1.5; }
.glass-service-card h4 { font-size: 1.25rem; margin-bottom: 16px; }
.glass-service-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.read-more { color: var(--accent-blue); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.read-more:hover { color: #fff; }

/* Resources / Blog */
.flex-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.flex-header .section-title { margin-bottom: 0; }
.resource-card { 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 12px; 
    overflow: hidden; 
    transition: all 0.3s; 
}
.resource-card:hover { 
    border-color: rgba(255,255,255,0.2); 
    transform: translateY(-5px);
}
.resource-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: rgba(255,255,255,0.05);
}
.resource-content { padding: 32px; }
.tag { display: inline-block; padding: 4px 10px; background: rgba(0, 225, 255, 0.1); color: var(--accent-blue); border-radius: 4px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; margin-bottom: 16px; }
.resource-content h4 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.4; transition: color 0.2s; cursor: pointer; }
.resource-content h4:hover { color: var(--accent-blue); }
.resource-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.date { font-size: 0.85rem; color: #64748b; font-weight: 500; }

/* Contact Form */
.contact-details { margin-top: 48px; display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item i { color: var(--accent-blue); width: 24px; height: 24px; margin-top: 4px; }
.contact-item h4 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; margin: 0; }

.glass-panel { 
    background: rgba(255,255,255,0.03); 
    padding: 48px; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.08); 
    backdrop-filter: blur(10px);
}
.corporate-form label { display: block; font-size: 0.85rem; font-weight: 600; color: #cbd5e1; margin-bottom: 8px; letter-spacing: 0.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-control { 
    width: 100%; 
    padding: 14px 16px; 
    background: rgba(0,0,0,0.3); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 6px; 
    color: #fff; 
    font-size: 1rem; 
    font-family: var(--font-body); 
    transition: all 0.3s; 
    resize: vertical;
}
.form-control:focus { outline: none; border-color: var(--accent-blue); background: rgba(0,0,0,0.5); box-shadow: 0 0 0 3px rgba(0, 225, 255, 0.15); }
.form-terms { font-size: 0.8rem; text-align: center; margin-top: 16px; }

/* Corporate Footer */
.corporate-footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 32px; background: rgba(0, 0, 0, 0.4); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 0.95rem; margin-bottom: 24px; max-width: 300px; }
.footer-links h4 { color: #fff; font-size: 1.1rem; margin-bottom: 24px; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px; font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .grid-4, .grid-3, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- */
/* NEW DARK THEME FIXES FOR CONTACT & SUPPORT FORMS                           */
/* -------------------------------------------------------------------------- */

.input-field {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}
.input-field::placeholder {
    color: rgba(255,255,255,0.4);
}
.input-field:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 0 3px rgba(0, 225, 255, 0.15);
}

/* Glass Card & Form Grid Layouts used in Contact/Support */
.glass-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}
.grid-2-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.align-center {
    align-items: center;
}
@media (max-width: 768px) {
    .grid-2-form, .grid-2 { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- */
/* NEW BLOG PAGES TYPOGRAPHY & LAYOUT                                         */
/* -------------------------------------------------------------------------- */

.blog-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
}

.blog-content-container h2 {
    font-size: 2rem;
    color: #fff;
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
}

.blog-content-container h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 32px 0 16px;
}

.blog-content-container p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.blog-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--accent-cyan);
    border-left: 4px solid var(--accent-cyan);
    padding: 20px 0 20px 30px;
    margin: 40px 0;
    line-height: 1.6;
    background: linear-gradient(90deg, rgba(0,225,255,0.05) 0%, transparent 100%);
}

.blog-list {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
    padding-left: 20px;
}

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

.blog-list strong {
    color: #fff;
    font-weight: 600;
}

.social-share a {
    color: #fff;
    margin-left: 16px;
    transition: color 0.2s;
}

.social-share a:hover {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .blog-content-container {
        padding: 30px 20px;
    }
}

/* -------------------------------------------------------------------------- */
/* JOBS PAGE STYLES                                                         */
/* -------------------------------------------------------------------------- */

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 225, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.job-info h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    gap: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-meta i {
    width: 16px;
    height: 16px;
    color: var(--accent-cyan);
}

/* Closed Roles Styling */
.job-card.closed {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.05);
}

.job-card.closed .job-info h4 {
    color: var(--text-muted);
}

.job-card.closed .job-meta i {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 24px;
    }
    .job-card .btn {
        width: 100%;
        text-align: center;
    }
    .job-meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* -------------------------------------------------------------------------- */
/* BENTO BOX LAYOUT (Core Capabilities)                                       */
/* -------------------------------------------------------------------------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.bento-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 225, 255, 0.3);
}

.bento-card:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 225, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover:before {
    opacity: 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
}

.bento-large .bento-image-layer {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin-bottom: 24px;
}

.bento-large .bento-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.bento-wide .bento-content {
    flex: 1;
}

.bento-standard {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.bento-large .bento-icon {
    width: 64px;
    height: 64px;
    margin-bottom: auto;
}

.bento-wide .bento-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.bento-card h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.bento-large h4 {
    font-size: 2rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.bento-large p {
    font-size: 1.1rem;
}

.bento-card .read-more {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    margin-top: auto;
}

.bento-card .read-more:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large {
        grid-column: span 2;
        grid-row: span 1; 
    }
    .bento-wide {
        grid-column: span 2;
    }
    .bento-standard {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-wide, .bento-standard {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .bento-wide .bento-icon {
        margin-bottom: 16px;
    }
}
