:root {
    /* --- CORE COLORS --- */
    --bg-body: #040919;
    --bg-surface: #0d152a;
    --bg-dark: #0d152a;
    --bg-midnight: #02040a;
    --bg-titanium: #172038;
    --bg-command: #080e21;
    --bg-slate-800: #233050;
    --bg-black: #000000;

    /* --- TEXT --- */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --text-silver: #e2e8f0;

    /* --- ACCENTS --- */
    --accent-indigo: #ef4444;
    --accent-indigo-dark: #b91c1c;
    --accent-cyan: #f87171;
    --accent-cyan-light: #fca5a5;
    --accent-sky: #ef4444;
    --accent-violet: #be123c;
    --accent-violet-light: #fda4af;
    --accent-amber: #f59e0b;
    --accent-emerald: #10b981;
    --accent-mint: #34d399;

    /* --- UTILITIES --- */
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glass-strong: rgba(255, 255, 255, 0.2);
    --font-main: "Inter", sans-serif;
}

/* --- GLOBAL --- */
html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    font-family: var(--font-main);
    color: var(--text-secondary);
    background-color: var(--bg-body);
    line-height: 1.7;
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.tracking-wider {
    letter-spacing: 0.1em;
}
.letter-spacing-2 {
    letter-spacing: 2px;
}

/* --- HEADER --- */
.clean-header-wrapper {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background-color: var(--bg-surface);
    z-index: 1030;
}
.clean-top-bar {
    background-color: var(--bg-black);
    height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.clean-flag-dock a {
    opacity: 0.5;
    transition: 0.3s;
}
.clean-flag-dock a:hover,
.clean-flag-dock a.active-flag {
    opacity: 1;
    transform: scale(1.15);
}
.clean-flag-dock img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-glass-strong);
}
.clean-navbar {
    border-bottom: 1px solid var(--bg-glass);
}
.clean-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}
.clean-nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
    border-radius: 6px;
}
.clean-nav-link:hover,
.clean-nav-link.active {
    color: var(--text-white) !important;
    background: var(--bg-glass);
}
.clean-btn-red {
    background-color: var(--accent-indigo);
    color: white !important;
    transition: all 0.3s ease;
    border: none;
}
.clean-btn-red:hover {
    background-color: var(--accent-indigo-dark);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}
.clean-toggler {
    border: none;
    color: white;
    font-size: 1.5rem;
    background: transparent;
}
.clean-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .clean-navbar .navbar-collapse {
        background: var(--bg-surface);
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
        border: 1px solid var(--border-glass);
    }
    .mobile-flag-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        justify-items: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-glass);
    }
    .mobile-flag-grid img {
        width: 32px;
        height: 32px;
    }
}

/* --- STICKY BUTTON --- */
.sticky-contact-tab {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1080;
    background: linear-gradient(135deg, var(--accent-indigo) 0%, #7f1d1d 100%);
    color: var(--text-white);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 0 20px rgba(239, 68, 68, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
}
.sticky-contact-tab:hover {
    padding-right: 20px;
    color: var(--text-white);
}

/* --- HERO --- */
.hero-static-section {
    background-color: var(--bg-midnight);
    min-height: 80vh;
}
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate;
}
@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(2, 4, 10, 0.95) 0%,
        rgba(2, 4, 10, 0.8) 40%,
        rgba(2, 4, 10, 0.3) 100%
    );
}
.hero-badge {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-silver);
    backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-indigo);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent-indigo);
}
.text-gradient-hero {
    background: linear-gradient(to right, #ffffff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-hero-primary {
    background: var(--text-white);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--border-glass);
}
.btn-hero-primary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    color: var(--bg-dark);
}
.btn-hero-secondary {
    background: var(--bg-glass);
    color: var(--text-white);
    border: 1px solid var(--border-glass-strong);
    backdrop-filter: blur(5px);
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-white);
}

/* --- PROBLEM AREAS --- */
.bg-obsidian-grid {
    background-color: var(--bg-body);
    background-image: radial-gradient(var(--bg-slate-800) 1px, transparent 1px);
    background-size: 30px 30px;
}
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(239, 68, 68, 0.05) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.text-gradient-cyan {
    /* Red Gradient matching your screenshot */
    background: linear-gradient(to right, #ef4444, #fca5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* IMPORTANT: Set text-shadow to NONE to remove the blur */
    text-shadow: none !important;
}
.badge-pill-cyan {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-cyan-light);
    border: 1px solid rgba(239, 68, 68, 0.3);
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}
.sector-card {
    background: rgba(23, 32, 56, 0.4);
    border: 1px solid var(--bg-glass);
    border-radius: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.sector-card:hover {
    transform: translateY(-5px);
    background: rgba(23, 32, 56, 0.7);
    border-color: var(--accent-indigo);
}
.sector-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--bg-titanium) 0%,
        var(--bg-body) 100%
    );
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--accent-indigo);
}
.sector-card:hover .sector-icon-box {
    background: var(--accent-indigo);
    color: var(--bg-dark);
    border-color: var(--accent-indigo);
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}
.sector-title {
    color: var(--text-primary);
}
.sector-text {
    color: var(--text-secondary);
    line-height: 1.6;
}
.link-arrow {
    color: var(--accent-cyan);
    cursor: pointer;
}
.bg-gradient-highlight {
    background: linear-gradient(
        135deg,
        var(--bg-body) 0%,
        var(--bg-midnight) 100%
    );
    border-color: rgba(239, 68, 68, 0.3);
}
.active-border {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(23, 32, 56, 0.6);
}

/* --- SOLUTIONS --- */
.bg-midnight-tech {
    background-color: var(--bg-surface);
}
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}
.glow-left {
    background: var(--bg-slate-800);
    top: -20%;
    left: -10%;
}
.glow-right {
    background: #280808;
    bottom: -20%;
    right: -10%;
}
.tech-badge {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--accent-cyan);
    border-radius: 100px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}
.feature-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bg-glass);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.feature-glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-indigo);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 10px;
    color: var(--accent-indigo);
    font-size: 1.2rem;
}
.btn-glow-white {
    background: var(--text-white);
    color: var(--bg-midnight);
    transition: all 0.3s ease;
}
.btn-glow-white:hover {
    background: #f1f5f9;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
    color: var(--accent-indigo);
    transform: translateY(-2px);
}
.tech-image-wrapper {
    border-radius: 24px;
    padding: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}
.tech-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.floating-stat-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    animation: floatStat 5s ease-in-out infinite;
}
@keyframes floatStat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* --- COMPANY R&D --- */
.bg-titanium {
    background-color: var(--bg-titanium);
}
.titanium-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px
    );
    background-size: 100px 100%;
}
.pillar-card {
    background: transparent;
    border-left: 1px solid var(--border-glass);
    transition: all 0.5s ease;
}
.pillar-card:hover {
    border-left-color: var(--text-silver);
}
.pillar-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    filter: grayscale(100%) contrast(110%);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar-card:hover .pillar-img-wrapper {
    filter: grayscale(0%) contrast(100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.pillar-card:hover .pillar-img {
    transform: scale(1.03);
}
.pillar-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}
.meta-tag {
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    font-size: 0.7rem;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}
.pillar-title {
    color: var(--text-white);
    letter-spacing: -0.5px;
}
.divider-silver {
    width: 60px;
    height: 2px;
    background: #4b5563;
    margin-bottom: 1.5rem;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}
.pillar-card:hover .divider-silver {
    width: 100px;
    background: var(--text-white);
}
.pillar-text {
    color: #9ca3af;
    line-height: 1.8;
}
.btn-link-silver {
    color: var(--text-silver);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 4px;
}
.btn-link-silver:hover {
    color: var(--text-white);
    border-bottom-color: var(--text-white);
    padding-left: 10px;
}

/* --- KNOWLEDGE CENTER --- */
.bg-indigo-research {
    background-color: var(--bg-dark);
    background-image: radial-gradient(
        circle at 0% 0%,
        #170808 0%,
        var(--bg-dark) 50%
    );
}
.grid-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.orb-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-violet);
    filter: blur(120px);
    opacity: 0.25;
    border-radius: 50%;
    z-index: 1;
}
.research-badge {
    background: rgba(190, 18, 60, 0.1);
    border: 1px solid rgba(190, 18, 60, 0.3);
    color: var(--accent-violet-light);
    border-radius: 100px;
}
.text-gradient-violet {
    background: linear-gradient(to right, var(--accent-violet-light), #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.resource-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.resource-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-violet-light);
}
.resource-glass-card span {
    color: var(--text-silver);
    font-weight: 500;
    font-size: 0.9rem;
}
.text-violet {
    color: var(--accent-violet-light);
    font-size: 1.5rem;
}
.btn-glow-violet {
    background: var(--accent-violet);
    color: var(--text-white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(190, 18, 60, 0.4);
}
.btn-glow-violet:hover {
    background: #9f1239;
    box-shadow: 0 4px 30px rgba(190, 18, 60, 0.6);
    color: var(--text-white);
    transform: translateY(-2px);
}
.library-image-frame {
    position: relative;
    padding: 10px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    backdrop-filter: blur(5px);
}
.library-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.glass-overlay-detail {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatDetail 6s ease-in-out infinite;
}
.icon-box {
    width: 32px;
    height: 32px;
    background: var(--accent-emerald);
    color: var(--text-white);
    border-radius: 50%;
}
@keyframes floatDetail {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* --- EDUCATION --- */
.bg-academy-dark {
    background-color: var(--bg-surface);
    background-image: radial-gradient(
        circle at 0% 50%,
        rgba(239, 68, 68, 0.05) 0%,
        transparent 60%
    );
}
.academy-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.academy-badge {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-silver);
    border-radius: 50px;
}
.academy-badge i {
    color: var(--accent-indigo);
    margin-right: 8px;
}
.text-gradient-gold {
    background: linear-gradient(to right, #ffffff, var(--accent-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.industry-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}
.industry-chip:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--accent-indigo);
    transform: translateY(-3px);
}
.chip-icon {
    font-size: 1.2rem;
    color: var(--accent-indigo);
}
.industry-chip span {
    color: var(--text-silver);
    font-weight: 600;
    font-size: 0.9rem;
}
.btn-glow-gold {
    background: var(--accent-indigo);
    color: var(--text-white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}
.btn-glow-gold:hover {
    background: var(--accent-indigo-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.5);
}
.course-card-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    background-color: var(--bg-midnight);
}
.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.course-card-wrapper:hover .course-img {
    transform: scale(1.05);
}
.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        var(--bg-midnight) 10%,
        transparent 60%
    );
    pointer-events: none;
}
.course-ui-top {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}
.course-ui-top .badge.bg-warning {
    background-color: var(--accent-indigo) !important;
    color: white !important;
}
.course-ui-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    width: calc(100% - 40px);
}
.play-button-glass {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
}
.play-button-glass:hover {
    background: var(--accent-indigo);
    border-color: var(--accent-indigo);
}
.cert-badge-float {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--bg-surface);
    border: 1px solid var(--accent-indigo);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 15;
    animation: floatCert 6s ease-in-out infinite;
}
.cert-badge-float .text-warning {
    color: var(--accent-indigo) !important;
}
@keyframes floatCert {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* --- RESELLER --- */
.bg-command-dark {
    background-color: var(--bg-command);
}
.map-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(
        circle at center,
        black 40%,
        transparent 100%
    );
    pointer-events: none;
}
.text-gradient-holo {
    background: linear-gradient(
        to right,
        var(--accent-sky),
        var(--accent-blue)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.partner-data-list {
    border-top: 1px solid var(--border-glass);
}
.partner-row {
    border-bottom: 1px solid var(--border-glass);
    transition: background 0.3s;
}
.partner-row:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 10px;
}
.btn-holo-outline {
    background: transparent;
    color: var(--accent-sky);
    border: 1px solid var(--accent-sky);
    transition: all 0.3s ease;
}
.btn-holo-outline:hover {
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
    color: var(--text-white);
}
.holo-map-container {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: radial-gradient(
        circle at center,
        var(--bg-slate-800) 0%,
        var(--bg-midnight) 100%
    );
}
.holo-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mix-blend-mode: screen;
    filter: grayscale(20%) sepia(20%) hue-rotate(180deg);
}
.map-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        transparent 40%,
        var(--bg-command) 100%
    );
    pointer-events: none;
}
.node-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 140px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}
.node-header {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
}
.node-status {
    font-size: 0.7rem;
    color: var(--accent-sky);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.node-status::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-sky);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 5px var(--accent-sky);
}
@keyframes floatNode {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* --- UPDATES --- */
.updates-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--bg-glass);
}
.news-card {
    background: var(--bg-body);
    border: 1px solid var(--bg-glass);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}
.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-silver);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.3),
        0 8px 10px -6px rgba(0, 0, 0, 0.2);
}
.news-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--bg-glass);
    color: var(--text-silver);
}
.news-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}
.tag-indigo .dot {
    background-color: #6366f1;
}
.tag-indigo {
    color: #c7d2fe;
}
.tag-amber .dot {
    background-color: #f59e0b;
}
.tag-amber {
    color: #fde68a;
}
.tag-emerald .dot {
    background-color: #10b981;
}
.tag-emerald {
    color: #a7f3d0;
}
.news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}
.news-title a {
    color: var(--text-primary);
    text-decoration: none;
    background-image: linear-gradient(
        to right,
        var(--text-primary),
        var(--text-primary)
    );
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease;
}
.news-card:hover .news-title a {
    background-size: 100% 2px;
}
.news-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.read-more-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    transition: color 0.2s;
}
.read-more-text i {
    transition: transform 0.2s;
}
.news-card:hover .read-more-text {
    color: var(--accent-sky);
}
.news-card:hover .read-more-text i {
    transform: translateX(4px);
}
.btn-text-action {
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}
.btn-text-action:hover {
    color: var(--text-primary);
}

/* --- FOOTER --- */
.saas-footer {
    background-color: var(--bg-body);
    color: var(--text-muted);
}
.saas-footer h6 {
    color: var(--text-white);
}
.saas-footer a {
    color: var(--text-muted);
    transition: color 0.2s;
}
.saas-footer a:hover {
    color: var(--text-white);
}
.saas-footer li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.footer-input-modern {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.footer-input-modern:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--accent-indigo);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    color: var(--text-white);
    outline: none;
}
.footer-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1;
}
.btn-submit-modern {
    background: var(--accent-indigo);
    color: var(--text-white);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-submit-modern:hover {
    background: var(--accent-indigo-dark);
    transform: translateY(-1px);
}
.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border-radius: 50%;
    transition: 0.3s;
}
.social-icon:hover {
    background: var(--accent-indigo);
    color: var(--text-white);
    transform: translateY(-3px);
}
.footer-brand-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
}
.footer-brand-logo:hover {
    transform: scale(1.05);
}

/* Feature Cards */
.feature-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.feature-glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.25rem;
}
