/* ==========================================================================
   ADON Connect - Professional Garage Website
   Design Pattern: Dark Professional Theme with Premium Effects
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Enhanced
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Dark Theme */
    --color-bg-primary: #050508;
    --color-bg-secondary: #0a0a12;
    --color-bg-tertiary: #12121c;
    --color-bg-card: #0d0d14;
    --color-bg-card-hover: #151520;
    
    /* Accent Colors - More Vibrant */
    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-primary-dark: #4f46e5;
    --color-secondary: #22d3ee;
    --color-accent: #a855f7;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #b4b4c0;
    --color-text-muted: #6b6b7b;
    
    /* Gradients - Enhanced */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-text: linear-gradient(135deg, #818cf8 0%, #22d3ee 50%, #a855f7 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    --gradient-mesh: 
        radial-gradient(at 40% 20%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(34, 211, 238, 0.12) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(168, 85, 247, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(99, 102, 241, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(34, 211, 238, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(168, 85, 247, 0.08) 0px, transparent 50%);
    
    /* Borders */
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    --color-border-glow: rgba(99, 102, 241, 0.4);
    
    /* Shadows - Enhanced */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.4);
    --shadow-glow-lg: 0 0 100px rgba(99, 102, 241, 0.3);
    
    /* Typography - Larger Sizes */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.75rem;
    --font-size-5xl: 4rem;
    --font-size-6xl: 5rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Container */
    --container-max: 1400px;
    --container-padding: 2rem;
    
    /* Header */
    --header-height: 90px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Global Background Effect */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Selection */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

/* Section Background Decorations */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* --------------------------------------------------------------------------
   Typography - Enhanced
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glow Text Effect */
.text-glow {
    text-shadow: 
        0 0 20px rgba(99, 102, 241, 0.5),
        0 0 40px rgba(99, 102, 241, 0.3),
        0 0 60px rgba(99, 102, 241, 0.2);
}

/* --------------------------------------------------------------------------
   Buttons - Enhanced
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: var(--font-size-base);
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 
        var(--shadow-md),
        0 0 30px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        var(--shadow-lg),
        0 0 50px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

/* Pulsing Button Effect */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

.btn-outline {
    border: 1px solid var(--color-border-hover);
    color: var(--color-text-primary);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--color-text-secondary);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   Header - Enhanced
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Hero Section - Premium Enhanced
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Animated Gradient Orbs */
.hero-gradient {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient::before,
.hero-gradient::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-gradient::before {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.25);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-gradient::after {
    width: 500px;
    height: 500px;
    background: rgba(34, 211, 238, 0.2);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(0, 50px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.05); }
}

/* Additional floating orb */
.hero-bg::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

/* Enhanced Grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
    animation: gridPulse 10s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Floating Particles */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(99, 102, 241, 0.5) 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 70%, rgba(34, 211, 238, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 60% 40%, rgba(168, 85, 247, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 80% 80%, rgba(99, 102, 241, 0.3) 50%, transparent 50%),
        radial-gradient(3px 3px at 10% 60%, rgba(34, 211, 238, 0.5) 50%, transparent 50%),
        radial-gradient(2px 2px at 90% 20%, rgba(168, 85, 247, 0.4) 50%, transparent 50%);
    animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Enhanced Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--color-primary);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px var(--color-primary);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.3);
        box-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary);
    }
}

/* Enhanced Hero Title */
.hero-title {
    font-size: clamp(2.75rem, 6vw, var(--font-size-5xl));
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    max-width: 560px;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
}

/* Enhanced Stats */
.hero-stats {
    display: flex;
    gap: var(--space-3xl);
}

.stat {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: calc(-1 * var(--space-lg));
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-border-hover), transparent);
}

.stat:last-child::after {
    display: none;
}

.stat-value {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-card {
    position: relative;
    padding: var(--space-2xl);
}

/* Multiple Glow Layers */
.card-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.1), transparent, rgba(34, 211, 238, 0.1), transparent);
    border-radius: var(--radius-3xl);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image {
    max-width: 520px;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 60px rgba(99, 102, 241, 0.2));
    position: relative;
    z-index: 2;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

/* --------------------------------------------------------------------------
   Workshop Hero Section - Garage First Layout
   -------------------------------------------------------------------------- */
.workshop-hero.hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
}

.workshop-hero .container {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}

.workshop-hero-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.workshop-hero-header .hero-badge {
    margin-bottom: var(--space-lg);
}

.workshop-hero-header .hero-title {
    font-size: clamp(2.5rem, 5vw, var(--font-size-5xl));
    margin-bottom: var(--space-lg);
}

.workshop-hero-header .hero-subtitle {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    font-size: var(--font-size-lg);
}

.workshop-hero-header .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2xl);
}

.workshop-hero .services-grid {
    margin-top: var(--space-xl);
}

.workshop-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

/* Workshop Process Visual */
.workshop-visual {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.workshop-flow {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: nowrap;
    justify-content: center;
}

.workshop-flow .flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.workshop-flow .node-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-card) 100%);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-2xl);
    color: var(--color-primary-light);
    transition: all var(--transition-base);
    position: relative;
}

.workshop-flow .node-icon.diagnostic-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, var(--color-bg-card) 100%);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--color-primary-light);
}

.workshop-flow .node-icon.expert-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, var(--color-bg-card) 100%);
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--color-accent);
    animation: expertPulse 3s ease-in-out infinite;
}

@keyframes expertPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.2); }
    50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.4), 0 0 60px rgba(168, 85, 247, 0.2); }
}

.workshop-flow .node-icon.success-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, var(--color-bg-card) 100%);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--color-success);
}

.workshop-flow .flow-node:hover .node-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.workshop-flow .node-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    text-align: center;
    white-space: nowrap;
}

.workshop-flow .flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.workshop-flow .connector-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-border) 0%, rgba(99, 102, 241, 0.3) 50%, var(--color-border) 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.workshop-flow .connector-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-primary);
}

.data-pulse.delay-2 {
    animation-delay: 1s;
}

.workshop-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent);
}

.workshop-status .status-dot {
    background: var(--color-accent);
    animation: statusPulseAccent 2s infinite;
}

@keyframes statusPulseAccent {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(168, 85, 247, 0);
    }
}

/* Responsive for Workshop Visual */
@media (max-width: 768px) {
    .workshop-visual {
        padding: var(--space-xl);
    }
    
    .workshop-flow {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .workshop-flow .flow-connector {
        transform: rotate(90deg);
    }
    
    .workshop-flow .connector-line {
        width: 40px;
    }
    
    .workshop-flow .node-icon {
        width: 70px;
        height: 70px;
    }
    
    .workshop-flow .node-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .workshop-hero.hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }
    
    .workshop-hero-header .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xl);
    }
    
    .workshop-hero-header .hero-stats .stat::after {
        display: none;
    }
    
    .workshop-cta {
        flex-direction: column;
    }
    
    .workshop-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Section Styles - Enhanced
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, var(--font-size-4xl));
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.section-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Workshop Section - Enhanced
   -------------------------------------------------------------------------- */
.workshop {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    position: relative;
}

.workshop::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.8) 0%, rgba(13, 13, 20, 0.4) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(99, 102, 241, 0.1);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(34, 211, 238, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-card.featured::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    color: var(--color-primary-light);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.service-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.service-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.service-features {
    margin-top: var(--space-xl);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-border);
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* --------------------------------------------------------------------------
   Diagnostics Section - Enhanced
   -------------------------------------------------------------------------- */
.diagnostics {
    position: relative;
    overflow: hidden;
}

.diagnostics::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    transform: translateY(-50%);
    filter: blur(80px);
}

.diagnostics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5xl);
    align-items: center;
}

.process-steps {
    margin-bottom: var(--space-2xl);
}

.step {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.step:hover {
    padding-left: var(--space-md);
    border-color: rgba(99, 102, 241, 0.3);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 60px;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.step-content h4 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.step-content p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.diagnostics-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-3xl);
    overflow: hidden;
}

.card-decoration {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    filter: blur(60px);
    animation: decorationFloat 10s ease-in-out infinite;
}

@keyframes decorationFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

.visual-card img {
    position: relative;
    z-index: 1;
    max-width: 450px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Remote Diagnostics Process Visual */
.process-visual {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
}

.remote-flow {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.node-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-card) 100%);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-2xl);
    color: var(--color-primary-light);
    transition: all var(--transition-base);
    position: relative;
}

.node-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-2xl);
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.flow-node:hover .node-icon {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.flow-node:hover .node-icon::before {
    opacity: 0.3;
}

.node-icon.adon-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, var(--color-bg-card) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    animation: adonPulse 3s ease-in-out infinite;
}

@keyframes adonPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    }
    50% { 
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.4), 0 0 60px rgba(99, 102, 241, 0.2);
    }
}

.node-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    text-align: center;
    white-space: nowrap;
}

/* Connection Lines */
.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    position: relative;
}

.connector-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-border) 0%, rgba(99, 102, 241, 0.3) 50%, var(--color-border) 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.data-pulse {
    position: absolute;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
    animation: dataPulse 2s ease-in-out infinite;
    border-radius: 2px;
}

.data-pulse.delay-1 {
    animation-delay: 0.5s;
}

@keyframes dataPulse {
    0% { left: -30px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.connector-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-primary);
}

/* Connection Status */
.connection-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-success);
    position: relative;
    z-index: 1;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* Responsive for Process Visual */
@media (max-width: 768px) {
    .remote-flow {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .flow-connector {
        transform: rotate(90deg);
    }
    
    .connector-line {
        width: 50px;
    }
    
    .node-icon {
        width: 80px;
        height: 80px;
    }
    
    .node-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .process-visual {
        min-height: 500px;
    }
}

/* --------------------------------------------------------------------------
   ADON Tool Section - Enhanced
   -------------------------------------------------------------------------- */
.adon-tool {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    position: relative;
}

.adon-tool::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    transform: translateY(-50%);
    filter: blur(100px);
}

.tool-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5xl);
    align-items: center;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.6) 0%, rgba(13, 13, 20, 0.3) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(13, 13, 20, 0.4) 100%);
    transform: translateX(8px);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-primary-light);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
}

.feature-content h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.feature-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.tool-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: var(--space-3xl);
}

.image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.25) 0%, transparent 60%);
    filter: blur(80px);
    animation: imageGlow 4s ease-in-out infinite;
}

@keyframes imageGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.image-wrapper img {
    position: relative;
    z-index: 1;
    max-width: 380px;
    animation: toolFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

@keyframes toolFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
}

/* Rotating ring around tool image */
.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    animation: ringRotate 30s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Shop Section - Enhanced
   -------------------------------------------------------------------------- */
.shop {
    position: relative;
}

.shop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.9) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-3xl);
    padding: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(99, 102, 241, 0.1);
}

/* Animated border */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent, var(--color-secondary), transparent);
    border-radius: inherit;
    z-index: -1;
    animation: borderRotate 8s linear infinite;
    opacity: 0.5;
}

@keyframes borderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.95) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: calc(var(--radius-3xl) - 1px);
    z-index: -1;
}

.pricing-header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.pricing-tag {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.currency {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text-secondary);
    margin-top: var(--space-md);
}

.price {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.4));
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.4)); }
    50% { filter: drop-shadow(0 0 50px rgba(99, 102, 241, 0.6)); }
}

.pricing-note {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.pricing-features {
    margin-bottom: var(--space-2xl);
}

.pricing-features ul {
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.pricing-features li:hover {
    color: var(--color-text-primary);
    padding-left: var(--space-sm);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    color: var(--color-secondary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
}

/* --------------------------------------------------------------------------
   FAQ Section - Enhanced
   -------------------------------------------------------------------------- */
.faq {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary-light);
}

.faq-icon {
    color: var(--color-text-muted);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding-bottom: var(--space-xl);
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Contact Section - Enhanced
   -------------------------------------------------------------------------- */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    filter: blur(100px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5xl);
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.6) 0%, rgba(13, 13, 20, 0.3) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.contact-method:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(13, 13, 20, 0.4) 100%);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-primary-light);
    transition: all var(--transition-base);
}

.contact-method:hover .method-icon {
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

.method-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.method-value {
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.8) 0%, rgba(13, 13, 20, 0.4) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--space-xl);
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    background: rgba(5, 5, 8, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 
        0 0 0 3px rgba(99, 102, 241, 0.1),
        0 0 20px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b6b7b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-3xl);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* --------------------------------------------------------------------------
   CTA Section - Enhanced
   -------------------------------------------------------------------------- */
.cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(34, 211, 238, 0.08) 50%, rgba(168, 85, 247, 0.1) 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
}

.cta::before {
    background: rgba(99, 102, 241, 0.2);
    top: -100px;
    left: -100px;
}

.cta::after {
    background: rgba(34, 211, 238, 0.15);
    bottom: -100px;
    right: -100px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, var(--font-size-3xl));
    margin-bottom: var(--space-lg);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

/* --------------------------------------------------------------------------
   Footer - Enhanced
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--space-5xl) 0 var(--space-2xl);
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-5xl);
    margin-bottom: var(--space-4xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-xl);
}

.footer-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    max-width: 320px;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-column h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul li {
    margin-bottom: var(--space-md);
}

.footer-column a {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.footer-column a:hover {
    color: var(--color-primary-light);
    padding-left: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto var(--space-2xl);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image {
        max-width: 380px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        grid-row: auto;
    }
    
    .diagnostics-content,
    .tool-showcase,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .diagnostics-visual,
    .tool-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 75px;
        --container-padding: 1rem;
        --space-4xl: 4rem;
        --space-5xl: 5rem;
    }
    
    .section {
        padding: var(--space-4xl) 0;
    }
    
    /* Nav menu styles moved to consolidated mobile section below */
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .stat::after {
        display: none;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card {
        padding: var(--space-2xl);
    }
    
    .price {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: var(--space-xl);
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: var(--space-xl);
    }
}

/* --------------------------------------------------------------------------
   Custom Scrollbar
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* --------------------------------------------------------------------------
   Modal Styles
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-secondary) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-base);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(99, 102, 241, 0.1);
}

.modal.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
    background: rgba(99, 102, 241, 0.05);
}

.modal-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-content {
    padding: var(--space-2xl);
    overflow-y: auto;
    max-height: calc(85vh - 100px);
}

.modal-content .modal-date {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.modal-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.modal-content h4:first-of-type {
    margin-top: 0;
}

.modal-content p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.modal-content ul {
    margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
}

.modal-content ul li {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-lg);
}

.modal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.modal-content a {
    color: var(--color-primary-light);
    transition: color var(--transition-fast);
}

.modal-content a:hover {
    color: var(--color-secondary);
}

/* Modal scrollbar */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--color-bg-tertiary);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .modal {
        padding: var(--space-md);
    }
    
    .modal-container {
        max-height: 90vh;
    }
    
    .modal-header {
        padding: var(--space-lg);
    }
    
    .modal-header h3 {
        font-size: var(--font-size-xl);
    }
    
    .modal-content {
        padding: var(--space-lg);
        max-height: calc(90vh - 80px);
    }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   Large Tablets (max-width: 1200px)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--space-xl);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Tablets (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --font-size-5xl: 3rem;
        --font-size-6xl: 3.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-stats {
        gap: var(--space-xl);
    }
    
    .stat-number {
        font-size: var(--font-size-3xl);
    }
    
    .workshop-flow,
    .remote-flow {
        flex-direction: column !important;
        gap: var(--space-xl);
    }
    
    .flow-step,
    .flow-node {
        width: 100%;
        max-width: 300px;
    }
    
    .flow-arrow,
    .flow-connection {
        transform: rotate(90deg);
        margin: var(--space-md) 0;
    }
    
    .adon-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .adon-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* --------------------------------------------------------------------------
   Mobile Landscape / Small Tablets (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --font-size-4xl: 2rem;
        --font-size-5xl: 2.5rem;
        --space-4xl: 4rem;
        --space-5xl: 5rem;
    }
    
    /* Header Mobile */
    .header {
        padding: var(--space-sm) 0;
        z-index: 1000;
    }
    
    .nav {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #050508;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        z-index: 9999;
        display: none;
        overflow: hidden;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        list-style: none;
        text-align: center;
    }
    
    .nav-link {
        font-size: var(--font-size-2xl);
        padding: var(--space-md) var(--space-xl);
        display: block;
        color: #ffffff;
    }
    
    .nav-actions {
        position: relative;
        z-index: 10000;
    }
    
    .nav-actions .btn-outline {
        display: none;
    }
    
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 10000;
        position: relative;
    }
    
    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .logo-img {
        height: 35px;
        width: auto;
    }
    
    /* Hero Mobile */
    .hero {
        padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .stat-item {
        padding: var(--space-md);
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    /* Sections Mobile */
    .section {
        padding: var(--space-3xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-sm);
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-title {
        font-size: var(--font-size-lg);
    }
    
    /* Workshop Visual Mobile */
    .workshop-visual {
        padding: var(--space-xl);
    }
    
    .workshop-visual-title {
        font-size: var(--font-size-lg);
    }
    
    .flow-step {
        padding: var(--space-lg);
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-title {
        font-size: var(--font-size-base);
    }
    
    /* Remote Diagnostics Visual Mobile */
    .remote-visual {
        padding: var(--space-xl);
    }
    
    .flow-node {
        padding: var(--space-lg);
    }
    
    .node-icon {
        width: 50px;
        height: 50px;
    }
    
    .node-title {
        font-size: var(--font-size-base);
    }
    
    /* ADON Tool Mobile */
    .adon-features {
        grid-template-columns: 1fr;
    }
    
    .adon-highlight {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .product-showcase {
        padding: var(--space-xl);
    }
    
    .product-price {
        font-size: var(--font-size-3xl);
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: var(--space-lg);
        font-size: var(--font-size-base);
    }
    
    .faq-answer {
        padding: 0 var(--space-lg) var(--space-lg);
    }
    
    /* Contact Mobile */
    .contact-form {
        padding: var(--space-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Mobile Portrait (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    :root {
        --font-size-3xl: 1.5rem;
        --font-size-4xl: 1.75rem;
        --space-3xl: 3rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: var(--font-size-xs);
        padding: var(--space-xs) var(--space-sm);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-xs);
    }
    
    .service-card {
        padding: var(--space-lg);
    }
    
    .step-number,
    .node-number {
        width: 24px;
        height: 24px;
        font-size: var(--font-size-xs);
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-price {
        font-size: var(--font-size-2xl);
    }
    
    .modal-container {
        border-radius: var(--radius-lg);
    }
    
    .modal-header h3 {
        font-size: var(--font-size-lg);
    }
}

/* --------------------------------------------------------------------------
   Very Small Screens (max-width: 360px)
   -------------------------------------------------------------------------- */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--font-size-sm);
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
}

/* --------------------------------------------------------------------------
   Height-based Media Queries
   -------------------------------------------------------------------------- */
@media (max-height: 700px) {
    .hero {
        min-height: auto;
        padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    }
}

/* --------------------------------------------------------------------------
   Reduced Motion Preference
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cursor-glow,
    .data-pulse {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .header,
    .hero-stats,
    .cursor-glow,
    .modal,
    .btn,
    footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
