/* ZELT Design System - Black & Red Theme with Holographic Effects */
/* Color Palette: Black (#000000) + Dark Red (#8B0000) + Crimson (#DC143C) */

/* ==========================================================================
   Normalize & Base Styles
   ========================================================================== */

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, textarea, select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

address {
    font-style: normal;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.zelt-container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--zelt-space-md);
}

@media (min-width: 768px) {
    .zelt-container {
        padding-inline: var(--zelt-space-lg);
    }
}

.zelt-section {
    padding-block: var(--zelt-space-xl);
}

@media (min-width: 1024px) {
    .zelt-section {
        padding-block: calc(var(--zelt-space-xl) * 1.5);
    }
}

/* ==========================================================================
   Typography
   ========================================================================== */

.zelt-display {
    font-family: var(--zelt-font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--zelt-text);
    margin-bottom: var(--zelt-space-md);
}

.zelt-heading {
    font-family: var(--zelt-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--zelt-text);
    margin-bottom: var(--zelt-space-sm);
}

.zelt-section-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--zelt-text-light);
    max-width: 65ch;
    margin-inline: auto;
}

.zelt-text-gradient {
    background: linear-gradient(135deg, var(--zelt-text) 0%, var(--zelt-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.zelt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--zelt-space-xs);
    padding: var(--zelt-space-sm) var(--zelt-space-lg);
    font-family: var(--zelt-font-body);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--zelt-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.zelt-btn-primary {
    background: linear-gradient(135deg, var(--zelt-accent) 0%, var(--zelt-secondary) 100%);
    color: var(--zelt-text);
}

.zelt-btn-primary:hover,
.zelt-btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
}

.zelt-btn-glow {
    position: relative;
    overflow: hidden;
}

.zelt-btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.zelt-btn-glow:hover::before {
    left: 100%;
}

.zelt-btn-secondary {
    background: transparent;
    color: var(--zelt-text);
    border-color: var(--zelt-text);
}

.zelt-btn-secondary:hover,
.zelt-btn-secondary:focus-visible {
    background: var(--zelt-text);
    color: var(--zelt-primary);
    transform: translateY(-2px);
}

.zelt-btn-border-glow {
    position: relative;
}

.zelt-btn-border-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--zelt-radius-md);
    padding: 2px;
    background: linear-gradient(45deg, var(--zelt-accent), var(--zelt-secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.zelt-btn-border-glow:hover::before {
    opacity: 1;
}

/* ==========================================================================
   Header
   ========================================================================== */

.zelt-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--zelt-surface);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--zelt-border);
    transition: all 0.3s ease;
}

.zelt-header-scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.2);
}

.zelt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--zelt-space-md);
    padding-block: var(--zelt-space-md);
}

.zelt-logo {
    display: flex;
    align-items: center;
    gap: var(--zelt-space-sm);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--zelt-text);
    transition: opacity 0.3s;
}

.zelt-logo:hover {
    opacity: 0.8;
}

.zelt-logo svg {
    flex-shrink: 0;
}

.zelt-nav {
    position: relative;
}

.zelt-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--zelt-space-md);
    list-style: none;
}

.zelt-nav a {
    position: relative;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    color: var(--zelt-text-light);
    transition: color 0.3s;
}

.zelt-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--zelt-accent), var(--zelt-secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.zelt-nav a:hover,
.zelt-nav a:focus-visible {
    color: var(--zelt-accent);
}

.zelt-nav a:hover::after,
.zelt-nav a:focus-visible::after {
    transform: scaleX(1);
}

/* Mobile Menu Toggle Button */
.zelt-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.zelt-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
}

.zelt-menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--zelt-text);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zelt-menu-toggle[aria-expanded="true"] .zelt-menu-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.zelt-menu-toggle[aria-expanded="true"] .zelt-menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.zelt-menu-toggle[aria-expanded="true"] .zelt-menu-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Navigation Styles */
@media (max-width: 767px) {
    .zelt-menu-toggle {
        display: flex;
    }
    
    .zelt-nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-right: 1px solid var(--zelt-border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px var(--zelt-space-lg) var(--zelt-space-lg);
        gap: 0;
        z-index: 1000;
        transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 4px 0 24px rgba(220, 20, 60, 0.2);
    }
    
    .zelt-nav-open ul {
        left: 0;
    }
    
    .zelt-nav ul::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--zelt-accent), var(--zelt-secondary));
    }
    
    .zelt-nav li {
        width: 100%;
    }
    
    .zelt-nav a {
        display: block;
        width: 100%;
        padding: var(--zelt-space-md);
        font-size: 1rem;
        border-radius: var(--zelt-radius-md);
        transition: all 0.3s ease;
    }
    
    .zelt-nav a::after {
        display: none;
    }
    
    .zelt-nav a:hover,
    .zelt-nav a:focus-visible {
        background: rgba(220, 20, 60, 0.1);
        color: var(--zelt-accent);
        transform: translateX(8px);
        padding-left: calc(var(--zelt-space-md) + 8px);
    }
    
    /* Overlay when menu is open */
    .zelt-nav-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================================================
   Hero Section - Holographic & Animated
   ========================================================================== */

.zelt-hero {
    background: var(--zelt-primary);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.zelt-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Holographic effect overlay */
.zelt-hologram-effect {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(220, 20, 60, 0.08) 100%);
    animation: hologramShift 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.zelt-hologram-effect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes hologramShift {
    0% { opacity: 0.4; transform: translate(0, 0) scale(1); }
    33% { opacity: 0.7; transform: translate(20px, -15px) scale(1.05); }
    66% { opacity: 0.6; transform: translate(-15px, 20px) scale(0.95); }
    100% { opacity: 0.4; transform: translate(0, 0) scale(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Animated particles */
.zelt-particles {
    position: absolute;
    inset: 0;
}

.zelt-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--zelt-accent);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.zelt-particle:nth-child(1) { left: 10%; top: 20%; }
.zelt-particle:nth-child(2) { left: 30%; top: 10%; }
.zelt-particle:nth-child(3) { left: 50%; top: 30%; }
.zelt-particle:nth-child(4) { left: 70%; top: 15%; }
.zelt-particle:nth-child(5) { left: 85%; top: 40%; }
.zelt-particle:nth-child(6) { left: 15%; top: 60%; }
.zelt-particle:nth-child(7) { left: 60%; top: 70%; }
.zelt-particle:nth-child(8) { left: 90%; top: 80%; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0) scale(1) rotate(0deg); opacity: 0.2; }
    25% { transform: translateY(-30px) translateX(15px) scale(1.3) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-60px) translateX(-10px) scale(1.5) rotate(180deg); opacity: 1; }
    75% { transform: translateY(-40px) translateX(5px) scale(1.2) rotate(270deg); opacity: 0.6; }
}

.zelt-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--zelt-space-xl);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .zelt-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }
}

/* Hero content */
.zelt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--zelt-space-xs);
    padding: var(--zelt-space-xs) var(--zelt-space-md);
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    margin-bottom: var(--zelt-space-md);
    position: relative;
    overflow: hidden;
}

.zelt-badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.6), transparent);
    animation: glowSweep 3s ease-in-out infinite;
}

.zelt-hero-badge::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.3), transparent, rgba(139, 0, 0, 0.3));
    border-radius: 50px;
    animation: rotateGradient 4s linear infinite;
    z-index: -1;
}

@keyframes glowSweep {
    0% { transform: translateX(-100%) skewX(-10deg); opacity: 0; }
    50% { transform: translateX(0%) skewX(0deg); opacity: 1; }
    100% { transform: translateX(100%) skewX(10deg); opacity: 0; }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.5; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.3; }
}

.zelt-hero-badge span:not(.zelt-badge-glow) {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--zelt-accent);
}

.zelt-hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zelt-hero-title span {
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    animation: fadeInUpRotate 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.zelt-hero-title span:nth-child(1) { animation-delay: 0.1s; }
.zelt-hero-title span:nth-child(2) { animation-delay: 0.4s; }
.zelt-hero-title span:nth-child(3) { animation-delay: 0.7s; }

@keyframes fadeInUpRotate {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) rotateX(-5deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.zelt-hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--zelt-text-light);
    margin-bottom: var(--zelt-space-lg);
}

.zelt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--zelt-space-md);
}

/* Hero visual section */
.zelt-hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .zelt-hero-visual {
        min-height: 400px;
    }
}

/* Holographic card */
.zelt-holographic-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: var(--zelt-radius-lg);
    padding: var(--zelt-space-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(0.5deg); }
    66% { transform: translateY(-5px) rotate(-0.5deg); }
}

.zelt-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.6), rgba(139, 0, 0, 0.6));
    border-radius: var(--zelt-radius-lg);
    opacity: 0.4;
    transition: opacity 0.3s;
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite, gradientShift 5s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes gradientShift {
    0% { background: linear-gradient(135deg, rgba(220, 20, 60, 0.6), rgba(139, 0, 0, 0.6)); }
    50% { background: linear-gradient(225deg, rgba(220, 20, 60, 0.8), rgba(139, 0, 0, 0.4)); }
    100% { background: linear-gradient(135deg, rgba(220, 20, 60, 0.6), rgba(139, 0, 0, 0.6)); }
}

.zelt-card-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.zelt-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--zelt-space-lg);
    position: relative;
    z-index: 1;
}

.zelt-stat {
    text-align: center;
    position: relative;
}

.zelt-stat-icon {
    font-size: 2rem;
    margin-bottom: var(--zelt-space-xs);
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.zelt-stat:nth-child(1) .zelt-stat-icon {
    animation-delay: 0s;
}

.zelt-stat:nth-child(2) .zelt-stat-icon {
    animation-delay: 0.5s;
}

.zelt-stat:nth-child(3) .zelt-stat-icon {
    animation-delay: 1s;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-10px) rotate(5deg) scale(1.1); }
}

.zelt-stat-number {
    font-family: var(--zelt-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--zelt-accent), var(--zelt-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--zelt-space-xs);
}

.zelt-stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--zelt-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.zelt-services {
    background: var(--zelt-primary);
}

.zelt-section-header {
    text-align: center;
    margin-bottom: var(--zelt-space-xl);
}

.zelt-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--zelt-space-xl);
}

@media (min-width: 768px) {
    .zelt-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Expanded Service Cards */
.zelt-service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(220, 20, 60, 0.02) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: var(--zelt-radius-lg);
    padding: var(--zelt-space-xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.zelt-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zelt-accent), var(--zelt-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.zelt-service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(220, 20, 60, 0.3);
    border-color: var(--zelt-accent);
}

.zelt-service-card:hover::before {
    transform: scaleX(1);
}

.zelt-service-header {
    display: flex;
    align-items: flex-start;
    gap: var(--zelt-space-lg);
    margin-bottom: var(--zelt-space-lg);
}

.zelt-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: var(--zelt-radius-md);
    color: var(--zelt-accent);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.zelt-service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--zelt-accent), var(--zelt-secondary));
    border-radius: var(--zelt-radius-md);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    filter: blur(10px);
}

.zelt-service-card:hover .zelt-service-icon {
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--zelt-accent);
    background: linear-gradient(135deg, var(--zelt-accent) 0%, var(--zelt-secondary) 100%);
    color: var(--zelt-text);
}

.zelt-service-card:hover .zelt-service-icon::before {
    opacity: 0.5;
}

.zelt-service-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.zelt-service-title-group {
    flex: 1;
}

.zelt-service-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--zelt-text);
    margin-bottom: var(--zelt-space-xs);
    line-height: 1.3;
}

.zelt-service-title span {
    display: block;
    background: linear-gradient(135deg, var(--zelt-text) 0%, var(--zelt-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zelt-service-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.8;
    color: var(--zelt-text-light);
    margin-bottom: var(--zelt-space-lg);
}

.zelt-service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-sm);
    margin-top: auto;
}

.zelt-service-feature {
    display: flex;
    align-items: center;
    gap: var(--zelt-space-sm);
    font-size: 0.9375rem;
    color: var(--zelt-text-light);
    position: relative;
    padding-left: var(--zelt-space-lg);
}

.zelt-service-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(220, 20, 60, 0.2);
    color: var(--zelt-accent);
    border: 1px solid var(--zelt-accent);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.zelt-service-card:hover .zelt-service-feature::before {
    background: var(--zelt-accent);
    color: var(--zelt-text);
    transform: scale(1.1);
}

/* ==========================================================================
   Approach / Process Section
   ========================================================================== */

.zelt-approach {
    background: var(--zelt-surface);
}

.zelt-process {
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-lg);
    max-width: 900px;
    margin-inline: auto;
}

.zelt-process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--zelt-space-lg);
    align-items: start;
    padding: var(--zelt-space-lg);
    border-left: 4px solid rgba(220, 20, 60, 0.2);
    transition: all 0.3s ease;
}

.zelt-process-step:hover {
    border-left-color: var(--zelt-accent);
    background: linear-gradient(90deg, rgba(220, 20, 60, 0.05) 0%, transparent 100%);
    transform: translateX(8px);
}

.zelt-process-step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.zelt-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: var(--zelt-radius-md);
    color: var(--zelt-accent);
    transition: all 0.4s ease;
    position: relative;
}

.zelt-process-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--zelt-accent), var(--zelt-secondary));
    border-radius: var(--zelt-radius-md);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    filter: blur(10px);
}

.zelt-process-step:hover .zelt-process-icon {
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--zelt-accent);
    background: linear-gradient(135deg, var(--zelt-accent) 0%, var(--zelt-secondary) 100%);
    color: var(--zelt-text);
}

.zelt-process-step:hover .zelt-process-icon::before {
    opacity: 0.5;
}

.zelt-process-icon svg {
    width: 40px;
    height: 40px;
}

.zelt-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--zelt-accent) 0%, var(--zelt-secondary) 100%);
    border-radius: 50%;
    font-family: var(--zelt-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zelt-text);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.3);
    transition: all 0.4s ease;
}

.zelt-process-step:hover .zelt-process-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.4);
}

.zelt-process-content {
    flex: 1;
}

.zelt-process-title {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 700;
    color: var(--zelt-text);
    margin-bottom: var(--zelt-space-sm);
}

.zelt-process-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.8;
    color: var(--zelt-text-light);
    margin-bottom: var(--zelt-space-md);
}

.zelt-process-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-sm);
    margin-top: auto;
}

.zelt-process-features li {
    display: flex;
    align-items: center;
    gap: var(--zelt-space-sm);
    font-size: 0.9375rem;
    color: var(--zelt-text-light);
    position: relative;
    padding-left: var(--zelt-space-lg);
    transition: color 0.3s ease;
}

.zelt-process-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(220, 20, 60, 0.2);
    color: var(--zelt-accent);
    border: 1px solid var(--zelt-accent);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.zelt-process-step:hover .zelt-process-features li {
    color: var(--zelt-text);
}

.zelt-process-step:hover .zelt-process-features li::before {
    background: var(--zelt-accent);
    color: var(--zelt-text);
    transform: scale(1.1);
}

/* ==========================================================================
   Case Study Section
   ========================================================================== */

.zelt-case-study {
    background: var(--zelt-primary);
}

.zelt-case-study-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--zelt-space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .zelt-case-study-content {
        grid-template-columns: 1fr 1.1fr;
    }
}

.zelt-badge {
    display: inline-block;
    padding: var(--zelt-space-xs) var(--zelt-space-md);
    background: linear-gradient(135deg, var(--zelt-accent) 0%, var(--zelt-secondary) 100%);
    border-radius: var(--zelt-radius-sm);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 600;
    color: var(--zelt-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--zelt-space-md);
}

.zelt-case-study-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: var(--zelt-text-light);
    margin-bottom: var(--zelt-space-lg);
}

.zelt-case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--zelt-space-md);
}

.zelt-metric {
    text-align: center;
    position: relative;
    padding: var(--zelt-space-md);
    border-radius: var(--zelt-radius-md);
    transition: all 0.3s ease;
}

.zelt-metric:hover {
    background: rgba(220, 20, 60, 0.05);
    transform: translateY(-4px);
}

.zelt-metric-value {
    font-family: var(--zelt-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--zelt-accent);
    margin-bottom: var(--zelt-space-xs);
    position: relative;
    display: inline-block;
}

.zelt-metric-value::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--zelt-accent), var(--zelt-secondary));
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 50px;
        opacity: 1;
    }
}

.zelt-metric-label {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--zelt-text-light);
    line-height: 1.4;
}

.zelt-placeholder-image {
    background: var(--zelt-surface);
    border-radius: var(--zelt-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
}

.zelt-placeholder-image svg {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.zelt-hover-glow {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.zelt-hover-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(139, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: var(--zelt-radius-lg);
}

.zelt-hover-glow:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 72px rgba(220, 20, 60, 0.35);
}

.zelt-hover-glow:hover::before {
    opacity: 1;
}

.zelt-hover-glow:hover svg {
    transform: scale(1.05);
}

/* Fade-in and slide-up animation */
.zelt-animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zelt-animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for visual element */
.zelt-case-study-visual.zelt-animate-on-scroll {
    transition-delay: 0.2s;
}

/* Animated Dashboard */
.zelt-animated-dashboard {
    width: 100%;
    height: 400px;
    background: #e8e5e0;
    border-radius: var(--zelt-radius-lg);
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-top-bar {
    height: 40px;
    background: #1a1a1d;
    border-radius: 8px;
    position: relative;
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.dashboard-top-bar::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 12px;
    background: #c9a87f;
    border-radius: 4px;
}

.dashboard-header {
    height: 30px;
    background: #c9a87f;
    border-radius: 8px;
    animation: slideInLeft 0.6s ease-out 0.4s both;
}

.dashboard-content {
    flex: 1;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 15px;
}

.dashboard-sidebar {
    background: #c9a87f;
    opacity: 0.3;
    border-radius: 8px;
    animation: slideInRight 0.6s ease-out 0.6s both;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-card {
    flex: 1;
    border-radius: 8px;
}

.dashboard-card-1 {
    background: rgba(220, 20, 60, 0.3);
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.dashboard-card-2 {
    background: #c9a87f;
    opacity: 0.3;
    animation: fadeInUp 0.6s ease-out 1s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Holographic Glow Animation Override */
.zelt-hover-glow:hover .zelt-animated-dashboard {
    border-color: var(--zelt-accent);
    box-shadow: 0 0 50px rgba(220, 20, 60, 0.6);
}

.zelt-animated-dashboard {
    border: 2px solid rgba(220, 20, 60, 0.3);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
}

.zelt-animated-dashboard::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.3), rgba(139, 0, 0, 0.3));
    border-radius: var(--zelt-radius-lg);
    opacity: 0.5;
    animation: hologramPulse 3s ease-in-out infinite;
    z-index: -1;
    filter: blur(20px);
}

.zelt-animated-dashboard::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes hologramPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* Dashboard Logo */
.dashboard-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: logoAppear 1.2s ease-out 0.3s forwards;
    z-index: 1;
}

.dashboard-logo svg {
    filter: drop-shadow(0 0 30px rgba(220, 20, 60, 0.8));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   Industries Section
   ========================================================================== */

.zelt-industries {
    background: var(--zelt-surface);
}

.zelt-industries-list {
    display: flex; 
    flex-wrap: wrap; 
    gap: var(--zelt-space-sm);
    justify-content: center;
    max-width: 900px;
    margin-inline: auto;
}

.zelt-industry-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--zelt-space-xs);
    padding: var(--zelt-space-sm) var(--zelt-space-lg);
    background: var(--zelt-primary);
    border: 1px solid var(--zelt-border);
    border-radius: 50px;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    color: var(--zelt-text);
    transition: all 0.3s ease;
}

.zelt-industry-tag svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.zelt-industry-tag:hover {
    background: var(--zelt-accent);
    color: var(--zelt-text);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.3);
}

.zelt-industry-tag:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.zelt-testimonials {
    background: var(--zelt-primary);
}

.zelt-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--zelt-space-lg);
}

@media (min-width: 768px) {
    .zelt-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .zelt-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zelt-testimonial-card {
    background: var(--zelt-surface);
    border: 1px solid var(--zelt-border);
    border-radius: var(--zelt-radius-lg);
    padding: var(--zelt-space-lg);
    transition: all 0.3s ease;
}

.zelt-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(220, 20, 60, 0.2);
}

.zelt-testimonial-stars {
    color: var(--zelt-accent);
    font-size: 1.125rem;
    margin-bottom: var(--zelt-space-md);
}

.zelt-testimonial-quote {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: var(--zelt-text-light);
    margin-bottom: var(--zelt-space-md);
}

.zelt-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-xs);
}

.zelt-testimonial-name {
    font-weight: 600;
    color: var(--zelt-text);
}

.zelt-testimonial-role {
    font-size: 0.875rem;
    color: var(--zelt-text-light);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.zelt-contact {
    background: var(--zelt-surface);
}

.zelt-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--zelt-space-xl);
}

@media (min-width: 1024px) {
    .zelt-contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.zelt-contact-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--zelt-text-light);
    margin-bottom: var(--zelt-space-lg);
}

.zelt-contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-md);
}

.zelt-contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-xs);
}

.zelt-contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--zelt-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.zelt-contact-value {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--zelt-text);
    transition: color 0.3s;
}

.zelt-contact-value:hover {
    color: var(--zelt-accent);
}

.zelt-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-md);
}

.zelt-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-xs);
}

.zelt-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--zelt-text);
}

.zelt-form-input,
.zelt-form-textarea {
    width: 100%;
    padding: var(--zelt-space-sm);
    background: var(--zelt-primary);
    border: 1px solid var(--zelt-border);
    border-radius: var(--zelt-radius-md);
    font-family: var(--zelt-font-body);
    font-size: 1rem;
    color: var(--zelt-text);
    transition: all 0.3s ease;
}

.zelt-form-input:focus,
.zelt-form-textarea:focus {
    outline: none;
    border-color: var(--zelt-accent);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.2);
}

.zelt-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.zelt-cta {
    background: linear-gradient(135deg, var(--zelt-primary) 0%, var(--zelt-secondary) 100%);
    color: var(--zelt-text);
    position: relative;
    overflow: hidden;
}

.zelt-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.zelt-cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.zelt-cta-title {
    font-family: var(--zelt-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--zelt-text);
    margin-bottom: var(--zelt-space-md);
}

.zelt-cta-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: var(--zelt-space-lg);
    max-width: 65ch;
    margin-inline: auto;
}

.zelt-cta .zelt-btn-primary {
    background: var(--zelt-text);
    color: var(--zelt-primary);
}

.zelt-cta .zelt-btn-primary:hover,
.zelt-cta .zelt-btn-primary:focus-visible {
    background: var(--zelt-accent);
    color: var(--zelt-text);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.zelt-footer {
    background: var(--zelt-primary);
    border-top: 1px solid var(--zelt-border);
    padding-block: var(--zelt-space-xl);
}

.zelt-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--zelt-space-lg);
    margin-bottom: var(--zelt-space-lg);
}

@media (min-width: 768px) {
    .zelt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .zelt-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.zelt-footer-logo {
    display: flex;
    align-items: center;
    gap: var(--zelt-space-sm);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--zelt-text);
    margin-bottom: var(--zelt-space-sm);
}

.zelt-footer-logo svg {
    flex-shrink: 0;
}

.zelt-footer-tagline {
    font-size: 0.875rem;
    color: var(--zelt-text-light);
}

.zelt-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zelt-text);
    margin-bottom: var(--zelt-space-sm);
}

.zelt-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--zelt-space-xs);
    list-style: none;
}

.zelt-footer-links a {
    font-size: 0.875rem;
    color: var(--zelt-text-light);
    transition: color 0.3s;
}

.zelt-footer-links a:hover,
.zelt-footer-links a:focus-visible {
    color: var(--zelt-accent);
}

.zelt-footer-address {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--zelt-text-light);
}

.zelt-footer-address a {
    transition: color 0.3s;
}

.zelt-footer-address a:hover,
.zelt-footer-address a:focus-visible {
    color: var(--zelt-accent);
}

.zelt-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--zelt-space-md);
    padding-top: var(--zelt-space-lg);
    border-top: 1px solid var(--zelt-border);
    font-size: 0.875rem;
    color: var(--zelt-text-light);
}

.zelt-footer-legal ul {
    display: flex;
    gap: var(--zelt-space-md);
    list-style: none;
}

.zelt-footer-legal a {
    color: var(--zelt-text-light);
    transition: color 0.3s;
}

.zelt-footer-legal a:hover,
.zelt-footer-legal a:focus-visible {
    color: var(--zelt-accent);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 767px) {
    .zelt-hero-actions {
        flex-direction: column;
    }
    
    .zelt-hero-visual {
        margin-top: var(--zelt-space-xl);
        min-height: 250px;
    }
    
    .zelt-holographic-card {
        padding: var(--zelt-space-md);
    }
    
    .zelt-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--zelt-space-sm);
    }
    
    .zelt-stat-icon {
        font-size: 1.5rem;
    }
    
    .zelt-stat-number {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    .zelt-stat-label {
        font-size: clamp(0.625rem, 1.2vw, 0.75rem);
    }
    
    .zelt-case-study-metrics {
        grid-template-columns: 1fr;
        gap: var(--zelt-space-md);
    }
    
    .zelt-hero {
        min-height: 80vh;
    }
    
    .zelt-service-card {
        min-height: 350px;
        padding: var(--zelt-space-lg);
    }
    
    .zelt-service-header {
        flex-direction: column;
        gap: var(--zelt-space-md);
    }
    
    .zelt-service-icon {
        width: 64px;
        height: 64px;
    }
    
    .zelt-service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .zelt-process-step {
        padding: var(--zelt-space-md);
        gap: var(--zelt-space-md);
    }
    
    .zelt-process-icon {
        width: 56px;
        height: 56px;
    }
    
    .zelt-process-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .zelt-process-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .zelt-container {
        padding-inline: var(--zelt-space-sm);
    }
    
    .zelt-section {
        padding-block: var(--zelt-space-lg);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


