/* =========================================
   2. GLOBAL RESET & BASE
   ========================================= */
/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    cursor: default;
    /* Kept default, or use your custom cursor */
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Optional: Subtle Noise Texture for "Film" look */
}

/* Smooth Scroll Container */
#smooth-wrapper {
    width: 100%;
    overflow: hidden;
}

/* =========================================
   3. GLOBAL NAVIGATION (Navbar)
   ========================================= */
/* Navigation - Modern Floating Pill */
.navbar {
    position: fixed;
    top: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1320px;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.817);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.017);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 1rem;
    padding: 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        top: 1rem;
        padding: 0.4rem 1.1rem;
        /* Inherits left:0, right:0, margin:0 auto from desktop */
    }

    .nav-links a {
        display: none;
        /* Hide text links on mobile for simplicity */
    }

    .logo {
        max-width: 65px !important;
        margin-top: 6px;
    }

    .hero-dashboard-overlay {
        left: -3px !important;
        bottom: -21% !important;
        width: 75% !important;
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links .nav-item {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    /* Space between text and arrow */
}

.nav-links a:not(.nav-item) {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links .nav-item:hover,
.nav-links a:not(.nav-item):hover {
    color: var(--text-primary);
}

/* Active Page Indicator */
.nav-links a.active {
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-color));
    border-radius: 2px;
}


.nav-arrow {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* =========================================
   4. HOME PAGE: HERO SECTION
   ========================================= */

/* --- Mobile Menu Styles --- */

/* Hamburger Button */
.hamburger-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 23px;
    height: 14px;
    z-index: 10001;
    /* Above almost everything */
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Sidebar (Left Side Drawer) */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 10002;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
    /* Enable vertical scrolling */
}

.mobile-menu-sidebar.active {
    transform: translateX(0);
}

/* Mobile Header inside Sidebar */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-logo {
    height: 32px;
    /* Adjust size */
    width: auto;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

/* Mobile Links */
.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.mobile-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Mobile Dropdowns */
.mobile-drop-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    /* Inherit Outfit font */
}

.mobile-drop-btn .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-drop-btn.active .arrow {
    transform: rotate(180deg);
}

.mobile-drop-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 0.5rem;
    margin-top: 0;
}

.mobile-drop-content.active {
    max-height: 800px;
    /* Arbitrary large height to allow expansion */
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.mobile-drop-content a {
    font-size: 0.95rem;
    /* Slightly smaller for sub-items */
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-drop-content a:hover {
    color: var(--accent-color);
}

.m-icon {
    font-size: 1.1rem;
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
        /* Force hide desktop links */
    }

    .hamburger-btn {
        display: flex;
        /* Show Hamburger */
    }
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Adjusted for image */
    padding: 0 var(--container-padding);
    padding-top: 80px;
    background:
        radial-gradient(circle at 85% 15%, rgba(5, 40, 164, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 15% 85%, rgba(36, 83, 255, 0.06) 0%, transparent 40%),
        var(--bg-color);
    /* Cleaner, subtler base */
}

/* --- AMBIENT GLOW EFFECTS --- */
/* Add this class to sections you want to glow */
.section-glow {
    position: relative;
    overflow: hidden;
    /* Keeps the glow inside the section */
}

/* Top Right Glow (Cyan/Blue) */
.section-glow::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    will-change: transform, opacity;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

/* Bottom Left Glow (Purple/Violet) */
.section-glow::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    opacity: 0.12;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    will-change: transform, opacity;
    animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

.hero-content {
    flex: 0 0 65%;
    /* Take up significantly more space */
    z-index: 2;
    padding-right: 2rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-left: 0;
    /* Perspective for children is handled in image transform, but we can enable 3d space if needed */
    perspective: 1000px;
}

/* Floating Glass Badge */
.hero-badge {
    position: absolute;
    bottom: 70%;
    left: -5%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transform: rotateY(10deg) translateZ(20px);
    /* 3D pop */
    animation: floatBadge 6s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: rotateY(10deg) translateZ(20px) translateY(0);
    }

    50% {
        transform: rotateY(10deg) translateZ(20px) translateY(-10px);
    }
}

.hero-badge .badge-icon {
    background: var(--accent-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
}

.hero-badge .badge-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.hero-img-photo {
    max-width: 116%;
    /* Reduced width to make space for overlay */
    height: auto;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    /* Fluid Blob Shape */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    object-fit: cover;
}

.hero-img-photo:hover {
    border-radius: 50%;
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Floating 3D Dashboard Overlay */
.hero-dashboard-overlay {
    position: absolute;
    bottom: -25%;
    left: -29%;
    width: 80%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.136), 0 0 0 1px rgba(255, 255, 255, 0.143); */
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg) translateZ(50px);
    z-index: 5;
    /* background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px); */
    animation: floatDashboard 6s ease-in-out infinite;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

@keyframes floatDashboard {

    0%,
    100% {
        transform: perspective(1000px) rotateY(15deg) rotateX(5deg) translateZ(50px) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(15deg) rotateX(5deg) translateZ(50px) translateY(-20px);
    }
}

/* Mobile Hero Adjustments */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        padding: 8rem 1.1rem !important;
        text-align: left;
        /* Changed from center to left */
    }

    .hero-content {
        flex: 1;
        width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Changed from center to flex-start */
    }

    .hero-visual {
        width: 90%;
        margin-top: 0;
        padding-bottom: 2rem;
    }

    .hero-subtitle {
        margin-left: 0;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    /* Fix Heading Alignment & Size */
    .hero-title {
        font-size: 3rem;
        /* Reduce from giant desktop size */
    }

    #home-typewriter {
        width: auto;
        /* Allow natural width */
        white-space: normal;
        /* Allow wrapping if needed */
        text-align: left;
        /* Changed from center to left */
    }
}

.gradient-text-premium {
    display: inline-block;
    background: linear-gradient(135deg, #0528A4 0%, #2453FF 50%, #0528A4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 5s ease infinite;
}

#home-typewriter {
    width: 9em;
    /* Fixed width to accommodate the longest string "Human Resources." */
    text-align: left;
    white-space: nowrap;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #0528A4 0%, #2453FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    /* Essential for clip */
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
    margin-left: 0.5rem;
}

.reveal,
.reveal-p {
    display: block;
}

/* Custom Button (User Provided) */
button.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 12rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 3rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button.learn-more:hover .circle {
    width: 100%;
}

button.learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button.learn-more:hover .button-text {
    color: #fff;
}

/* Button Glow Effect */
button.learn-more::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    /* Start near circle */
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    filter: blur(25px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

button.learn-more:hover::after {
    opacity: 0.6;
}

/* --- SHARED COMPONENT: CTA FOOTER (Aurora) --- */
.cta-footer {
    height: 80vh;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Magical Background Effect */
.cta-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
            #000000 0deg,
            #0a1930 60deg,
            #004e92 120deg,
            #000428 180deg,
            #240b36 240deg,
            #0a1930 300deg,
            #000000 360deg);
    animation: rotateAurora 20s linear infinite;
    opacity: 0.6;
    z-index: 1;
    filter: blur(80px);
    will-change: transform;
}

.cta-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 2;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 5;
    /* Above background */
}

@keyframes rotateAurora {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-footer h2 {
    font-size: clamp(3rem, 8vw, 8rem);
    margin-bottom: 4rem;
}

.btn-white {
    background: #fff;
    color: #000;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* --- SHARED COMPONENT: SIMPLE FOOTER (Legacy) --- */
footer {
    background: #111;
    color: #666;
    padding: 2rem var(--container-padding);
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 14vw;
    }
}


/* =========================================
   5. HOME PAGE: ACCORDION SERVICES
   ========================================= */

/* --- Section 2: Accordion Styles (Final Split Version) --- */

.accordion-section {
    height: 75vh;
    width: 100%;
    display: flex;
    overflow: hidden;
    background: #000;
}

.accordion-panel {
    position: relative;
    height: 100%;
    flex: 1;
    /* Collapsed state */
    overflow: hidden;
    transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Expanded State Flex Grow */
.accordion-panel.active {
    flex: 6;
    /* Much wider to fit the split content */
}

/* Background Image Handling */
.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    transition: opacity 0.5s ease, filter 0.5s ease;
    filter: grayscale(100%) brightness(0.8);
}

.accordion-panel.active .panel-bg {
    opacity: 0.3;
    filter: grayscale(20%) brightness(1);
}

/* Plus Icon (Top Centered) */
.panel-plus {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: 300;
    color: white;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion-panel:hover .panel-plus {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-panel.active .panel-plus {
    opacity: 0;
}

/* Collapsed Label (Bottom Centered) */
.panel-label {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.panel-label span {
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
}

.accordion-panel.active .panel-label {
    opacity: 0;
    pointer-events: none;
}

/* --- SPLIT LAYOUT CONTENT --- */

/* --- SPLIT LAYOUT CONTENT (Updated for Large, Borderless Image) --- */

.panel-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0 4vw;
    /* Removed top/bottom padding to let content stretch */
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0.2s;
    color: white;
    display: flex;
    /* Ensure content stretches */
    flex-direction: column;
    justify-content: center;
}

.accordion-panel.active .panel-content {
    opacity: 1;
    visibility: visible;
}

.split-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Vertically aligns Left and Right columns */
    justify-content: space-between;
    gap: 4rem;
    height: 100%;
    width: 100%;
}

/* Left Column: Text & Cards (50%) */
.panel-col-left {
    flex: 1;
    /* Equal width to give image more room */
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    /* Ensure text stays on top if overlap occurs */
}

/* Right Column: Dashboard Image (50%) */
.panel-col-right {
    flex: 1;
    /* Equal width allows image to grow */
    height: 100%;
    display: flex;
    align-items: center;
    /* Centers image vertically in its column */
    justify-content: center;
    /* Centers image horizontally */
    position: relative;
}

/* Header Styles */
.panel-header h2 {
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    margin-bottom: 0.5rem;
    font-weight: 800;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.3s;
}

.panel-header p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.4s;
}

.accordion-panel.active .panel-header h2,
.accordion-panel.active .panel-header p {
    transform: translateY(0);
    opacity: 1;
}

/* 2x2 Grid for Cards */
.cards-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.accordion-panel.active .service-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Staggered Delay for Cards */
.accordion-panel.active .service-card:nth-child(1) {
    transition-delay: 0.5s;
}

.accordion-panel.active .service-card:nth-child(2) {
    transition-delay: 0.6s;
}

.accordion-panel.active .service-card:nth-child(3) {
    transition-delay: 0.7s;
}

.accordion-panel.active .service-card:nth-child(4) {
    transition-delay: 0.8s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* UPDATED DASHBOARD IMAGE STYLES */
.dashboard-img {
    width: 130%;
    /* Make it wider than its container for "Large" look */
    max-width: 1200px;
    /* Huge cap */
    height: auto;
    object-fit: contain;
    /* Removed Border */
    border: none;
    /* Optional: Subtle drop shadow just to lift it off bg, but no "box" */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));

    /* Animation Entrance */
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}

.accordion-panel.active .dashboard-img {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* =========================================
   6. HOME PAGE: IMPACT SECTION (Parallax)
   ========================================= */
.impact-section {
    position: relative;
    background-color: #080808;
    /* Deep dark bg */
    padding: 15vh 0;
    overflow: hidden;
    /* Essential for the sliding text */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Watermarks */
.watermark-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5vh 0;
    pointer-events: none;
    /* Let clicks pass through to cards */
    z-index: 1;
}

.watermark-row {
    white-space: nowrap;
    opacity: 0.15;
    /* Subtle visibility */
    font-size: clamp(6rem, 12vw, 15rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
    /* Hollow text effect */
    will-change: transform;
}

/* Content Layer (Sits on top) */
.impact-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--container-padding);
}

.impact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sub-tag {
    display: block;
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-header h2 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
}

/* Grid & Cards */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.impact-card {
    margin-top: 0 !important;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.impact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Subtle Glow on Card Hover */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 40, 164, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.impact-card:hover .card-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .watermark-row {
        font-size: 15vh;
        /* Taller on mobile to fill space */
    }
}

/* =========================================
   7. GLOBAL FOOTER (Premium Dark)
   ========================================= */
/* --- SECTION 6: Premium Footer Styles --- */
.main-footer {
    background-color: #050505;
    /* Deep rich black */
    color: #fff;
    padding: 6rem var(--gap-padding) 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Top Row */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand p {
    color: #888;
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.logo.white {
    color: #fff;
    font-size: 2rem;
}

.dot-blue {
    color: var(--accent-blue);
}

/* Newsletter Box */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 350px;
}

.footer-newsletter span {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-input-group {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-input-group input {
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: white;
    width: 100%;
    outline: none;
}

.newsletter-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateX(5px);
    color: var(--accent-blue);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
}

/* Middle Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 0rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

/* Bottom Area */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.huge-watermark {
    font-size: clamp(12vw, 26vw, 20rem);
    /* Massive responsive text */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.045);
    /* Subtle watermark effect */
    line-height: 0.8;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    position: relative;
    bottom: -3.5rem;
    left: 1.4rem;
}

.logo {
    /* Merged properties */
    width: 100%;
    max-width: 90px;
    height: auto;
    object-fit: contain;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-legal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: -4vw;
    /* Pull up over the watermark slightly */
}

.legal-links a {
    color: #666;
    text-decoration: none;
    margin-right: 2rem;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-newsletter {
        width: 100%;
        min-width: auto;
    }

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

    .footer-legal {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
    }

    .legal-links {
        margin-bottom: 1rem;
    }

    .legal-links a {
        margin: 0 0.5rem;
    }
}

/* =========================================
   8. GLOBAL LOADER
   ========================================= */
/* --- Loader Styles --- */
#loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    /* Dark background for premium contrast */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Let clicks pass through after it fades, though strictly we remove it or it has z-index. Just a safeguard. */
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    font-size: 7rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    /* Will animate in */
}

.loader-subheading {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -10px;
    letter-spacing: 1px;
    opacity: 0;
}

.progress-wrapper {
    width: 400px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    /* Will animate in */
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: blue;
    border-radius: 4px;
    box-shadow: 0 0 10px blue;
}

/* Mobile Loader Adjustments */
@media (max-width: 768px) {
    .loader-logo {
        font-size: 3.5rem;
    }

    .loader-subheading {
        font-size: 1rem;
        margin-top: -5px;
    }

    .progress-wrapper {
        width: 70%;
        max-width: 250px;
    }
}

/* =========================================
   9. HOME PAGE: MEDIA TICKER (Skewed)
   ========================================= */

/* Skewed Wrapper */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    /* Stark white strip */
    border-top: 1px solid #000;
    /* Hard contrast borders */
    border-bottom: 1px solid #000;
    transform: rotate(-2deg) scale(1.05);
    /* The Skew */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    /* Allow it to grow naturally */
    will-change: transform;
    animation: tickerScroll 40s linear infinite;
}

/* Pause on hover */
.ticker-wrap:hover .ticker-track {
    animation-play-state: paused;
}

/* Keyframes - Standard Infinite Loop */
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half way if we have enough duplication */
    }
}

/* Mobile Tweak */
@media (max-width: 768px) {

    .ticker-wrap {
        transform: rotate(-3deg) scale(1.1);
        /* slightly more angle on mobile */
    }
}

/* =========================================
   10. HOME PAGE: CURTAIN REVEAL (Typography)
   ========================================= */
/* --- Typography Curtain Section (RICH CONTENT) --- */
/* =========================================
   10. FEATURES SCROLL SECTION (Replaced Curtain)
   ========================================= */
.features-scroll-section {
    background: #000;
    color: #fff;
    padding: 6rem 0;
    position: relative;
    z-index: 20;
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 4rem 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-block:last-child {
    border-bottom: none;
}

.reveal-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    gap: 4rem;
    position: relative;
}

.reveal-grid.reverse-layout {
    flex-direction: row-reverse;
}

/* Text Side */
.reveal-text {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
}

.reveal-tag {
    display: inline-block;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.reveal-text h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reveal-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* Glass Features */
.glass-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.glass-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.glass-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Visual Side */
.reveal-visual {
    flex: 1.2;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
}

.ui-mockup {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: #fff;
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.badge-1 {
    bottom: -20px;
    left: -20px;
}

.badge-2 {
    top: 20px;
    right: -20px;
}

@media (max-width: 900px) {

    .reveal-grid,
    .reveal-grid.reverse-layout {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }

    .reveal-text p {
        margin: 0 auto 2rem;
    }

    .glass-features {
        justify-content: left;
    }
}


/* --- [Variant] FEATURED MEDIA MARQUEE (Alternate) --- */
/* --- Featured Media Marquee --- */
.featured-section {
    background-color: #000000ff;
    /* Matches your dark theme */
    padding: 1.9rem 0;
    border-top: none;
    border-bottom: none;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Wide tracking for premium feel */
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Marquee Logic */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    /* Soft Edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: fit-content;
    gap: 5rem;
    /* Space between groups */
    animation: marqueeScroll 40s linear infinite;
    /* Smooth infinite scroll */
}

/* Pause animation on hover for readability */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.media-logo {
    height: 33px;
    width: auto;
    object-fit: contain;
    filter: grayscale(60%) opacity(0.8);
    /* Black & White default */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Interaction: Light up on hover */
.media-logo:hover {
    transform: scale(1.05);
}

/* Continuous Scroll Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 5rem));
    }

    /* Move by 1 group + gap */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .featured-section {
        padding: 1rem 0;
    }

    .logo-group {
        /* Merged properties */
        gap: 3rem;
        padding-right: 3rem;
    }

    .media-logo {
        height: 25px;
        /* Smaller on mobile */
    }
}

/* =========================================
   11. CONTACT PAGE (Standard Section)
   ========================================= */
/* --- Modern Contact Section --- */
.contact-section {
    background-color: #000000;
    padding: 10rem 0;
    position: relative;
    color: #ffffff;
    z-index: 5;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
}

/* Left Column */
.contact-visual {
    flex: 1;
    position: sticky;
    top: 20vh;
}

.contact-header {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4rem;
    color: #ffffff;
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px #000;
    opacity: 1;
    font-weight: 900;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.meta-item .label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.meta-item .value {
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.meta-item .value:hover {
    color: var(--accent-blue);
}

/* Right Column: Form */
.glass-form {
    flex: 1.2;
    background: #f4f4f4;
    border: 1px solid #e5e5e5;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 2rem;
}

.input-group {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

/* The Input Field */
.input-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

/* Fix Autofill Background Color */
.input-field:-webkit-autofill,
.input-field:-webkit-autofill:hover,
.input-field:-webkit-autofill:focus,
.input-field:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0a0a0a inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.textarea-field {
    resize: none;
    min-height: 60px;
    overflow: hidden;
}

/* The Animated Label */
.input-label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.2rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Float Label on Focus or Valid Content */
.input-field:focus~.input-label,
.input-field:not(:placeholder-shown)~.input-label,
#manual-size-input~.input-label {
    /* Force float for this specific input to show placeholder */
    top: -1.2rem;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
    font-weight: 600;
}

/* The Glowing Line Animation */
.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-blue);
    /* Blue highlight */
    transition: width 0.4s ease;
}

.input-field:focus~.input-highlight {
    width: 100%;
}

/* Submit Button */
.contact-submit-btn {
    background: #000;
    /* Black button */
    color: #fff;
    border: none;
    padding: 1rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s, gap 0.3s, background 0.3s;
}

.contact-submit-btn:hover {
    transform: translateX(5px);
    gap: 1.5rem;
    background: #222;
}

.btn-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {

    .contact-visual {
        position: relative;
        top: 0;
        margin-bottom: 1rem;
    }

    .form-step {
        /* Default state: Absolute & Hidden */
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: auto !important;
        /* Hug content */

        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none;

        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-sizing: border-box;

        /* Ensure background is on the step itself */
        background: #151515 !important;
        border: 1px solid #333 !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    }

    .form-step.active {
        /* Active state: Relative (Dictates Parent Height) */
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        z-index: 10;
        padding: 1.2rem !important;
        /* Reset padding */
    }

    .form-actions {
        margin-top: 0.9rem !important;
        /* Remove 'auto' gap */
        padding-top: 0 !important;
        width: 100%;
    }

    .select-box {
        padding: 0.5rem 0.2rem !important;
        border-radius: 6px !important;
        min-height: 70px;
        /* Consistent height */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .select-box .box-icon {
        font-size: 1.7rem;
        margin-bottom: 0.2rem;
        display: block;
    }

    .select-box .box-text {
        font-size: 0.7rem;
        /* Tiny text to fit */
        display: block;
        line-height: 1.1;
        white-space: normal;
        /* Allow wrap */
        overflow: hidden;
    }

    .step-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .glass-form {
        padding: 2rem;
        width: 100%;
    }

    /* Success Mode Mobile Stack */
    .contact-container.success-mode .form-success-view {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: block !important;
        /* Force block to stack */
        position: relative !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 1rem;
    }

    .form-success-view {
        padding: 2rem 1rem !important;
    }

    .contact-container.success-mode .form-wrapper-3d {
        /* Ensure wrapper expands */
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .contact-container.success-mode .explanation-column {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 1.5rem;
        width: 100%;
        /* Default: Hidden on mobile until toggled */
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: none !important;
    }

    /* Show when toggled */
    .contact-container.success-mode .form-success-view.expanded-info .explanation-column {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: fadeIn 0.5s ease;
    }

    .blueprint-container {
        /* Fix internal clipping */
        overflow: visible !important;
        height: auto !important;
        min-height: 400px;
    }

    /* Ensure expanded state on mobile doesn't force 2 columns */
    .contact-container.success-mode .form-success-view.expanded-info {
        grid-template-columns: 1fr;
    }
}



/* --- Multi-Step Form Layout --- */
.multi-step-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center vertically */
    gap: 4rem;
    min-height: 60vh;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--white);
}

.step-bar-bg {
    width: 100px;
    height: 2px;
    background: rgb(255 255 255 / 32%);
    position: relative;
}

.step-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%;
    /* Initial */
    background: var(--white);
    transition: width 0.5s ease;
}

.step-description {
    font-size: 1.1rem;
    color: #bbb;
    max-width: 400px;
    line-height: 1.6;
}

/* 3D Form Wrapper */
.form-wrapper-3d {
    flex: 1.2;
    position: relative;
    height: 500px;
    /* Fixed height for absolute steps */
    perspective: 1000px;
}

.form-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #151515ff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid #222;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px) rotateY(-5deg);
    transform-origin: center right;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) rotateY(0deg);
    z-index: 5;
}

/* Success Mode Layout Transformation */
.contact-container.success-mode .contact-visual {
    display: none;
}

.contact-container.success-mode .form-wrapper-3d {
    flex: 1;
    height: auto;
    min-height: 500px;
    max-width: 600px;
    /* Start narrower centered */
    margin: 0 auto;
    transition: max-width 0.5s ease;
}

/* Expanded state: Widen the wrapper */
.contact-container.success-mode .form-wrapper-3d.with-panel {
    max-width: 1100px;
}

.contact-container.success-mode .form-success-view {
    display: grid;
    grid-template-columns: 1fr 0fr;
    /* Default: Hidden 2nd column */
    gap: 0;
    align-items: start;
    width: 100%;
    transition: grid-template-columns 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), gap 0.5s;
    overflow: hidden;
    /* Prevent overflow during transition */
}

/* Expanded Grid */
.contact-container.success-mode .form-success-view.expanded-info {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
}

.contact-container.success-mode .success-header {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

.contact-container.success-mode .blueprint-container {
    width: 100%;
    min-width: 0;
    /* Flexbox safety */
}

/* Explanation Column (Right Side) */
.explanation-column {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease 0.1s;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    color: #bbb;
}

/* Active Explanation */
.form-success-view.expanded-info .explanation-column {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    padding-left: 2rem;
    /* Add padding when expanded */
}

.explanation-column h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

/* Info Trigger Button */
.info-trigger-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.8rem;
    font-family: serif;
    font-style: italic;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    position: relative;
    z-index: 10;
    transition: all 0.2s;
    line-height: 1;
}

.info-trigger-btn:hover,
.info-trigger-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
    opacity: 1 !important;
    /* Force visibility */
}

/* Ensure panel content is visible/expanded by default or easy to toggle */
.contact-container.success-mode .credibility-content {
    background: transparent;
}

.form-step.prev-step {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    pointer-events: none;
}

/* Form Controls */
.step-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-actions {
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.next-step-btn {
    background: #ffffff;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

.next-step-btn:hover {
    transform: scale(1.05);
}

.back-btn {
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-weight: 500;
}

.back-btn:hover {
    color: #fff;
    text-decoration: underline;
}

/* Grid Selection (Industry) */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.select-box {
    border: 1px solid #333;
    background: #111;
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ddd;
}

.select-box:hover {
    background: #222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: #555;
    color: #fff;
}

.select-box.selected {
    background: #215bba4f;
    /* Dark blue tint */
    border-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 0 0 2px rgba(9, 38, 140, 0.3);
}

.box-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.box-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Range Selector (Workforce) */
.range-selector {
    display: flex;
    gap: 0.5rem;
    background: #f4f4f4;
    padding: 0.4rem;
    border-radius: 12px;
}

.range-option {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
}

.range-option.selected {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 700;
}

.spacer-xs {
    height: 2rem;
}

/* Custom Clean Select */
.clean-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #111;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    color: #fff;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.clean-select:focus {
    border-color: var(--accent-blue);
}

/* List Options (Step 4) */
.list-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid #333;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    background: #111;
    color: #ddd;
}

.list-option:hover {
    background: #222;
}

.list-option.selected {
    border-color: var(--accent-blue);
    background: #1e293b;
    color: #fff;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 50%;
    position: relative;
}

.list-option.selected .radio-circle {
    border-color: var(--white);
}

.list-option.selected .radio-circle::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--white);
    border-radius: 50%;
}

.submit-btn-final {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(9, 38, 140, 0.3);
    transition: transform 0.2s;
}

.submit-btn-final:hover {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .multi-step-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .form-wrapper-3d {
        /* Merged properties */
        width: 100%;
        flex: 1;
        height: auto !important;
        min-height: 200px;
        perspective: none;
        margin-top: 0;
        position: relative;
    }

    .selection-grid {
        /* Merged properties */
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
}

/* --- Success View: Operational Report Style --- */
.form-success-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: #0a0a0a;
    padding: 2rem 3rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 20;
    /* Higher than form */
}

.form-success-view.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.success-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    justify-content: center;
}

.check-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(6, 144, 27, 0.2);
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.success-subtitle {
    font-size: 1rem;
    color: #bbb;
}

/* Blueprint Container */
.blueprint-container {
    width: 100%;
    max-width: 500px;
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.05);
}

.blueprint-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    border-bottom: 1px solid #333;
    padding-bottom: 0.8rem;
}

.badge-live {
    background: rgba(211, 47, 47, 0.2);
    color: #ff6b6b;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #d32f2f;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

/* The Automation List */
.automation-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.auto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.4;
    opacity: 0;
    /* Animate in */
    transform: translateX(-10px);
}

.breakdown-item {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.auto-item .icon {
    color: var(--accent-green);
    font-weight: 800;
    margin-top: 1px;
}

.auto-item strong {
    font-weight: 600;
    color: #fff;
}

/* Score Section */
.blueprint-footer {
    background: #222;
    border: 1px solid #333;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.score-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    position: relative;
}

.score-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.score-value {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.score-context {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

@keyframes blink {}

.dashboard-btn {
    background: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.2s;
}

.dashboard-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================
   12. HOME PAGE: KINETIC SCROLL (Logos)
   ========================================= */
/* --- Modern Kinetic Section --- */
.kinetic-section {
    background: #050505;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    /* Soft top/bottom borders */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kinetic-content {
    width: 100%;
    /* Add a slight tilt for that modern "Fast" look */
    transform: rotate(-2deg) scale(1.05);
    transform-origin: center;
}

.kinetic-title {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4rem;
    font-weight: 500;
    /* Counter-rotate title so it stays straight */
    transform: rotate(2deg);
}

/* Wrapper to handle fading edges */
.kinetic-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Gradient Mask for smooth fade in/out on sides */
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.kinetic-track-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.kinetic-track {
    display: flex;
    gap: 1.5rem;
    /* Gap between sets */
    width: fit-content;
}

/* The actual set of logos */
.logo-group {
    /* Merged properties */
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
    align-items: center;
    padding-right: 6rem;
}

/* --- The Glass Pill (Readability Fix) --- */
.glass-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 200px;
    /* Fixed width for uniformity */
    height: 90px;
}

.glass-pill img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    /* Make them white/grey */
    opacity: 0.6;
    transition: all 0.4s ease;
}

/* Hover Effects */
.glass-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.glass-pill:hover img {
    filter: grayscale(0%) brightness(1);
    /* Reveal original color */
    opacity: 1;
}

/* --- Animations --- */
.move-left {
    animation: scrollLeft 40s linear infinite;
}

.move-right {
    animation: scrollRight 40s linear infinite;
}

/* Pause on hover for readability */
.kinetic-wrapper:hover .move-left,
.kinetic-wrapper:hover .move-right {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }

    /* Moves by exactly 1/3rd (one full set), then snaps back seamlessly */
}

@keyframes scrollRight {
    0% {
        transform: translateX(-33.33%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .kinetic-content {
        transform: rotate(0deg) scale(1);
    }

    .kinetic-title {
        transform: rotate(0deg);
        margin-bottom: 2rem;
    }

    .glass-pill {
        width: 140px;
        height: 70px;
        padding: 1rem;
    }

    .glass-pill img {
        max-height: 25px;
    }
}

/* =========================================
   13. GLOBAL COMPONENT: MEGA MENU (Holo Overlay)
   ========================================= */
/* --- Holographic Mega Overlay (Light Theme) --- */

.holo-overlay {
    position: fixed;
    top: 112px;
    height: auto;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.95);
    /* Clean White */

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 9998;
    border-radius: 14px;
    /* Animation Initial State */
    opacity: 0;
    visibility: hidden;
    transform: perspective(1000px) rotateX(-5deg) translateY(-10px);
    transform-origin: top center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
}

.holo-container {
    max-width: 1370px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: flex;
    gap: 2rem;
}

.holo-container2 {
    max-width: 1370px;
    margin: 0 auto;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Sidebar Styling */
.holo-sidebar {
    flex: 0 0 300px;
    padding-right: 1rem;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.holo-topbar {
    flex: 0 0 10px;
    padding-right: 1rem;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.holo-tag {
    color: var(--accent-blue);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.holo-title {
    font-size: 2.5rem;
    color: #111;
    /* Dark Text */
    margin-bottom: 1rem;
    line-height: 1.1;
}

.holo-desc {
    color: #666;
    /* Grey Text */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.holo-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.holo-link:hover {
    gap: 1rem;
    color: var(--accent-blue);
}

/* Grid Styling */

/* 1. Switch to 4 Columns to fit 12 items nicely (4x3 layout) */
.holo-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-content: start;
}

/* Specific override for Features Dropdown (3 cols, tighter width) */
#holo-menu {
    width: 86%;
    left: 94px;
}

#holo-menu .holo-container {
    max-width: 1100px;
}

#holo-menu .holo-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Specific override for Tech Dropdown (Wide) */
#tech-menu {
    width: 87%;
    left: 92px;

}

#tech-menu .holo-container {
    display: flex;
    flex-direction: column !important;

}

/* Specific override for Resources Dropdown (Match Holo Menu) */
#resources-menu {
    width: 88%;
    left: 84px;
}

#resources-menu .holo-container {
    max-width: 1240px;
    margin: 0 1rem !important;
}

/* 2. Light Theme Cards */
.holo-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Professional Hover Effect */
.holo-card:hover {
    background: #fff;
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 3. Adjust Icon Size */
.holo-icon-box {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
    /* Light grey circle */
    border-radius: 50%;
}

.holo-icon {
    font-size: 1.2rem;
    z-index: 2;
}

/* 4. Refine Typography for density */
.holo-text h4 {
    color: #222;
    /* Dark Title */
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    font-weight: 600;
    line-height: 1.2;
}

.holo-text p {
    color: #777;
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Decoration */
.icon-glow {
    display: none;
    /* Remove glow for cleaner look */
}

/* Responsive adjustment for laptops */
@media (max-width: 1200px) {
    .holo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CSS for detailed tech dropdown content */
.holo-detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(249, 250, 251, 0.8) 100%);
    border: 1px dashed #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 140px;
    transition: all 0.3s ease;
}

.holo-detail-card:hover {
    background: #fff;
    border-color: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.detail-list li {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.dot-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.dot-icon.blue {
    background-color: var(--accent-blue);
    box-shadow: 0 0 5px rgba(9, 38, 140, 0.4);
}

.dot-icon.cyan {
    background-color: #06b6d4;
    box-shadow: 0 0 5px rgba(6, 182, 212, 0.4);
}

.dot-icon.red {
    background-color: #ef4444;
    box-shadow: 0 0 5px rgba(239, 68, 68, 0.4);
}

.dot-icon.purple {
    background-color: #8b5cf6;
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.4);
}

.detail-visual {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

.visual-icon {
    font-size: 1.2rem;
    background: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.visual-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}




/* =========================================
   14. ABOUT PAGE
   ========================================= */
/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* 1. Centered Hero */
.about-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.glitch-header {
    font-size: clamp(2.3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--text-primary);
}

.glitch-header::before,
.glitch-header::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-header::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-header::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(25px, 9999px, 86px, 0);
        transform: skew(0.5deg);
    }

    5% {
        clip: rect(69px, 9999px, 42px, 0);
        transform: skew(0.5deg);
    }

    10% {
        clip: rect(6px, 9999px, 88px, 0);
        transform: skew(0.5deg);
    }

    15% {
        clip: rect(57px, 9999px, 3px, 0);
        transform: skew(0.5deg);
    }

    20% {
        clip: rect(6px, 9999px, 96px, 0);
        transform: skew(0.5deg);
    }

    25% {
        clip: rect(27px, 9999px, 86px, 0);
        transform: skew(0.5deg);
    }

    30% {
        clip: rect(32px, 9999px, 73px, 0);
        transform: skew(0.5deg);
    }

    35% {
        clip: rect(10px, 9999px, 69px, 0);
        transform: skew(0.5deg);
    }

    40% {
        clip: rect(14px, 9999px, 91px, 0);
        transform: skew(0.5deg);
    }

    45% {
        clip: rect(96px, 9999px, 59px, 0);
        transform: skew(0.5deg);
    }

    50% {
        clip: rect(44px, 9999px, 14px, 0);
        transform: skew(0.5deg);
    }

    55% {
        clip: rect(1px, 9999px, 96px, 0);
        transform: skew(0.5deg);
    }

    60% {
        clip: rect(48px, 9999px, 49px, 0);
        transform: skew(0.5deg);
    }

    65% {
        clip: rect(98px, 9999px, 75px, 0);
        transform: skew(0.5deg);
    }

    70% {
        clip: rect(43px, 9999px, 97px, 0);
        transform: skew(0.5deg);
    }

    75% {
        clip: rect(8px, 9999px, 97px, 0);
        transform: skew(0.5deg);
    }

    80% {
        clip: rect(82px, 9999px, 3px, 0);
        transform: skew(0.5deg);
    }

    85% {
        clip: rect(10px, 9999px, 61px, 0);
        transform: skew(0.5deg);
    }

    90% {
        clip: rect(69px, 9999px, 77px, 0);
        transform: skew(0.5deg);
    }

    95% {
        clip: rect(35px, 9999px, 36px, 0);
        transform: skew(0.5deg);
    }

    100% {
        clip: rect(77px, 9999px, 2px, 0);
        transform: skew(0.5deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
        transform: skew(0.5deg);
    }

    5% {
        clip: rect(52px, 9999px, 74px, 0);
        transform: skew(0.5deg);
    }

    10% {
        clip: rect(79px, 9999px, 85px, 0);
        transform: skew(0.5deg);
    }

    15% {
        clip: rect(75px, 9999px, 5px, 0);
        transform: skew(0.5deg);
    }

    20% {
        clip: rect(67px, 9999px, 61px, 0);
        transform: skew(0.5deg);
    }

    25% {
        clip: rect(14px, 9999px, 79px, 0);
        transform: skew(0.5deg);
    }

    30% {
        clip: rect(1px, 9999px, 66px, 0);
        transform: skew(0.5deg);
    }

    35% {
        clip: rect(86px, 9999px, 30px, 0);
        transform: skew(0.5deg);
    }

    40% {
        clip: rect(23px, 9999px, 98px, 0);
        transform: skew(0.5deg);
    }

    45% {
        clip: rect(85px, 9999px, 72px, 0);
        transform: skew(0.5deg);
    }

    50% {
        clip: rect(71px, 9999px, 75px, 0);
        transform: skew(0.5deg);
    }

    55% {
        clip: rect(2px, 9999px, 48px, 0);
        transform: skew(0.5deg);
    }

    60% {
        clip: rect(30px, 9999px, 16px, 0);
        transform: skew(0.5deg);
    }

    65% {
        clip: rect(59px, 9999px, 50px, 0);
        transform: skew(0.5deg);
    }

    70% {
        clip: rect(41px, 9999px, 62px, 0);
        transform: skew(0.5deg);
    }

    75% {
        clip: rect(2px, 9999px, 82px, 0);
        transform: skew(0.5deg);
    }

    80% {
        clip: rect(47px, 9999px, 73px, 0);
        transform: skew(0.5deg);
    }

    85% {
        clip: rect(3px, 9999px, 27px, 0);
        transform: skew(0.5deg);
    }

    90% {
        clip: rect(26px, 9999px, 55px, 0);
        transform: skew(0.5deg);
    }

    95% {
        clip: rect(42px, 9999px, 97px, 0);
        transform: skew(0.5deg);
    }

    100% {
        clip: rect(38px, 9999px, 49px, 0);
        transform: skew(0.5deg);
    }
}

.hero-content-center {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 2;
}

.pill-tag {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-sub {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

.line-drop {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #000, transparent);
    animation: dropLine 2s infinite;
}

@keyframes dropLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* 2. Manifesto Section (Dark Mode) */
.manifesto-section {
    background: #050505;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
}

.manifesto-container {
    max-width: 1000px;
}

.manifesto-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.4;
    font-weight: 600;
    color: #333;
    /* Dimmed state */
}

.highlight-phrase {
    display: inline;
    transition: color 0.3s;
    opacity: 0.2;
    /* Start hidden */
}

.text-white {
    color: #fff;
    /* Final highlight color */
}

/* =========================================
   15. SHARED VISUALS: NEURAL STACK
   (Used in About/Services)
   ========================================= */

/* --- NEURAL DATA STACK (High Detail Update) --- */

.core-stack-section {
    padding: 8rem 2rem;
    background: #f8f9fa;
    /* Slightly techy grey background */
    position: relative;
    overflow: visible;
}

.stack-header-wrapper {
    text-align: center;
    margin-bottom: 6rem;
}

.stack-header-wrapper h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: #111;
}

.stack-header-wrapper p {
    color: #666;
    font-size: 1.2rem;
}

/* The Card Container */
.stack-card {
    position: sticky;
    top: 150px;
    height: 480px;
    /* Slightly taller for more content */
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    /* Crisp edge */
    overflow: hidden;
    transform-origin: center top;
    transition: transform 0.3s ease;
}

/* Card 3 (Dark Mode Variant) */
.stack-card.dark-mode {
    background: #0a0a0a;
    color: white;
    border-color: #333;
}

.stack-card.dark-mode h3 {
    color: white;
}

.stack-card.dark-mode p {
    color: #888;
}

/* Grid Layout inside Card */
.card-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Narrative takes more space */
    height: 100%;
}

.card-left {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.card-right {
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
}

.stack-card.dark-mode .card-left {
    border-right-color: rgba(255, 255, 255, 0.1);
}

.meta-id {
    opacity: 0.5;
    font-weight: 700;
}

.meta-status {
    font-weight: 700;
}

.status-green {
    color: #00c853;
}

.status-blue {
    color: #2962ff;
}

.status-purple {
    color: #aa00ff;
}

.status-red {
    color: #d50000;
}

.stack-card h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.card-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2.5rem;
}

/* --- MAGICAL DETAILS (The filler content) --- */

/* 1. Capability List (Card 1) */
.capability-list {
    display: flex;
    gap: 1rem;
}

.cap-item {
    background: #f0f4ff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 2. Visual Box (Right Side Container) */
.tech-visual-box {
    width: 100%;
    height: 100%;
    max-height: 300px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card 1 Visual: Code Block */
.visual-header {
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.code-block {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.code-line {
    opacity: 0.7;
}

.text-blue {
    color: var(--accent-blue);
    opacity: 1;
    font-weight: 700;
}

.text-green {
    color: #00c853;
    opacity: 1;
}

.visual-footer {
    margin-top: auto;
    background: #111;
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 700;
}

/* 3. Data Bar (Card 2) */
.data-row {
    margin-top: 1rem;
}

.data-point {
    background: #fff;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 12px;
}

.dp-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.dp-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.dp-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.dp-fill {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 3px;
}

/* 4. UX Stats (Card 3) */
.ux-stats {
    display: flex;
    gap: 2rem;
}

.ux-stat-box {
    display: flex;
    flex-direction: column;
}

.ux-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.ux-label {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Card 3 Visual: UI Mockup */
.stack-card.dark-mode .tech-visual-box {
    background: #1a1a1a;
    border-color: #333;
}

.ui-mock-window {
    width: 100%;
    height: 100%;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.ui-header {
    height: 20px;
    background: #333;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.ui-dots {
    width: 8px;
    height: 8px;
    background: #ff5f57;
    border-radius: 50%;
    box-shadow: 15px 0 0 #febc2e, 30px 0 0 #28c840;
}

.ui-body {
    padding: 1.5rem;
    position: relative;
}

.ui-skeleton {
    background: #333;
    border-radius: 4px;
    margin-bottom: 10px;
}

.ui-skeleton.title {
    width: 60%;
    height: 15px;
}

.ui-skeleton.graph {
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #333 0%, #444 50%, #333 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.ui-cursor {
    position: absolute;
    top: 60%;
    left: 40%;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: cursorMove 3s infinite;
}

@keyframes cursorMove {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(40px, -20px);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 5. Security (Card 4) */
.security-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sec-badge {
    border: 1px solid #ddd;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.lock-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(213, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.lock-status {
    font-size: 0.9rem;
    color: #d50000;
    font-weight: 700;
    letter-spacing: 2px;
}

.hex-grid {
    margin-top: 1rem;
    font-family: monospace;
    color: #aaa;
    font-size: 0.8rem;
}

/* Decoration Line at Bottom */
.card-decoration-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.dark-mode .card-decoration-line {
    background: linear-gradient(90deg, #aa00ff, transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-right {
        display: none;
        /* Hide visual on mobile to save space */
    }

    .card-left {
        padding: 2rem;
        border-right: none;
    }

    .stack-card {
        height: auto;
        min-height: 300px;
    }

    .stack-header-wrapper {
        margin-bottom: 2rem;
        text-align: left;
    }

    .stats-section {
        padding: 4rem 1rem !important;
    }

    .stat-val {
        font-size: 3rem !important;
    }

    .stat-label {
        font-size: 0.9rem !important;
    }

    .team-header {
        margin-bottom: 1rem !important;
    }
}

/* 4. Stats Section */
.stats-section {
    background: #000;
    color: #fff;
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-val {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-symbol {
    font-size: 3rem;
    color: var(--accent-blue);
}

.stat-label {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #888;
    letter-spacing: 1px;
}

/* 5. Team Section */
.team-section {
    padding: 8rem var(--container-padding);
    background: #fff;
}

.team-header {
    margin-bottom: 4rem;
    text-align: center;
}

.team-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* --- TEAM SWIPER --- */
.team-swiper {
    width: 100%;
    padding: 2rem 1rem;
    overflow: hidden;
    position: relative;
    padding-bottom: 3rem;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Custom Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-card {
    background: transparent;
    cursor: pointer;
}

.team-img-wrapper {
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    margin-bottom: 1.5rem;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.team-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* =========================================
   16. SHARED VISUALS: HRJEE STACK COMPONENTS
   (HRMS List, Radar, Face Scan, Payroll Receipt)
   ========================================= */

/* --- NEW VISUALS FOR HRJEE STACK --- */

/* 1. HRMS List Visual */
.hrms-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1rem;
}

.hrms-item {
    display: flex;
    align-items: center;
    background: #f4f6f8;
    padding: 0.8rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    border-left: 3px solid transparent;
}

.hrms-item.active {
    border-left-color: var(--accent-green);
}

.hrms-item.processing {
    border-left-color: var(--accent-blue);
}

.hrms-item.pending {
    border-left-color: #aaa;
}

.h-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    margin-right: 10px;
}

.active .h-dot {
    background: var(--accent-green);
}

.processing .h-dot {
    background: var(--accent-blue);
}

.blink {
    animation: blink 1s infinite;
}

.h-val {
    font-weight: 700;
    opacity: 0.7;
}

/* 2. Radar Visual (Field Tracking) */
.visual-radar {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.radar-circle {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(0, 50, 0, 0.2) 0%, transparent 70%);
}

/* Concentric rings */
.radar-circle::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 50%;
}

.radar-circle::after {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    border-radius: 50%;
}

.radar-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(0, 255, 0, 0.4) 10%, transparent 15%);
    border-radius: 50%;
    animation: radarSpin 3s linear infinite;
}

@keyframes radarSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.radar-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
}

.dot-1 {
    top: 40px;
    right: 60px;
    animation: blink 2s infinite;
}

.dot-2 {
    bottom: 50px;
    left: 50px;
    animation: blink 3s infinite;
}

.radar-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #00ff00;
    font-family: monospace;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
}

/* 3. Face Scanner Visual (Biometrics) */
.visual-face {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.face-scanner {
    width: 160px;
    height: 160px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scan-corners {
    position: absolute;
    inset: -5px;
    border: 2px solid transparent;
    border-top-color: var(--accent-purple);
    border-bottom-color: var(--accent-purple);
    mask-image: linear-gradient(to right, black 20%, transparent 20%, transparent 80%, black 80%);
    -webkit-mask-image: linear-gradient(to right, black 20%, transparent 20%, transparent 80%, black 80%);
}

.face-mesh-mock {
    width: 60%;
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 50% 40% 40%;
    position: absolute;
    top: 15%;
    left: 20%;
    filter: blur(10px);
}

@keyframes scanMove {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}

.scan-status {
    margin-top: 1.5rem;
    color: var(--accent-purple);
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* 4. Payroll Receipt Visual */
.visual-payroll {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.payroll-receipt {
    width: 80%;
    background: #fff;
    padding: 1.5rem;
    border: 1px dashed #ccc;
    font-family: 'Courier New', monospace;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #555;
}

.receipt-divider {
    height: 1px;
    background: #000;
    margin: 1rem 0;
}

.receipt-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
}

.contact-page {
    background-color: var(--page-bg);
    background-image: linear-gradient(180deg, #eef2ff 0%, #fff 40%);
    min-height: 100vh;
}

/* Hero - Tighter */
.contact-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    color: #3a3a3aff;
}

/* --- THE INTERFACE CONTAINER --- */
.interface-section {
    padding: 0 var(--container-padding) 6rem;
    max-width: 1300px;
    /* Tighter max-width for density */
    margin: 0 auto;
}

.interface-container {
    display: flex;
    flex-direction: row;
    /* Side by side */
    background: #fff;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(9, 38, 140, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    /* Crisp border */
    overflow: hidden;
    /* Clips children */
    min-height: 750px;
    /* Force minimum height to prevent squashing */
}

/* --- LEFT PANEL: 60% Width --- */
.panel-left {
    flex: 1.4;
    /* Wider */
    padding: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
}

.console-header {
    background: #f8fafc;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dot-group {
    display: flex;
    gap: 8px;
    margin-right: auto;
}

.dot {
    /* Merged properties */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: var(--accent-color);
}

.red {
    background: #ef4444;
}

.yellow {
    background: #f59e0b;
}

.console-label {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    opacity: 0.7;
}

#pro-contact-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    /* Fill height */
}

/* Solid Input Blocks */
.form-grid-row {
    display: flex;
    gap: 1.5rem;
}

.input-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-block label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-left: 5px;
}

.input-block input,
.input-block textarea {
    background: var(--input-bg);
    /* SOLID BG */
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.2s;
}

.textarea-filled {
    resize: none;
    height: 120px;
    /* Taller */
}

/* Focus State */
.input-block input:focus,
.input-block textarea:focus {
    background: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(9, 38, 140, 0.1);
    outline: none;
}

/* Chips */
.selection-area label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.8rem;
    display: block;
    margin-left: 5px;
}

.chip-container {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.chip {
    background: #fff;
    border: 1px solid #cbd5e1;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.chip:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.chip.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(9, 38, 140, 0.2);
}

/* Footer inside Form (Fills the bottom) */
.console-footer {
    margin-top: auto;
    /* Pushes to bottom */
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #e2e8f0;
}

.security-badge {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.send-btn {
    background: linear-gradient(135deg, #09268c 0%, #2563eb 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(9, 38, 140, 0.2);
    transition: transform 0.2s;
}

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

/* --- RIGHT PANEL: 40% Width --- */
.panel-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fcfcfc;
}

/* Map - Top Half */
.map-wrapper {
    height: 45%;
    /* Fixed ratio */
    min-height: 300px;
    width: 100%;
    position: relative;
    border-bottom: 4px solid var(--primary-blue);
}

.map-wrapper iframe {
    /* Colorful but Pro */
    filter: saturate(1.2) contrast(1.1);
}

.map-tag {
    position: absolute;
    bottom: 1rem;
    left: 4rem;
    background: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Info - Bottom Half */
.info-wrapper {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.info-group h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    display: block;
    margin-bottom: 0.2rem;
    transition: color 0.2s;
}

.info-link:hover {
    color: var(--primary-blue);
}

.info-group p {
    font-size: 1rem;
    color: #64748b;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1.5rem 0;
}

/* Info Footer (Bottom Align) */
.info-footer {
    margin-top: auto;
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0369a1;
}

/* Responsive */
@media (max-width: 1024px) {
    .interface-container {
        flex-direction: column;
        min-height: auto;
    }

    .panel-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .map-wrapper {
        height: 250px;
    }

    .form-grid-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================================
   18. SHARED VISUALS: HOLOGRAPHIC REACTOR
   ========================================= */
/* --- OPTION 4: HOLOGRAPHIC REACTOR --- */

:root {
    /* Merged properties */
    --holo-bg: #0b1121;
    --holo-core: #3b82f6;
    --holo-smart: #06b6d4;
    --holo-max: #a855f7;
    --holo-text: #e2e8f0;
    --page-bg: #f8fbff;
    --panel-bg: #ffffff;
    --input-bg: #f1f5f9;
    --input-focus: #e0e7ff;
    --primary-blue: #09268c;
    --accent-cyan: #06b6d4;
    --border-color: rgba(9, 38, 140, 0.1);
    --bg-color: #F4F5F7;
    --white: #FFFFFF;
    --black: #000000;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-stroke-color: var(--white);
    --accent-color: #043fab;
    --accent-blue: #09268c;
    --accent-purple: #062990;
    --accent-green: #1ca330ff;
    --accent-red: #900606;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --container-padding: 4vw;
    --gap-padding: 5vw;
    --section-gap: 12vh;
    --blob-color-1: #0528A4;
    --blob-color-2: #2453FF;
    --blob-color-3: #00c6ff;
}

.holo-section {
    background: var(--holo-bg);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    color: var(--holo-text);
}

.holo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* --- Left Column: Data Stream --- */
.holo-data-col {
    flex: 1;
    z-index: 2;
}

.holo-header {
    margin-bottom: 3rem;
}

.sys-tag {
    color: var(--holo-smart);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.holo-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.holo-header p {
    color: #94a3b8;
}

.holo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.holo-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.holo-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.h-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.h-text {
    /* Merged properties */
    flex: 1;
    font-weight: 600;
    color: #333;
}

.h-text strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.h-text span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Color Indicators */
.h-indicator {
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.core-ind {
    background: var(--holo-core);
}

.smart-ind {
    background: var(--holo-smart);
}

.max-ind {
    background: var(--holo-max);
}

.holo-item:hover .h-indicator {
    opacity: 1;
}


/* --- Right Column: The Reactor --- */
.holo-visual-col {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    /* 3D effect */
}

.reactor-container {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateX(20deg) rotateY(-10deg);
    /* The HUD Tilt */
    transform-style: preserve-3d;
}

/* Rings */
.reactor-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.r-label {
    margin-top: -25px;
    background: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

/* Ring Sizes */
.ring-core {
    width: 140px;
    height: 140px;
    z-index: 3;
    border-color: rgba(59, 130, 246, 0.3);
}

.ring-smart {
    width: 260px;
    height: 260px;
    z-index: 2;
    border-color: rgba(6, 182, 212, 0.3);
}

.ring-max {
    width: 380px;
    height: 380px;
    z-index: 1;
    border-color: rgba(168, 85, 247, 0.3);
}

.r-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: rotateSlow 20s linear infinite;
}

.r-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 0;
    transition: opacity 0.3s, box-shadow 0.3s;
}

.core-nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--holo-core);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(10px);
    transition: opacity 0.3s;
}

/* ACTIVE STATES (Triggered by JS) */

/* Core Active: Lights up Inner */
.reactor-container.active-core .ring-core .r-label {
    color: var(--holo-core);
    opacity: 1;
}

.reactor-container.active-core .ring-core .r-glow {
    border-color: var(--holo-core);
    opacity: 1;
    box-shadow: 0 0 20px var(--holo-core);
}

.reactor-container.active-core .core-nucleus {
    opacity: 0.8;
}

/* Smart Active: Lights up Inner + Middle */
.reactor-container.active-smart .ring-core .r-glow,
.reactor-container.active-smart .ring-smart .r-glow {
    opacity: 1;
}

.reactor-container.active-smart .ring-core .r-glow {
    border-color: var(--holo-core);
    box-shadow: 0 0 15px var(--holo-core);
}

.reactor-container.active-smart .ring-smart .r-glow {
    border-color: var(--holo-smart);
    box-shadow: 0 0 30px var(--holo-smart);
}

.reactor-container.active-smart .ring-smart .r-label {
    color: var(--holo-smart);
    opacity: 1;
}

/* Max Active: Lights up All */
.reactor-container.active-max .ring-core .r-glow,
.reactor-container.active-max .ring-smart .r-glow,
.reactor-container.active-max .ring-max .r-glow {
    opacity: 1;
}

.reactor-container.active-max .ring-core .r-glow {
    border-color: var(--holo-core);
}

.reactor-container.active-max .ring-smart .r-glow {
    border-color: var(--holo-smart);
}

.reactor-container.active-max .ring-max .r-glow {
    border-color: var(--holo-max);
    box-shadow: 0 0 40px var(--holo-max);
}

.reactor-container.active-max .ring-max .r-label {
    color: var(--holo-max);
    opacity: 1;
}

/* Background Grid decoration */
.reactor-grid {
    position: absolute;
    width: 150%;
    height: 150%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: translateZ(-50px);
    pointer-events: none;
}

@keyframes rotateSlow {
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile */
@media (max-width: 900px) {
    .holo-wrapper {
        flex-direction: column;
    }

    .reactor-container {
        transform: scale(0.8);
    }
}

/* =========================================
   19. SHARED VISUALS: SOLUTIONS DECK
   (The Deck / Simulations)
   ========================================= */
/* --- SOLUTIONS / DEEP DIVE SECTION --- */
/* --- SOLUTIONS / DEEP DIVE SECTION --- */
.solutions-section {
    padding: 8rem var(--container-padding);
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Optional background flair */
.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(5, 40, 164, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(36, 83, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.solution-header {
    text-align: center;
    margin-bottom: 7rem;
    position: relative;
    z-index: 2;
}

.solution-header h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    position: relative;
    z-index: 2;
}

/* THE DECK (Row Layout) */
.solution-deck {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.solution-deck.reverse {
    flex-direction: row-reverse;
}

/* Left: Content Side */
.deck-content {
    flex: 1;
}

.deck-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    background: rgba(4, 63, 171, 0.08);
    /* faint accent bg */
    border-radius: 50px;
    border: 1px solid rgba(4, 63, 171, 0.1);
}

.deck-badge.blue {
    background: rgba(9, 38, 140, 0.08);
    color: var(--accent-blue);
    border-color: rgba(9, 38, 140, 0.1);
}

.deck-badge.purple {
    background: rgba(147, 51, 234, 0.08);
    color: #9333ea;
    border-color: rgba(147, 51, 234, 0.1);
}

.solution-deck h3 {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.spec-item i {
    font-size: 1.1rem;
    color: var(--accent-blue);
    background: #f0f7ff;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.solution-deck:hover .spec-item i {
    background: var(--accent-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 38, 140, 0.2);
}

.spec-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.spec-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: block;
}

/* Tech Stack Row */
.tech-stack-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tech-label {
    font-weight: 600;
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-right: 8px;
    letter-spacing: 0.5px;
}

.tech-stack-row i {
    font-size: 1.3rem;
    color: #666;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.tech-stack-row i:hover {
    color: var(--accent-blue);
    transform: scale(1.2);
}

/* Right: Visual Side (The Simulation Container) */
.deck-visual {
    flex: 1.2;
    height: 460px;
    /* Slightly taller */
    position: relative;
    perspective: 1000px;
    /* For 3D feel */
}

.sim-container {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08),
        0 10px 20px -5px rgba(0, 0, 0, 0.04);
    /* Deeper, softer shadow */
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.solution-deck:hover .sim-container {
    transform: translateY(-10px) rotateY(-2deg);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.12),
        0 15px 30px -5px rgba(0, 0, 0, 0.06);
}

.solution-deck.reverse:hover .sim-container {
    transform: translateY(-10px) rotateY(2deg);
    /* Rotate opposite for reverse layout */
}

/* --- SIMULATION 1: PAYROLL --- */
.sim-payroll {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem;
    gap: 1.2rem;
    background: radial-gradient(circle at top left, #fafbff, #ffffff);
}

.pay-row {
    background: #fff;
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    opacity: 0.6;
    transform: scale(0.98);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pay-row.active-sim {
    opacity: 1;
    transform: scale(1.02);
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.pay-avatar {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 50%;
}

.pay-lines {
    flex: 1;
}

.line-long,
.line-short {
    display: block;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 8px;
}

.line-long {
    width: 75%;
}

.line-short {
    width: 45%;
}

.pay-status {
    font-size: 0.75rem;
    font-weight: 700;
    color: #cbd5e1;
    background: #f8fafc;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.active-sim .pay-status {
    color: var(--accent-green);
    background: #ecfdf5;
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #1e293b;
    color: #fff;
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: float 5s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fs-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.fs-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4ade80;
    letter-spacing: -0.5px;
}

/* --- SIMULATION 2: FACE SCAN --- */
.sim-face {
    background: #0f172a;
    /* Slate 900 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.scan-frame {
    width: 200px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
}

.face-mesh {
    position: absolute;
    inset: 30px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.8;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #60a5fa;
    box-shadow: 0 0 20px #60a5fa;
    animation: scanDown 2.5s ease-in-out infinite alternate;
}

.scan-result {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
}

/* --- SIMULATION 3: MAP --- */
.sim-map {
    position: relative;
    background: #f1f5f9;
}

.map-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.6;
}

.map-path-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.map-card-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    width: 150px;
}

.mc-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.mc-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: pulse 2s infinite;
}

.mc-stat {
    font-size: 0.85rem;
    color: #666;
}

/* Animations */
@keyframes scanDown {}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Mobile */
@media (max-width: 900px) {

    .solution-deck,
    .solution-deck.reverse {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
    }

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

    .deck-visual {
        width: 100%;
        height: 300px;
    }
}

/* =========================================
   20. PRICING CONSOLE (Modern)
   ========================================= */
/* --- PRICING CONSOLE (Modern Interface) --- */
/* Contact Info Section */
.contact-info-section {
    padding: 6rem var(--container-padding) 4rem;
    background: #ffffff;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.info-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 1rem 0;
    color: #111;
}

.info-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-color: var(--accent-blue);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #111;
}

.contact-card .info-link {
    display: block;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-card .info-link:hover {
    color: #0528A4;
    text-decoration: underline;
}

.contact-card .info-text {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.card-meta {
    /* Merged properties */
    color: #888;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #111;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.2rem;
}

.trust-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* =========================================






/* =========================================
   24. PRICING PAGE (Premium Dark)
   (Main Pricing Table)
   ========================================= */
/* --- PREMIUM DARK PRICING (Reference Clone) --- */
.pricing-dark-section {
    background-color: #000000;
    padding: 5rem 2rem;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Header */
.pd-header {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pd-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #999;
}

.pd-title {
    font-size: 4rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    letter-spacing: -1px;
}

/* Toggle Switch */
.pd-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #666;
    z-index: 10;
    /* Ensure clickable */
    position: relative;
}

.pd-toggle {
    width: 52px;
    height: 30px;
    background: #333;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

/* The knob */
.pd-toggle::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Active State (Right Side) */
.pd-toggle.active {
    background: #222;
}

.pd-toggle.active::after {
    transform: translateX(22px);
}

/* Grid */
.pd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
}

/* Cards */
.pd-card {
    background: radial-gradient(circle at bottom, #1a1a1a 0%, #000 100%);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pd-card:hover {
    border-color: #122944ff;
    transform: translateY(-8px);
    background: radial-gradient(circle at bottom, #20262eff 0%, #000 100%);
}

/* Card Typography */
.pd-plan-name {
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
}

.pd-plan-desc {
    color: #888;
    font-size: 0.95rem;
    min-height: 42px;
}

.pd-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #fff;
}

.pd-amount {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.pd-period {
    color: #666;
    font-size: 1rem;
}

/* Buttons */
.pd-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 2.5rem;
    cursor: pointer;
}

/* Normal Button */
.pd-btn.outline {
    background: #111;
    color: #fff;
    border: 1px solid #333;
}

.pd-btn.outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Pro Button */
.pd-btn.solid {
    background: #e6e6e6;
    /* White/Grey from image */
    color: #000;
    border: 1px solid #fff;
}

.pd-btn.solid:hover {
    background: #fff;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Features */
.pd-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0;
}

.pd-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pd-Nofeat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: hsla(0, 0%, 67%, 1.00);
    font-size: 0.95rem;
    line-height: 1.4;
}

.pd-check {
    color: #ffffff;
    margin-top: 4px;
    font-size: 0.8rem;
}

.pd-cross {
    color: rgb(255, 0, 0);
    margin-top: 4px;
    font-size: 0.8rem;
}

/* Special Styles for Middle Card (Smart) */
.pd-card.pro {
    background: radial-gradient(circle at top, #1a1a1a 0%, #000 100%);
    border: 1px solid #333;
}

/* "Most Popular" Badge (Tilted) */
.pd-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #222;
    border: 1px solid rgb(10, 124, 255);
    color: #ccc;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    transform: rotate(-3deg);
    font-family: 'Outfit', sans-serif;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: rotate(-3deg) scale(1);
    }

    50% {
        transform: rotate(-3deg) scale(1.05);
        border-color: rgba(255, 255, 255, 0.4);
    }

    100% {
        transform: rotate(-3deg) scale(1);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }

    .pd-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   25. GLOBAL COMPONENTS: DROPDOWNS & PANELS
   ========================================= */
/* --- Custom Modern Dropdown --- */
.custom-dropdown {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.dropdown-trigger {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-trigger:hover {
    background: #1a1a1a;
    border-color: #555;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-trigger.active {
    border-color: var(--accent-blue);
    background: #1a1a1a;
}

/* Custom Chevron Arrow */
.dropdown-trigger::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -4px;
}

.dropdown-trigger.active::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

/* Options Container */
.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.custom-dropdown.open .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual Option */
.dropdown-option {
    padding: 0.9rem 1.2rem;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: #222;
    color: #fff;
    padding-left: 1.5rem;
}

.dropdown-option.selected {
    background: var(--accent-blue);
    color: #fff;
}

/* --- Credibility Panel (How Score is Calculated) --- */
.credibility-panel {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.credibility-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: color 0.3s;
    font-family: inherit;
}

.credibility-trigger:hover {
    color: #fff;
}

.credibility-trigger .icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.credibility-trigger .chevron {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.credibility-trigger.active .chevron {
    transform: rotate(180deg);
}

.credibility-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.credibility-content .inner-content {
    padding: 1rem;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

.credibility-list {
    margin: 0.8rem 0;
    padding-left: 1.2rem;
}

.credibility-list li {
    margin-bottom: 0.5rem;
}

.credibility-list strong {
    color: #fff;
}

.disclaimer {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.8rem;
    border-left: 2px solid var(--accent-blue);
    padding-left: 0.8rem;
}

/* --- CONTACT PAGE FOCUS HEADER --- */

.focus-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4vw;
    /* Generous spacing */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    pointer-events: none;
    /* Allows clicks to pass through empty areas */
}

/* 1. Left Side: Brand */
.brand-identity {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    pointer-events: auto;
}

.logo-focus {
    height: 50px;
    /* Subtle sizing */
    width: auto;
    object-fit: contain;
}

.divider-vertical {
    height: 24px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.brand-tagline {
    font-family: 'Courier New', monospace;
    /* Tech feel */
    font-size: 0.8rem;
    color: #64748b;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* 2. Right Side: Trust Badge */
.secure-badge-pill {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

/* Green Pulse Animation */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    /* Success Green */
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    background-color: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .focus-header {
        padding: 1.5rem 1.5rem;
    }

    .brand-tagline {
        display: none;
        /* Hide tagline on small screens */
    }

    .divider-vertical {
        display: none;
    }

    .badge-text {
        display: none;
        /* Just show lock and dot on mobile */
    }
}

/* =========================================
   MOBILE REDESIGN: ACCORDION SERVICES
   (Transforms Horizontal -> Vertical Stack)
   ========================================= */

@media (max-width: 900px) {

    /* 1. Switch Container to Vertical Stack */
    .accordion-section {
        flex-direction: column;
        /* Stack panels vertically */
        height: auto;
        /* Allow section to grow based on content */
        min-height: 100vh;
    }

    /* 2. Redesign the Panel Structure */
    .accordion-panel {
        width: 100%;
        /* Full width */
        height: 80px;
        /* Fixed height when collapsed */
        flex: none;
        /* Disable flex-grow */
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        /* Animate height instead of width */
    }

    /* Active State (Expanded) */
    .accordion-panel.active {
        flex: none;
        /* Disable flex-grow */
        height: auto;
        /* Grow to fit content */
        min-height: 650px;
        /* Ensure enough space for cards */
    }

    /* 3. Fix the Collapsed Labels (Rotate them back to horizontal) */
    .panel-label {
        top: 50%;
        left: 2rem;
        bottom: auto;
        transform: translateY(-50%);
        /* Center vertically */
        width: auto;
    }

    .panel-label span {
        writing-mode: horizontal-tb;
        /* Normal horizontal text */
        transform: none;
        /* Remove rotation */
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    /* Move Plus Icon to the Right */
    .panel-plus {
        top: 50%;
        right: 2rem;
        left: auto;
        transform: translateY(-50%);
        font-size: 1.5rem;
    }

    /* 4. Redesign Internal Content Layout */
    .panel-content {
        padding: 2rem 1.5rem 3rem 1.5rem;
        /* Add padding */
        overflow: visible;
        opacity: 0;
        /* Keep hidden initially */
        transition: opacity 0.4s ease 0.3s;
        /* Delay fade-in */
    }

    .accordion-panel.active .panel-content {
        opacity: 1;
    }

    /* Switch Split Layout to Column */
    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    /* Hide the Dashboard Image (Too big for mobile) */
    .panel-col-right {
        display: none;
    }

    /* Ensure Text Column takes full width */
    .panel-col-left {
        width: 100%;
        justify-content: flex-start;
    }

    /* 5. Typography Adjustments */
    .panel-header h2 {
        font-size: 2.2rem;
        /* Smaller title */
        margin-top: 1rem;
    }

    .panel-header p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* 6. Mobile Card Grid (1 Column) */
    .cards-grid-2x2 {
        grid-template-columns: 1fr;
        /* Stack cards */
        gap: 1rem;
    }

    .service-card {
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        /* Slightly lighter for readability */
        transform: translateY(0) !important;
        /* Remove complex transform */
    }

    .service-card h3 {
        font-size: 1.1rem;
        color: #fff;
    }

    .service-card p {
        font-size: 0.9rem;
        color: #ccc;
    }

    /* Background Image Opacity Fix */
    .panel-bg {
        opacity: 0.2;
        /* Darker background so text pops */
    }

    .accordion-panel.active .panel-bg {
        opacity: 0.1;
    }
}

/* Main Curtain Mobile Fix Removed */


/* --- DYNAMIC PRICING SLIDER VISUAL --- */

/* Container replaces .pd-price */
.pd-dynamic-price {
    margin-bottom: 2.5rem;
    padding: 1rem 0;
    font-family: 'Outfit', sans-serif;
}

.p-label {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.p-label span:last-child {
    color: #666;
    font-size: 0.75rem;
}

/* The Slider Track */
.p-slider-wrapper {
    height: 6px;
    background: #222;
    border-radius: 10px;
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    overflow: visible;
    /* Allow knob to overflow */
}

/* The Fill Bar */
.p-fill {
    height: 100%;
    border-radius: 10px;
    position: relative;
    width: 0%;
    /* Animate via JS or inline style */
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Specific Plan Colors */
.core-fill {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.smart-fill {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.max-fill {
    background: linear-gradient(90deg, #a855f7, #d8b4fe);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

/* The Glowing Knob */
.p-knob {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

/* Subtext */
.p-sub {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.p-sub i {
    font-size: 0.7rem;
    color: #555;
}

/* Hover Effect: Pulse the bar */
.pd-card:hover .p-fill {
    filter: brightness(1.2);
}




/* --- MISSION CONTROL (Cockpit Interface) --- */
.mission-section {
    background-color: #141414;
    /* Pure black backdrop */
    padding: 3rem 2rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    position: relative;
    z-index: 2;
}

.mission-section-header h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
    letter-spacing: -1px;
}

.mission-section-header p {
    font-size: 1.2rem;
    color: #9ca3af;
}

.mission-container {
    max-width: 1300px;
    margin: 0 auto;
    background: #0a0a0a;
    /* Solid dark grey container */
    border: 1px solid #333;
    /* Crisp border */
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    /* Deep shadow to lift it up */
    display: flex;
    overflow: hidden;
    min-height: 600px;
}

/* --- LEFT: TOGGLE BAY --- */
.mission-controls {
    flex: 1.4;
    padding: 2rem;
    border-right: 1px solid #333;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    /* Essential for clipping blur */
    z-index: 0;
    /* Establish stacking context */
}

/* Background Image with Blur */
.mission-controls::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/mission-control-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    /* Slight blur as requested */
    z-index: -2;
    transform: scale(1.05);
    /* Slight box-zoom to hide blur edges */
}

/* Dark Overlay */
.mission-controls::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: -1;
}

.mission-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mission-header h2 {
    font-size: 2.7rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: -1px;
}

.mission-header span {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Control Groups */
.control-group {
    margin-bottom: 2.5rem;
}

.group-title {
    font-size: 0.8rem;
    color: #fff;
    /* Much brighter title */
    font-weight: 700;
    opacity: 0.9;
    /* clearer separator */
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-title::after {
    content: '';
    height: 1px;
    background: #333;
    flex: 1;
}

.switches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

/* The Realistic Switch */
.mc-switch-box {
    background: #1a1a1a;
    /* Solid background, no fade */
    border: 1px solid #444;
    /* Visible border */
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.mc-switch-box:hover {
    background: #222;
    border-color: #777;
    /* Brighter hover state */
}

.mc-label {
    font-size: 0.9rem;
    color: #e2e8f0;
    /* Near white for readability */
    font-weight: 500;
}

/* Toggle Graphic */
.toggle-graphic {
    width: 44px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    position: relative;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.toggle-knob {
    width: 20px;
    height: 20px;
    background: #444;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Active State */
.mc-switch-box.active {
    /* Merged properties */
    background: #1e2229;
    border-color: #555;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.mc-switch-box.active .toggle-graphic {
    background: rgba(var(--accent-color), 0.2);
    border-color: var(--accent-color);
}

.mc-switch-box.active .toggle-knob {
    left: 21px;
    background: var(--white);
    box-shadow: 0 0 10px var(--accent-color);
}

.mc-switch-box.active .mc-label {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* --- RIGHT: FLIGHT RECORDER (HUD) --- */
.mission-hud {
    flex: 1;
    background: #d0ddde;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-left: 1px solid #e2e8f0;
    color: #0f172a;
}

/* Scanlines Effect - Toned down for light mode */
.mission-hud::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.02) 50%), linear-gradient(90deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.03));
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.hud-content {
    position: relative;
    z-index: 1;
}

.hud-label {
    font-family: 'Courier New', monospace;
    color: var(--accent-blue);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
}

/* Digital Stats (Light Theme) */
.hud-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-name {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-value {
    color: #0f172a;
    /* Dark text */
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
}

/* The Big Score (Light Theme) */
.efficiency-gauge {
    margin-top: 3rem;
    text-align: center;
}

.gauge-circle {
    width: 150px;
    height: 150px;
    border: 8px solid #e2e8f0;
    /* Light gray track */
    border-top-color: var(--accent-blue);
    border-right-color: var(--accent-blue);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(9, 38, 140, 0.2);
    transition: all 0.5s;
    transform: rotate(-45deg);
    /* Start position */
}

.gauge-text {
    transform: rotate(45deg);
    /* Counter rotate text */
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    /* Dark text */
}

.launch-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.launch-btn:hover {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 0 30px var(--accent-blue);
}

/* Mobile */
@media (max-width: 900px) {}

/* --- MISSION CONTROL HUD UPDATE (Value Log) --- */

/* The Scrollable Log Container */
.mission-log-container {
    flex: 1;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    overflow-y: auto;
    padding-right: 5px;
    border-top: 1px dashed #333;
    padding-top: 1rem;
    min-height: 200px;
}

/* Scrollbar styling for the log */
.mission-log-container::-webkit-scrollbar {
    width: 4px;
}

.mission-log-container::-webkit-scrollbar-track {
    background: #111;
}

.mission-log-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 2px;
}

/* Empty State Message */
.log-empty-state {
    color: #444;
    font-size: 0.9rem;
    text-align: center;
    padding-top: 3rem;
    font-style: italic;
    font-family: 'Courier New', monospace;
}

/* List Item Style */
.mission-log-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInLog 0.4s ease forwards;
}

@keyframes fadeInLog {}

.log-icon {
    color: #3b82f6;
    /* Success Blue */
    font-size: 0.9rem;
    margin-top: 3px;
}

.log-content {
    display: flex;
    flex-direction: column;
}

.log-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.log-desc {
    color: #888;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 2px;
}

/* Summary Footer inside HUD */
.hud-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #666;
}

/* --- MISSION CONTROL HUD v2 (AI Terminal) --- */

/* The Terminal Screen (Light Theme Overrides) */
.mission-hud::after {
    /* Remove dark scanline overlay or make it very subtle */
    display: none;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e2e8f0;
    /* Light border */
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.terminal-title {
    font-family: 'Courier New', monospace;
    color: #475569;
    /* Slate 600 */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #059669;
    /* Emerald 600 */
    font-family: monospace;
    font-weight: 700;
    background: #d1fae5;
    /* Emerald 100 */
    padding: 4px 10px;
    border-radius: 4px;
}

.blink-dot {
    width: 6px;
    height: 6px;
    background: #059669;
    /* Emerald 600 */
    border-radius: 50%;
    animation: blinkTerminal 1s infinite;
}

@keyframes blinkTerminal {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* The Log Stream (Light Theme) */
.terminal-log {
    flex: 1;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 250px;
    color: #334155;
    /* Slate 700 */
}

/* Scrollbar styling */
.terminal-log::-webkit-scrollbar {
    width: 4px;
}

.terminal-log::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.terminal-log::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}

/* Log Items */
.log-entry {
    display: flex;
    gap: 10px;
    opacity: 0;
    animation: typeIn 0.3s forwards;
}

.log-time {
    color: #64748b;
    /* Slate 500 */
    font-weight: 600;
    margin-right: 8px;
}

.log-msg {
    color: #334155;
    /* Slate 700 */
}

.log-highlight {
    color: #0f172a;
    /* Slate 900 */
    font-weight: 700;
    border-bottom: 1px dashed #94a3b8;
}

.log-system {
    color: #2563eb;
    /* Blue 600 */
    font-style: italic;
    font-weight: 600;
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Personality / Profile Section (Light Box) */
.profile-panel {
    margin-top: 14px;
    background: #fff;
    /* White card */
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.profile-label {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    /* Slate 900 */
    margin-bottom: 0.5rem;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #1e293b;
}

.profile-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Connect Button (Light Theme) */
.connect-btn {
    width: 100%;
    display: flex;
    margin-top: 9px;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    /* Dark button on light bg */
    color: #fff;
    border: none;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.connect-btn:hover {
    background: #0c45be;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.connect-btn .icon {
    background: #fff;
    color: #0f172a;
    border-radius: 20px;
    padding: 4px;
}

/* Mobile */
@media (max-width: 900px) {

    .core-stack-section,
    .manifesto-section,
    .team-section,
    .pricing-dark-section {
        padding: 3rem 1rem !important;
    }

    .mission-section {
        padding: 3rem 1rem !important;
    }

    .mission-controls {
        /* Merged properties */
        padding: 3rem 1rem !important;
        border-right: none;
        border-bottom: 2px solid #1a1a1a;
    }

    .mission-hud {
        border-left: none;
        border-top: 1px solid #333;
    }

    .mission-container {
        flex-direction: column;
    }

    .t-input {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        display: none !important;
    }

    .loc-subtitle {
        display: none !important;
    }

    .ultrawide-console-wrapper {
        height: 296px !important;
        margin-top: 0 !important;
    }

    .pd-header {
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .holo-section {
        display: none !important;
    }

    .contact-section {
        padding: 2rem 1rem 4rem 1rem !important;
    }

    .features-scroll-section {
        padding: 1rem !important;
    }

    .contact-container {
        /* Merged properties */
        gap: 0 !important;
        flex-direction: column;
    }

    .contact-header {
        /* Merged properties */
        margin-bottom: 8px !important;
        font-size: 2rem;
        line-height: 1.1;
    }

    .contact-info-section {
        padding: 3rem 1rem !important;
    }

    .info-header {
        margin-bottom: 1.2rem !important;
    }

    .att-hero-content {
        padding-top: 0 !important;
    }

    .att-hero-section {
        padding: 2rem 4rem 0 4rem !important;
    }

    .cinema-stack-section {
        padding: 5rem 1rem !important;
    }

    .stack-zones-wrapper {
        gap: 8vh !important;
    }

    .tech-strip {
        display: none !important;
    }

    .about-hero {
        text-align: left !important;
        height: 60vh !important;
        padding: 1rem 0 !important;
    }

    .hero-content-center {
        padding: 0 1rem !important;
    }

    .glitch-header {
        font-size: clamp(2.4rem, 6vw, 5.5rem) !important;
        margin: 1rem 0 !important;
    }

    .hero-sub {
        margin-top: 1rem !important;
    }
}

.staff-inputs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.staff-input-box .t-input-wrapper {
    margin-top: 0;
}

/* Mobile responsiveness for staff inputs */
@media (max-width: 600px) {
    .staff-inputs-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- LEFT PANEL VISIBILITY FIXES (Dark Side) --- */

/* Staff Init Group labels */
.staff-input-label {
    /* Merged properties */
    color: #e2e8f0;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.staff-input-label i {
    /* Merged properties */
    color: #60a5fa;
    font-size: 0.9rem;
}

/* Inputs on dark bg */
.staff-input-box {
    /* Merged properties */
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.staff-input-box .t-input {
    /* Merged properties */
    color: #000000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.staff-input-box:focus-within {
    /* Merged properties */
    background: rgba(255, 255, 255, 0.12);
    border-color: #60a5fa;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.staff-input-box:focus-within .t-input {
    border-color: #60a5fa;
}

/* Total Display visibility */
.staff-total-display {
    /* Merged properties */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
}

.staff-total-display span:first-child {
    /* Merged properties */
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-total-display #total-staff-count {
    /* Merged properties */
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

/* Main Terminal Input Group on Left (Wrapper) */
.terminal-input-group {
    /* Merged properties */
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #75b9ff;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
}

/* Staff Init Group - New Dual Input Design */
.staff-init-group {
    background: transparent;
    /* Remove blue tint for clarity */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
}

.terminal-label {
    display: block;

    font-size: 0.75rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.t-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-prompt {
    color: #3b82f6;
    /* Terminal Green */
    font-family: monospace;
    font-weight: 700;
}

.t-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    color: #000000;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    width: 100%;
    padding: 5px 0;
    outline: none;
    transition: border-color 0.3s;
}

.t-input:focus {
    border-color: #3b82f6;
}

/* 3. Action Buttons inside Terminal */
.terminal-btn {
    margin-top: 1rem;
    width: 100%;
    background: #222;
    color: #fff;
    border: 1px solid #333;
    padding: 0.8rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

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

/* 4. Submission Area (Hidden by default) */
.submission-zone {
    display: none;
    /* Hidden until requested */
    margin-top: 1rem;
    border-top: 1px dashed #333;
    padding-top: 1rem;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Message */
.submission-success {
    color: #3b82f6;
    text-align: center;
    padding: 2rem;
    display: none;
    animation: fadeIn 0.5s;
}

.submission-success i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* --- MISSION CONTROL: THE CONTROL DECK (Redesign) --- */

/* 1. The Container Card */
.control-deck {
    background: linear-gradient(180deg, #131517 0%, #0a0a0a 100%);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* 2. Top Status Bar */
.deck-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #222;
    padding-bottom: 0.8rem;
}

.deck-label {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deck-label::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-blue);
}

.deck-live-total {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    /* Blue tint */
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.total-label {
    font-size: 0.7rem;
    color: #888;
    font-weight: 600;
}

.digital-readout {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
    line-height: 1;
}

/* 3. The Input Modules Row */
.deck-modules {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.input-module {
    flex: 1;
    background: #050505;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.input-module:focus-within {
    border-color: #555;
    background: #080808;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Icons inside inputs */
.module-icon {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
    border: 1px solid #333;
}

.module-icon.field-icon {
    color: #a855f7;
    /* Purple accent for field */
}

/* Data Text Area */
.module-data {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.module-data label {
    font-size: 0.65rem;
    color: #555;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

/* The Cyber Input Field */
.cyber-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    /* Clean modern font */
    font-size: 1.4rem;
    font-weight: 600;
    width: 100%;
    padding: 0;
    outline: none;
}

.cyber-input::placeholder {
    color: #333;
}

.input-module:focus-within .cyber-input {
    color: #fff;
}

/* 4. The Visual Connector (+) */
.module-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    color: #333;
}

.link-line {
    width: 1px;
    height: 10px;
    background: #222;
}

.link-plus {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    color: #444;
}

/* 5. The Activation Bar Button */


/* Mobile Responsiveness */
@media (max-width: 600px) {
    .deck-modules {
        flex-direction: column;
        gap: 0;
    }

    .input-module {
        width: 100%;
    }

    .module-link {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 5px 0;
    }

    .link-line {
        width: 20px;
        height: 1px;
    }
}

/* --- BENTO VALUE GRID SECTION --- */
.value-bento-section {
    padding: 6rem var(--container-padding);
    background-color: #000;
    /* Matches your premium dark theme */
    position: relative;
    z-index: 5;
}

.bento-container {
    max-width: 1300px;
    margin: 0 auto;
}

.bento-header {
    margin-bottom: 4rem;
    text-align: left;
}

.bento-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-top: 0.5rem;
    font-weight: 700;
}

/* --- THE GRID LAYOUT --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 1.5rem;
}

/* --- CARD BASE STYLES --- */
.bento-card {
    background: rgb(18 18 18 / 70%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    scrollbar-color: var(--accent-green);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Glass effect */
}

/* Hover Depth */
.bento-card:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card Glow Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* --- SIZING CLASSES --- */
/* Large Card: Spans 2 cols, 2 rows (Top Left) */
.card-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Standard Cards: Span 1 col, 1 row */
.card-standard {
    grid-column: span 1;
    grid-row: span 1;
}

/* --- CONTENT STYLING --- */
.bento-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.bento-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.card-large .bento-content h3 {
    font-size: 2.5rem;
    /* Bigger title for hero card */
    margin-bottom: 1rem;
}

.bento-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

/* --- VISUAL ELEMENTS (Animation) --- */
.bento-visual {
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Speed Meter Visual */
.visual-speed {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.meter-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-blue);
    animation: loadSpeed 3s infinite cubic-bezier(0.22, 1, 0.36, 1);
}

.meter-text {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #fff;
    font-family: monospace;
}

@keyframes loadSpeed {
    0% {
        width: 0%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

/* 3D Lock Visual (CSS Only) */
.visual-lock {
    /* Merged properties */
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    align-items: center;
    background: #fff5f5;
    border-color: #ffe0e0;
}

.lock-3d {
    width: 60px;
    height: 80px;
    position: relative;
    transition: transform 0.3s ease;
}

.bento-card:hover .lock-3d {
    transform: scale(1.1);
}

.lock-3d .shackle {
    width: 40px;
    height: 30px;
    border: 6px solid #888;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    margin: 0 auto;
    position: relative;
    top: 10px;
    z-index: 1;
}

.lock-3d .body {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 12px;
    border: 1px solid #444;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        /* Stack everything */
        grid-template-rows: auto;
    }

    .card-large,
    .card-tall,
    .card-standard {
        grid-column: span 1;
        grid-row: span 1;
    }

    .card-large .bento-content h3 {
        font-size: 1.8rem;
    }

    .cta-footer {
        height: 70vh !important;
        background: #000828 !important;
    }

    .huge-watermark {
        font-size: clamp(12vw, 32vw, 20rem);
        color: rgb(255 255 255 / 9%);
        bottom: -7.5rem !important;
        left: 0.4rem !important;
    }

    .meter-text {
        display: none;
    }

    .capability-list {
        display: flex;
        gap: 0.5rem;
        flex-direction: column;

    }
}

/* --- BENTO GRID CREATIVE UPGRADES --- */

/* 1. PAYROLL CARD: LIVE DATA STREAM */
.bento-visual-stream {
    position: absolute;
    top: 20%;
    right: 2rem;
    width: 50%;
    height: 60%;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    opacity: 0.6;
}

.stream-track {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    animation: streamScroll 10s linear infinite;
}

.stream-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.s-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.s-line {
    height: 4px;
    width: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.s-line.short {
    width: 60px;
}

.s-tag {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent-green);
    background: rgba(28, 163, 48, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

@keyframes streamScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.bento-footer {
    margin-top: auto;
    position: relative;
    z-index: 2;
}


/* 2. ENCRYPTION CARD: HEX GRID BACKGROUND */
.card-tall {
    /* Merged properties */
    position: relative;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    grid-column: span 1;
    grid-row: span 2;
}

.hex-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at center, transparent 0%, #000 80%),
        linear-gradient(30deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

/* Custom 3D Lock */
.lock-container {
    width: 60px;
    height: 80px;
    position: relative;
    margin: 4rem auto 0;
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-tall:hover .lock-container {
    transform: scale(1.1) translateZ(20px);
}

.lock-body {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 12px;
    position: absolute;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lock-shackle {
    width: 40px;
    height: 40px;
    border: 6px solid #666;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    position: absolute;
    top: -30px;
    left: 10px;
    z-index: -1;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-tall:hover .lock-shackle {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.lock-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(9, 38, 140, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-tall:hover .lock-glow {
    opacity: 1;
}

/* 3. STANDARD CARDS: PULSE & SCANNER */
.bento-bg-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: pulseRed 3s infinite;
}

.bento-card:hover .bento-bg-pulse {
    opacity: 1;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-card:hover .scanner-line {
    opacity: 0.8;
    animation: scanDown 2s linear infinite;
}

@keyframes pulseRed {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.1;
    }
}

@keyframes scanDown {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.bento-content.bottom-aligned {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

/* Mobile Fixes */
@media (max-width: 900px) {
    .bento-visual-stream {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 4rem;
        /* Sit above text */
        top: auto;
        height: 150px;
        opacity: 0.3;
        /* Subtle on mobile */
    }

    .hero-badge {
        display: none !important;
    }
}

/* --- VIDEO BACKGROUND CARD --- */
.bento-card.video-card {
    position: relative;
    overflow: hidden;
    /* Crucial: Clips the video to the rounded corners */
    background: #000;
    /* Fallback color */
}

.card-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video fills the card without stretching */
    z-index: 0;
    /* Sits behind everything */

    /* THE "SUBTLE" EFFECT */
    opacity: 1;
    /* Low opacity so it doesn't fight the text */
    filter: grayscale(10%) contrast(1.2) brightness(1);
    /* B&W Tech Look */
    transition: all 0.5s ease;
    mix-blend-mode: screen;
    /* Blends nicely with the dark background */
}

/* Interaction: Bring video to life on hover */
.bento-card.video-card:hover .card-video-bg {
    opacity: 0.9;
    filter: grayscale(0%) contrast(1.1) brightness(1);
    /* Reveal slight color */
    transform: scale(1.05);
    /* Slow zoom effect */
}

/* Gradient Overlay to protect text readability */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Ensure content sits ON TOP of the video */
.video-card .bento-content,
.video-card .bento-footer {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Boost contrast */
}

/* --- BENTO JS UPGRADES --- */

/* CARD 2: ATTENDANCE LOGS */
.live-activity-wrapper {
    margin-top: 1rem;
    height: 135px;
    overflow: hidden;
    position: relative;
}

.activity-header {
    font-size: 0.6rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.activity-list {
    list-style: none;
    padding: 0;
}

.log-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 6px;
    animation: fadeInLog 0.5s forwards;
}

.log-avatar {
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.6rem;
}

/* CARD 3: ENCRYPTION CANVAS */
#card-encryption {
    position: relative;
    background: #000;
    /* Darker bg for contrast */
}

#encryption-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.bottom-aligned {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

/* CARD 4: BIOMETRIC WAVE */
.waveform-wrapper {
    margin-top: auto;
    height: 60px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

#bio-wave {
    width: 100%;
    height: 100%;
}

.bio-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 0.6rem;
    color: #00ff00;
    font-family: monospace;
}

/* ANIMATIONS */
@keyframes slideUpFade {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLog {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Mobile Adjustment */
@media (max-width: 900px) {
    .terminal-wrapper {
        display: none;
    }
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.2);
}

.lang-content {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 0.5rem;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform-origin: top right;
    animation: scaleIn 0.2s ease-out;
}

.lang-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

@keyframes scaleIn {
    from {
        opactiy: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lang-dropdown:hover .lang-content {
    display: block;
}

.lang-content a {
    color: var(--text-primary);
    padding: 10px 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: background 0.2s;
}

.lang-content a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--accent-color);
}

.lang-flag {
    font-size: 1.1rem;
}