/* JEXIO.INK - Einzigartiges Design System 2024-2025 */
/* Technologie-Innovation aus Deutschland */

/* ====================================
   CUSTOM FONTS - Outfit & Fira Code
   ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Fira+Code:wght@400;500;600;700&display=swap');

/* ====================================
   CSS VARIABLES - UNIQUE FIRE & SPACE THEME
   ==================================== */
:root {
    /* Unique Fire & Space Gradient Colors */
    --color-primary: #FF6B00;        /* Brennendes Orange */
    --color-secondary: #0A1F44;      /* Tiefes Weltraum-Blau */
    --color-accent: #FFD700;         /* Goldener Akzent */
    --color-fire: #FF4500;           /* Feuer-Rot */
    --color-cosmic: #1E3A8A;         /* Kosmisches Blau */
    --color-glow: #FFA500;           /* Glühendes Orange */
    
    /* Backgrounds */
    --color-bg-primary: #030712;
    --color-bg-secondary: #0F1419;
    --color-bg-tertiary: #1A1F2E;
    --color-bg-card: rgba(26, 31, 46, 0.7);
    --color-bg-card-hover: rgba(26, 31, 46, 0.95);
    
    /* Text Colors */
    --color-text-primary: #F9FAFB;
    --color-text-secondary: #D1D5DB;
    --color-text-muted: #9CA3AF;
    
    /* Borders */
    --color-border: rgba(255, 107, 0, 0.15);
    --color-border-hover: rgba(255, 107, 0, 0.4);
    
    /* Unique Fire Gradients */
    --gradient-fire: linear-gradient(135deg, #FF6B00 0%, #FF4500 50%, #FFD700 100%);
    --gradient-cosmic: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #3B82F6 100%);
    --gradient-sunset: linear-gradient(135deg, #FF6B00 0%, #0A1F44 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-bg: radial-gradient(circle at 15% 20%, rgba(255, 107, 0, 0.12) 0%, transparent 50%),
                    radial-gradient(circle at 85% 70%, rgba(10, 31, 68, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Fira Code', 'Courier New', monospace;
    
    /* Spacing */
    --container-max-width: 1320px;
    --container-padding: 2rem;
    --section-padding: 10rem 0;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(255, 107, 0, 0.15);
    --shadow-md: 0 6px 30px rgba(255, 107, 0, 0.25);
    --shadow-lg: 0 12px 50px rgba(255, 107, 0, 0.35);
    --shadow-glow: 0 0 60px rgba(255, 107, 0, 0.4), 0 0 100px rgba(255, 215, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    background-image: var(--gradient-bg);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--color-primary);
    color: #000;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 4rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

p {
    margin-bottom: 1.25rem;
}

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

a:hover {
    color: var(--color-accent);
}

/* ====================================
   CONTAINER & LAYOUT
   ==================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--section-padding);
    position: relative;
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-border-hover);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem var(--container-padding);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-fast);
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.3));
}

.logo:hover .logo-img {
    filter: drop-shadow(var(--shadow-glow));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.75rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 10px;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 10px;
    transition: var(--transition-base);
}

.nav-cta {
    margin-left: 1.5rem;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-fire);
    color: #000;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.375rem 3rem;
    font-size: 1.125rem;
}

.btn-icon {
    transition: var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    min-height: 110vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 35%, rgba(255, 107, 0, 0.25) 0%, transparent 60%),
                radial-gradient(circle at 75% 65%, rgba(10, 31, 68, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 107, 0, 0.15);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 1.5rem;
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 10px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 700px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 2rem;
    background: var(--color-bg-card);
    backdrop-filter: blur(30px);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    animation: floatCard 5s ease-in-out infinite;
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}

.card-1 {
    top: 8%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 35%;
    left: -8%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 8%;
    right: 10%;
    animation-delay: 3s;
}

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

/* ====================================
   SECTION HEADERS
   ==================================== */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.section-title {
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services {
    background: rgba(15, 20, 25, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-card {
    position: relative;
    padding: 3rem;
    background: var(--color-bg-card);
    backdrop-filter: blur(30px);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-fire);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-lg);
    background: var(--color-bg-card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    background: var(--color-bg-card-hover);
}

.service-card.featured::before {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.125rem;
    background: var(--gradient-gold);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.3));
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.service-description {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--color-text-secondary);
    position: relative;
    font-weight: 500;
}

.service-features li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 1.25rem;
    color: var(--color-accent);
}

/* ====================================
   TECHNOLOGY STACK
   ==================================== */
.tech-stack {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.03) 50%, transparent 100%);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.tech-category {
    padding: 2.5rem;
    background: var(--color-bg-card);
    backdrop-filter: blur(30px);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.tech-category:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tech-category-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    font-weight: 800;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-item {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 107, 0, 0.08);
    border: 2px solid rgba(255, 107, 0, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-mono);
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    font-weight: 600;
}

.tech-item:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: scale(1.05);
}

/* ====================================
   PROCESS SECTION
   ==================================== */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: start;
}

.step-number {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 4px solid var(--color-border);
    border-radius: 50%;
    position: relative;
    background-color: var(--color-bg-secondary);
    font-family: var(--font-mono);
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: var(--transition-base);
}

.process-step:hover .step-number::after {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0.6;
}

.step-content {
    padding: 2rem 0;
}

.step-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.step-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ====================================
   WHY US SECTION
   ==================================== */
.why-us {
    background: rgba(15, 20, 25, 0.5);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-fire);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.benefit-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.why-us-visual {
    position: relative;
    height: 600px;
}

.why-us-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stats-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 2.5rem;
    background: var(--color-bg-card);
    backdrop-filter: blur(30px);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-around;
    gap: 2.5rem;
}

.stats-card-item {
    text-align: center;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-family: var(--font-mono);
}

.stats-label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ====================================
   UNIQUE MULTI-STEP CONTACT FORM
   ==================================== */
.contact-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.05) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 1.75rem;
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.contact-method:hover {
    border-color: var(--color-border-hover);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}

.contact-method-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.contact-method-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.contact-hours {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255, 107, 0, 0.08);
    border: 2px solid rgba(255, 107, 0, 0.25);
    border-radius: var(--radius-md);
}

.contact-hours h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-hours p {
    color: var(--color-text-secondary);
    line-height: 1.9;
}

/* UNIQUE MULTI-STEP FORM */
.contact-form-wrapper {
    padding: 4rem;
    background: var(--color-bg-card);
    backdrop-filter: blur(30px);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 107, 0, 0.2);
    z-index: 0;
}

.form-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    border: 3px solid rgba(255, 107, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.step-circle.active {
    background: var(--gradient-fire);
    border-color: var(--color-primary);
    color: #000;
    transform: scale(1.2);
}

.step-circle.completed {
    background: var(--gradient-gold);
    border-color: var(--color-accent);
    color: #000;
}

.step-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-align: center;
}

.step-circle.active ~ .step-label {
    color: var(--color-primary);
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-step {
    display: none;
    animation: fadeSlideIn 0.4s ease-out;
}

.form-step.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
}

.form-input,
.form-select,
.form-textarea {
    padding: 1.125rem 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: var(--transition-base);
    font-weight: 500;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
}

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 1rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-prev,
.btn-next,
.btn-submit {
    flex: 1;
}

.btn-prev {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text-secondary);
}

.btn-prev:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--color-bg-secondary);
    border-top: 2px solid var(--color-border);
    padding: 5rem 0 2.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.3));
}

.footer-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 400px;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.08);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.social-link:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    font-weight: 800;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 2px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-weight: 600;
}

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

.separator {
    color: var(--color-text-muted);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --section-padding: 5rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(30px);
        padding: 2.5rem;
        gap: 2rem;
        border-bottom: 2px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 100px 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    
    .form-step.active {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ====================================
   ANIMATIONS & UTILITIES
   ==================================== */
.fade-in {
    animation: fadeIn 0.7s ease-out;
}

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

.success-message {
    padding: 1.5rem 2rem;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: none;
    font-weight: 700;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.loading {
    pointer-events: none;
    opacity: 0.5;
}

[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-scroll].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing text effect */
.glow-text {
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5),
                 0 0 40px rgba(255, 107, 0, 0.3);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-fire);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold);
}

