/* =========================================
   1. BASE STYLES & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 80px; /* Account for fixed header */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. HEADER (Glassmorphism)
   ========================================= */
.main-glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.main-glass-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; 
    padding: 0 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    height: 45px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: #06467F;
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.logo p {
    color: #7f8c8d;
    font-size: 0.75rem;
    margin: 2px 0 0 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.main-glass-header .nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-glass-header .nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.main-glass-header .nav-menu a:not(.cta-button):hover {
    color: #1976D2;
}

.main-glass-header .nav-menu a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #1976D2;
    transition: width 0.3s ease;
}

.main-glass-header .nav-menu a:not(.cta-button):hover::after,
.main-glass-header .nav-menu a.active::after {
    width: 100%;
}

/* CTA Button */
.main-glass-header .nav-menu .cta-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.main-glass-header .nav-menu .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    background-color: #c0392b !important;
}

/* Mobile Toggle */
.main-glass-header .nav-toggle {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.main-glass-header .nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #06467F;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-glass-header .nav-toggle { display: flex; }

    .main-glass-header .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        opacity: 0;
        display: block; 
    }

    .main-glass-header .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .main-glass-header .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .main-glass-header .nav-menu ul li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .main-glass-header .nav-menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-glass-header .nav-menu a::after { display: none; }

    .main-glass-header .nav-menu .cta-button {
        display: inline-block;
        margin: 15px auto;
        width: 80%;
    }

    .main-glass-header .nav-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .main-glass-header .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .main-glass-header .nav-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    padding: 100px 0 100px;
    background: linear-gradient(135deg, #06467F 0%, #1976D2 50%, #06467F 100%);
    color: white;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content { flex: 1; padding-right: 50px; }

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons { display: flex; gap: 20px; }

.primary-button {
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.primary-button:hover { 
    background-color: #c0392b; 
    color: white; 
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.secondary-button {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-button:hover { 
    background-color: rgba(255,255,255,0.1); 
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Hero Visualization (Optimized) --- */
.hero .security-visualization {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .orbit-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Rings (Traced/Dotted Look) */
.hero .orbit {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(25, 118, 210, 0.1);
    animation-duration: 25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.hero .orbit-1 { 
    width: 160px; height: 160px; border-style: dashed;
    animation-name: rotate; 
}

.hero .orbit-2 { 
    width: 230px; height: 230px; 
    border-style: dotted; border-width: 2px; opacity: 0.6;
    animation-name: rotate-reverse; animation-duration: 35s;
}

.hero .orbit-3 { 
    width: 300px; height: 300px; border-style: dashed;
    animation-name: rotate; animation-duration: 45s;
}

/* Center Icon */
.hero .center-icon {
    position: relative;
    z-index: 3;
    background: #1976D2;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.5);
    animation: hero-pulse 2s ease-in-out infinite alternate;
}

/* Orbiting Icons (Fixed Roundness) */
.hero .orbiting-icon {
    position: absolute;
    z-index: 2;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: hero-float 4s ease-in-out infinite;
}

.hero .orbiting-icon svg { width: 32px; height: 32px; }

.hero .endpoint { top: 15%; left: 50%; background: #4CAF50; animation-delay: 0s; }
.hero .data { top: 55%; right: 12%; background: #FFC107; animation-delay: 1.5s; }
.hero .email { bottom: 12%; left: 45%; background: #2196F3; animation-delay: 2.5s; }

.hero .pulse {
    position: absolute; width: 100px; height: 100px;
    border-radius: 50%; background: rgba(33, 150, 243, 0.3);
    z-index: 1; animation: pulse-ring 2s ease-out infinite;
}

/* Hero Keyframes */
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotate-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes hero-float { 
    0%, 100% { transform: translate(-50%, -50%) translateY(0); } 
    50% { transform: translate(-50%, -50%) translateY(-12px); } 
}
@keyframes hero-pulse { 
    0% { transform: scale(1); box-shadow: 0 0 30px rgba(33, 150, 243, 0.5); }
    100% { transform: scale(1.05); box-shadow: 0 0 40px rgba(33, 150, 243, 0.8); }
}
@keyframes pulse-ring { 
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Add subtle entrance animations to hero content */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add entrance animation to hero visualization */
.hero-image {
    animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =========================================
   4. SOLUTIONS SECTION (Framework & Grid)
   ========================================= */
.framework {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.solutions-header { margin-bottom: 80px; }

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1976D2, #0D47A1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #06467F;
    line-height: 1.1;
    font-weight: 700;
}

.header-text .section-description {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.solution-stats { display: flex; gap: 40px; margin-top: 40px; }

.stat { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: #1976D2; line-height: 1; margin-bottom: 8px; position: relative; }
.stat-number::after { content: ""; position: absolute; bottom: -5px; left: 0; width: 30px; height: 3px; background: linear-gradient(90deg, #1976D2, transparent); border-radius: 2px; }
.stat-label { font-size: 0.9rem; color: #7f8c8d; font-weight: 500; text-transform: uppercase; }



/* --- Interactive Holographic Carousel --- */

.holo-container {
    position: relative;
    width: 100%;
    max-width: 450px; /* Constrain width */
    height: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

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

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #1976D2;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: #1976D2;
    opacity: 0.8;
}

.holo-group {
    position: relative;
    width: 100%;
    height: 220px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base Card Style */
.holo-card {
    position: absolute;
    width: 150px;
    height: 200px;
    /* Improved transition: Snappy start, soft landing */
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1); 
    cursor: pointer;
    /* Start visible */
    opacity: 1;
}

.card-glass {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* Prevent text selection while clicking */
    user-select: none; 
}

/* Prevent text selection during rapid clicking */
.holo-card * {
    user-select: none;
    pointer-events: none; /* Ensures click hits the card div, not the text */
}

/* Content Styling */
.holo-icon-box {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

.holo-title {
    font-weight: 800;
    color: #06467F;
    font-size: 1rem;
}

.holo-desc {
    font-size: 0.8rem;
    color: #666;
    opacity: 0; /* Hidden on side cards */
    transition: opacity 0.3s;
    transform: translateY(10px); /* Slide up effect */
}

.holo-status {
    font-size: 0.7rem;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- STATE CLASSES (Controlled by JS) --- */

/* 1. Left State */
.state-left {
    transform: translateX(-130px) translateZ(-60px) rotateY(25deg) scale(0.9);
    z-index: 1; /* Back */
    filter: brightness(0.8) grayscale(0.3); /* Dimmer */
}
.state-left:hover {
    filter: brightness(1) grayscale(0);
    transform: translateX(-130px) translateZ(-50px) rotateY(25deg) scale(0.95);
}

/* 2. Center State (Active) */
.state-center {
    transform: translateX(0) translateZ(60px) rotateY(0deg) scale(1.15);
    z-index: 100; /* Front */
    filter: brightness(1);
    box-shadow: 0 20px 60px rgba(25, 118, 210, 0.25); /* Stronger glow */
}

/* Center card shows extra details */
.state-center .holo-desc {
    opacity: 1;
    transform: translateY(0);
}

/* The Beam (Only appears under center card) */
.state-center::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    width: 4px;
    height: 80px;
    background: linear-gradient(to top, transparent, #1976D2);
    transform: translateX(-50%);
    opacity: 0.7;
    animation: beam-grow 0.6s ease-out forwards;
    z-index: -1;
}

/* 3. Right State */
.state-right {
    transform: translateX(130px) translateZ(-60px) rotateY(-25deg) scale(0.9);
    z-index: 1; /* Back */
    filter: brightness(0.8) grayscale(0.3); /* Dimmer */
}
.state-right:hover {
    filter: brightness(1) grayscale(0);
    transform: translateX(130px) translateZ(-50px) rotateY(-25deg) scale(0.95);
}

@keyframes beam-grow {
    from { height: 0; opacity: 0; }
    to { height: 80px; opacity: 0.7; }
}

/* Responsive */
@media (max-width: 768px) {
    .holo-container { transform: scale(0.85); }
    .state-left { transform: translateX(-90px) translateZ(-50px) rotateY(15deg) scale(0.9); }
    .state-right { transform: translateX(90px) translateZ(-50px) rotateY(-15deg) scale(0.9); }
}

/* Modern Solutions Grid */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 0 60px;
}

.modern-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(6, 70, 127, 0.15);
    border-color: rgba(25, 118, 210, 0.2);
}

.modern-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: #e0e0e0; transition: all 0.3s ease;
}
.modern-card[data-theme="blue"]::before { background: linear-gradient(90deg, #1976D2, #64b5f6); }
.modern-card[data-theme="green"]::before { background: linear-gradient(90deg, #4CAF50, #81c784); }
.modern-card[data-theme="orange"]::before { background: linear-gradient(90deg, #FF9800, #ffb74d); }

.modern-card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }

.icon-box {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.3s ease;
}
.modern-card:hover .icon-box { transform: rotate(10deg) scale(1.1); }
.blue-icon { background: rgba(25, 118, 210, 0.1); color: #1976D2; }
.green-icon { background: rgba(76, 175, 80, 0.1); color: #4CAF50; }
.orange-icon { background: rgba(255, 152, 0, 0.1); color: #FF9800; }

.modern-card-header h3 { font-size: 1.4rem; color: #06467F; line-height: 1.2; font-weight: 700; }
.card-desc { color: #7f8c8d; font-size: 1.05rem; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.modern-divider { height: 1px; background: #f0f0f0; margin-bottom: 25px; width: 100%; }

.modern-features { list-style: none; margin-bottom: 30px; }
.modern-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #555; font-size: 0.95rem; font-weight: 500; }

.check-icon { font-weight: 900; font-size: 0.9rem; }
.modern-card[data-theme="blue"] .check-icon { color: #1976D2; }
.modern-card[data-theme="green"] .check-icon { color: #4CAF50; }
.modern-card[data-theme="orange"] .check-icon { color: #FF9800; }

.modern-card-btn {
    text-decoration: none; font-weight: 700; display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px; border-radius: 10px; transition: all 0.3s ease; background: #f8f9fa; color: #06467F;
}
.modern-card:hover .modern-card-btn { background: #06467F; color: white; }
.modern-card-btn svg { transition: transform 0.3s ease; }
.modern-card:hover .modern-card-btn svg { transform: translateX(5px); }

/* Solutions CTA */
.solutions-cta {
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
    border-radius: 20px; padding: 60px 40px; color: white; text-align: center;
    position: relative; overflow: hidden;
}
.solutions-cta::before {
    content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite; z-index: 0;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h3 { font-size: 2.2rem; margin-bottom: 15px; font-weight: 700; }
.cta-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; opacity: 0.9; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   5. SMALL BUSINESS SECTION (Dark Mode)
   ========================================= */
.small-business-section.dark-mode {
    background: linear-gradient(135deg, #06467F 0%, #0D47A1 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.small-business-section.dark-mode::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.5; pointer-events: none;
}

.sb-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }

.sb-badge {
    background: rgba(255, 255, 255, 0.1); color: #64b5f6; padding: 8px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    display: inline-block; margin-bottom: 25px; border: 1px solid rgba(100, 181, 246, 0.3);
}

.sb-title { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.sb-description { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; line-height: 1.6; max-width: 500px; }

.sb-feature-list { display: flex; flex-direction: column; gap: 30px; }
.sb-feature-item { display: flex; gap: 20px; align-items: flex-start; }
.sb-icon-box {
    background: rgba(255, 255, 255, 0.1); width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #64b5f6;
}
.sb-text h3 { font-size: 1.2rem; margin-bottom: 8px; color: white; }
.sb-text p { color: rgba(255, 255, 255, 0.6); font-size: 1rem; margin: 0; }

/* Dashboard Visual */
.sb-visual { perspective: 1000px; }
.glass-dashboard-container {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease; position: relative;
}
.glass-dashboard-container:hover { transform: rotateY(0deg) rotateX(0deg); }

.glass-header { padding: 15px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.header-title { margin-left: 10px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }

.glass-body { padding: 25px; }
.live-stat-row { display: flex; justify-content: space-between; margin-bottom: 25px; }
.stat-group { display: flex; flex-direction: column; }
.stat-group .label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; }
.stat-group .value { font-size: 1.4rem; font-weight: 700; }
.stat-group .value.safe { color: #4CAF50; text-shadow: 0 0 10px rgba(76, 175, 80, 0.5); }

/* Radar */
.radar-container {
    width: 100%; height: 180px; border-radius: 10px; background: rgba(0, 0, 0, 0.2);
    position: relative; overflow: hidden; margin-bottom: 20px; border: 1px solid rgba(255, 255, 255, 0.1);
}
.radar-grid {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 140px; height: 140px; border: 1px dashed rgba(255, 255, 255, 0.2); border-radius: 50%;
}
.radar-grid::after {
    content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80px; height: 80px; border: 1px dashed rgba(255, 255, 255, 0.2); border-radius: 50%;
}
.radar-scan {
    position: absolute; top: 50%; left: 50%; width: 50%; height: 2px;
    background: linear-gradient(90deg, transparent, #4CAF50); transform-origin: left center;
    animation: radarSpin 3s linear infinite;
}
@keyframes radarSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Threat Blips (Red Dots) */
.radar-container .blip {
    position: absolute; width: 10px; height: 10px; background: #ff5f56;
    border-radius: 50%; box-shadow: 0 0 10px #ff5f56; z-index: 5; opacity: 0;
    transform: translate(-50%, -50%); transform-origin: center;
    animation: blipPulse 3s infinite linear;
}
.radar-container .blip:nth-of-type(1) { animation-delay: 0.7s; }
.radar-container .blip:nth-of-type(2) { animation-delay: 1.8s; }

@keyframes blipPulse {
    0% { opacity: 0; transform: scale(0.5) translate(-50%, -50%); }
    20% { opacity: 1; transform: scale(1.5) translate(-50%, -50%); }
    40% { opacity: 0.5; transform: scale(1) translate(-50%, -50%); }
    100% { opacity: 0; transform: scale(1) translate(-50%, -50%); }
}

.threat-log { font-family: monospace; font-size: 0.85rem; }
.log-item { background: rgba(0, 0, 0, 0.2); padding: 8px 12px; border-radius: 6px; margin-bottom: 8px; display: flex; gap: 10px; }
.log-time { color: rgba(255, 255, 255, 0.4); }
.log-msg { color: #fbc02d; }

.floating-shield {
    position: absolute; top: -20px; right: -20px; background: #4CAF50; padding: 15px;
    border-radius: 15px; box-shadow: 0 10px 20px rgba(76, 175, 80, 0.4); display: flex;
    flex-direction: column; align-items: center; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========================================
   6. WHY US SECTION (Bento Grid)
   ========================================= */
.why-us-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.why-us-section .why-us-intro { text-align: center; max-width: 700px; margin: 0 auto 60px; }

.why-us-section .why-us-badge {
    background: #e3f2fd; color: #1976D2; padding: 6px 16px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 20px;
}

.why-us-section .why-us-title { font-size: 2.5rem; color: #06467F; margin-bottom: 15px; font-weight: 800; }
.why-us-section .why-us-subtitle { font-size: 1.1rem; color: #7f8c8d; line-height: 1.6; }

.why-us-section .why-us-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px; gap: 30px;
}

.why-us-section .why-us-box {
    background: #f8f9fa; border-radius: 24px; padding: 35px; position: relative;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; justify-content: space-between;
}
.why-us-section .why-us-box:hover {
    background: #ffffff; transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 70, 127, 0.12); border-color: rgba(25, 118, 210, 0.1);
}

.why-us-section .box-large {
    grid-column: span 2; background: linear-gradient(135deg, #06467F, #0D47A1); color: white;
}
.why-us-section .box-large:hover { background: linear-gradient(135deg, #085294, #1565C0); }

.why-us-section .why-us-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }
.why-us-section .center-content { align-items: center; text-align: center; justify-content: center; }
.why-us-section .box-large .why-us-content { justify-content: center; max-width: 60%; }

.why-us-section .why-us-mini-badge {
    background: rgba(255,255,255,0.2); color: white; padding: 6px 12px;
    border-radius: 8px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    display: inline-block; width: fit-content; margin-bottom: 15px;
}

.why-us-section .why-us-box h3 { font-size: 1.6rem; margin-bottom: 12px; font-weight: 700; color: #06467F; }
.why-us-section .box-large h3 { color: white; font-size: 2rem; }

.why-us-section .why-us-box p { color: #7f8c8d; line-height: 1.6; font-size: 1rem; }
.why-us-section .box-large p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* Bento Visuals */
.why-us-section .why-us-map-decoration {
    position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
    background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px);
    background-size: 20px 20px; pointer-events: none;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}
.why-us-section .why-us-pin {
    position: absolute; width: 16px; height: 16px; background: #4CAF50;
    border: 3px solid rgba(255,255,255,0.5); border-radius: 50%;
    box-shadow: 0 0 20px #4CAF50; animation: whyUsPinPulse 2s infinite;
}
.why-us-section .why-us-pin.small { width: 10px; height: 10px; background: white; box-shadow: none; opacity: 0.6; animation: none; }
@keyframes whyUsPinPulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.why-us-section .onsite-btn {
    margin-top: 25px; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #4CAF50; font-weight: 600;
}
.why-us-section .onsite-btn .status-dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; box-shadow: 0 0 10px #4CAF50; }

.why-us-section .why-us-stat-circle { width: 120px; height: 120px; position: relative; margin-bottom: 20px; }
.why-us-section .circular-chart { width: 100%; height: 100%; }
.why-us-section .circle-bg { fill: none; stroke: #eee; stroke-width: 2.5; }
.why-us-section .circle {
    fill: none; stroke: #1976D2; stroke-width: 2.5; stroke-linecap: round;
    animation: whyUsProgress 1.5s ease-out forwards; transform-origin: center; transform: rotate(-90deg);
}
@keyframes whyUsProgress { 0% { stroke-dasharray: 0, 100; } }

.why-us-section .stat-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.why-us-section .stat-text .number { display: block; font-size: 2.2rem; font-weight: 800; color: #06467F; line-height: 1; }
.why-us-section .stat-text .unit { font-size: 0.8rem; text-transform: uppercase; color: #7f8c8d; font-weight: 600; }

.why-us-section .why-us-icon-header { margin-bottom: 20px; }
.why-us-section .why-us-icon {
    width: 50px; height: 50px; background: #e3f2fd; color: #1976D2;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
}

/* =========================================
   7. CONTACT SECTION
   ========================================= */
.contact { padding: 100px 0; background-color: #fff; }
.contact-wrapper { max-width: 1200px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 50px; }
.contact-header h2 { font-size: 2.5rem; color: #06467F; margin-bottom: 20px; }

.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card, .contact-form-card { background: #f8f9fa; border-radius: 10px; padding: 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.contact-info-card h3, .contact-form-card h3 { font-size: 1.8rem; color: #06467F; margin-bottom: 30px; }

.contact-method { display: flex; align-items: flex-start; margin-bottom: 30px; }
.contact-icon {
    background: #1976D2; color: white; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-right: 20px; flex-shrink: 0;
}
.contact-details h4 { font-size: 1.2rem; margin-bottom: 5px; color: #06467F; }
.contact-details p { color: #7f8c8d; font-size: 1.1rem; }

.social-links h4 { margin-bottom: 20px; color: #06467F; }
.social-icons { display: flex; gap: 15px; }
.social-icons a {
    display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    background: #e9ecef; border-radius: 50%; color: #1976D2; transition: all 0.3s ease;
}
.social-icons a:hover { background: #1976D2; color: white; transform: translateY(-3px); }

.availability-indicator {
    display: flex; align-items: center; background: rgba(76, 175, 80, 0.1);
    padding: 15px; border-radius: 8px; margin: 25px 0;
}
.status-dot { width: 12px; height: 12px; border-radius: 50%; margin-right: 10px; }
.status-dot.online { background-color: #4CAF50; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); animation: pulse 1.5s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px;
    font-family: inherit; font-size: 1rem; transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: #1976D2; box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}
.form-group textarea { min-height: 150px; resize: vertical; }

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* FAQ Section */
.faq-section { margin-top: 30px; border-top: 1px solid #eee; padding-top: 20px; }
.faq-section h4 { margin-bottom: 15px; color: #06467F; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 10px; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; cursor: pointer; font-weight: 600; color: #2c3e50; }
.faq-answer { padding: 0 0 15px; color: #7f8c8d; display: none; }
.faq-item.active .faq-answer { display: block; }
.chevron { transition: transform 0.3s ease; }
.faq-item.active .chevron { transform: rotate(180deg); }

/* =========================================
   8. FOOTER
   ========================================= */
.footer { background: #0D47A1; color: #ecf0f1; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }

.footer-brand h3 { color: white; font-size: 1.8rem; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.footer-brand p { color: #bdc3c7; margin-bottom: 20px; }
.footer-description { color: #bdc3c7; line-height: 1.7; max-width: 300px; }

.footer-links-column h4 { color: white; margin-bottom: 20px; font-size: 1.2rem; }
.footer-links-column ul { list-style: none; }
.footer-links-column ul li { margin-bottom: 12px; }
.footer-links-column ul li a { color: #bdc3c7; text-decoration: none; transition: color 0.3s; }
.footer-links-column ul li a:hover { color: #e74c3c; }

.newsletter-signup { margin-top: 20px; }
.newsletter-signup h4 { color: white; margin-bottom: 15px; }
.newsletter-signup form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-signup input { padding: 12px 15px; border: none; border-radius: 5px; font-family: inherit; }
.newsletter-signup button {
    background: #e74c3c; color: white; border: none; padding: 12px 15px; border-radius: 5px; cursor: pointer; transition: background 0.3s;
}
.newsletter-signup button:hover { background: #c0392b; }

.footer-bottom { border-top: 1px solid #34495e; padding: 20px 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: #bdc3c7; text-decoration: none; transition: color 0.3s; }
.footer-legal-links a:hover { color: #e74c3c; }

/* =========================================
   9. GLOBAL RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 1200px) {
    .header-content { gap: 60px; }
    .security-ecosystem { width: 350px; height: 350px; }
}

@media (max-width: 992px) {
    .sb-layout { grid-template-columns: 1fr; gap: 50px; }
    .sb-content { text-align: center; }
    .sb-description { margin-left: auto; margin-right: auto; }
    .sb-feature-item { text-align: left; }
    .glass-dashboard-container { max-width: 500px; margin: 0 auto; transform: none; }
    .glass-dashboard-container:hover { transform: none; }
    
    .header-content { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .header-text h2 { font-size: 2.5rem; }
    .solution-stats { justify-content: center; }
    .stat { align-items: center; }
    .stat-number::after { left: 50%; transform: translateX(-50%); }
    .security-ecosystem { width: 300px; height: 300px; }
}

@media (max-width: 900px) {
    .why-us-section .why-us-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .why-us-section .box-large { grid-column: auto; }
    .why-us-section .box-large .why-us-content { max-width: 100%; }
    .why-us-section .why-us-map-decoration {
        width: 100%; height: 50%; top: auto; bottom: 0;
        background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
        mask-image: linear-gradient(to top, transparent, black); -webkit-mask-image: linear-gradient(to top, transparent, black);
    }
}

@media (max-width: 768px) {
    .header-text h2 { font-size: 2rem; }
    .header-text .section-description { font-size: 1.1rem; }
    .solution-stats { gap: 30px; flex-wrap: wrap; }
    .stat-number { font-size: 2rem; }
    
    .solutions-grid { grid-template-columns: 1fr; gap: 20px; }
    .card-actions { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
    
    .security-ecosystem { width: 250px; height: 250px; }
    .ecosystem-center { width: 100px; height: 100px; }
    .center-core { width: 60px; height: 60px; }
    .security-node { width: 50px; height: 50px; }
    
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .solutions-header { margin-bottom: 50px; }
    .header-text h2 { font-size: 1.8rem; }
    .solution-stats { flex-direction: column; gap: 25px; }
    .solutions-cta { padding: 40px 20px; }
    .cta-content h3 { font-size: 1.8rem; }
}

/* =========================================
   10. LEGAL PAGES
   ========================================= */
.legal-section {
    padding: 120px 0 60px;
    background-color: #fff;
    min-height: calc(100vh - 80px);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 2.8rem;
    color: #06467F;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.legal-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.legal-section-content h2 {
    font-size: 1.8rem;
    color: #06467F;
    margin: 30px 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.legal-section-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 25px 0 15px;
}

.legal-section-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #34495e;
}

.legal-section-content ul {
    margin: 20px 0 20px 30px;
}

.legal-section-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #34495e;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-intro {
        font-size: 1.1rem;
    }
    
    .legal-section-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-section-content h3 {
        font-size: 1.2rem;
    }
}
/* 1. The Wrapper */
        /* Holds both SVGs in place relative to each other */
.shield-container {
    position: relative; 
    width: 150px;       /* Adjust overall size here */
    height: 150px;
}

/* 2. The Solid White Shield (Background Layer) */
.shield-icon {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.5)); /* Adds a nice shadow behind the shield */
}
 /* 3. The Lynx Logo (Foreground Layer) */
 .lynx-logo-center {
    position: absolute;
    top: 50%;           
    left: 50%;          
    transform: translate(-50%, -50%); /* Perfectly centers the logo */
    width: 55%;         /* The logo is 55% the width of the shield */
    height: 55%;
    z-index: 10;        /* Ensures it sits on top */
}

/* =========================================
   11. STATUS INDICATOR UPDATES (OFFLINE MODE)
   ========================================= */

/* The Red Dot Style */
.status-dot.offline {
    background-color: #ff5f56; /* Red */
    box-shadow: 0 0 0 0 rgba(255, 95, 86, 0.7);
    animation: pulse-red 2s infinite;
}

/* Red Pulse Animation */
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 95, 86, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(255, 95, 86, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 95, 86, 0); }
}

/* Optional: Text color adjustment for the Onsite button when offline */
.onsite-btn.is-offline {
    color: #7f8c8d; /* Grey out the text slightly */
}
