/* ============================================
   HELLOWORLD! - MAIN STYLESHEET
   Dark + Wine Theme · Mobile-First · Production Ready
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colors */
    --bg-primary: #0A0A0C;
    --bg-secondary: #100D10;
    --bg-tertiary: #1A1418;
    --bg-card: #141014;
    --bg-card-hover: #1A1218;
    --wine: #8B1E3F;
    --wine-light: #B83A5C;
    --wine-lighter: #D4687E;
    --wine-deep: #5C1228;
    --wine-glow: rgba(139, 30, 63, 0.35);
    --wine-glow-strong: rgba(184, 58, 92, 0.5);
    --cream: #F2E9E4;
    --text-primary: #EAE0D5;
    --text-secondary: #B0A094;
    --text-muted: #6B5E56;
    --border-subtle: rgba(176, 160, 148, 0.08);
    --border-medium: rgba(139, 30, 63, 0.25);
    --border-active: rgba(184, 58, 92, 0.6);
    --success: #27C93F;
    --error: #FF5F56;
    --whatsapp: #25D366;

    /* Gradients */
    --gradient-wine: linear-gradient(135deg, #8B1E3F 0%, #B83A5C 50%, #5C1228 100%);
    --gradient-wine-reverse: linear-gradient(135deg, #B83A5C 0%, #8B1E3F 50%, #5C1228 100%);
    --gradient-text: linear-gradient(135deg, #D4687E 0%, #F2E9E4 40%, #B83A5C 100%);
    --gradient-bg-radial: radial-gradient(ellipse at center, rgba(139, 30, 63, 0.1) 0%, transparent 70%);
    --gradient-card: linear-gradient(180deg, rgba(139, 30, 63, 0.05) 0%, transparent 100%);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration-fast: 0.2s;
    --duration-medium: 0.4s;
    --duration-slow: 0.7s;

    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--wine-glow);
    --shadow-glow-strong: 0 0 60px var(--wine-glow-strong);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}


/* Typewriter cursor blink - slow and elegant */
@keyframes cursorBlink {
    0%, 100% { border-right-color: #B83A5C; }
    50% { border-right-color: transparent; }
}

/* Remove the old fast blinking cursor */
.hero-subtitle::after {
    display: none !important;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    cursor: none;
}

/* ============================================
   SKIP LINK & ACCESSIBILITY
   ============================================ */
.skip-link {
    position: fixed;
    top: -100%;
    left: var(--space-sm);
    background: var(--wine);
    color: var(--cream);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    z-index: 10001;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: top 0.3s;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* Selection */
::selection {
    background: var(--wine);
    color: var(--cream);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

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

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

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

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--wine-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border-medium);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s var(--ease-out-expo), border-color 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-follower.hover {
    transform: scale(1.4);
    border-color: var(--wine-light);
    background: rgba(139, 30, 63, 0.08);
}

.cursor-follower.active {
    transform: scale(0.7);
    border-color: var(--wine-lighter);
    background: rgba(139, 30, 63, 0.15);
}

.cursor-label {
    font-size: 0.6rem;
    color: var(--cream);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.2s;
}

.cursor-follower.hover .cursor-label {
    opacity: 1;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-in-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: var(--space-md);
    animation: loader-pulse 2s ease-in-out infinite;
}

@keyframes loader-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.loader-dot {
    color: var(--wine-light);
    animation: dot-blink 1s ease-in-out infinite;
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ============================================
   NAVIGATION (PERSISTENT)
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-xl);
    transition: all 0.4s var(--ease-out-expo);
}

.header.scrolled {
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.7rem var(--space-xl);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
    z-index: 1001;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.85;
}

.nav-logo-icon {
    flex-shrink: 0;
}

.wine-dot {
    color: var(--wine-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color var(--duration-fast);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-wine);
    border-radius: 1px;
    transition: width var(--duration-medium) var(--ease-out-expo);
}

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

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

.nav-cta {
    background: var(--gradient-wine);
    color: var(--cream) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: var(--space-xs);
    flex-direction: column;
    gap: 5px;
}

.menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s var(--ease-in-out);
}

.menu-toggle.active .menu-line:first-child {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-line:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MAIN CONTENT & PAGE TRANSITIONS
   ============================================ */
#main-content {
    position: relative;
    min-height: 100vh;
    overflow: hidden; /* PREVENTS EXTRA SCROLL SPACE */
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.5s var(--ease-out-expo),
                transform 0.5s var(--ease-out-expo),
                visibility 0.5s;
    will-change: transform, opacity;
    background: var(--bg-primary);
    pointer-events: none; /* Prevent interaction with hidden pages */
}

.page.active {
    position: relative; /* This page takes up normal flow */
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 1;
    pointer-events: auto; /* Allow interaction */
    min-height: auto; /* Let content determine height */
}

.page.exit {
    opacity: 0;
    transform: translateY(-30px) scale(0.98);
    z-index: 0;
    pointer-events: none;
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-canvas canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1.2rem;
    background: rgba(139, 30, 63, 0.1);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--wine-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.7s both;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    min-height: 1.6em;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.9s both;
}

.hero-subtitle::after {
    content: '|';
    animation: blink-cursor 0.8s infinite;
    color: var(--wine-light);
    font-weight: 300;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-cta-row {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.1s both;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--duration-medium) var(--ease-out-expo);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-wine);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(139, 30, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--wine-glow-strong);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium);
}

.btn-outline:hover {
    background: rgba(139, 30, 63, 0.08);
    border-color: var(--wine-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white !important;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-arrow-icon {
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

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

.btn-sm {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    position: relative;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
    animation: float-scroll 3s ease-in-out infinite;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--border-medium);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--wine-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

@keyframes float-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   PAGE CONTAINER (SHARED)
   ============================================ */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 7rem var(--space-xl) 5rem;
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--wine-light);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.5rem;
    height: 1px;
    background: var(--wine-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* ============================================
   PROJECTS / PORTFOLIO
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.project-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-medium) var(--ease-out-expo);
    cursor: pointer;
    position: relative;
}

.project-card:hover,
.project-card:focus-within {
    transform: translateY(-10px);
    border-color: var(--border-medium);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.project-preview {
    padding: var(--space-lg);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.project-mockup {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #1A1A24;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.mockup-browser {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: #24242E;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4A4A55;
}

.mockup-dot:first-child { background: #FF5F56; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #27C93F; }

.mockup-body {
    padding: 2rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 160px;
    position: relative;
}

.oneb-mockup {
    background: linear-gradient(135deg, #0A0A10 0%, #151520 100%);
}

.automan-mockup {
    background: linear-gradient(135deg, #0D1117 0%, #161B24 100%);
}

.leevox-mockup {
    background: linear-gradient(135deg, #0F0F1C 0%, #1A1A30 100%);
}

.mockup-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--cream);
    letter-spacing: -0.03em;
}

.mockup-bold {
    font-weight: 700;
    color: var(--wine-light);
}

.mockup-icon {
    font-size: 2rem;
}

.mockup-line {
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    width: 75%;
}

.mockup-line.short { width: 50%; }
.mockup-line.shorter { width: 30%; }

.mockup-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 30, 63, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--duration-medium);
}

.project-card:hover .mockup-glow {
    opacity: 1;
}

.project-info {
    padding: var(--space-lg);
    position: relative;
}

.project-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(139, 30, 63, 0.1);
    line-height: 1;
    pointer-events: none;
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.project-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--wine-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap var(--duration-fast), color var(--duration-fast);
}

.project-link:hover {
    gap: 10px;
    color: var(--wine-lighter);
}

/* Empty Project Card */
.project-card-empty {
    border-style: dashed;
    border-color: var(--border-subtle);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.empty-mockup {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px dashed var(--border-medium);
    border-radius: var(--radius-md);
    margin: var(--space-lg);
}

.empty-icon {
    color: var(--wine-light);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--duration-medium) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--duration-medium);
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(139, 30, 63, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: background var(--duration-medium);
}

.service-card:hover .service-icon-wrap {
    background: rgba(139, 30, 63, 0.2);
}

.service-icon {
    font-size: 1.8rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    position: relative;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    margin-bottom: var(--space-md);
}

.service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wine-light);
    padding: 0.3rem 0.8rem;
    background: rgba(139, 30, 63, 0.1);
    border-radius: var(--radius-full);
    position: relative;
}

.services-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.services-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--wine-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.about-text .btn {
    margin-top: var(--space-md);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.stat {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.stat:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 900px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-out-expo);
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--border-medium);
}

.faq-item.open {
    border-color: var(--border-active);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    gap: var(--space-md);
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(139, 30, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wine-light);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--wine);
    color: var(--cream);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-in-out), padding 0.5s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.faq-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.contact-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    margin-bottom: var(--space-sm);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.contact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color var(--duration-fast);
    word-break: break-all;
}

.contact-value:hover {
    color: var(--wine-light);
}

.contact-response {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-header {
    margin-bottom: var(--space-xl);
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: color var(--duration-fast);
}

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

.form-group select {
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B5E56' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.form-group select:focus,
.form-group select:valid {
    color: var(--text-primary);
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: var(--space-sm);
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -18px;
    font-size: 0.75rem;
    color: var(--wine-light);
    letter-spacing: 0.05em;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-subtle);
    overflow: hidden;
}

.form-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-wine);
    transition: left var(--duration-medium) var(--ease-out-expo);
}

.form-group input:focus ~ .form-line::after,
.form-group textarea:focus ~ .form-line::after,
.form-group select:focus ~ .form-line::after {
    left: 0;
}

.form-group.error .form-line::after {
    background: var(--error);
    left: 0;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    color: var(--error);
}

.form-error {
    display: none;
    font-size: 0.75rem;
    color: var(--error);
    margin-top: var(--space-xs);
}

.form-group.error .form-error {
    display: block;
}

.form-success {
    display: none;
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(39, 201, 63, 0.1);
    border: 1px solid rgba(39, 201, 63, 0.3);
    border-radius: var(--radius-md);
    color: var(--success);
    text-align: center;
}

.form-success.show {
    display: block;
}

.form-error-global {
    display: none;
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 95, 86, 0.1);
    border: 1px solid rgba(255, 95, 86, 0.3);
    border-radius: var(--radius-md);
    color: var(--error);
    text-align: center;
}

.form-error-global.show {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-3xl) var(--space-xl) var(--space-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--gradient-wine);
    opacity: 0.5;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    transition: all var(--duration-fast);
}

.social-link:hover {
    border-color: var(--wine-light);
    color: var(--wine-light);
    background: rgba(139, 30, 63, 0.1);
}

.footer-links h4,
.footer-services h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.footer-links a,
.footer-services a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--wine-light);
    padding-left: 4px;
}

.ecosystem-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.one-b-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--wine-light);
    text-decoration: none;
    padding: var(--space-sm) var(--space-lg);
    border: 1.5px solid var(--border-medium);
    border-radius: var(--radius-full);
    transition: all var(--duration-medium) var(--ease-out-expo);
    margin-bottom: var(--space-sm);
}

.one-b-link:hover {
    background: var(--wine);
    color: var(--cream);
    border-color: var(--wine);
    box-shadow: var(--shadow-glow);
    gap: 12px;
}

.one-b-link svg {
    transition: transform var(--duration-fast);
}

.one-b-link:hover svg {
    transform: translateX(3px);
}

.ecosystem-tagline {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.footer-bottom-links a:hover {
    color: var(--wine-light);
}

.footer-separator {
    color: var(--border-subtle);
}

/* ============================================
   AI CHATBOT WIDGET
   ============================================ */
.chatbot {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 2000;
    font-family: var(--font-body);
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-wine);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    box-shadow: var(--shadow-lg), 0 0 30px var(--wine-glow);
    transition: all var(--duration-medium) var(--ease-out-expo);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg), 0 0 50px var(--wine-glow-strong);
}

.chatbot-icon-close {
    display: none;
}

.chatbot.open .chatbot-icon-open {
    display: none;
}

.chatbot.open .chatbot-icon-close {
    display: block;
}

.chatbot-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--wine-light);
    animation: chat-pulse 2s ease-in-out infinite;
}

@keyframes chat-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0; }
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 2rem);
    height: 520px;
    max-height: calc(100dvh - 160px);
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--duration-medium) var(--ease-out-expo);
    box-shadow: var(--shadow-lg);
}

.chatbot.open .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: var(--gradient-wine);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cream);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.chatbot-avatar {
    font-size: 1.8rem;
}

.chatbot-header-info h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
}

.chatbot-header-info span {
    font-size: 0.75rem;
    opacity: 0.85;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.8;
    transition: opacity var(--duration-fast);
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

.chat-message {
    display: flex;
    gap: var(--space-sm);
    animation: message-in 0.3s var(--ease-out-expo);
}

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

.chat-message.bot {
    align-items: flex-start;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(139, 30, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.chat-message.user .message-avatar {
    display: none;
}

.message-bubble {
    max-width: 80%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    line-height: 1.6;
}

.chat-message.bot .message-bubble {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user .message-bubble {
    background: var(--wine);
    color: var(--cream);
    border-bottom-right-radius: 4px;
}

.message-bubble p {
    margin-bottom: 0.5rem;
}

.message-bubble p:last-child {
    margin-bottom: 0;
}

.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
}

.quick-option {
    padding: 0.4rem 0.8rem;
    background: rgba(139, 30, 63, 0.1);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    color: var(--wine-light);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--duration-fast);
    white-space: nowrap;
}

.quick-option:hover {
    background: var(--wine);
    color: var(--cream);
    border-color: var(--wine);
}

.chatbot-input-area {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.chatbot-input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--duration-fast);
}

.chatbot-input:focus {
    border-color: var(--border-medium);
}

.chatbot-input::placeholder {
    color: var(--text-muted);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-wine);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all var(--duration-fast);
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    border-color: var(--wine-light);
    color: var(--wine-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets & Below */
@media (max-width: 1024px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .page-container {
        padding: 6rem var(--space-lg) 4rem;
    }
}

/* Tablets & Below */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: rgba(14, 12, 14, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        transition: right 0.5s var(--ease-in-out);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: var(--space-xl) var(--space-md);
    }

    .page-container {
        padding: 5rem var(--space-md) 3rem;
    }

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

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .footer-separator {
        display: none;
    }

    .one-b-link {
        justify-content: center;
    }

    .chatbot-window {
        width: calc(100vw - 2rem);
        right: -10px;
        bottom: 65px;
    }

    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .footer {
        padding: var(--space-xl) var(--space-md) var(--space-md);
    }

    .chatbot-window {
        width: calc(100vw - 1rem);
        height: 450px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .nav-logo {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .chatbot-window {
        width: 100vw;
        right: -16px;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}