/* ===== BRISBANE SERVERS - COMPREHENSIVE NAVBAR SYSTEM ===== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    min-width: 0 !important;
    max-width: 100vw !important;
}

:root {
    --primary-color: #0A74DA;      /* Tech Blue */
    --secondary-color: #0A74DA;    /* Use primary for secondary if only one blue */
    --accent-color: #1A1A1A;       /* Charcoal Black */
    --text-primary: #1A1A1A;       /* Charcoal Black for main text */
    --text-secondary: #6b7280;     /* You can adjust this if you want a different secondary */
    --text-light: #9ca3af;
    --background: #FFFFFF;         /* White */
    --surface: #f8fafc;
    --dark-surface: #1A1A1A;       /* Charcoal Black for dark surface */
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-purple: 0 20px 25px -5px rgba(10, 116, 218, 0.15); /* Tech Blue shadow */
    --border-radius: 12px;
    --transition: all 0.3s ease;
    
    /* === CONSISTENT DESIGN SYSTEM === */
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    
    /* Spacing Scale */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 0.75rem;   /* 12px */
    --space-lg: 1rem;      /* 16px */
    --space-xl: 1.5rem;    /* 24px */
    --space-2xl: 2rem;     /* 32px */
    --space-3xl: 3rem;     /* 48px */
    --space-4xl: 4rem;     /* 64px */
    --space-5xl: 6rem;     /* 96px */
    --space-6xl: 8rem;     /* 128px */
    
    /* Button Sizes */
    --btn-sm: var(--space-md) var(--space-lg);      /* 12px 16px */
    --btn-md: var(--space-md) var(--space-xl);      /* 12px 24px */
    --btn-lg: var(--space-lg) var(--space-2xl);     /* 16px 32px */
    
    /* Icon Sizes */
    --icon-sm: 1rem;       /* 16px */
    --icon-md: 1.25rem;    /* 20px */
    --icon-lg: 1.5rem;     /* 24px */
    --icon-xl: 2rem;       /* 32px */
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    padding-top: 70px;
}

/* Replace the existing .container rules with a more robust margin approach */
.container {
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box !important;
    padding-left: clamp(1rem, 5vw, 5%);
    padding-right: clamp(1rem, 5vw, 5%);
    width: 100%;
}

/* Add responsive container adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding-left: clamp(1rem, 4vw, 4%);
        padding-right: clamp(1rem, 4vw, 4%);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: clamp(0.75rem, 3vw, 3%);
        padding-right: clamp(0.75rem, 3vw, 3%);
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: clamp(0.5rem, 2vw, 2%);
        padding-right: clamp(0.5rem, 2vw, 2%);
    }
}

.container > * {
    box-sizing: border-box !important;
}

/* ===== COMPREHENSIVE NAVBAR SYSTEM - PERMANENT SOLUTION ===== */

/* Header - Fixed Top Navigation */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(110, 63, 192, 0.06);
    transition: all 0.3s ease;
    padding-bottom: 0;
}

/* Header Decorative Effects */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: navGlisten 4s ease-in-out infinite;
    z-index: 1001;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    right: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: silverShine 3s ease-in-out infinite;
    z-index: 1002;
}

@keyframes navGlisten {
    0%, 100% { opacity: 0.8; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.2); }
}

@keyframes silverShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scroll Effects */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(25px);
}

/* Main Navigation Container */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.575rem 2rem;
    gap: 1rem;
    position: relative;
    min-width: 0;
    height: 70px;
    min-height: 70px;
    max-width: 100%;
}

/* Left Section: Logo + Brand Text (Fixed 280px) */
.nav-brand {
    text-decoration: none;
    cursor: pointer;
    display: block;
    width: 280px;
    position: relative;
    z-index: 1004;
}

.nav-brand-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.nav-brand:hover .nav-brand-container {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.nav-brand:active .nav-brand-container {
    transform: translateY(0);
}

.nav-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Center Section: Solid Badge (Physical Object) */
.nav-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(10, 116, 218, 0.10);
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1004;
    min-width: 40px;
    max-width: 320px;
    margin-left: 2rem;
    margin-right: 2rem;
    flex-shrink: 1;
}

.nav-badge:hover {
    box-shadow: 0 8px 30px rgba(110, 63, 192, 0.35);
    transform: translateY(-2px);
}

.nav-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 20s ease-in-out infinite;
}

.nav-badge i {
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .nav-badge span {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Right Section: Navigation Menu (Flexible) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    min-width: fit-content;
    width: auto;
}

/* Navigation Links */
.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    letter-spacing: 0.01em;
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-sizing: border-box;
    overflow: hidden;
}

/* Primary Button (Get Started) */
.nav-link:nth-child(1) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    box-shadow: var(--shadow-purple);
}

.nav-link:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.nav-link:nth-child(1):hover::before {
    left: 100%;
}

.nav-link:nth-child(1):hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(110, 63, 192, 0.4);
}

/* Secondary Buttons */
.nav-link:not(:nth-child(1)) {
    background: rgba(110, 63, 192, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.nav-link:not(:nth-child(1)):hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.nav-link.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 20px rgba(110, 63, 192, 0.3);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(110, 63, 192, 0.05);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== COMPREHENSIVE RESPONSIVE NAVBAR SYSTEM - SMOOTH FLOWING ===== */

/* ===== SOLID OBJECT RESPONSIVE SYSTEM - PHYSICAL BEHAVIOR ===== */

/* Extra Large Screens: Full badge with generous margins (1400px+) */
@media (min-width: 1400px) {
    .nav-badge {
        margin-left: 3rem !important; /* Generous margin from Brisbane Servers */
        margin-right: 3rem !important; /* Generous margin from nav links */
        padding: 0.5rem 1.2rem !important;
        font-size: 0.75rem !important;
    }
    
    .nav-badge span {
        display: inline !important;
    }
    
    .nav-menu {
        gap: 1.2rem !important;
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important; /* Same size as 900px range */
        font-size: 0.85rem !important; /* Same size as 900px range */
    }
}

/* Large Screens: Standard margins (1230px - 1399px) */
@media (max-width: 1399px) and (min-width: 1230px) {
    .nav-badge {
        margin-left: 2.5rem !important; /* Standard margin from Brisbane Servers */
        margin-right: 2.5rem !important; /* Standard margin from nav links */
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    .nav-badge span {
        display: inline !important;
    }
    
    .nav-menu {
        gap: 1rem !important;
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important; /* Same size as 900px range */
        font-size: 0.85rem !important; /* Same size as 900px range */
    }
}

/* Crown form for large screens (1000px - 1229px) */
@media (max-width: 1229px) and (min-width: 1000px) {
    .nav-badge {
        /* Transform to crown icon to give more space to nav links */
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important; /* Push crown towards nav links */
        margin-right: 1rem !important; /* Close to nav links */
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        box-shadow: 0 4px 20px rgba(110, 63, 192, 0.25) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Smooth transitions */
    }
    
    .nav-badge span {
        display: none !important; /* Text disappears - no more shrinking */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-badge i {
        font-size: 1rem !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-menu {
        gap: 1rem !important; /* More space for nav links */
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important; /* Same size as 900px range */
        font-size: 0.85rem !important; /* Same size as 900px range */
    }
}

/* Transform to Crown Early: No more text shrinking (999px - 900px) */
@media (max-width: 999px) and (min-width: 900px) {
    .nav-badge {
        /* Transform to crown icon to give more space to nav links */
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important; /* Push crown towards nav links */
        margin-right: 1rem !important; /* Close to nav links */
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        box-shadow: 0 4px 20px rgba(110, 63, 192, 0.25) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Smooth transitions */
    }
    
    .nav-badge span {
        display: none !important; /* Text disappears - no more shrinking */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-badge i {
        font-size: 1rem !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-menu {
        gap: 1rem !important; /* More space for nav links */
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important; /* Keep 895px size */
        font-size: 0.85rem !important; /* Keep 895px size */
    }
}

/* Crown Transition: Same as crown form begins (870px - 899px) */
@media (max-width: 899px) and (min-width: 870px) {
    .nav-badge {
        /* Transform to crown icon to give more space to nav links */
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important; /* Push crown towards nav links */
        margin-right: 1rem !important; /* Close to nav links */
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        box-shadow: 0 4px 20px rgba(110, 63, 192, 0.25) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Smooth transitions */
    }
    
    .nav-badge span {
        display: none !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-badge i {
        font-size: 1rem !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-menu {
        gap: 1rem !important; /* More space for nav links */
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important; /* Keep 895px size */
        font-size: 0.85rem !important; /* Keep 895px size */
    }
}

/* Crown + Burger Menu: Full badge visible with burger to the right (701px - 869px) */
@media (max-width: 869px) and (min-width: 701px) {
    .nav {
        justify-content: space-between !important; /* Distribute space between elements */
        padding: 0.575rem 0.2rem !important; /* Absolute minimal padding for maximum badge space */
    }
    
    .nav-badge {
        /* Full badge stays visible - with dramatically increased padding for complete text coverage */
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.4rem !important; /* Slightly smaller gap to make room for more padding */
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        padding-top: 0.7rem !important;
        padding-right: 1.4rem !important; /* Reduced by another 5px (0.3rem) from 1.7rem */
        padding-bottom: 0.7rem !important;
        padding-left: 1.4rem !important; /* Reduced by another 5px (0.3rem) from 1.7rem */
        border-radius: 50px !important;
        font-size: 0.7rem !important; /* Slightly smaller font to fit with large padding */
        font-weight: 700 !important;
        box-shadow: 0 4px 20px rgba(110, 63, 192, 0.25) !important;
        margin-left: 0.05rem !important; /* Minimal margin for space */
        margin-right: 0.05rem !important;
        flex-shrink: 0 !important; /* Don't let it shrink */
        order: 1 !important; /* Position after Brisbane Servers */
        max-width: 320px !important; /* Larger to accommodate dramatic padding */
        overflow: visible !important; /* Ensure text isn't clipped */
        white-space: nowrap !important; /* Prevent text wrapping */
        text-transform: uppercase !important;
        letter-spacing: 0.4px !important; /* Slightly reduced to fit better */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Smooth transitions */
        min-height: 38px !important; /* Larger height for complete oval */
    }
    
    .nav-badge span {
        display: inline !important; /* Show full text */
        overflow: visible !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-badge i {
        font-size: 0.85rem !important; /* Slightly smaller to balance with smaller text */
        flex-shrink: 0 !important; /* Don't let icon shrink */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-toggle {
        display: flex !important;
        margin-left: auto !important; /* Push to far right */
        margin-right: 0 !important;
        order: 2 !important; /* Position after badge */
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        height: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-end !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        border-top: 1px solid rgba(110, 63, 192, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
        padding-right: 2rem !important;
        gap: 0 !important;
        order: 3 !important; /* Last in order */
    }
    
    .nav-menu.active {
        height: auto !important;
        padding: 1rem 2rem 1rem 0 !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
        width: auto !important;
        text-align: right !important;
    }
    
    .nav-link {
        display: block !important;
        padding: 1rem 2rem !important;
        width: auto !important;
        text-align: right !important;
        border-radius: var(--border-radius) !important;
        border: none !important;
        background: transparent !important;
        color: var(--primary-color) !important;
        font-size: 1rem !important;
        transition: all 0.3s ease !important;
        margin-bottom: 0.5rem !important;
        min-width: 120px !important;
    }
    
    .nav-link:hover {
        background: rgba(110, 63, 192, 0.1) !important;
        transform: translateX(-10px) !important;
        color: var(--primary-color) !important;
    }
    
    .nav-link:nth-child(1) {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        margin: 0 0 0.5rem 0 !important;
        border-radius: var(--border-radius) !important;
    }
    
    .nav-link:nth-child(1):hover {
        transform: translateX(-5px) scale(1.02) !important;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    }
    
    /* Brisbane Servers text NEVER changes size */
    .nav-brand {
        font-size: 1rem !important; /* CONSISTENT SIZE */
        width: 150px !important; /* Smaller to give badge maximum room */
        padding-left: 75px !important; /* CONSISTENT PADDING */
        order: 0 !important; /* First in order */
    }
    
    .nav-logo {
        width: 70px !important; /* NEVER CHANGES */
        height: 70px !important; /* NEVER CHANGES */
        left: -10px !important; /* CONSISTENT POSITION */
    }
}

/* Crown + Burger Menu: Crown form for smaller screens (700px and below) */
@media (max-width: 700px) {
    .nav {
        justify-content: space-between !important; /* Distribute space between elements */
        padding: 0.575rem 0.75rem !important;
    }
    
    .nav-badge {
        /* Crown icon for smaller screens - keep at 40x40 */
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center !important;
        align-items: center !important;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        box-shadow: 0 4px 20px rgba(110, 63, 192, 0.25) !important;
        margin-left: auto !important; /* Push crown towards burger menu */
        margin-right: 0.5rem !important; /* Close to burger menu */
        flex-shrink: 0 !important;
        order: 1 !important; /* Position after Brisbane Servers */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Smooth transitions */
    }
    
    .nav-badge span {
        display: none !important; /* Hide text, show only crown */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-badge i {
        font-size: 1rem !important; /* Proper size for 40x40 crown */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-toggle {
        display: flex !important;
        margin-left: 0 !important; /* Right next to crown */
        margin-right: 0 !important;
        order: 2 !important; /* Position after crown */
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        height: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-end !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        border-top: 1px solid rgba(110, 63, 192, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
        padding-right: 2rem !important;
        gap: 0 !important;
        order: 3 !important; /* Last in order */
    }
    
    .nav-menu.active {
        height: auto !important;
        padding: 1rem 2rem 1rem 0 !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
        width: auto !important;
        text-align: right !important;
    }
    
    .nav-link {
        display: block !important;
        padding: 1rem 2rem !important;
        width: auto !important;
        text-align: right !important;
        border-radius: var(--border-radius) !important;
        border: none !important;
        background: transparent !important;
        color: var(--primary-color) !important;
        font-size: 1rem !important;
        transition: all 0.3s ease !important;
        margin-bottom: 0.5rem !important;
        min-width: 120px !important;
    }
    
    .nav-link:hover {
        background: rgba(110, 63, 192, 0.1) !important;
        transform: translateX(-10px) !important;
        color: var(--primary-color) !important;
    }
    
    .nav-link:nth-child(1) {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        margin: 0 0 0.5rem 0 !important;
        border-radius: var(--border-radius) !important;
    }
    
    .nav-link:nth-child(1):hover {
        transform: translateX(-5px) scale(1.02) !important;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    }
    
    /* Brisbane Servers text NEVER changes size */
    .nav-brand {
        font-size: 1rem !important; /* CONSISTENT SIZE */
        width: 240px !important;
        padding-left: 75px !important; /* CONSISTENT PADDING */
        order: 0 !important; /* First in order */
    }
    
    .nav-logo {
        width: 70px !important; /* NEVER CHANGES */
        height: 70px !important; /* NEVER CHANGES */
        left: -10px !important; /* CONSISTENT POSITION */
    }
}

/* Hide toggle on larger screens */
@media (min-width: 870px) {
    .nav-toggle {
        display: none !important;
    }
}

/* Ensure Brisbane Servers text NEVER changes at any screen size */
.nav-brand {
    font-size: 1rem !important; /* LOCKED SIZE */
    width: 280px !important; /* LOCKED WIDTH */
}

.nav-logo {
    width: 70px !important; /* LOCKED SIZE */
    height: 70px !important; /* LOCKED SIZE */
}

/* ===== END COMPREHENSIVE NAVBAR SYSTEM ===== */

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-5xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* ===== HERO SECTION ===== */

/* Hero Section - Creative Landing */
/* ===== HERO SECTION - REBUILT FROM SCRATCH ===== */
.hero {
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 50%, #3a3a5a 100%);
    padding: var(--space-xl) 0 var(--space-4xl) 0;
    position: relative;
    overflow-x: hidden;
    box-sizing: border-box;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        linear-gradient(120deg, rgba(139, 92, 246, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-visual {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    box-sizing: border-box;
    margin-top: calc(-1 * var(--space-4xl));
}

.hero-title {
    font-size: clamp(1.375rem, 5vw, 2.875rem);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    font-weight: 800;
    width: 100%;
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
    letter-spacing: -0.025em;
    text-shadow: 0 0 15px rgba(147, 51, 234, 0.2);
    color: #f8fafc;
}

.hero-title > span:not(.tailored) {
    background: linear-gradient(135deg, #f472b6, #a855f7, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: unset;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

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

.hero-title .tailored {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

.hero-subtitle {
    font-size: var(--text-lg);
    background: linear-gradient(135deg, #94a3b8 0%, #cbd5e1 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    font-weight: 400;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    letter-spacing: -0.025em;
    text-shadow: 0 0 15px rgba(203, 213, 225, 0.3);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, #f472b6, #a855f7, #38bdf8);
    background-size: 200% 200%;
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    min-width: 180px;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    line-height: 1.5;
    animation: badgeGlow 4s ease-in-out infinite;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes badgeGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
        transform: translateY(0);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 8px 30px rgba(56, 189, 248, 0.6);
        transform: translateY(-2px);
    }
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 20s ease-in-out infinite;
}

.hero-badge i {
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.hero-stat {
    text-align: center;
    flex: 1;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.06);
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #f472b6, #a855f7, #38bdf8);
    background-size: 200% 200%;
    animation: statGlow 5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

@keyframes statGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
    }
}

.hero-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 800;
    background: linear-gradient(135deg, #f472b6, #a855f7, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

.hero-stat-label {
    display: block;
    font-size: var(--text-sm);
    color: #e2e8f0;
    margin-top: var(--space-xs);
    font-weight: 500;
    text-shadow: 0 0 10px rgba(203, 213, 225, 0.2);
}

.server-constellation {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    position: relative;
    margin: 0 auto;
}

.hero-visual-cta {
    display: flex;
    justify-content: center;
    width: 100%;
}

.security-toggle-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: var(--btn-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    line-height: 1.5;
}

.security-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 85vh;
        padding: var(--space-lg) 0 var(--space-3xl) 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
        padding: 0 var(--space-lg);
    }
    
    .hero-visual {
        margin-top: 0;
    }
    
    .hero-badges {
        gap: var(--space-sm);
    }
    
    .hero-badge {
        min-width: 160px;
    }
    
    .hero-stats {
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: var(--space-md) 0 var(--space-2xl) 0;
    }
    
    .hero-wrapper {
        padding: 0 var(--space-md);
        gap: var(--space-xl);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        margin-bottom: var(--space-md);
    }
    
    .hero-subtitle {
        font-size: var(--text-md);
        margin-bottom: var(--space-lg);
    }
    
    .hero-cta {
        margin-bottom: var(--space-lg);
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        margin: var(--space-md) 0;
    }
    
    .hero-badge {
        width: 100%;
        max-width: 280px;
        flex: none;
        min-width: auto;
        padding: var(--space-xs) var(--space-md);
    }
    
    .hero-stats {
        justify-content: space-around;
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }
    
    .hero-stat {
        padding: var(--space-sm);
    }
    
    .hero-stat-number {
        font-size: var(--text-xl);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 75vh;
        padding: var(--space-sm) 0 var(--space-xl) 0;
    }
    
    .hero-wrapper {
        padding: 0 var(--space-sm);
        gap: var(--space-lg);
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 8vw, 2rem);
        margin-bottom: var(--space-sm);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
        margin-bottom: var(--space-md);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-bottom: var(--space-md);
        gap: var(--space-sm);
    }
    
    .hero-badges {
        margin: var(--space-sm) 0;
    }
    
    .hero-badge {
        max-width: 260px;
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-xs);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-xs);
        margin-top: var(--space-sm);
    }
    
    .hero-stat {
        padding: var(--space-xs);
    }
    
    .hero-stat-number {
        font-size: var(--text-lg);
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
        padding: var(--btn-lg);
    }
}

.btn {
    padding: var(--btn-md);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(110, 63, 192, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(110, 63, 192, 0.4);
}







.server-constellation {
    width: 450px;
    height: 303px;
    aspect-ratio: 1.4875 / 1;
    position: relative;
    margin: 0 auto;
    overflow: visible;
}

@media (max-width: 900px) {
    .server-constellation {
        width: 380px;
        height: 255px;
    }
}

@media (max-width: 600px) {
    .server-constellation {
        width: 300px;
        height: 202px;
    }
}

@media (max-width: 400px) {
    .server-constellation {
        width: 250px;
        height: 168px;
    }
}

@supports not (aspect-ratio: 1) {
    .server-constellation {
        height: 80vw;
        max-height: 480px;
    }
}

.server-constellation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 18%, rgba(110, 63, 192, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 50% 12%, rgba(110, 63, 192, 0.06) 0%, transparent 15%),
        radial-gradient(circle at 80% 18%, rgba(110, 63, 192, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 30% 45%, rgba(110, 63, 192, 0.05) 0%, transparent 18%),
        radial-gradient(circle at 70% 45%, rgba(110, 63, 192, 0.05) 0%, transparent 18%),
        radial-gradient(circle at 50% 88%, rgba(110, 63, 192, 0.06) 0%, transparent 15%);
    pointer-events: none;
    animation: networkPulse 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Base satellite styles */
.satellite {
    position: absolute !important;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: 
        0 4px 15px rgba(110, 63, 192, 0.3),
        inset 0 2px 5px rgba(110, 63, 192, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Remove any display:none rules */
.satellite:nth-child(8),
.satellite:nth-child(9),
.satellite:nth-child(10),
.satellite:nth-child(11),
.satellite:nth-child(12),
.satellite:nth-child(13),
.satellite:nth-child(14) {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* SATELLITE POSITIONING - EXACTLY 14 SATELLITES */
/* Each satellite gets exactly one coordinate point */
/* Using coordinates with Y as BOTTOM position */
/* Max coordinates: X=452.53, Y=348.65 */
/* All points translated: X-60px, Y-190px from original */

/* Point 1: Globe (121.67, 179.78) */
.satellite:nth-of-type(1) { 
    left: 13.63% !important; 
    bottom: 40.14% !important; 
    animation-delay: -1s;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Point 2: Cogs (134.07, 274.78) */
.satellite:nth-of-type(2) { left: 16.37% !important; bottom: 67.14% !important; animation-delay: -2s; }

/* Point 3: Code Branch (217.67, 334.59) */
.satellite:nth-of-type(3) { left: 34.84% !important; bottom: 83.14% !important; animation-delay: -3s; }

/* Point 4: Rocket (314.75, 348.65) */
.satellite:nth-of-type(4) { left: 56.29% !important; bottom: 87.14% !important; animation-delay: -4s; }

/* Point 5: Database (413.65, 306.06) */
.satellite:nth-of-type(5) { left: 78.15% !important; bottom: 75.14% !important; animation-delay: -5s; }

/* Point 6: Shield (452.53, 207.87) */
.satellite:nth-of-type(6) { left: 86.74% !important; bottom: 47.14% !important; animation-delay: -6s; }

/* Point 7: Bolt (350.24, 193.29) */
.satellite:nth-of-type(7) { left: 64.14% !important; bottom: 44.14% !important; animation-delay: -7s; }

/* Point 8: Brain (295.02, 260.01) */
.satellite:nth-of-type(8) { left: 51.93% !important; bottom: 62.14% !important; animation-delay: -8s; }

/* Point 9: Network (222.09, 202.56) */
.satellite:nth-of-type(9) { left: 35.82% !important; bottom: 46.14% !important; animation-delay: -9s; }

/* Point 10: Microchip (194.70, 109.97) */
.satellite:nth-of-type(10) { left: 29.77% !important; bottom: 21.14% !important; animation-delay: -10s; }

/* Point 11: Server (286.91, 117.29) */
.satellite:nth-of-type(11) { 
    left: 50.14% !important; 
    bottom: 23.14% !important; 
    animation-delay: -11s;
}

/* Point 12: Cloud (340.03, 56.04) */
.satellite:nth-of-type(12) { left: 61.88% !important; bottom: 6.14% !important; animation-delay: -12s; }

/* Point 13: Sitemap (337.42, 115.81) */
.satellite:nth-of-type(13) { left: 61.30% !important; bottom: 23.14% !important; animation-delay: -13s; }

/* Point 14: Laptop (417.80, 125.99) */
.satellite:nth-of-type(14) { 
    left: 79.07% !important; 
    bottom: 25.14% !important; 
    animation-delay: -14s;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-8px); 
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */



/* ===== SECURITY ASSESSMENT SECTION ===== */

.security-assessment {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
    padding: var(--space-6xl) 0;
    position: relative;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.security-assessment.open {
    max-height: 2000px;
    opacity: 1;
    pointer-events: auto;
}

.security-assessment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 127, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 40% 60%, rgba(220, 38, 127, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: securityGlow 8s ease-in-out infinite;
}

@keyframes securityGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.security-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    animation: fadeInUp 1s ease-out;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulseRed 2s ease-in-out infinite;
}

@keyframes pulseRed {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
        transform: scale(1.02);
    }
}

.security-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    color: white;
    letter-spacing: -0.025em;
}

.vulnerability-text {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: glowRed 2s ease-in-out infinite alternate;
}

@keyframes glowRed {
    from { text-shadow: none; }
    to { text-shadow: none; }
}

.security-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -0.025em;
}

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

/* ===== VULNERABILITY DEMO LAYOUT ===== */

.vulnerability-demo {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-4xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECURITY EXPLANATION LAYOUT ===== */

.security-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

.explanation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.explanation-icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
}

.explanation-card h3 {
    color: white;
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.025em;
}

.vulnerability-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vulnerability-points li {
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-lg);
    line-height: 1.5;
    letter-spacing: -0.025em;
}

.vulnerability-points li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

.vulnerability-points strong {
    color: white;
    font-weight: 600;
}

.test-yourself {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.test-header i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 1.2rem;
}

.test-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.test-steps {
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.warning-note {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-note i {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.warning-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.warning-note strong {
    color: white;
    font-weight: 600;
}

.demo-content {
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* ===== TERMINAL STYLING ===== */

.demo-header {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, #4a5568, #2d3748);
}

.terminal-controls {
    display: flex;
    gap: var(--space-xs);
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close {
    background: #ff5f57;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #28ca42;
}

.terminal-title {
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: -0.025em;
}

/* ===== CODE CONTAINER STYLING ===== */

.code-container {
    position: relative;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-title {
    color: #e2e8f0;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.copy-button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--border-radius);
    font-size: var(--text-xs);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.code-block {
    background: #0f172a;
    color: #e2e8f0;
    padding: var(--space-2xl) var(--space-lg);
    margin: 0;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: var(--text-sm);
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
    border: none;
}

.code-block code {
    color: inherit;
    background: none;
    padding: 0;
    font-family: inherit;
}

/* ===== DEMO OUTPUT STYLING ===== */

.demo-output {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.output-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #10b981;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.output-content {
    padding: var(--space-lg);
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: var(--text-sm);
}

.output-line {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) 0;
}

.output-label {
    color: #10b981;
    font-weight: 600;
    min-width: 140px;
}

.network-name {
    color: #3b82f6;
    font-weight: 600;
}

.password-revealed {
    color: #ef4444;
    font-weight: 700;
    animation: pulsePassword 2s ease-in-out infinite;
}

@keyframes pulsePassword {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== TEST YOURSELF SECTION ===== */

.test-yourself {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.test-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.test-header i {
    width: var(--icon-md);
    height: var(--icon-md);
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-lg);
}

.test-header h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.025em;
}

.test-steps {
    margin-bottom: var(--space-lg);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-sm) 0;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.025em;
}

.warning-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--border-radius);
    padding: var(--space-md);
}

.warning-note i {
    color: #ef4444;
    font-size: var(--text-lg);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.warning-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.025em;
}

.warning-note strong {
    color: #ef4444;
}

/* ===== SECURITY CTA SECTION ===== */

.security-cta {
    text-align: center;
    margin-top: var(--space-4xl);
    padding: var(--space-3xl) var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
    letter-spacing: -0.025em;
}

.cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.025em;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.security-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.security-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--space-5xl) 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(10, 116, 218, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(110, 63, 192, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-4xl);
}

.service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid;
    border-image: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4) 1;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-image: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981) 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(110, 63, 192, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 116, 218, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.value-proposition {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius);
    border: 2px solid;
    border-image: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4) 1;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-color: rgba(110, 63, 192, 0.15);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.value-item:nth-child(1) .value-icon {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.value-item:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.value-item:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.value-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.company-credentials {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    border: 1px solid rgba(110, 63, 192, 0.08);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credential-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(110, 63, 192, 0.12);
}

.credential-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(110, 63, 192, 0.2);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.credential-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.credential-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(110, 63, 192, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(10, 116, 218, 0.015) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid;
    border-top: 1px solid rgba(110, 63, 192, 0.1);
    border-right: 1px solid rgba(110, 63, 192, 0.1);
    border-bottom: 1px solid rgba(110, 63, 192, 0.1);
    transition: var(--transition);
}

.contact-item:nth-child(1) {
    border-left-color: #ec4899;
}

.contact-item:nth-child(2) {
    border-left-color: #8b5cf6;
}

.contact-item:nth-child(3) {
    border-left-color: #06b6d4;
}

.contact-item:nth-child(4) {
    border-left-color: #10b981;
}

.contact-item:nth-child(5) {
    border-left-color: #f59e0b;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(110, 63, 192, 0.15);
}

.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-item:nth-child(1) i {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.contact-item:nth-child(2) i {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-item:nth-child(3) i {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.contact-item:nth-child(4) i {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-item:nth-child(5) i {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-text strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(110, 63, 192, 0.1);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 63, 192, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* ===== NOTIFICATIONS ===== */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.notification-content span {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

/* ===== RESPONSIVE DESIGN FOR RESTRUCTURED CONTENT ===== */

/* Tablet layout - 2 cards side by side */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 968px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-proposition {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .company-credentials {
        padding: 2rem 1.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .credential-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR SECURITY SECTION ===== */

@media (max-width: 968px) {
    .security-explanation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vulnerability-demo {
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .security-assessment {
        padding: 4rem 0;
    }
    
    .security-title {
        font-size: 2rem;
    }
    
    .security-subtitle {
        font-size: 1.1rem;
    }
    
    .demo-content {
        margin: 0 1rem;
    }
    
    .code-header {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .code-block {
        padding: 1.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .output-content {
        padding: 1rem;
    }
    
    .output-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .output-label {
        min-width: auto;
    }
    
    .explanation-card,
    .test-yourself {
        padding: 1.5rem;
    }
    
    .security-cta {
        padding: 2rem 1rem;
        margin: 3rem 1rem 0;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    }
    
@media (max-width: 480px) {
    .security-title {
        font-size: 1.8rem;
    }
    
    .security-subtitle {
        font-size: 1rem;
    }
    
    .terminal-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .terminal-controls {
        justify-content: center;
    }
    
    .code-block {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .copy-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .warning-note {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .cta-content h3 {
        font-size: 1.25rem;
    }
}

/* ===== FOOTER SECTION ===== */

.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(110, 63, 192, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(158, 57, 198, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== FOOTER BRAND SECTION ===== */

.footer-brand-section {
    max-width: 350px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
        width: 50px;
        height: 50px;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.credential-badge i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

/* ===== FOOTER SECTIONS ===== */

.footer-section {
    position: relative;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    word-break: break-word;
    max-width: 100%;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
        opacity: 0;
    transform: translateX(-10px);
    }

.footer-links a:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

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

/* ===== FOOTER CONTACT ===== */

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact-item i {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ===== FOOTER SOCIAL ===== */

.footer-social {
    margin-top: 1.5rem;
}

.social-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 63, 192, 0.3);
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem !important;
    margin-top: 0.25rem !important;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal-link:hover::after {
    width: 100%;
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

/* ===== FOOTER RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }
    
    .footer-brand-section {
        max-width: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 0 2rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-credentials {
        align-items: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 0;
    }
    
    .footer-main {
        padding: 2rem 0 1.5rem;
        gap: 2rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

/* Neural Network Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    pointer-events: none;
}

.connection-lines line {
    opacity: 0.4;
    transition: opacity 0.3s ease;
    animation: pulseConnection 4s ease-in-out infinite;
}

@keyframes pulseConnection {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* ===== MERGED FROM styles_backup.css ===== */
/* Utility classes, unique effects, and responsive tweaks from backup below. */

/* --- Begin merged backup rules --- */

/* New angle extension using polygon (from backup) */
.nav::after {
    content: '';
    position: absolute;
    left: 0 !important;
    top: 0;
    bottom: 0;
    width: calc(325px + 5px) !important;
    background: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
    clip-path: polygon(
        0 0,
        calc(100% - 5px) 0,
        calc(100% - 5px) 100%,
        0 100%
    );
    box-shadow: 
        0 0 15px rgba(110, 63, 192, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    z-index: 1;
    animation: angleGlow 3s ease-in-out infinite;
    transform: none !important;
    pointer-events: none;
}

.nav::before {
    display: none !important;
}

@media (max-width: 768px) {
    .nav::before {
        display: none;
    }
}

@keyframes angleGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0; }
}

/* Node styles from backup (for network diagrams, if needed) */
.node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(110, 63, 192, 0.3);
    animation: pulse 3s infinite;
    transition: all 0.3s ease;
}

.node:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(110, 63, 192, 0.4);
}

.node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(110, 63, 192, 0.4);
}

.node.top { 
    top: 10%; 
    left: 50%; 
    transform: translateX(-50%); 
    animation-delay: -1s;
}

.node.right { 
    top: 50%; 
    right: 10%; 
    transform: translateY(-50%); 
    animation-delay: -2s;
}

.node.bottom { 
    bottom: 10%; 
    left: 50%; 
    transform: translateX(-50%); 
    animation-delay: -3s;
}

.node.left { 
    top: 50%; 
    left: 10%; 
    transform: translateY(-50%); 
    animation-delay: -4s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* --- End merged backup rules --- */

/* === CONSTELLATION LINES ENHANCED === */
.constellation-line {
    stroke: #a084ff;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px #a084ff) drop-shadow(0 0 16px #b347d9);
    opacity: 0.85;
    animation: linePulse 2.5s infinite alternate;
    transition: stroke 0.3s, filter 0.3s;
}

@keyframes linePulse {
    0% { opacity: 0.7; filter: drop-shadow(0 0 8px #a084ff) drop-shadow(0 0 16px #b347d9); }
    50% { opacity: 1; filter: drop-shadow(0 0 16px #a084ff) drop-shadow(0 0 32px #b347d9); }
    100% { opacity: 0.7; filter: drop-shadow(0 0 8px #a084ff) drop-shadow(0 0 16px #b347d9); }
}

.neuron-dot {
    fill: #fff;
    stroke: #b347d9;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px #a084ff);
    opacity: 0.95;
    r: 7;
    animation: neuronPulse 1.2s infinite alternate;
}

@keyframes neuronPulse {
    0% { opacity: 0.7; r: 6; }
    50% { opacity: 1; r: 8; }
    100% { opacity: 0.7; r: 6; }
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: background 0.3s, box-shadow 0.3s;
}
.btn-danger:hover, .btn-danger:focus {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
    color: #fff;
}

.satellite, .neuron-dot {
    will-change: transform;
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.legal-content .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.legal-content .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.legal-content .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.legal-text h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(10, 116, 218, 0.1);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.legal-text p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-text ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.6;
}

.legal-text li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-text a:hover {
    border-bottom-color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 3rem 0;
    }

    .legal-content .section-title {
        font-size: 1.75rem;
    }

    .legal-text {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .legal-text h2 {
        font-size: 1.5rem;
    }

    .legal-text h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 2rem 0;
    }

    .legal-text {
        padding: 1rem;
        margin: 0 0.5rem;
    }
}

/* Section Subheader */
.section-subheader {
    text-align: center;
    margin-bottom: 2rem;
}

.section-subheader h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .section-subheader h3 {
        font-size: 1.5rem;
    }

    .section-subheader p {
        font-size: 1rem;
    }
}

