/* ==========================================================================
1. CORE VARIABLES, RESET & CAPSULE NAVIGATION HEADER
========================================================================== */
/* ==========================================================================
   GLOBAL CONFIGURATION COLOR TOKENS (ADD TO THE TOP OF YOUR CSS)
   ========================================================================== */
:root {
    /* 1. Default Dark Mode Theme Parameters */
    --cloud-bg: #030712;
    --cloud-panel-bg: rgba(255, 255, 255, 0.03);
    --cloud-text-main: #ffffff;
    --cloud-text-muted: rgba(255, 255, 255, 0.6);
    --cloud-border: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
    /* 2. Interactive Light Mode Theme Parameters */
    --cloud-bg: #f9fafb; /* Clean crisp white base canvas */
    --cloud-panel-bg: #ffffff; /* Stark white card boxes */
    --cloud-text-main: #111827; /* Rich dark charcoal content text */
    --cloud-text-muted: #4b5563; /* Readable dark grey body text */
    --cloud-border: rgba(0, 0, 0, 0.08); /* Clean thin layout borders */
}

/* ==========================================================================
   ELEMENT LINKING PATTERNS (ASSIGN THESE TO YOUR PAGE COMPONENTS)
   ========================================================================== */
body {
    background-color: var(--cloud-bg) !important;
    color: var(--cloud-text-main) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Example: Map these dynamic variables directly onto your cloud cards/paragraphs */
p, .cloud-description-text {
    color: var(--cloud-text-muted) !important;
}

h1, h2, h3, title-text {
    color: var(--cloud-text-main) !important;
}

.cloud-container-box, .pricing-card {
    background: var(--cloud-panel-bg) !important;
    border: 1px solid var(--cloud-border) !important;
}





























* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==========================================================================
   FINAL FIXED NAVBAR: SHARP TYPOGRAPHY, BUTTON SPACING & HOVER EFFECTS
   ========================================================================== */

/* 1. Global Wrapper Override - Keeps it to one single pill bar */
.site-header, 
header,
.site-header-wrapper {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: fixed;
    top: 20px; 
    left: 0;
    z-index: 9999999 !important;
    display: flex;
    justify-content: center;
}
@media (max-width:768px){

    .site-header,
    header,
    .site-header-wrapper{

        width:auto !important;

        left:auto !important;
        right:20px !important;
        top:20px !important;

        display:block !important;

        background:transparent !important;
        border:none !important;
        box-shadow:none !important;
    }

}

/* 2. Glassmorphic Capsule Container */
.nav-container {
    width: max-content !important; 
    height: 52px; /* Adjusted slightly to give the elements and buttons breathing room */
    padding: 0 16px 0 24px; 
    display: flex;
    align-items: center;
    gap: 28px; 
    background: rgba(10, 11, 14, 0.45) !important; 
    backdrop-filter: blur(20px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 100px !important;
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);

}

/* 3. FIXED: TECHWE Branding Typography Refresh */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.brand-text {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
}

.text-accent {
    color: #4facfe;
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.4);
}

.tech-cloud-icon {
    width: 34px;   /* bigger logo */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.35));
}

/* hover effect */
.brand-logo:hover .tech-cloud-icon {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 18px rgba(79, 172, 254, 0.6));
}

.brand-text {
    font-size: 1.05rem;
    font-weight: 800; /* Bold, distinct premium weights */
    letter-spacing: 0.8px; /* High-end tech spacing track */
    color: #ffffff;
    text-transform: uppercase;
}

.text-accent {
    color: #4facfe; /* Clean accent color split */
}

/* 4. Navigation Menu List & HOVER Animations */
nav {
    display: flex;
    align-items: center;
    height: 100%;
    background: blur(20px) saturate(120%);
    z-index:  10;
}

nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px; 
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap; 
}

nav ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    transition: color 0.25s ease;
}

/* FIXED: Smooth hover animation for standard text links */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4facfe;
    transform: scaleX(0); /* Hidden by default */
    transform-origin: right;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:hover {
    color: #ffffff;
}

/* Slide line out from center-left on hover */
nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Permanent line rule for active link state */
nav ul li a.active {
    color: #ffffff;
}
nav ul li a.active::after {
    transform: scaleX(1);
}

/* 5. Theme Switch Slider Mechanics & Hover */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch-container {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.theme-switch-container:hover {
    transform: scale(1.05); /* Quick interactive hover feedback */
}

.theme-switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-track-pill {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
}

.slider-track-pill svg {
    width: 10px;
    height: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.slider-knob-ball {
    position: absolute;
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-switch-container input:checked + .slider-track-pill {
    background-color: #1a73e8;
}

.theme-switch-container input:checked + .slider-track-pill .slider-knob-ball {
    transform: translateX(22px);
}

/* 6. FIXED: Thinner Register Button with Proper Boundary Clearance & Hover */
.btn-nav {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%) !important;
    color: #ffffff !important;
    
    /* Adjusted heights and margins so it stays thinner but floats perfectly centered without touching boundaries */
    padding: 6px 14px !important; 
    height: auto !important;
    border-radius: 40px !important;
    
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.2);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease !important;
}

/* Strips out line decoration overrides for the button element */
.btn-nav::after {
    display: none !important;
}

/* Sleek interactive liftoff and glow flare on hover */
.btn-nav:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 16px rgba(79, 172, 254, 0.45);
}

.btn-nav:active {
    transform: translateY(0) scale(0.98);
}
.mobile-menu-btn{
    display:none;
}
@media (max-width:768px){

    .nav-container{
        background:none !important;
        border:none !important;
        box-shadow:none !important;
        padding:0 !important;
    }

    .brand-logo{
        display:none !important;
    }

    .mobile-menu-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;

        width:58px;
        height:58px;

        border-radius:50%;

        background:rgba(10,11,18,.95);
        border:1px solid rgba(0,140,255,.25);

        color:#fff;
        font-size:28px;
    }

    nav{
        display:none !important;
    }

    /* Dynamic Island */
    nav.active{
        display:block !important;

        position:fixed;
        top:20px;
        right:20px;

        width:280px;

        background:rgba(10,11,18,.97);
        backdrop-filter:blur(24px);

        border:1px solid rgba(0,140,255,.2);
        border-radius:30px;

        padding:70px 24px 24px;
    height:auto !important;
    overflow:hidden !important;

        z-index:9999;
    }

    nav.active ul{
        display:flex !important;
        flex-direction:column !important;

        align-items:flex-start !important;

    height:auto !important;

        width:100% !important;
        margin:0 !important;
        padding:0 !important;

        gap:10px !important;
    }

    nav.active li{
        width:100% !important;
        display:block !important;
        height:auto !important;
        
   

    }

    nav.active a{
        display:block !important;
        width:100% !important;

        text-align:left !important;

        font-size:1rem !important;
        padding:10px 0 !important;
    }

    /* Kill desktop underline */
    nav.active a::after{
        display:none !important;
    }

    /* Theme switch */
    nav.active .theme-switch-wrapper{
        margin-top:10px;
    }

    /* Support button */
    nav.active .btn-nav{
        width:100% !important;

        display:flex !important;
        justify-content:center !important;

        margin-top:12px !important;

        padding:12px !important;
    }

    /* Close button */
    nav.active .close-menu-btn{
        display:flex !important;

        position:absolute;
        top:15px;
        right:15px;

        width:44px;
        height:44px;

        border-radius:50%;
        border:1px solid rgba(0,140,255,.25);

        background:rgba(255,255,255,.05);

        color:white;

        align-items:center;
        justify-content:center;

        font-size:22px;
    }
}
.close-menu-btn{
    display:none !important;
}

nav.active .close-menu-btn{
    display:flex !important;
}




/* ==========================================================================
   GOOGLE-STYLE CENTERPIECE ANIMATION LAYOUT
   ========================================================================== */

/* Taller Hero Section to Prevent Pre-mature EKG Triggering */
.upper-hero-compartment {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #030712;
}

.hero-content {
    text-align: center;
}

.hero-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}



.hero-logo {
    width: 300px;          /* adjust size */
    height: auto;
    display: block;
    margin: 0 auto;
  
    /* ✨ soft glow */
    filter: drop-shadow(0 0 18px rgba(0, 242, 254, 0.25));

    /* 🎬 smooth animation */
    animation: logoFloatPulse 4.5s ease-in-out infinite;
    transform-origin: center;
    animation: logoFloatPulse 4.5s ease-in-out infinite,
               glowBreath 6s ease-in-out infinite;
}

/* 🌊 floating + breathing effect */
@keyframes logoFloatPulse {
    0% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.2));
    }

    50% {
        transform: translateY(-10px) scale(1.05);
        filter: drop-shadow(0 0 28px rgba(79, 172, 254, 0.45));
    }

    100% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.2));
    }
}

@keyframes glowBreath {
    0%, 100% {
        filter: drop-shadow(0 0 14px rgba(0,242,254,0.2));
    }
    50% {
        filter: drop-shadow(0 0 32px rgba(79,172,254,0.5));
    }
}
.hero-main-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.text-accent-blue { color: #4facfe; }

.gemini-fluid-text {
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient(90deg, #4285f4, #9b51e0, #e91e63, #fbbc05, #4285f4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flowSpectrum 4s linear infinite;
}

@keyframes flowSpectrum { to { background-position: 200% center; } }
/* ==========================================================================
   PRODUCTION REPAIR LAYER: SYMMETRICAL SECTIONS & BREAKOUT BASICS
   ========================================================================== */

body, html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    background-color: #030712;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden !important;
}
/* Liquid Glass Lens Text Effect */


.lifeline-animation-section {
    margin-top: -80px;
    position: relative;
    width: 100vw !important;
    min-height: 140vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    box-sizing: border-box;
}

.title-compartment {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    z-index: 30;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

/* Liquid Glass Lens Text Effect */
.glass-lens-wrapper { position: relative; display: inline-block; z-index: 5; }
.magnified-text { display: inline-block; font-weight: 800; background: linear-gradient(90deg, #00f2fe, #4facfe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.liquid-glass-lens { position: absolute; top: -4px; left: -10px; width: calc(100% + 24px); height: calc(100% + 8px); border-radius: 40px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);  border: 1px solid rgba(255, 255, 255, 0.25); box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 8px 20px rgba(0, 0, 0, 0.4); }
/* ==========================================================================
   PRODUCTION CANVAS BREAKOUT: MAKES LINE SEAMLESS FROM EDGE-TO-EDGE
   ========================================================================== */

.animation-stage-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Allows the breakout canvas to render safely beyond theme margin bounds */
    overflow: visible !important; 
}

#lifelineCanvas {
    position: absolute !important;
    top: 0 !important;
    
    /* 
       THE SEAMLESS BREAKOUT FORMULA:
       Forces the canvas layer to ignore parent width boundaries, 
       stretching absolute 100% viewport width and centering it perfectly.
    */
    width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    
    height: 100% !important;
    z-index: 5 !important;
    pointer-events: none !important;
    display: block !important;
}
/* ==========================================================================
   MAJESTIC CYBER HEART GRAPHICS & REVOLUTION OVERLOAD FLASHES
   ========================================================================== */

.tech-heart-wrapper {
    position: absolute !important;
    left: 50% !important;
    width: 140px;
    height: 140px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.tech-heart-wrapper.active-pulse {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) !important;
    animation: majesticBreathing 1.6s ease-in-out infinite alternate;
}

@keyframes majesticBreathing {
    0% { transform: translate(-50%, -50%) scale(1); filter: drop-shadow(0 0 25px rgba(220, 38, 38, 0.5)); }
    100% { transform: translate(-50%, -50%) scale(1.05); filter: drop-shadow(0 0 45px rgba(220, 38, 38, 0.8)); }
}

.cyber-pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 3px solid rgba(220, 38, 38, 0.35);
    border-radius: 50%;
    animation: electromagneticRadar 2.2s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
}

@keyframes electromagneticRadar {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   CYBERNETIC TECH HEART INNER CIRCUITRY AND OVERLOAD ANIMATIONS
   ========================================================================== */

/* Layered tech core geometry */
.cyber-heart-core {
    position: relative;
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, #ff2a2a 0%, #b30000 50%, #660000 100%);
    transform: rotate(-45deg);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.6);
}

.cyber-heart-core::before,
.cyber-heart-core::after {
    content: "";
    position: absolute;
    width: 84px;
    height: 84px;
    background: #b30000;
    border-radius: 50%;
}

.cyber-heart-core::before { 
    top: -42px; 
    left: 0; 
    background: linear-gradient(135deg, #ff4d4d 0%, #ff2a2a 50%, #b30000 100%); 
}

.cyber-heart-core::after { 
    left: 42px; 
    top: 0; 
    background: linear-gradient(135deg, #b30000 0%, #660000 100%); 
}

/* Glowing circuitry neon data nodes */
.cyber-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2fe, 0 0 20px #00f2fe;
    z-index: 4;
}

.node-1 { 
    top: 22px; 
    left: 22px; 
    animation: nodeGlowPulse 0.8s infinite alternate; 
}

.node-2 { 
    bottom: 22px; 
    right: 22px; 
    animation: nodeGlowPulse 1.2s infinite alternate 0.2s; 
}

.cyber-line-accent {
    position: absolute;
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, #00f2fe, transparent);
    top: 15px;
    left: 40px;
    z-index: 3;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.6);
}

@keyframes nodeGlowPulse {
    0% { opacity: 0.4; transform: scale(0.85); filter: brightness(0.8); }
    100% { opacity: 1; transform: scale(1.15); filter: brightness(1.3); }
}

/* Hyper-flash countdown effect applied right before turning into dust particles */
.tech-heart-wrapper.critical-overload .cyber-node {
    animation: criticalFlash 0.15s infinite alternate !important;
    background-color: #ff3366 !important;
    box-shadow: 0 0 12px #ff3366, 0 0 24px #ff3366 !important;
}

@keyframes criticalFlash {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.3); }
}


.disintegrate-tagline {
    position: absolute !important;
    
    /* 
       FIXED VERTICAL SHIFT: 
       Pushes the typography block downwards away from the flat baseline axis 
       to prevent any overlapping or text cutting loops.
    */
    top: 340px !important; 
    
    left: 50% !important;
    transform: translate(-50%, 15px); /* Keeps layout transforms structurally uniform */
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    white-space: nowrap;
    opacity: 0;
    z-index: 22;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.disintegrate-tagline.show-ready { opacity: 1; transform: translate(-50%, 0) !important; } 
/* ==========================================================================
   UNCOOKED MATRIX BLOCK SPECIFICATIONS & HARDWARE CARDS GRID
   ========================================================================== */

.matrix-features-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 24px 80px 24px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.35, 1), transform 0.8s ease;
}

.matrix-features-wrapper.grid-reveal-ready {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.matrix-grid-container {
    width: 100%;
    max-width: 1200px;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Perfect side-by-side arrangement rules */
    gap: 24px;
    transition: all 0.65s cubic-bezier(0.25, 1, 0.3, 1);
     margin-top: -600px;
}

/* ==========================================================================
   FEATURE BOX CONTAINER & UNIQUE CARD PERSONALITIES
   ========================================================================== */

.matrix-box {
    opacity: 1;
    position: relative;
    width: 100%;
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 28px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    /* Hardware acceleration prevents choppy resizing layout transitions */
    will-change: transform, max-height, padding, border-color;
    transition: grid-column 0.65s cubic-bezier(0.25, 1, 0.3, 1),
                background 0.4s ease, 
                border-color 0.4s ease, 
                padding 0.65s cubic-bezier(0.25, 1, 0.3, 1),
                box-shadow 0.65s ease,
                transform 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

.matrix-box:hover {
    background: #0d1424;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.box-icon {
    font-size: 1.3rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
}

.matrix-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.box-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

/* Unique Neon Border Glowing Theme Maps */
.card-neon-cyan .box-icon { background: rgba(0, 242, 254, 0.06); color: #00f2fe; }
.card-neon-cyan:hover { border-color: rgba(0, 242, 254, 0.35); box-shadow: 0 15px 35px rgba(0, 242, 254, 0.1); }

.card-neon-rose .box-icon { background: rgba(224, 17, 95, 0.06); color: #e0115f; }
.card-neon-rose:hover { border-color: rgba(224, 17, 95, 0.35); box-shadow: 0 15px 35px rgba(224, 17, 95, 0.1); }

.card-neon-purple .box-icon { background: rgba(161, 140, 209, 0.08); color: #a18cd1; }
.card-neon-purple:hover { border-color: rgba(161, 140, 209, 0.35); box-shadow: 0 15px 35px rgba(161, 140, 209, 0.1); }

.card-neon-green .box-icon { background: rgba(52, 168, 83, 0.06); color: #34a853; }
.card-neon-green:hover { border-color: rgba(52, 168, 83, 0.35); box-shadow: 0 15px 35px rgba(52, 168, 83, 0.1); }

.card-neon-yellow .box-icon { background: rgba(251, 188, 5, 0.06); color: #fbbc05; }
.card-neon-yellow:hover { border-color: rgba(251, 188, 5, 0.35); box-shadow: 0 15px 35px rgba(251, 188, 5, 0.1); }

.card-neon-blue .box-icon { background: rgba(66, 133, 244, 0.06); color: #4285f4; }
.card-neon-blue:hover { border-color: rgba(66, 133, 244, 0.35); box-shadow: 0 15px 35px rgba(66, 133, 244, 0.1); }

/* Micro Visual Items Styles */
/* ==========================================================================
   FUN MICRO-VISUAL REPLICAS FOR CARD ATTRACTIVENESS
   ========================================================================== */

.box-visual-asset {
    position: absolute;
    top: 28px;
    right: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* 01. Cyan Pulsing Data Nodes */
.data-nodes-visual .pulse-node {
    width: 6px; height: 6px; background-color: #00f2fe; border-radius: 50%;
    animation: nodeSparkle 1s infinite alternate;
}
.data-nodes-visual .pulse-node:nth-child(2) { animation-delay: 0.3s; }
.data-nodes-visual .pulse-node:nth-child(3) { animation-delay: 0.6s; }
@keyframes nodeSparkle { 0% { opacity: 0.2; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 10px #00f2fe; } }

/* 02. Rose Security Shield Orbit Rings */
.security-shield-visual .ring-orbit {
    position: absolute; border: 1.5px dashed #e0115f; border-radius: 50%;
}
.orbit-outer { width: 32px; height: 32px; animation: spinClockwise 6s linear infinite; }
.orbit-inner { width: 18px; height: 18px; border-style: dotted; border-color: #ffffff; animation: spinCounter 4s linear infinite; }
@keyframes spinClockwise { to { transform: rotate(360deg); } }
@keyframes spinCounter { to { transform: rotate(-360deg); } }

/* 03. Purple AI Shifting Waves */
.ai-wave-visual .wave-bar {
    width: 3px; height: 14px; background-color: #a18cd1; border-radius: 10px;
    animation: soundWaveGlow 0.8s infinite alternate ease-in-out;
}
.ai-wave-visual .wave-bar:nth-child(2) { animation-delay: 0.15s; height: 24px; }
.ai-wave-visual .wave-bar:nth-child(3) { animation-delay: 0.3s; height: 18px; }
.ai-wave-visual .wave-bar:nth-child(4) { animation-delay: 0.45s; height: 10px; }
@keyframes soundWaveGlow { 0% { transform: scaleY(0.7); background-color: #a18cd1; } 100% { transform: scaleY(1.3); background-color: #ffffff; box-shadow: 0 0 8px #a18cd1; } }

/* 04. Green Data Chart Columns */
.chart-bars-visual { align-items: flex-end; height: 28px; }
.chart-bars-visual .chart-pillar {
    width: 5px; height: 12px; background-color: #34a853; border-radius: 2px;
    animation: barGrow 1.2s infinite alternate ease-in-out;
}
.chart-bars-visual .chart-pillar:nth-child(2) { animation-delay: 0.4s; height: 24px; }
.chart-bars-visual .chart-pillar:nth-child(3) { animation-delay: 0.8s; height: 16px; }
@keyframes barGrow { 0% { height: 20%; } 100% { height: 100%; box-shadow: 0 -2px 8px #34a853; } }

/* 05. Yellow Radar Reticle Crosshair */
.target-radar-visual { width: 28px; height: 28px; border: 1px solid rgba(251, 188, 5, 0.2); border-radius: 50%; position: relative; }
.target-radar-visual .crosshair-h { position: absolute; width: 100%; height: 1px; background: rgba(251, 188, 5, 0.4); top: 50%; }
.target-radar-visual .crosshair-v { position: absolute; width: 1px; height: 100%; background: rgba(251, 188, 5, 0.4); left: 50%; }
.target-radar-visual .radar-scan { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 1px solid #fbbc05; animation: pingGlow 1.5s infinite ease-out; }
@keyframes pingGlow { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* 06. Blue Quantum Loading Circle */
.loader-ring-visual svg { width: 30px; height: 30px; color: #4285f4; animation: spinClockwise 2s linear infinite; }

/* ==========================================================================
   ULTRA-SMOOTH ACCORDION DRIVEN ROW EXPANSIONS
   ========================================================================== */

.matrix-grid-container.state-expanded { grid-template-columns: repeat(3, 1fr) !important; }

/* Maximized Active Card: Spreads evenly across all grid spaces smoothly */
.matrix-box.is-maximized {
    grid-column: span 3 !important;
    background: #0b111d !important; border-color: rgba(255, 255, 255, 0.12) !important;
    padding: 36px 40px !important; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
    transform: translateY(0) scale(1) !important;
}
.matrix-box.is-maximized .box-visual-asset { opacity: 0; }

/* Slide out inner point bullet text list rows */
.expanded-details { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.25, 1, 0.25, 1), opacity 0.4s ease 0.15s, margin-top 0.6s ease; }
.matrix-box.is-maximized .expanded-details { max-height: 350px; opacity: 1; margin-top: 20px; }
.expanded-details h5 { font-size: 1.05rem; font-weight: 700; color: #ffffff; margin-bottom: 14px; }
.tech-points-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tech-points-list li { font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; display: flex; align-items: center; gap: 12px; }
.tech-points-list li::before { content: "✦"; color: #00f2fe; }
/* ==========================================================================
   CORNER TOGGLE BUTTON & ACTIVE STRETCH ACCORDION INTERFACES
   ========================================================================== */

.corner-toggle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: rotate(45deg); /* Default outward layout tilt angle */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.35, 1), background 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.matrix-box:hover .corner-toggle-btn { color: #ffffff; transform: rotate(0deg); }

/* Hover color configurations for specific button actions */
.matrix-box.card-neon-cyan:hover .corner-toggle-btn { background: #00f2fe; border-color: #00f2fe; color: #030712; }
.matrix-box.card-neon-rose:hover .corner-toggle-btn { background: #e0115f; border-color: #e0115f; color: #ffffff; }
.matrix-box.card-neon-purple:hover .corner-toggle-btn { background: #a18cd1; border-color: #a18cd1; color: #030712; }
.matrix-box.card-neon-green:hover .corner-toggle-btn { background: #34a853; border-color: #34a853; color: #ffffff; }
.matrix-box.card-neon-yellow:hover .corner-toggle-btn { background: #fbbc05; border-color: #fbbc05; color: #030712; }
.matrix-box.card-neon-blue:hover .corner-toggle-btn { background: #4285f4; border-color: #4285f4; color: #ffffff; }

/* Inverts arrow rotation completely upon reaching expanded active state */
.matrix-box.is-maximized .corner-toggle-btn {
    transform: rotate(180deg) !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #030712 !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* --- THE EXTENDED ACCORDION INNER DETAIL TIERS --- */
.expanded-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.25, 1), opacity 0.4s ease 0.15s, margin-top 0.6s ease;
}

.matrix-box.is-maximized .expanded-details {
    max-height: 350px;
    opacity: 1;
    margin-top: 20px;
}

.expanded-details h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.tech-points-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-points-list li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-points-list li::before {
    content: "✦";
    color: #00f2fe;
}

/* ==========================================================================
   CROSS-DEVICE FLEXIBLE RESPONSIVE HOOKS OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {
    .matrix-grid-container,
    .matrix-grid-container.state-expanded {
        grid-template-columns: repeat(2, 1fr) !important; /* Drops to 2 boxes per row on tablets */
    }
    .matrix-box.is-maximized {
        grid-column: span 2 !important;
    }
    .matrix-box.is-minimized {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .disintegrate-tagline { font-size: 1.3rem; white-space: normal; padding: 0 24px; }
    
    .matrix-grid-container,
    .matrix-grid-container.state-expanded {
        grid-template-columns: 1fr !important; /* Stack cards vertically on small phones */
    }
    .matrix-box.is-maximized,
    .matrix-box.is-minimized {
        grid-column: span 1 !important;
        padding: 24px !important;
    }
}
/* ==========================================================================
   EXPLICIT PRIORITIZATION LAYER FOR ACCORDION CARDS SECTION
   ========================================================================== */

.matrix-features-wrapper,
#matrixSection,
.techwe-features-grid {
    /* Assures the grid holds foreground layer priority rules securely */
    z-index: 10 !important; 
}

.matrix-box {
    /* Ensures the individual cards remain solidly over the background particle stream */
    z-index: 12 !important;
}

/*THE NEW PRICING CALCULATING SECTION
==========================================================================*/
/* ==========================================================================
   PRODUCTION READY ESTIMATOR CORE LAYOUT & NAVIGATION CSS STYLES
   ========================================================================== */

/* ==========================================================================
   ISOLATED COST CALCULATOR LAYOUT RESETS (PREVENTS GLOBAL OVERLAPS)
   ========================================================================== */
/* ==========================================================================
   PART 1: SECTION CONTAINER ISOLATION AND CORE FLEX WRAPPERS
   ========================================================================== */

/* Forces the calculator into its own down-page compartment block row */
.techwe-isolated-calc-block {
    position: relative !important;
    display: block !important;
    width: 100vw !important;
    min-height: 100vh;
    background-color: #030712;
    padding: 100px 0;
    box-sizing: border-box !important;
    clear: both !important;
 
    margin-top: -200px;
}


.calc-global-centering-wrapper {
    width: 90% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px;
}

.calc-header-box-container {
    width: 100%;
    text-align: center;
}

.calc-header-box-container h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.calc-header-box-container p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}
/* ==========================================================================
   PART 2: HORIZONTAL DUAL WORKSPACE COLUMNS & GLASSMorphic SIDEBAR
   ========================================================================== */

/* Main operational grid layout - isolated from feature boxes definitions */
.calc-main-workspace-matrix {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 2.3fr 1.2fr !important;
    gap: 32px !important;
    align-items: start !important;
}

.calc-left-inputs-column-pane {
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 36px;
    box-sizing: border-box;
}

/* Sticky floating receipt layout layer */
.calc-right-receipt-summary-pane {
    position: sticky !important;
    top: 100px;
    background: rgba(11, 18, 32, 0.45) !important;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    padding: 32px;
    box-sizing: border-box;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}
/* ==========================================================================
   PART 3: PROGRESSIVE NAV TIMELINE BADGES AND ACTIVE BUTTON CLIPS
   ========================================================================== */

.calc-steps-navbar-container {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 18px;
    margin-bottom: 36px;
}

.nav-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-step-item.active { color: #00f2fe; }
.nav-step-item.completed { color: #ffffff; }

.step-circle-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex; justify-content: center; align-items: center;
    font-size: 0.8rem; font-weight: 700;
    transition: all 0.3s ease;
}

.nav-step-item.active .step-circle-icon {
    border-color: #00f2fe;
    background: rgba(0, 242, 254, 0.06);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.nav-step-item.completed .step-circle-icon {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Master Form panel step visibility triggers */
.calculator-form-panel { display: none; }
.calculator-form-panel.active { display: block !important; }
.calculator-form-panel h4 { font-size: 1.3rem; color: #ffffff; margin: 0 0 8px 0; }
.calculator-form-panel > p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.45); margin: 0 0 24px 0; }
/* ==========================================================================
   PART 4: COMPUTING ARCHITECTURE CARDS & COMPACT SLIDER INTERFACES
   ========================================================================== */

/* Step 1: VM Server Instance Layout Grid (Kept completely separate from your 3-column features style) */
.compute-plan-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    margin-top: 20px;
}

.compute-card-select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.compute-card-select:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.compute-card-select.selected {
    border-color: #00f2fe;
    background: rgba(0, 242, 254, 0.02);
    box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.05);
}

.compute-card-select strong { display: block; font-size: 1.1rem; color: #ffffff; margin-bottom: 4px; }
.compute-card-select p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); margin: 0 0 12px 0; }
.card-inline-cost { font-size: 1rem; font-weight: 700; color: #00f2fe; }

/* Step 2: Storage Buttons & Input Sliders */
.storage-presets-row { display: flex; gap: 12px; margin-bottom: 24px; }
.storage-preset-btn {
    flex: 1; padding: 10px; background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 10px;
    color: #ffffff; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
}
.storage-preset-btn.selected { background: #ffffff; color: #030712; border-color: #ffffff; }

.input-slider-block { margin-top: 24px; }
.input-slider-block label { display: block; font-size: 0.9rem; color: #ffffff; margin-bottom: 12px; font-weight: 500; }

.calc-range-slider {
    width: 100%; height: 6px; background: rgba(255, 255, 255, 0.08);
    border-radius: 10px; outline: none; -webkit-appearance: none;
}
.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px;
    border-radius: 50%; background: #00f2fe; cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
}

.slider-counter-badge { display: inline-block; margin-top: 8px; font-size: 0.85rem; color: #00f2fe; font-weight: 700; }
/* ==========================================================================
   PART 5: CROSS-CLOUD TABULAR MATRICES & ITEMIZED BILL RECEIPT ITEMS
   ========================================================================== */

/* Step 4: Comparison Data Sheet Table */
.comparison-matrix-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.matrix-row { display: grid !important; grid-template-columns: 2fr repeat(4, 1fr) !important; padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.matrix-row.table-header { background: rgba(255, 255, 255, 0.02); color: rgba(255, 255, 255, 0.4); font-size: 0.75rem; text-transform: uppercase; font-weight: 600; }
.matrix-row.table-totals { border-top: 1px solid rgba(0, 242, 254, 0.2); background: rgba(0, 242, 254, 0.01); font-weight: 700; }

.matrix-cell { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }
.cell-label { font-weight: 500; color: #ffffff !important; }
.techwe-price-col { color: #00f2fe !important; font-weight: 600; }
.free-badge { color: #34a853 !important; font-weight: 700; }

/* Right Sidebar Dashboard Styling */
.rec-label { font-size: 0.8rem; font-weight: 700; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.5px; }
.live-grand-total-string { font-size: 2.2rem; font-weight: 800; color: #ffffff; margin: 6px 0 20px 0; }
.receipt-mini-breakdown { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.rec-item { display: flex; justify-content: space-between; font-size: 0.88rem; color: rgba(255, 255, 255, 0.5); }
.rec-item span:last-child { color: #ffffff; font-weight: 600; }

/* Market Savings Badge Block */
.savings-comparison-shelf { margin-top: 20px; }
.savings-card { background: rgba(52, 168, 83, 0.04); border: 1px solid rgba(52, 168, 83, 0.15); border-radius: 14px; padding: 16px; }
.save-vs-label { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }
.save-percentage-badge { font-size: 1.2rem; font-weight: 800; color: #34a853; margin: 2px 0; }
.save-numerical-delta { font-size: 0.85rem; color: #ffffff; }
.save-yearly-delta { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }

.btn-calculator-deploy-action {
    width: 100%; padding: 14px; background: #00f2fe; border: none; border-radius: 30px;
    color: #030712; font-weight: 700; font-size: 0.95rem; margin-top: 24px; cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2); transition: all 0.2s;
}
.btn-calculator-deploy-action:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4); }
/* ==========================================================================
   PART 6: PANEL CONTROL FOOTERS & RESPONSIVE COMPRESSION FALLBACKS
   ========================================================================== */

.calculator-action-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-btn {
    padding: 10px 24px; font-size: 0.9rem; font-weight: 600; border-radius: 30px;
    cursor: pointer; transition: all 0.2s;
}
.calc-btn-back { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: #ffffff; }
.calc-btn-continue { background: #00f2fe; border: 1px solid #00f2fe; color: #030712; font-weight: 700; }

@media (max-width: 1024px) {
    .calc-main-workspace-matrix {
        grid-template-columns: 1fr !important; /* Collapses into standard vertical stacking layout rows */
    }
    .calc-right-receipt-summary-pane {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .calc-steps-navbar-container span { display: none; } /* Drops descriptive text tags on mobile viewports */
    .compute-plan-grid { grid-template-columns: 1fr !important; }
    .matrix-row { font-size: 0.7rem; padding: 10px 4px; }
}
/* ==========================================================================
   PREMIUM HIGH-TECH OPERATING SYSTEM BUTTON SELECTORS
   ========================================================================== */

.os-selector-row-matrix {
    display: flex !important;
    gap: 16px !important;
    margin: 20px 0 28px 0 !important;
    width: 100% !important;
}

.os-toggle-btn {
    flex: 1 !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    cursor: pointer !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    outline: none !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Hover State */
.os-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* Active/Selected State */
.os-toggle-btn.active-os {
    background: rgba(0, 242, 254, 0.03) !important;
    border-color: #00f2fe !important;
    color: #00f2fe !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15), 
                inset 0 0 10px rgba(0, 242, 254, 0.05) !important;
}

/* Mobile responsive packing support */
@media (max-width: 600px) {
    .os-selector-row-matrix {
        flex-direction: column !important;
        gap: 10px !important;
    }
}
.os-toggle-btn {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
}
.os-toggle-btn p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}
.os-toggle-btn.active-os p {
    color: rgba(0, 242, 254, 0.7);
}
/* ==========================================================================
   OS ROW INTERACTIVE LAYER FIX (RESTORES UNBLOCKED BUTTON CLICKS)
   ========================================================================== */

.os-selector-row-matrix {
    display: flex !important;
    gap: 16px !important;
    margin: 20px 0 28px 0 !important;
    width: 100% !important;
    
    /* 
       THE INTERACTIVE FIX:
       Forces the OS button row into a dedicated absolute stacking plane
       so that neighboring grid paddings cannot mask or block your mouse clicks.
    */
    position: relative !important;
    z-index: 999 !important; 
    pointer-events: auto !important; /* Forces the browser to process clicks natively */
}

.os-toggle-btn {
    /* Ensures the individual buttons receive action events clearly */
    pointer-events: auto !important;
}
/* Restructures the review table data rows to look crisp under the new pricing model */
.matrix-row th:nth-child(4), .matrix-row td:nth-child(4) {
    color: rgba(255, 255, 255, 0.7) !important;
}
.tax-disclaimer-tag {
    display: block;
    margin-top: 14px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.4;
}
/* ==========================================================================
   INTERACTIVE BUTTON ROWS & PROVIDER PRICE BADGES
   ========================================================================== */

.input-counter-block {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.counter-control-row {
    display: flex;
    align-items: center;
    width: fit-content;
}

.counter-control-row input {
    width: 50px !important;
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
    border: none !important;

    color: #00f2fe !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;

    padding: 0 !important;
    margin: 0 !important;

    appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

/* Hide browser number spinners */
.counter-control-row input::-webkit-outer-spin-button,
.counter-control-row input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.counter-control-row button {
    width: 40px; height: 40px;
    background: transparent; border: none;
    color: #ffffff; font-size: 1.2rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
}
.counter-control-row button:hover { background: rgba(255, 255, 255, 0.05); }

.counter-control-row input {
    width: 50px; height: 40px;
    background: transparent; border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #00f2fe; text-align: center;
    font-size: 1.1rem; font-weight: 700;
}

.mini-provider-pricing-shelf {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-top: 16px;
    padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.mini-provider-pricing-shelf div { display: flex; flex-direction: column; gap: 4px; font-size: 0.8rem; }
.mini-provider-pricing-shelf span { color: rgba(255, 255, 255, 0.35); }
.mini-provider-pricing-shelf strong { color: #ffffff; font-size: 0.9rem; }
.mini-provider-pricing-shelf strong.free-text { color: #34a853; }

.transfer-badge-row { display: flex; align-items: center; gap: 10px; }
.free-marker-badge { font-size: 0.75rem; font-weight: 700; background: rgba(52, 168, 83, 0.1); color: #34a853; padding: 2px 8px; border-radius: 4px; }
.total-appliance-count { font-size: 1.3rem; font-weight: 800; color: #00f2fe; }
.mini-presets { margin-top: 14px !important; }
/* ==========================================================================
   HIDDEN PANEL CLIPPING ENGINE (FIXES THE UNCLICKABLE STORAGE SLIDER)
   ========================================================================== */

/* 1. Reset all step panel layers to completely ignore mouse pointer actions when inactive */
.calculator-form-panel {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important; /* Prevents hidden step layers from masking clicks */
}

/* 2. Forces absolute topmost clickable priority rules over the single ACTIVE panel view */
.calculator-form-panel.active {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important; /* Grants full click access to active buttons and sliders */
    position: relative !important;
    z-index: 100 !important;
}

/* ==========================================================================
   PRODUCTION REPAIR: UNBLOCKS STORAGE PRESET BUTTON SELECTION CLICKS
   ========================================================================== */

.storage-presets-row {
    display: flex !important;
    position: relative !important;
    
    /* 
       THE INTERACTIVE UNBLOCKER: 
       Lifts the entire row row of buttons above any invisible slider padding 
       or panel overlays so your mouse clicks register instantly.
    */
    z-index: 99999 !important; 
    pointer-events: auto !important;
    gap: 12px !important;
    margin-bottom: 28px !important;
    width: 100% !important;
}

.storage-preset-btn {
    flex: 1 !important;
    position: relative !important;
    
    /* Forces absolute direct clicking interaction layer tags */
    z-index: 100000 !important; 
    pointer-events: auto !important; 
    
    padding: 12px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    cursor: pointer !important;
    outline: none !important;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Active Highlight Filter State */
.storage-preset-btn.selected {
    background: #ffffff !important;
    color: #030712 !important;
    border-color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15) !important;
}

.storage-preset-btn:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Isolates the sliding range track area below the buttons row */
.input-slider-block {
    position: relative !important;
    z-index: 1000 !important;
    margin-top: 24px !important;
    width: 100% !important;
}

/* ==========================================================================
   NETWORK SELECTION HOVER CARDS SHELF STYLES
   ========================================================================== */

.network-type-select-shelf {
    display: flex !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
}

.net-type-card {
    flex: 1 !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.net-type-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.net-type-card.selected {
    background: rgba(0, 242, 254, 0.03) !important;
    border-color: #00f2fe !important;
    box-shadow: inset 0 0 12px rgba(0, 242, 254, 0.05) !important;
}

.net-card-head {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
}
.net-type-card.selected .net-card-head {
    color: #00f2fe !important;
}

.net-type-card p {
    margin: 0 !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.4 !important;
}
/* ==========================================================================
   THE ABSOLUTE UNBLOCKER: STRIPS HIDDEN PANELS FROM THE CLICK STREAM
   ========================================================================== */

/* Forcefully hide and remove all inactive panels so they cannot block clicks */
.calculator-form-panel {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Forcefully unblock and restore layout priority to the ACTIVE panel view */
.calculator-form-panel.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 999999 !important; /* Forces it to sit above everything else */
}

/* Elevate the container row holding the storage buttons */
.storage-presets-row {
    display: flex !important;
    position: relative !important;
    z-index: 9999999 !important; /* Higher priority layer */
    pointer-events: auto !important;
}

/* Absolute top click layer priority assigned directly to the individual buttons */
.storage-preset-btn {
    position: relative !important;
    z-index: 10000000 !important; /* Ultimate layer priority */
    pointer-events: auto !important;
    cursor: pointer !important;
}
.storage-preset-btn {
    user-select: none !important;
    -webkit-user-select: none !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* ==========================================================================
   WIZARD FOOTER NAVIGATION CONTROLLER: FORCES VISIBILITY OF ACTION BUTTONS
   ========================================================================== */

/* The main bottom navigation panel bar container */
.calculator-action-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 36px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    position: relative !important;
    z-index: 100000 !important; /* Lifts the button layout above overlapping panels */
    clear: both !important;
}

/* Base button properties unblocking */
.calc-btn, 
#calcBtnPrev, 
#calcBtnNext {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 120px !important;
    height: 44px !important;
    padding: 0 24px !important;
    border-radius: 30px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    pointer-events: auto !important; /* Grants full unblocked cursor click visibility */
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* The Muted Grey Back/Start-Over Button Style Profile */
.calc-btn-back {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}
.calc-btn-back:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* The Highlight Neon Blue Continue Button Style Profile */
.calc-btn-continue {
    background: #00f2fe !important;
    border: 1px solid #00f2fe !important;
    color: #030712 !important;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25) !important;
}
.calc-btn-continue:hover {
    filter: brightness(1.1) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4) !important;
}
/* ==========================================================================
   CLEAN FOOTER NAVIGATION ALIGNMENT ACCENTS
   ========================================================================== */

.calculator-action-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 36px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    position: relative !important;
    z-index: 999999 !important; /* Forces layout visibility over background canvas paths */
}

.calc-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 130px !important;
    height: 44px !important;
    padding: 0 24px !important;
    border-radius: 30px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Symmetrical Back / Start Over layout style details */
.calc-btn-back {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}
.calc-btn-back:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* Highlight Neon Blue Continue button style details */
.calc-btn-continue {
    background: #00f2fe !important;
    border: 1px solid #00f2fe !important;
    color: #030712 !important;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25) !important;
}
.calc-btn-continue:hover {
    filter: brightness(1.1) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4) !important;
}
.calculator-form-panel {
    display: none;
}

.calculator-form-panel.active {
    display: block;
}
/* ==========================================================================
   CLICKABLE WIZARD HEADER HOVER ACCENTS
   ========================================================================== */

.nav-step-item {
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-step-item:hover {
    transform: translateY(-2px);
}
.techwe-achievements-section{
    background:#050505;
    padding:100px 20px;
}
.achievement-heading{
    text-align:center;
    font-size:56px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;

    background:
    linear-gradient(
        90deg,
        #00d4ff,
        #4facfe,
        #8a5cff,
        #00d4ff
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:70px;

    animation:gradientMove 6s linear infinite;
}
@keyframes gradientMove{

    from{
        background-position:0% center;
    }

    to{
        background-position:300% center;
    }
}
.achievement-heading::after{
    content:'';
    display:block;

    width:140px;
    height:4px;

    margin:18px auto 0;

    background:#00d4ff;

    box-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 40px #00d4ff;
}
.achievement-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1300px;
    margin:auto;
}

.achievement-card{
    background:rgba(15,15,15,.9);
    border:1px solid rgba(0,170,255,.15);
    border-radius:24px;
    padding:35px;
    text-align:center;
    overflow:hidden;
    position:relative;

    box-shadow:
        0 0 30px rgba(0,150,255,.08);

    transition:.4s;
}

.achievement-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 0 50px rgba(0,170,255,.25);
}

.achievement-card h3{
    color:white;
    line-height:1.5;
    font-size:22px;
}
.network-animation{
    width:120px;
    height:120px;
    margin:auto 0 25px;
    position:relative;
    margin-left:auto;
    margin-right:auto;
}

.network-animation span{
    position:absolute;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#00d4ff;
    box-shadow:0 0 20px #00d4ff;
}

.network-animation span:nth-child(1){
    top:0;
    left:50%;
}

.network-animation span:nth-child(2){
    bottom:0;
    left:50%;
}

.network-animation span:nth-child(3){
    left:0;
    top:50%;
}

.network-animation span:nth-child(4){
    right:0;
    top:50%;
}

.network-animation::after{
    content:'';
    position:absolute;
    inset:20px;
    border:2px solid #00d4ff;
    border-radius:50%;
    animation:pulseNetwork 2s infinite;
}

@keyframes pulseNetwork{
    0%{transform:scale(.8);opacity:.5;}
    50%{transform:scale(1.1);opacity:1;}
    100%{transform:scale(.8);opacity:.5;}
}
.cloud-animation{
    width:140px;
    height:140px;
    margin:0 auto 30px;
    position:relative;

    overflow:hidden; /* prevents layout break */
}

/* CLOUD */
.cloud{
    position:absolute;
    left:50%;
    top:45%;
    transform:translate(-50%,-50%);
    font-size:80px;
    color:#00c8ff;

    text-shadow:
        0 0 20px #00c8ff,
        0 0 40px #00c8ff;

    animation:cloudSquish 2.8s ease-in-out infinite;
}

.cloud::before{
    content:"☁";
}

/* CLOUD SQUISH + LIFT */
@keyframes cloudSquish{

    0%{
        transform:translate(-50%,-50%) scale(1,1);
    }

    25%{
        transform:translate(-50%,-55%) scale(1.15,0.75); /* squish upward */
    }

    50%{
        transform:translate(-50%,-65%) scale(1.05,0.9); /* lifted state */
    }

    75%{
        transform:translate(-50%,-55%) scale(1.1,0.8);
    }

    100%{
        transform:translate(-50%,-50%) scale(1,1);
    }
}

/* DOWNWARD ENERGY LINES */
.fall-lines span{
    position:absolute;
    top:35px;
    width:3px;
    height:0;
    background:linear-gradient(to bottom,#00f0ff,transparent);
    border-radius:10px;
    opacity:0;
    animation:fallDown 2.8s infinite;
}

/* spread lines */
.fall-lines span:nth-child(1){left:35px; animation-delay:.1s;}
.fall-lines span:nth-child(2){left:55px; animation-delay:.3s;}
.fall-lines span:nth-child(3){left:75px; animation-delay:.5s;}
.fall-lines span:nth-child(4){left:95px; animation-delay:.2s;}
.fall-lines span:nth-child(5){left:115px; animation-delay:.4s;}

@keyframes fallDown{

    0%{
        height:0;
        opacity:0;
        transform:translateY(0);
    }

    20%{
        opacity:1;
    }

    50%{
        height:60px;
    }

    100%{
        height:0;
        opacity:0;
        transform:translateY(80px); /* falls downward */
    }
}
.recovery-animation{
    width:100px;
    height:100px;
    margin:0 auto 30px;
    border:4px solid #00ff88;
    border-top-color:transparent;
    border-radius:50%;
    animation:spinRecovery 3s linear infinite;

    box-shadow:
    0 0 25px #00ff88;
}

@keyframes spinRecovery{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}
.security-animation{
    position:relative;
    width:100px;
    height:120px;
    margin:0 auto 30px;
}

.security-animation::before{
    content:'';
    position:absolute;
    inset:-15px;

    background:
    radial-gradient(
        circle,
        rgba(111,92,255,.9),
        transparent 70%
    );

    filter:blur(20px);

    animation:shieldPulse 2s ease-in-out infinite;
}

.security-animation::after{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        #8a5cff,
        #3820ff
    );

    clip-path:polygon(
        50% 0%,
        100% 20%,
        100% 60%,
        50% 100%,
        0% 60%,
        0% 20%
    );
}
.calc-steps-navbar-container {
    position: relative;
    z-index: 9999;
}

.nav-step-item {
    cursor: pointer;
    pointer-events: auto;
}
  
.contact-section {
    width: 100% !important;
    padding: 60px 6% !important; /* Slightly thinner padding to keep the vertical frame compact */
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
    min-height: auto !important; 
}

/* BACKGROUND CANVAS IMAGE */
.contact-bg-media {
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    width: 100% !important;
    height: 100% !important;
}

.contact-bg-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: brightness(0.25) contrast(1.1); /* Slightly deepened to maximize typography readability */
}

/* STACKED CONTAINER FRAME */
.contact-center-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stacks the content vertically: Text blocks on top, box on bottom */
    align-items: flex-start; /* Forces the text to stay on the left edge */
    gap: 2.2rem; /* Comfortable vertical separation spacing link between blocks */
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* THE LEFT FIX: Forces text nodes to stay left-aligned */
    text-align: left;
    width: 100%;
}

.badge-tag {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 5px 14px !important; /* Slightly tighter badge padding metrics */
    border-radius: 30px !important;
    color: #e100ff !important; 
    font-size: 12px; /* Made the tag text slightly smaller */
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-info-panel h2 {
    /* THE SMALLER FIX: Reduced size from 2.6rem down to 2.1rem for a clean look */
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 0.8rem !important;
    max-width: 600px; /* Prevents the heading line from spreading too far wide */
}

.contact-info-panel h2 span {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    color: var(--text-muted) !important;
    /* THE SMALLER FIX: Scaled text down to an elegant 0.92rem size */
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    max-width: 540px !important;
    margin-bottom: 0px !important; /* Reset margin constraints to respect the column layout tracking */
}

/* LENS COMMS CONTAINER */
.lens-comms-box {
    position: relative !important;
    width: 100%;
    
    /* THE COMPRESSION FIX: Shrunk layout bounds down to 400px to make it smaller */
    max-width: 400px; 
    
    /* THE MIDDLE FIX: Aligns the entire box perfectly in the center horizontally */
    margin: 0 auto !important; 
    
    background: rgba(3, 7, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    
    /* THE SMALLER FIX: Tighter interior box space saving limits */
    padding: 1.6rem !important; 
    
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Snug spacing gaps inside the rows */
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55);
    overflow: hidden !important;
    text-align: left; 
}

.comms-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.comms-icon {
    /* THE SMALLER FIX: Scaled icon grids down from 44px to a compact 36px bounding footprint */
    width: 36px;
    height: 36px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--accent-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comms-icon svg {
    width: 16px; /* Slightly tighter internal vector layout paths */
    height: 16px;
}

.comms-label {
    font-size: 0.75rem; /* Compact print size label scale */
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1px;
}

.comms-digits {
    /* THE SMALLER FIX: Scaled phone/email string tags from 1.25rem down to 1.1rem */
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.2px;
    transform-origin: left center;
    display: inline-block;
}

/* ACTIVE SCROLL ANIMATION EFFECTS TIED NATIVELY TO TRIGGER HANDLES */
.animate-now .comms-digits {
    animation: smoothLensZoom 3.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

.scanning-lens-element {
    position: absolute !important;
    width: 90px;
    height: 90px;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.18) 0%, transparent 75%);
    border: 2px solid var(--accent-cyan) !important;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.45), inset 0 0 15px rgba(0, 242, 254, 0.3);
    z-index: 5 !important;
    pointer-events: none;
    top: 20px;
    left: -120px; 
    opacity: 0;
}

.animate-now .scanning-lens-element {
    animation: smoothLensGlide 3.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

/* ==========================================================================
   ULTRA-SMOOTH ANIMATION MATRICES (SCALED FOR TIGHTER BOUNDS)
   ========================================================================== */
@keyframes smoothLensGlide {
    0% {
        left: -120px;
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    /* Adjusted centering loop offsets to fit your tighter box width limits */
    40%, 65% {
        left: 100px;
        opacity: 1;
        transform: scale(1.05);
    }
    88%, 100% {
        left: 420px;
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes smoothLensZoom {
    0%, 35% {
        transform: scale(1);
        color: #ffffff;
    }
    40%, 65% {
        transform: scale(1.1); /* Comfortable micro zoom asset scale */
        color: var(--accent-cyan);
        text-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
    }
    72%, 100% {
        transform: scale(1);
        color: #ffffff;
        text-shadow: none;
    }
}

/* Mobile Responsive Matrix Core Safety Fallback Grid Layers */
@media (max-width: 768px) {
    .contact-info-panel { align-items: center !important; text-align: center !important; }
    .contact-info-panel h2 { font-size: 1.8rem !important; }
    .scanning-lens-element { display: none !important; } 
    .animate-now .comms-digits { animation: none !important; }
}
/* Glassmorphic Banner Container */
.banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  border-radius: 16px;
  
  /* Glassmorphism effects */
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1100px;
  margin: 40px auto;
}

/* Text Content Styling */
.banner-content h2 {
  color: #ffffff;
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.banner-content p {
  color: #e0e0e0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

/* Animated Call-to-Action Button */
.cta-button {
  background-color: #e22b8b;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(226, 43, 139, 0.7);
}

/* Pulse and Glow Animation on Hover */
.cta-button:hover {
  background-color: #ff3c9e;
  transform: translateY(-2px);
  box-shadow: 0 0 15px 5px rgba(226, 43, 139, 0.4);
}

/* Click feedback effect */
.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 0 5px 2px rgba(226, 43, 139, 0.4);
}
/* PREMIUM GLASS MAP CONSOLE COMPONENT STYLING */
.location-map-block {
    width: 100%;
    display: flex;
}

.map-inner-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    gap: 1rem;
}

.map-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.map-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Standard map iframe layout frame tracking */
.map-inner-card iframe {
    width: 100%;
    flex: 1;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    filter: invert(90%) hue-rotate(180deg) grayscale(10%) contrast(110%); /* High-end dark theme overlay tracking for raw map elements */
}

/* Mobile Responsive Matrix Safety Alignment Layer */
@media (max-width: 968px) {
    .split-layout-wrapper {
        grid-template-columns: 1fr !important; /* Collapses columns into single column stack */
        gap: 2rem !important;
    }
    .grid-container.small-blocks-mode {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    }
}

#techwe-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #0b1220, #05070d);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

.loader-center {
    text-align: center;
    font-family: system-ui, sans-serif;
    color: #d7e3ff;
}

/* 🌟 Logo animation */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.loader-logo {
    width: 170px; /* ⬅️ bigger logo */
    height: auto;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(125, 211, 252, 0.45));
}

/* 🔵 Loading bar */
.loader-bar {
    width: 180px;
    height: 3px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.loader-bar::before {
    content: "";
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    animation: loadingSlide 1.2s infinite;
}

/* ✨ Text */
.loader-text {
    margin-top: 18px;
    font-size: 14px;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.05);
    }
}

@keyframes loadingSlide {
    0% {
        left: -50%;
    }
    100% {
        left: 120%;
    }
}
/* ==========================================================================
   UNIFIED CLOUD COMPARTMENT WORKSPACE - TOTAL OVERRIDE FIX
   ========================================================================== */

/* 1. Overrides every card background definition simultaneously in Light Mode */
[data-theme="light"] .compartment-card,
[data-theme="light"] .card-1,
[data-theme="light"] .card-2,
[data-theme="light"] .card-3,
[data-theme="light"] .card-4,
[data-theme="light"] .card-5 {
    background-color: #ffffff !important;
    background-image: none !important; /* Disables all underlying dark gradients instantly */
    border: 1px solid rgba(0, 140, 255, 0.08) !important; /* Soft blue micro-border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
}

/* 2. Unique soft color hints bleeding from the TOP of each specific card */
[data-theme="light"] .card-1 { background-image: linear-gradient(180deg, rgba(12, 16, 32, 0.05) 0%, #ffffff 40%) !important; }
[data-theme="light"] .card-2 { background-image: linear-gradient(180deg, rgba(176, 158, 255, 0.18) 0%, #ffffff 45%) !important; }
[data-theme="light"] .card-3 { background-image: linear-gradient(180deg, rgba(5, 20, 26, 0.06) 0%, #ffffff 40%) !important; }
[data-theme="light"] .card-4 { background-image: linear-gradient(180deg, rgba(209, 203, 212, 0.25) 0%, #ffffff 45%) !important; }
[data-theme="light"] .card-5 { background-image: linear-gradient(180deg, rgba(0, 140, 255, 0.06) 0%, #ffffff 40%) !important; }

/* 3. Overwrites dark inner masking panels so text layout content reads flawlessly */
[data-theme="light"] .card-inner-overlay,
[data-theme="light"] .compartment-card [class*="overlay"] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.95) 85%) !important;
    display: block !important;
}

/* 4. Forces deep charcoal-black header visibility globally across all boxes */
[data-theme="light"] .compartment-card h3,
[data-theme="light"] .card-1 h3,
[data-theme="light"] .card-2 h3,
[data-theme="light"] .card-3 h3,
[data-theme="light"] .card-4 h3,
[data-theme="light"] .card-5 h3 {
    color: #111827 !important;
}

/* 5. Forces readable slate body copy formatting across all card varieties */
[data-theme="light"] .compartment-card p,
[data-theme="light"] .card-1 p,
[data-theme="light"] .card-2 p,
[data-theme="light"] .card-3 p,
[data-theme="light"] .card-4 p,
[data-theme="light"] .card-5 p {
    color: #4b5563 !important;
}

/* 6. Clean up structural borders on hover and active expanded layouts */
[data-theme="light"] .compartment-card:hover {
    box-shadow: 0 25px 50px rgba(0, 140, 255, 0.08) !important;
}
[data-theme="light"] .card-1:hover { border-color: rgba(12, 16, 32, 0.3) !important; }
[data-theme="light"] .card-2:hover { border-color: rgba(176, 158, 255, 0.6) !important; }
[data-theme="light"] .card-3:hover { border-color: rgba(5, 20, 26, 0.3) !important; }
[data-theme="light"] .card-4:hover { border-color: rgba(209, 203, 212, 0.7) !important; }
[data-theme="light"] .card-5:hover { border-color: rgba(0, 140, 255, 0.4) !important; }

[data-theme="light"] .compartment-card.is-expanded-state {
    background-color: #ffffff !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06) !important;
}
/* ==========================================================================
   UNCOOKED MATRIX GRID - ACCURATE LIGHT MODE CARDS OVERRIDE
   ========================================================================== */

/* 1. Changes the section wrapper canvas background to white */
[data-theme="light"] .matrix-features-wrapper,
[data-theme="light"] #matrixSection,
[data-theme="light"] .upper-hero-compartment {
    background-color: #f9fafb !important;
    background: #f9fafb !important;
}

/* 2. Forces every grid compartment box on this page to go white */
[data-theme="light"] .matrix-box,
[data-theme="light"] div[class*="matrix-box"] {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

/* 3. Smooth background swap when hovering over the boxes */
[data-theme="light"] .matrix-box:hover {
    background: #f8fafc !important;
    box-shadow: 0 20px 40px rgba(0, 140, 255, 0.06) !important;
    border-color: rgba(0, 140, 255, 0.2) !important;
}

/* 4. Flips all the headers (h4) inside the matrix grid cards to black */
[data-theme="light"] .matrix-box h4 {
    color: #111827 !important;
}

/* 5. Inverts the description paragraphs text into clear readable gray */
[data-theme="light"] .box-desc,
[data-theme="light"] .matrix-box p {
    color: #4b5563 !important;
}

/* 6. Fixes card numbers position context opacity layers */
[data-theme="light"] .box-number {
    color: rgba(0, 0, 0, 0.15) !important;
}

/* 7. Keeps active full-screen expanded accordion cards clean white */
[data-theme="light"] .matrix-box.is-maximized {
    background: #ffffff !important;
    border-color: rgba(0, 140, 255, 0.3) !important;
}

[data-theme="light"] .expanded-details h5 {
    color: #111827 !important;
}

[data-theme="light"] .tech-points-list li {
    color: #374151 !important;
}
/* ==========================================================================
   ISOLATED COST CALCULATOR - PREMIUM LIGHT THEME OVERRIDES
   ========================================================================== */

/* 1. Turns the entire pricing calculator section wrapper white */
[data-theme="light"] .techwe-isolated-calc-block,
[data-theme="light"] div[class*="calc-block"],
[data-theme="light"] section[class*="calc"] {
    background-color: #f9fafb !important;
    background: #f9fafb !important;
}

/* 2. Inverts the primary calculator heading elements into solid black */
[data-theme="light"] .calc-header-box-container h2,
[data-theme="light"] .calculator-form-panel h4,
[data-theme="light"] .calc-header-box-container h3,
[data-theme="light"] h2[class*="calc"] {
    color: #111827 !important;
}

/* 3. Inverts description subtitles into legible dark grey */
[data-theme="light"] .calc-header-box-container p,
[data-theme="light"] .calculator-form-panel > p,
[data-theme="light"] p[class*="calc"] {
    color: #4b5563 !important;
}

/* 4. Turns the main left configuration panels white */
[data-theme="light"] .calc-left-inputs-column-pane,
[data-theme="light"] div[class*="inputs-column"] {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

/* 5. Turns every individual option card inside the computing plan grid white */
[data-theme="light"] .compute-plan-grid > div,
[data-theme="light"] div[class*="plan-card"],
[data-theme="light"] .compute-plan-grid button,
[data-theme="light"] div[class*="compute-plan"] > div {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Fixes plan text details inside the unselected pricing cards */
[data-theme="light"] .compute-plan-grid div,
[data-theme="light"] .compute-plan-grid p,
[data-theme="light"] .compute-plan-grid span {
    color: #374151 !important;
}

/* 6. Keeps the selected active plan cards distinct with your signature blue highlight */
[data-theme="light"] .compute-plan-grid .active,
[data-theme="light"] .compute-plan-grid [class*="selected"] {
    border-color: #00f2fe !important;
    background: rgba(0, 242, 254, 0.03) !important;
}

/* 7. Turns the right-hand Estimation Receipt Summary container white */
[data-theme="light"] .calc-right-receipt-summary-pane,
[data-theme="light"] div[class*="receipt-summary"] {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

/* Fixes the text visibility inside the estimation receipt summary card */
[data-theme="light"] .calc-right-receipt-summary-pane div,
[data-theme="light"] .calc-right-receipt-summary-pane h3,
[data-theme="light"] .calc-right-receipt-summary-pane p,
[data-theme="light"] .calc-right-receipt-summary-pane span,
[data-theme="light"] [class*="receipt-summary"] * {
    color: #111827 !important;
}

/* 8. Fixes unselected multi-step navigation step timeline nodes text */
[data-theme="light"] .nav-step-item {
    color: rgba(0, 0, 0, 0.35) !important;
}
[data-theme="light"] .step-circle-icon {
    border-color: rgba(0, 0, 0, 0.15) !important;
}

/* Keeps the currently active navigation timeline step bright cyan */
[data-theme="light"] .nav-step-item.active,
[data-theme="light"] .nav-step-item.active .step-circle-icon {
    color: #008cff !important;
    border-color: #008cff !important;
}
/* ==========================================================================
   PRICING CALCULATOR CRITICAL CONTRAST & POSITIONING REPAIRS
   ========================================================================== */

/* 1. Force absolute high-contrast borders and charcoal colors on all plan card elements */
[data-theme="light"] .compute-plan-grid > div,
[data-theme="light"] div[class*="card"],
[data-theme="light"] div[class*="plan"] {
    background-color: #ffffff !important;
    border: 1px solid #d1d5db !important; /* Sharp, visible light gray border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

/* 2. Force all labels, specifications, and pricing metrics to true dark black/charcoal */
[data-theme="light"] .compute-plan-grid h3,
[data-theme="light"] .compute-plan-grid h4,
[data-theme="light"] .compute-plan-grid p,
[data-theme="light"] .compute-plan-grid div,
[data-theme="light"] .compute-plan-grid span {
    color: #111827 !important; /* Crisp, readable charcoal black text */
    font-weight: 600 !important;
}

/* 3. Keep the active/selected operating system or compute cards easily identifiable */
[data-theme="light"] .compute-plan-grid .active,
[data-theme="light"] .compute-plan-grid [class*="selected"] {
    border: 2px solid #1a73e8 !important; /* Bold Google Blue active outline */
    background-color: rgba(26, 115, 232, 0.04) !important;
}

/* 4. RECEIPT CLIPPING FIX: Push the sticky boundary down past your fixed header */
[data-theme="light"] .calc-right-receipt-summary-pane,
[data-theme="light"] div[class*="receipt-summary"] {
    position: sticky !important;
    top: 140px !important; /* Increased from 100px to fully clear your fixed capsule navbar */
    margin-top: 0 !important;
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    z-index: 100 !important;
}

/* 5. Ensure internal receipt breakdown text renders sharply */
[data-theme="light"] .calc-right-receipt-summary-pane *,
[data-theme="light"] [class*="receipt-summary"] * {
    color: #111827 !important;
}
/* ==========================================================================
   ALL-PANELS (COMPUTE, STORAGE, NETWORK, REVIEW) CONTRAST OVERRIDES
   ========================================================================== */

/* 1. Force ALL text elements inside the compute plan grid to be dark charcoal */
[data-theme="light"] .compute-plan-grid *,
[data-theme="light"] div[class*="plan"] *,
[data-theme="light"] div[class*="compute-plan"] * {
    color: #111827 !important; /* Forces invisible white text to become charcoal black */
}

/* 2. Keep pricing currency text vibrant blue so it stays attractive */
[data-theme="light"] .compute-plan-grid [class*="price"],
[data-theme="light"] .compute-plan-grid span[id*="price"],
[data-theme="light"] .compute-plan-grid div:has(> span) {
    color: #1a73e8 !important; 
}

/* 3. STORAGE & NETWORK PANELS: Fix input boxes, text fields, and select dropdowns blending in */
[data-theme="light"] .calculator-form-panel input,
[data-theme="light"] .calculator-form-panel select,
[data-theme="light"] .calculator-form-panel textarea,
[data-theme="light"] .techwe-isolated-calc-block input,
[data-theme="light"] .techwe-isolated-calc-block select {
    background-color: #f3f4f6 !important; /* Soft gray background so it doesn't blend into white cards */
    color: #111827 !important; /* Crisp true black input typing text */
    border: 1px solid #d1d5db !important; /* Visible boundary line */
    border-radius: 8px !important;
    padding: 10px 14px !important;
}

/* 4. Fix ALL field labels, paragraph instructions, and titles inside all step panels */
[data-theme="light"] .calculator-form-panel *,
[data-theme="light"] .techwe-isolated-calc-block label,
[data-theme="light"] .techwe-isolated-calc-block p,
[data-theme="light"] .techwe-isolated-calc-block span {
    color: #111827 !important; /* Ensures labels and descriptions on all tabs turn dark */
}

/* 5. REVIEW PANEL: Fix final summary tables or itemized review lists */
[data-theme="light"] div[class*="review"] *,
[data-theme="light"] .calculator-form-panel ul li,
[data-theme="light"] .calculator-form-panel table * {
    color: #111827 !important;
}
/* ==========================================================================
   CYBER CONSTELLATION BASE SECTION
   ========================================================================== */
/* ==========================================================================
   EDGE-TO-EDGE CYBER CONSTELLATION BASE SECTION (FIXED HEIGHT)
   ========================================================================== */
.cyber-network-constellation-section {
    position: relative !important;
    width: 100vw !important; /* Dynamically matches the absolute width of the monitor screen */
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    height: 650px !important; /* Fixed spatial viewport track height */
    overflow: hidden !important;
    
    background:
        radial-gradient(circle at 20% 20%, rgba(0,242,254,.08), transparent 30%),
        radial-gradient(circle at 80% 40%, rgba(168,85,247,.08), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(59,130,246,.06), transparent 40%),
        linear-gradient(
            180deg,
            #020617 0%,
            #050b18 50%,
            #020617 100%
        );

    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: block !important;
    clear: both !important;
}
.cyber-network-constellation-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -150px;
    top: -200px;

    background: radial-gradient(
        circle,
        rgba(0,242,254,.12),
        transparent 70%
    );

    filter: blur(90px);
    pointer-events: none;
}

.cyber-network-constellation-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;

    right: -150px;
    bottom: -150px;

    background: radial-gradient(
        circle,
        rgba(168,85,247,.12),
        transparent 70%
    );

    filter: blur(90px);
    pointer-events: none;
}
/* VIEWPORT CONTAINER FIX: Forces layout box model height calculation past 0px */
.canvas-constellation-fullwidth-viewport {
    width: 100% !important;
    height: 650px !important; /* Matches parent section tracking height exactly */
    position: absolute !important;
    top: 0 !important; 
    left: 0 !important;
    z-index: 1 !important;
    display: block !important;
}

#techweNetworkCanvas {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    background: transparent !important;
}

/* Frosted Glass Header Overlay Card */
.network-section-glass-overlay{

    position:absolute;
    top:40px;
    left:40px;

    z-index:20;

    width:500px;

    padding:36px;

    border-radius:32px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );

    backdrop-filter:blur(50px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        0 0 0 1px rgba(255,255,255,.04),
        0 30px 80px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.15);

    overflow:hidden;
}

.network-section-glass-overlay::before{
    content:"";

    position:absolute;
    inset:-100px;

    background:
    radial-gradient(
        circle,
        rgba(0,242,254,.18),
        transparent 60%
    );

    filter:blur(80px);

    pointer-events:none;
}
.network-section-header h3{
    font-size:2.2rem;
    font-weight:800;

    background:
    linear-gradient(
        90deg,
        #ffffff,
        #00f2fe
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.network-section-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}


#techweNetworkCanvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    cursor: grab;
}

#techweNetworkCanvas:active { 
    cursor: grabbing; 
}
/* ==========================================================================
   GLASSMORPHISM LIGHT THEME SWITCH ADAPTATIONS
   ========================================================================== */
[data-theme="light"] .cyber-network-constellation-section {
    background: radial-gradient(circle at 50% 50%, #f3f4f6 0%, #eaeded 100%) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .network-section-glass-overlay {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .network-section-header h3 {
    background: linear-gradient(135deg, #111827 40%, #008cff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

[data-theme="light"] .network-section-header p {
    color: #4b5563 !important;
}

.canvas-constellation-fullwidth-viewport::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    pointer-events: none;
}
.cta-button {
  background-color: #e22b8b;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(226, 43, 139, 0.7);
  margin-top: 100px;
}

/* Pulse and Glow Animation on Hover */
.cta-button:hover {
  background-color: #ff3c9e;
  transform: translateY(-2px);
  box-shadow: 0 0 15px 5px rgba(226, 43, 139, 0.4);
}

/* Click feedback effect */
.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 0 5px 2px rgba(226, 43, 139, 0.4);
}
.headline-top{

    position:absolute;

    top:28px;

    left:50%;

    transform:
    translateX(-50%)
    translateY(-60px);

    opacity:0;

    z-index:50;

    white-space:nowrap;

    pointer-events:none;

    font-size:
    clamp(1.4rem,2vw,2.2rem);

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    background:
    linear-gradient(
        90deg,
        #ffffff 0%,
        #8dfcff 30%,
        #00f2fe 60%,
        #ffffff 100%
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
        0 0 20px rgba(0,242,254,.25),
        0 0 50px rgba(0,242,254,.15);

    animation:
        headlineGlow 4s linear infinite;
}
.headline-bottom{

    position:absolute;

    bottom:50px;

    left:50%;

    transform:
    translateX(-50%)
    translateY(120px);

    opacity:0;

    z-index:30;

    color:white;

    font-size:
    clamp(2rem,4vw,4rem);

    font-weight:800;

    text-align:center;

    pointer-events:none;
}
html[data-theme="light"] .calc-header-box-container h2{
    color:#111 !important;
}

html[data-theme="light"] .calc-header-box-container p{
    color:#666 !important;
}
html[data-theme="light"] .calc-left-inputs-column-pane{
    background:#ffffff !important;
    border:1px solid #e5e7eb !important;
}
html[data-theme="light"] .calculator-form-panel h4{
    color:#111 !important;
}

html[data-theme="light"] .calculator-form-panel > p{
    color:#666 !important;
}
html[data-theme="light"] .compute-card-select strong{
    color:#111 !important;
}

html[data-theme="light"] .compute-card-select p{
    color:#666 !important;
}
html[data-theme="light"] .counter-control-row{
    background:#f8fafc !important;
    border:1px solid #d1d5db !important;
}

html[data-theme="light"] .counter-control-row button{
    color:#111 !important;
    font-size:22px !important;
    font-weight:700 !important;
}

html[data-theme="light"] .counter-control-row input{
    color:#111 !important;
}
html[data-theme="light"] .net-type-card{
    background:#ffffff !important;
    border:1px solid #e5e7eb !important;
}

html[data-theme="light"] .net-card-head{
    color:#111 !important;
}

html[data-theme="light"] .net-type-card p{
    color:#666 !important;
}
html[data-theme="light"] .matrix-cell{
    color:#444 !important;
}

html[data-theme="light"] .cell-label{
    color:#111 !important;
}
[data-theme="light"] .canvas-constellation-fullwidth-viewport::before {
    background:
        linear-gradient(
            rgba(0,140,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,140,255,.08) 1px,
            transparent 1px
        );

    background-size: 80px 80px;
}
[data-theme="light"] .headline-bottom {
    color: #111827 !important;
}
/* LIGHT MODE CONTACT SECTION */

[data-theme="light"] .contact-info-panel h2 {
    color: #111827 !important;
}

[data-theme="light"] .contact-subtitle {
    color: #374151 !important;
}

[data-theme="light"] .lens-comms-box {
    background: rgba(255,255,255,0.92) !important;

    border: 1px solid rgba(0,0,0,0.08) !important;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.12) !important;
}

[data-theme="light"] .comms-label {
    color: #6b7280 !important;
}

[data-theme="light"] .comms-digits {
    color: #111827 !important;
}
[data-theme="light"] .badge-tag {
    background: rgba(225,0,255,0.08) !important;
    border: 1px solid rgba(225,0,255,0.18) !important;
}
/* =========================
   CONTACT MOBILE FIX
   ========================= */
@media (max-width:768px){

    .contact-section{
        display:flex !important;
        flex-direction:column !important;

        padding:40px 20px !important;
        gap:25px !important;

        min-height:auto !important;
    }

    .contact-center-container{
        width:100% !important;
        max-width:100% !important;

        align-items:center !important;
        text-align:center !important;
    }

    .contact-info-panel{
        width:100% !important;
        align-items:center !important;
        text-align:center !important;
    }

    .contact-info-panel h2{
        font-size:2rem !important;
        line-height:1.2 !important;
        max-width:100% !important;
    }

    .contact-subtitle{
        max-width:100% !important;
        font-size:1rem !important;
        padding:0 10px !important;
    }

    .lens-comms-box{
        width:100% !important;
        max-width:100% !important;

        padding:20px !important;
        margin-top:15px !important;
    }

    .comms-row{
        align-items:flex-start !important;
        text-align:left !important;
    }

    .comms-digits{
        font-size:1rem !important;
        word-break:break-word !important;
    }

    /* MAP FIX */
    .location-map-block{
        width:100% !important;
        max-width:100% !important;

        position:relative !important;
        right:auto !important;
        left:auto !important;
        top:auto !important;

        margin-top:25px !important;
    }

    .map-inner-card{
        width:100% !important;
        max-width:100% !important;
    }

    .map-header h3{
        font-size:1.6rem !important;
    }

    .map-inner-card iframe{
        width:100% !important;
        height:300px !important;
        border-radius:16px !important;
    }

}