/* ==========================================================================
   ALPHA AUDITOR - HIGH-END DESIGN SYSTEM & COMPONENT STYLING
   ========================================================================== */

/* 1. CSS VARIABLES & SYSTEM RESET */
:root {
    --space-black: #030712;
    --space-dark: #070d19;
    --space-light-dark: #0f172a;
    
    /* Harmonious AI-Audit Palette */
    --neon-cyan: #06b6d4;      /* Innovation, clarity */
    --neon-cyan-rgb: 6, 182, 212;
    --emerald-mint: #10b981;   /* Compliance, green light, trust */
    --emerald-rgb: 16, 185, 129;
    --tech-blue: #3b82f6;      /* Security, authority */
    --accent-purple: #8b5cf6;  /* High technology, algorithms */
    
    /* Functional Status */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    
    /* Glassmorphism Tokens */
    --glass-bg: rgba(9, 17, 34, 0.45);
    --glass-bg-hover: rgba(15, 27, 54, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-hover: rgba(255, 255, 255, 0.12);
    --glass-glow-cyan: rgba(6, 182, 212, 0.15);
    --glass-glow-emerald: rgba(16, 185, 129, 0.15);
    
    /* Typography Colors */
    --text-white: #ffffff;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    /* Layout Dimensions */
    --header-height: 80px;
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--space-black);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--emerald-mint);
}

/* ==========================================================================
   2. GLOWING ORBS BACKGROUND
   ========================================================================== */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: floatGlow 25s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
}

.orb-2 {
    bottom: -10%;
    left: 5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--emerald-mint) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 40%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    animation-delay: -10s;
    opacity: 0.1;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(8%, 10%) scale(1.15);
    }
}

/* ==========================================================================
   3. REUSABLE ATOMICS & GLASS CARDS
   ========================================================================== */
.section-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

/* Grid Layouts */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Badge styles */
.badge-container {
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    color: var(--neon-cyan);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.secondary {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--emerald-mint);
}

/* Micro Animations */
.pulse {
    animation: blinker 2s infinite;
}

@keyframes blinker {
    50% { opacity: 0.3; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--tech-blue) 100%);
    color: var(--text-white);
    border: none;
    box-shadow: 0 8px 24px -8px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -6px rgba(6, 182, 212, 0.6);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--neon-cyan);
}

.btn-nav:hover {
    background: var(--neon-cyan);
    color: var(--space-black);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

/* Section Header Typography */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header .subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.section-header .section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header .title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--emerald-mint));
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-header .section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 300;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--emerald-mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ==========================================================================
   4. TOP NAVIGATION HEADER
   ========================================================================== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-white);
}

.top-header .logo-symbol {
    color: var(--neon-cyan);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.top-header .logo .highlight {
    color: var(--emerald-mint);
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.main-nav a:hover {
    color: var(--text-white);
}

.main-nav a.nav-accent {
    color: var(--neon-cyan);
}

.main-nav a.nav-accent:hover {
    color: var(--emerald-mint);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: calc(var(--header-height) + 40px);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    font-size: 1.1rem;
    color: var(--emerald-mint);
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Interactive Board Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-visual::before {
    content: "";
    position: absolute;
    top: -15%;
    left: -15%;
    width: 130%;
    height: 130%;
    background: url('assets/ai_audit_dashboard.png') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    filter: blur(25px);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    pointer-events: none;
    animation: slowPulse 8s infinite alternate ease-in-out;
}

@keyframes slowPulse {
    0% { transform: scale(0.95); opacity: 0.12; }
    100% { transform: scale(1.05); opacity: 0.18; }
}

.visual-card {
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(9, 17, 34, 0.7);
}

.visual-header {
    background: rgba(3, 7, 18, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.visual-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.visual-header .dot.red { background-color: var(--color-danger); }
.visual-header .dot.yellow { background-color: var(--color-warning); }
.visual-header .dot.green { background-color: var(--color-success); }

.visual-header .title-tab {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--text-dark);
    margin-left: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.visual-body {
    padding: 30px;
}

.compliance-status {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.status-gauge {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gauge-value {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.status-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.status-info p {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.text-emerald { color: var(--emerald-mint); }
.text-warning { color: var(--color-warning); }

.compliance-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
}

.check-item .checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.check-item.checked .checkbox {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--emerald-mint);
}

.check-item.pending .checkbox {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--color-warning);
}

.check-item.blocked .checkbox {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-danger);
}

.check-label {
    flex: 1;
    margin-left: 12px;
    font-weight: 300;
    color: var(--text-light);
}

.check-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bg-emerald { background: rgba(16, 185, 129, 0.15); color: var(--emerald-mint); }
.bg-warning { background: rgba(245, 158, 11, 0.15); color: var(--color-warning); }
.bg-danger { background: rgba(239, 68, 68, 0.15); color: var(--color-danger); }

/* ==========================================================================
   6. INFO SECTION (WHAT IS THE EU AI ACT?)
   ========================================================================== */
.about-act-section {
    background: linear-gradient(180deg, transparent 0%, rgba(9, 17, 34, 0.4) 100%);
    position: relative;
}

.feature-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-color: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.bg-cyan-glow {
    background: rgba(6, 182, 212, 0.1);
    color: var(--neon-cyan);
    border: 1px solid rgba(6, 182, 212, 0.25);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.bg-purple-glow {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.bg-emerald-glow {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-mint);
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ==========================================================================
   7. INTERACTIVE WIZARD (AI ACT SCHNELL-CHECK)
   ========================================================================== */
.schnell-check-section {
    position: relative;
    background: radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
}

.wizard-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px;
    border-color: rgba(6, 182, 212, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(6, 182, 212, 0.04);
}

.wizard-header {
    text-align: center;
    margin-bottom: 40px;
}

.wizard-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: var(--emerald-mint);
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.wizard-header h2 {
    font-size: 2.25rem;
    margin-bottom: 10px;
}

.wizard-header p {
    color: var(--text-muted);
    font-weight: 300;
}

/* Step Progress Indicator */
.step-progress-bar {
    position: relative;
    max-width: 450px;
    margin: 30px auto 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--emerald-mint));
    border-radius: 2px;
    transition: width var(--transition-smooth);
}

.steps-indicators {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--space-light-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-fast);
    user-select: none;
}

.step-dot.active {
    background: var(--space-black);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.step-dot.completed {
    background: var(--emerald-mint);
    border-color: var(--emerald-mint);
    color: var(--space-black);
}

/* Wizard Steps Content */
.wizard-content {
    min-height: 320px;
    margin-bottom: 30px;
}

.wizard-step {
    display: none;
    animation: fadeInStep 0.4s ease-out;
}

.wizard-step.active {
    display: block;
}

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

.step-question {
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-instruction {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-weight: 300;
}

/* Wizard Options Cards */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.option-card {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 24px 24px 24px 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.option-card input[type="radio"], .option-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.option-check {
    position: absolute;
    top: 26px;
    left: 20px;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.option-card input[type="checkbox"] ~ .option-check {
    border-radius: 4px;
}

.option-card:hover input ~ .option-check {
    border-color: rgba(255, 255, 255, 0.4);
}

.option-card input:checked ~ .option-check {
    background-color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

.option-check::after {
    content: "";
    position: absolute;
    display: none;
}

.option-card input:checked ~ .option-check::after {
    display: block;
}

.option-card input[type="radio"] ~ .option-check::after {
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--space-black);
}

.option-card input[type="checkbox"] ~ .option-check::after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--space-black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.option-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}

.option-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

.option-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* Selected option visual enhancement */
.option-card:has(input:checked) {
    background: rgba(6, 182, 212, 0.03);
    border-color: var(--neon-cyan);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.05);
}

.option-card.checkbox-card {
    padding: 20px 20px 20px 50px;
}

/* Wizard Footer Navigation */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

.wizard-footer .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* WIZARD RESULT VIEW STYLE */
.wizard-result {
    animation: fadeInStep 0.6s ease-out;
}

.result-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.result-badge.bg-success { background-color: rgba(16, 185, 129, 0.15); color: var(--emerald-mint); border: 1px solid rgba(16, 185, 129, 0.3); }
.result-badge.bg-warning { background-color: rgba(245, 158, 11, 0.15); color: var(--color-warning); border: 1px solid rgba(245, 158, 11, 0.3); }
.result-badge.bg-danger { background-color: rgba(239, 68, 68, 0.15); color: var(--color-danger); border: 1px solid rgba(239, 68, 68, 0.3); }

.result-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.result-card-glow {
    background: rgba(3, 7, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 24px;
    margin-bottom: 30px;
}

.result-indicator-container {
    width: 100%;
}

.indicator-bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.indicator-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--emerald-mint), var(--color-warning), var(--color-danger));
    width: 0;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 5px;
}

.indicator-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
}

.result-explanation {
    margin-bottom: 30px;
}

.result-explanation h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.result-explanation p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 24px;
}

.action-plan {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.action-plan h5 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-plan ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-plan li {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.action-plan li i {
    color: var(--emerald-mint);
    margin-top: 4px;
    font-size: 0.8rem;
}

.result-cta-box {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    margin-top: 30px;
}

.result-cta-box p {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.result-cta-box .btn {
    width: 100%;
    max-width: 450px;
}

/* ==========================================================================
   8. SERVICES GRID SECTION
   ========================================================================== */
.services-section {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    padding: 40px 30px;
    border-color: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card.highlighted {
    border-color: rgba(6, 182, 212, 0.25);
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.05) 0%, transparent 60%), rgba(9, 17, 34, 0.5);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.06);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-cyan);
    color: var(--space-black);
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--neon-cyan);
    margin-bottom: 24px;
}

.service-card.highlighted .service-icon {
    color: var(--emerald-mint);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--emerald-mint);
    font-size: 0.8rem;
}

/* ==========================================================================
   9. TECH FOUNDATION SECTION (IT-SERVICES HYBRID)
   ========================================================================== */
.it-services-section {
    background: linear-gradient(180deg, rgba(9, 17, 34, 0.4) 0%, transparent 100%);
    position: relative;
}

.it-hybrid-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.it-hybrid-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.it-hybrid-content p {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 16px;
}

.accent-paragraph {
    color: var(--text-light) !important;
    font-weight: 400 !important;
    border-left: 2px solid var(--emerald-mint);
    padding-left: 16px;
    margin: 24px 0 !important;
}

.it-services-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.it-service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.it-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.it-service-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-white);
}

.it-service-item p {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Tech Grid Cards */
.tech-stack-card {
    padding: 40px;
    border-color: rgba(255, 255, 255, 0.04);
}

.tech-stack-card h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-cyan);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.tech-badge {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-badge i {
    color: var(--text-dark);
}

.audit-quote {
    background: rgba(16, 185, 129, 0.02);
    border-left: 2px solid var(--emerald-mint);
    padding: 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.audit-quote p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px !important;
}

.quote-author {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald-mint);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   10. TARGET GROUPS
   ========================================================================== */
.target-card {
    padding: 40px;
    border-color: rgba(255, 255, 255, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.target-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, transparent 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(6, 182, 212, 0.25);
    margin-bottom: 20px;
}

.target-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.target-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ==========================================================================
   11. FOUNDER BIO / TRUST BUILDING
   ========================================================================== */
.founder-section {
    position: relative;
    background: radial-gradient(circle at 10% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-image-container {
    display: flex;
    justify-content: center;
}

.founder-frame {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/5;
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.founder-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.1) 0%, rgba(3, 7, 18, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.founder-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.founder-title-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.founder-subtitle-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-content .subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--emerald-mint);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

.founder-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.founder-content p {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.founder-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.f-stat {
    display: flex;
    flex-direction: column;
}

.f-stat .num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--neon-cyan), var(--emerald-mint));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.f-stat .lbl {
    font-size: 0.75rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ==========================================================================
   12. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
    position: relative;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--neon-cyan);
    transition: transform var(--transition-fast);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth) ease-out;
}

.faq-panel p {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Active state */
.faq-item.active {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(9, 17, 34, 0.6);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--emerald-mint);
}

/* ==========================================================================
   13. BOOKING & CONTACT FORM SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-detail-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-detail-item strong a {
    color: var(--text-light);
}

.contact-detail-item strong a:hover {
    color: var(--neon-cyan);
}

/* Form Styling */
.contact-form-card {
    padding: 40px;
    border-color: rgba(255, 255, 255, 0.05);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    background: rgba(3, 7, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-dark);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
    background: rgba(3, 7, 18, 0.6);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2394a3b8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 18px top 50%;
    background-size: 10px auto;
    padding-right: 40px;
}

.form-group select option {
    background-color: var(--space-black);
    color: var(--text-white);
}

.btn-submit {
    width: 100%;
    border: none;
}

.form-feedback {
    margin-top: 14px;
    font-size: 0.85rem;
    text-align: center;
    display: none;
    animation: fadeInStep 0.3s;
}

.form-feedback.success {
    display: block;
    color: var(--emerald-mint);
}

.form-feedback.error {
    display: block;
    color: var(--color-danger);
}

/* ==========================================================================
   14. FOOTER & MODALS
   ========================================================================== */
footer {
    background: rgba(3, 7, 18, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-brand .logo-symbol {
    color: var(--neon-cyan);
}

.footer-brand .logo .highlight {
    color: var(--emerald-mint);
}

.footer-brand p {
    color: var(--text-muted);
    font-weight: 300;
    max-width: 400px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-links-grid h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-grid a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-links-grid a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--text-dark);
    font-size: 0.85rem;
}

.footer-legal-links a:hover {
    color: var(--text-white);
}

/* WKO-compliant Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-card {
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    padding: 40px;
    position: relative;
    overflow-y: auto;
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-body-content h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.modal-body-content hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.modal-body-content h3 {
    font-size: 1.15rem;
    margin: 20px 0 10px;
}

.modal-body-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 300;
}

.modal-body-content a {
    color: var(--neon-cyan);
}

/* ==========================================================================
   15. RESPONSIVE MEDIA QUERIES (MOBILE FIRST)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .it-hybrid-grid {
        grid-template-columns: 1fr;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .founder-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .founder-stats {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-header {
        height: 70px;
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 1100;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        z-index: 1050;
        padding: 100px 40px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .main-nav a {
        font-size: 1.15rem;
    }

    .main-nav .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .section-container {
        padding: 60px 0;
    }

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

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

    .wizard-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   ADDITIONAL STYLING FOR ALPHA IT BRANDING & IT SERVICES PROMINENCE
   ========================================================================== */

/* Logo Tagline/Badge */
.logo-badge {
    font-size: 0.65rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--emerald-mint) 100%);
    color: var(--space-black);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-left: 12px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

/* Classical IT Services Enhancement (+10% Prominence) */
.it-services-section {
    position: relative;
    border-top: 1px solid rgba(16, 185, 129, 0.05);
}

.it-services-section::before {
    content: "";
    position: absolute;
    top: 20%;
    right: 10%;
    width: 25vw;
    height: 25vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.it-service-item {
    padding: 15px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.005);
    border: 1px solid rgba(255, 255, 255, 0.01);
    transition: transform var(--transition-smooth), background-color var(--transition-smooth), border-color var(--transition-smooth);
}

.it-service-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(16, 185, 129, 0.12);
    transform: translateX(8px);
}

.it-service-item:hover .it-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--emerald-mint);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
}

.tech-stack-card {
    border-color: rgba(16, 185, 129, 0.15) !important;
    background: radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.03) 0%, transparent 60%), rgba(9, 17, 34, 0.6) !important;
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.02) !important;
}

.tech-badge {
    transition: var(--transition-fast);
}

.tech-badge:hover {
    border-color: var(--neon-cyan);
    background: rgba(6, 182, 212, 0.03);
    color: var(--text-white);
}

/* Secondary IT CTA Styling */
#itServicesCTA {
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.04);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

#itServicesCTA:hover {
    background: var(--emerald-mint);
    color: var(--space-black);
    border-color: var(--emerald-mint);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}
