* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: clip;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: var(--z-content);
}

header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--text-light);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    transition: transform var(--transition-normal), background var(--transition-normal);
    will-change: transform;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

header.scrolled::after {
    opacity: 1;
}

header.hidden {
    transform: translateY(-120%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-electric), transparent);
    animation: logoSpin 4s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.logo:hover .logo-icon::before {
    opacity: 0.3;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--gradient-primary);
    border-radius: calc(var(--radius-md) - 2px);
    z-index: -1;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.02em;
    position: relative;
    font-variant-caps: small-caps;
}

.logo-text span {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-type {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 8px;
    border: 1px solid rgba(0, 102, 204, 0.3);
}

.menu-toggle {
    display: none;
    background: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--primary);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transform: translateX(-50%);
    transition: width var(--transition-smooth);
    box-shadow: 0 0 10px var(--accent-electric);
}

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

.nav-link:hover {
    color: var(--accent-electric);
}

.nav-link.active {
    color: var(--accent-electric);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--text-light);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    min-width: 90px;
    justify-content: center;
    transition: all var(--transition-fast);
}

.dropdown-toggle:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.show,
.custom-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    text-align: left;
    transition: all var(--transition-fast);
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-neon);
    transform: scaleY(0);
    transition: transform var(--transition-smooth);
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--accent-electric);
}

.dropdown-item.active {
    background: rgba(0, 102, 204, 0.15);
    color: var(--accent-electric);
}

.intro-overlay {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(1, 5, 12, 0.94) 0%, rgba(0, 0, 0, 0.86) 55%, rgba(2, 17, 32, 0.92) 100%);
    backdrop-filter: blur(14px) saturate(125%);
    -webkit-backdrop-filter: blur(14px) saturate(125%);
    z-index: var(--z-intro);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

.intro-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.intro-overlay::before,
.intro-overlay::after {
    content: '';
    position: absolute;
    inset: -15%;
    pointer-events: none;
}

.intro-overlay::before {
    background:
        radial-gradient(circle at 22% 30%, rgba(0, 212, 255, 0.28) 0%, transparent 32%),
        radial-gradient(circle at 78% 68%, rgba(0, 102, 204, 0.22) 0%, transparent 36%);
    animation: introAmbientDrift 6s ease-in-out infinite alternate;
}

.intro-overlay::after {
    background:
        linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.08) 50%, transparent 82%);
    opacity: 0.45;
    transform: translateX(-22%);
    animation: introSweep 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-content {
    position: relative;
    width: min(520px, calc(100vw - 3rem));
    display: grid;
    justify-items: center;
    gap: 0.95rem;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.9) 0%, rgba(3, 6, 12, 0.72) 100%);
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.56),
        0 0 48px rgba(0, 102, 204, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
    isolation: isolate;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    will-change: transform, opacity, filter;
    z-index: 2;
}

.intro-logo {
    font-size: clamp(2.6rem, 8vw, 4.4rem);
    font-weight: 900;
    color: white;
    line-height: 0.94;
    opacity: 0;
    text-shadow: 0 0 28px rgba(0, 212, 255, 0.18);
    letter-spacing: -0.04em;
    will-change: opacity, transform;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
}

.intro-copy {
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.55;
    opacity: 0;
}

.intro-progress {
    width: min(220px, 100%);
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.intro-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transform-origin: left center;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.45);
}

.intro-scooter {
    position: absolute;
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.22));
    will-change: transform, opacity, filter;
    z-index: 1;
}

.intro-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(0, 212, 255, 0.85) 45%, rgba(0, 212, 255, 0) 100%);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.35);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #02060d 0%, #041527 38%, #0a2d49 100%);
    padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-xl);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 26% 32%, rgba(0, 212, 255, 0.28) 0%, transparent 48%),
    radial-gradient(circle at 74% 64%, rgba(0, 102, 204, 0.32) 0%, transparent 52%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 102, 204, 0.03) 2px,
            rgba(0, 102, 204, 0.03) 4px
    );
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: var(--z-content);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

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

.hero-title span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-neon);
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.hero .btn {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-size: 1.05rem;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
    box-shadow: var(--shadow-glow);
}

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

.btn-primary:hover::before {
    opacity: 0.2;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-electric);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.2);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-intense);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.scooters-section,
.contact-section {
    background: var(--bg-section);
}

.about-section {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-body) 100%);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 900;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-neon);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-electric);
}

.section-subtitle {
    text-align: center;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: var(--spacing-lg) auto var(--spacing-xl);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

.scooters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.scooter-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-smooth);
    border: 1px solid var(--border-card);
    will-change: transform;
}

.scooter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    z-index: 1;
}

.scooter-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-glow), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
    animation: cardSpin 8s linear infinite;
    animation-play-state: paused;
    pointer-events: none;
}

.scooter-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

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

.scooter-card:hover::after {
    opacity: 0.15;
    animation-play-state: running;
}

.scooter-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.scooter-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.scooter-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.scooter-card:hover .scooter-image::after {
    opacity: 0.3;
}

.scooter-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scooter-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.scooter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.scooter-price {
    color: var(--accent-electric);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.scooter-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.scooter-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 500;
    transition: all var(--transition-fast);
    padding-left: 0;
}

.scooter-features li:hover {
    transform: translateX(5px);
    color: var(--text-secondary);
}

.scooter-features i {
    color: var(--primary);
    width: 20px;
    font-size: 1.1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-text p strong {
    color: var(--accent-electric);
    font-weight: 700;
}

.company-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    position: relative;
    overflow: hidden;
}

.company-details::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0.5;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform var(--transition-fast);
    position: relative;
    z-index: 1;
}

.detail-item:hover {
    transform: translateX(5px);
}

.detail-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 4px;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.detail-item p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.feature {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    border: 1px solid var(--border-card);
    position: relative;
    overflow: hidden;
}

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

.feature:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary);
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.feature:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature p {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.about-image {
    height: 500px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 6rem;
    border: 2px solid var(--border-card);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, var(--primary-glow) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 60%);
    animation: imageGlow 6s ease-in-out infinite alternate;
}

.about-image i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px var(--primary-glow));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-form {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-card);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0.3;
}

.contact-form > form {
    position: relative;
    z-index: 1;
    transition: filter var(--transition-normal), opacity var(--transition-normal), transform var(--transition-normal);
}

.contact-form--disabled {
    cursor: not-allowed;
    border-color: rgba(0, 180, 255, 0.2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    isolation: isolate;
}

.contact-form--disabled::before {
    opacity: 0.82;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 212, 255, 0.22) 0%, transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(0, 102, 204, 0.18) 0%, transparent 40%),
        linear-gradient(180deg, rgba(2, 8, 18, 0.08) 0%, rgba(2, 8, 18, 0.48) 100%);
}

.contact-form--disabled::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(1, 5, 14, 0.08) 0%, rgba(1, 5, 14, 0.82) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 12px,
            rgba(0, 180, 255, 0.028) 12px,
            rgba(0, 180, 255, 0.028) 13px
        );
    z-index: 2;
    pointer-events: none;
}

.contact-form--disabled > form {
    filter: blur(7px) saturate(0.4);
    opacity: 0.16;
    transform: scale(0.985);
    pointer-events: none;
    user-select: none;
}

.contact-form-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    mix-blend-mode: screen;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.contact-form-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.contact-form--disabled .contact-form-particles,
.contact-form--disabled .contact-form-overlay {
    opacity: 1;
    visibility: visible;
}

.contact-form--disabled .contact-form-particles {
    opacity: 0.95;
}

.contact-form-overlay::before {
    content: '';
    position: absolute;
    inset: 12% 10% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), transparent);
    opacity: 0.85;
    animation: contactOverlaySweep 3.6s linear infinite;
}

.contact-form-overlay__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.28);
    background: rgba(2, 10, 22, 0.72);
    color: rgba(0, 212, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.contact-form-overlay__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-electric);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.9);
    animation: contactOverlayPulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.contact-form-overlay h3 {
    font-size: clamp(1.9rem, 3vw, 2.45rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0;
    max-width: 12ch;
    position: relative;
    z-index: 1;
}

.contact-form-overlay p {
    max-width: 32ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

@keyframes contactOverlayPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.45);
        opacity: 0.45;
    }
}

@keyframes contactOverlaySweep {
    0% {
        transform: translateX(-16%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(18%);
        opacity: 0;
    }
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-card);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-input);
    color: var(--text-primary);
    transition: all var(--transition-fast);
    font-weight: 400;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1), 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.form-textarea {
    resize: none;
    min-height: 140px;
    max-height: 140px;
    line-height: 1.6;
}

.custom-select {
    position: relative;
    width: 100%;
}

.subject-select {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1.2rem;
    border: 2px solid var(--border-card);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-input);
    color: var(--text-primary);
    cursor: pointer;
    appearance: none;
    transition: all var(--transition-fast);
    font-weight: 400;
}

.subject-select:focus,
.subject-select:hover {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.select-arrow {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

.custom-select.open .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: rgba(0, 102, 204, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    transition: all var(--transition-fast);
}

.checkbox-group:hover {
    border-color: var(--primary);
    background: rgba(0, 102, 204, 0.05);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.submit-btn {
    width: 100%;
    position: relative;
    height: 56px;
    font-weight: 700;
}

.btn-text,
.btn-loader {
    transition: opacity var(--transition-fast);
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    display: none;
    font-weight: 600;
    border: 2px solid transparent;
    animation: slideInDown 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

.form-message.success {
    display: block;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border-color: rgba(39, 174, 96, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-weight: 800;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.8rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    border: 1px solid var(--border-card);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    border: 2px solid var(--primary);
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-details p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
}

.hours-box,
.footer-hours-box {
    margin: 1rem 0;
}

.hour-item,
.footer-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-light);
    transition: transform var(--transition-fast);
}

.hour-item:hover,
.footer-hour-item:hover {
    transform: translateX(5px);
}

.hour-item:last-child,
.footer-hour-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hour-day,
.footer-hour-day {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.footer-hour-day {
    font-weight: 600;
    color: var(--footer-day-color);
}

.hour-time,
.footer-hour-time {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-hour-time {
    color: rgba(255, 255, 255, 0.9);
}

.hour-time.closed,
.footer-hour-time.closed {
    color: var(--text-closed);
    font-weight: 700;
}

.current-status,
.current-status-footer {
    margin-top: 1.2rem;
    padding: 1rem;
    background: rgba(39, 174, 96, 0.1);
    border-radius: var(--radius-md);
    border: 2px solid rgba(39, 174, 96, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    animation: fadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.current-status-footer {
    background: rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.3);
}

.status-open {
    color: #27ae60;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.status-closed {
    color: #e74c3c;
    font-size: 0.8rem;
}

.status-text {
    color: var(--text-secondary);
    font-weight: 600;
}

.status-text strong {
    font-weight: 800;
}

.status-word.open {
    color: #27ae60 !important;
}

.status-word.closed {
    color: #e74c3c !important;
}

.map-container {
    margin-top: var(--spacing-xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-card);
    transition: all var(--transition-smooth);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    z-index: 1;
}

.map-container:hover::before {
    opacity: 1;
}

.map-container:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

footer {
    background: #000000;
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-glow);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-weight: 800;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.footer-details {
    margin-bottom: var(--spacing-md);
}

.footer-details p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: transform var(--transition-fast);
}

.footer-details p:hover {
    transform: translateX(5px);
}

.footer-details i {
    color: var(--primary-light);
    width: 18px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-smooth);
    border: 2px solid rgba(0, 102, 204, 0.3);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(360deg);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
    transition: transform var(--transition-fast);
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-electric);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 400;
}

.copyright-info {
    font-size: 0.85rem;
    margin-top: 0.7rem;
    font-weight: 400;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-glow);
    z-index: 99;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-intense);
}

.has-mech-scrollbar {
    scrollbar-width: none;
}

.has-mech-scrollbar::-webkit-scrollbar {
    display: none;
}

#mech-scrollbar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(4, 10, 20, 0.95);
    border-left: 1px solid rgba(0, 180, 255, 0.12);
    pointer-events: none;
}

#mech-track {
    position: absolute;
    left: 50%;
    top: 28px;
    bottom: 28px;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(0, 180, 255, 0.12);
}

#mech-track::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 7px;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 5px,
        rgba(0, 180, 255, 0.07) 5px,
        rgba(0, 180, 255, 0.07) 6px
    );
}

.mech-gear {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
}

#gear-top {
    top: 3px;
}

#gear-bottom {
    bottom: 3px;
}

#mech-progress {
    position: absolute;
    left: 50%;
    top: 28px;
    width: 1px;
    height: 0;
    transform: translateX(-50%);
    background: rgba(0, 200, 255, 0.35);
    box-shadow: 0 0 4px rgba(0, 200, 255, 0.4);
    transform-origin: top center;
    pointer-events: none;
}

#mech-thumb {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    border-radius: 2px;
    background: rgba(0, 150, 220, 0.15);
    border: 1px solid rgba(0, 200, 255, 0.5);
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.25), inset 0 0 6px rgba(0, 180, 255, 0.1);
    cursor: pointer;
    pointer-events: all;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#mech-thumb::before {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: rgba(0, 200, 255, 0.6);
    box-shadow: 0 -3px 0 rgba(0, 200, 255, 0.3), 0 3px 0 rgba(0, 200, 255, 0.3);
}

#mech-thumb:hover {
    border-color: rgba(0, 220, 255, 0.9);
    box-shadow: 0 0 14px rgba(0, 220, 255, 0.5), inset 0 0 8px rgba(0, 180, 255, 0.2);
}

#mech-pct {
    position: absolute;
    right: 32px;
    font-size: 9px;
    font-family: monospace;
    color: rgba(0, 200, 255, 0.55);
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
    transition: top 0.08s linear;
}

.hours-table {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.2);
    background: var(--bg-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hours-table-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 0.9rem 1.4rem;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 212, 255, 0.06) 100%);
    border-bottom: 1px solid rgba(0, 102, 204, 0.25);
    gap: 0.8rem;
}

.hours-table-header span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hours-table-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
    padding: 0.85rem 1.4rem;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.15s ease;
    position: relative;
}

.hours-table-row:last-child {
    border-bottom: none;
}

.hours-table-row:hover {
    background: rgba(0, 102, 204, 0.04);
}

.hours-table-row.inactive-row {
    opacity: 0.42;
    filter: saturate(0.3);
}

.hours-table-row.inactive-row:hover {
    opacity: 0.55;
    background: transparent;
    filter: saturate(0.4);
}

.weekend-row {
    opacity: 0.38;
}

.weekend-row:hover {
    opacity: 0.5;
    background: transparent;
}

.hours-table-row.today {
    background: rgba(0, 102, 204, 0.08);
    border-left: 3px solid var(--accent-cyan);
    padding-left: calc(1.4rem - 3px);
    opacity: 1;
    filter: none;
}

.hours-table-row.today .day-label {
    color: var(--accent-cyan);
}

.hours-table-row.today .day-label::after {
    content: 'OGGI';
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 3px;
    padding: 1px 5px;
    margin-left: 8px;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.hours-table-row.today.is-open {
    background: rgba(39, 174, 96, 0.07);
    border-left: 3px solid #27ae60;
    padding-left: calc(1.4rem - 3px);
    opacity: 1;
    filter: none;
}

.hours-table-row.today.is-open .day-label {
    color: #27ae60;
}

.hours-table-row.today.is-open .day-label::after {
    content: 'APERTO';
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 3px;
    padding: 1px 5px;
    margin-left: 8px;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.hours-table-row.today.is-closed {
    background: rgba(231, 76, 60, 0.06);
    border-left: 3px solid #e74c3c;
    padding-left: calc(1.4rem - 3px);
    opacity: 1;
    filter: none;
}

.hours-table-row.today.is-closed .day-label {
    color: #e74c3c;
}

.hours-table-row.today.is-closed .day-label::after {
    content: 'CHIUSO';
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 3px;
    padding: 1px 5px;
    margin-left: 8px;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.day-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.time-slot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    width: fit-content;
}

.time-slot i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.open-slot {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.today .open-slot.active-slot {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.25);
}

.today .open-slot.active-slot i {
    opacity: 1;
}

.closed-slot {
    color: rgba(255, 255, 255, 0.22);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.full-span {
    grid-column: span 2;
}

.warranty-item {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    color: var(--text-tertiary);
}

.warranty-item:last-child {
    margin-bottom: 0;
}

.warranty-item i {
    color: var(--accent-cyan);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.warranty-item strong {
    color: var(--text-primary);
    font-weight: 700;
}

.brand-name {
    font-variant-caps: small-caps;
}

.brands-row {
    margin-top: 3rem;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 102, 204, 0.2);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.07) 0%, rgba(0, 212, 255, 0.03) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.brands-row::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.brands-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.brands-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brands-label::before,
.brands-label::after {
    content: '';
    width: 32px; height: 1px;
    background: rgba(0, 212, 255, 0.4);
    display: block;
}

.brands-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.6;
    margin: 0;
    max-width: 420px;
    line-height: 1.5;
}

.brands-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
}

.brand-badge {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
    padding: 3rem 2.4rem 2.6rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    pointer-events: none;
}

.brand-piaggio .brand-glow {
    background: radial-gradient(ellipse at 50% 70%, rgba(0, 102, 204, 0.45) 0%, rgba(0, 102, 204, 0.15) 45%, transparent 70%);
}
.brand-kymco .brand-glow {
    background: radial-gradient(ellipse at 50% 70%, rgba(220, 40, 40, 0.4) 0%, rgba(220, 40, 40, 0.12) 45%, transparent 70%);
}
.brand-honda .brand-glow {
    background: radial-gradient(ellipse at 50% 70%, rgba(230, 230, 230, 0.3) 0%, rgba(200, 200, 200, 0.1) 45%, transparent 70%);
}

.brand-badge:hover {
    transform: translateY(-5px);
}

.brand-piaggio:hover {
    border-color: rgba(0, 140, 255, 0.7);
    box-shadow:
            0 0 0 1px rgba(0, 120, 255, 0.25),
            0 0 12px rgba(0, 120, 255, 0.4),
            0 0 30px rgba(0, 102, 204, 0.25),
            0 12px 40px rgba(0, 80, 180, 0.3),
            inset 0 1px 0 rgba(100, 180, 255, 0.15);
}
.brand-kymco:hover {
    border-color: rgba(240, 50, 50, 0.7);
    box-shadow:
            0 0 0 1px rgba(220, 40, 40, 0.25),
            0 0 12px rgba(220, 40, 40, 0.4),
            0 0 30px rgba(200, 30, 30, 0.25),
            0 12px 40px rgba(180, 20, 20, 0.3),
            inset 0 1px 0 rgba(255, 120, 120, 0.15);
}
.brand-honda:hover {
    border-color: rgba(230, 230, 230, 0.6);
    box-shadow:
            0 0 0 1px rgba(220, 220, 220, 0.2),
            0 0 12px rgba(220, 220, 220, 0.35),
            0 0 30px rgba(200, 200, 200, 0.2),
            0 12px 40px rgba(180, 180, 180, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-badge:hover .brand-glow {
    opacity: 1;
}

.brand-img-wrap {
    width: 175px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.brand-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: brightness(1.1);
}

.brand-piaggio:hover img {
    opacity: 1;
    filter: brightness(1.4) drop-shadow(0 0 8px rgba(0, 150, 255, 0.7)) drop-shadow(0 0 20px rgba(0, 120, 255, 0.4));
}
.brand-kymco:hover img {
    opacity: 1;
    filter: brightness(1.4) drop-shadow(0 0 8px rgba(255, 80, 80, 0.7)) drop-shadow(0 0 20px rgba(220, 40, 40, 0.4));
}
.brand-honda:hover img {
    opacity: 1;
    filter: brightness(1.5) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(220, 220, 220, 0.5));
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    opacity: 0.7;
}

.brand-piaggio:hover .brand-tag {
    background: rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.35);
    color: rgba(100, 170, 255, 0.95);
    opacity: 1;
}
.brand-kymco:hover .brand-tag {
    background: rgba(220, 40, 40, 0.12);
    border-color: rgba(220, 40, 40, 0.35);
    color: rgba(255, 120, 120, 0.95);
    opacity: 1;
}
.brand-honda:hover .brand-tag {
    background: rgba(220, 220, 220, 0.1);
    border-color: rgba(220, 220, 220, 0.3);
    color: rgba(230, 230, 230, 0.95);
    opacity: 1;
}

.brands-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
}

.brand-vespa .brand-glow {
    background: radial-gradient(ellipse at 50% 70%, rgba(46, 49, 146, 0.45) 0%, rgba(46, 49, 146, 0.15) 45%, transparent 70%);
}
.brand-vespa:hover {
    border-color: rgba(46, 49, 146, 0.75);
    box-shadow:
            0 0 0 1px rgba(46, 49, 146, 0.3),
            0 0 12px rgba(46, 49, 146, 0.5),
            0 0 30px rgba(46, 49, 146, 0.3),
            0 12px 40px rgba(46, 49, 146, 0.25),
            inset 0 1px 0 rgba(120, 130, 255, 0.15);
}
.brand-vespa:hover img {
    opacity: 1;
    filter: brightness(1.4) drop-shadow(0 0 8px rgba(46, 49, 146, 0.8)) drop-shadow(0 0 20px rgba(100, 110, 255, 0.5));
}
.brand-vespa:hover .brand-tag {
    background: rgba(46, 49, 146, 0.18);
    border-color: rgba(46, 49, 146, 0.45);
    color: rgba(140, 150, 255, 0.95);
    opacity: 1;
}

.brand-dunlop .brand-glow {
    background: radial-gradient(ellipse at 50% 70%, rgba(244, 121, 32, 0.4) 0%, rgba(244, 121, 32, 0.12) 45%, transparent 70%);
}
.brand-dunlop:hover {
    border-color: rgba(244, 121, 32, 0.7);
    box-shadow:
            0 0 0 1px rgba(244, 121, 32, 0.25),
            0 0 12px rgba(244, 121, 32, 0.45),
            0 0 30px rgba(244, 121, 32, 0.25),
            0 12px 40px rgba(200, 90, 10, 0.3),
            inset 0 1px 0 rgba(255, 180, 100, 0.15);
}
.brand-dunlop:hover img {
    opacity: 1;
    filter: brightness(1.4) drop-shadow(0 0 8px rgba(244, 121, 32, 0.8)) drop-shadow(0 0 20px rgba(244, 121, 32, 0.45));
}
.brand-dunlop:hover .brand-tag {
    background: rgba(244, 121, 32, 0.12);
    border-color: rgba(244, 121, 32, 0.4);
    color: rgba(255, 170, 90, 0.95);
    opacity: 1;
}

.brand-bardahl .brand-glow {
    background: radial-gradient(ellipse at 50% 70%, rgba(254, 252, 0, 0.3) 0%, rgba(254, 252, 0, 0.1) 45%, transparent 70%);
}
.brand-bardahl:hover {
    border-color: rgba(254, 252, 0, 0.6);
    box-shadow:
            0 0 0 1px rgba(254, 252, 0, 0.2),
            0 0 12px rgba(254, 252, 0, 0.4),
            0 0 30px rgba(254, 252, 0, 0.2),
            0 12px 40px rgba(200, 190, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 150, 0.12);
}
.brand-bardahl:hover img {
    opacity: 1;
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(254, 252, 0, 0.8)) drop-shadow(0 0 20px rgba(254, 252, 0, 0.45));
}
.brand-bardahl:hover .brand-tag {
    background: rgba(254, 252, 0, 0.1);
    border-color: rgba(254, 252, 0, 0.4);
    color: rgba(255, 255, 100, 0.95);
    opacity: 1;
}

.footer-content {
    grid-template-columns: 1.4fr 1.6fr 1fr;
}

.footer-section .hours-table-header,
.footer-section .hours-table-row {
    grid-template-columns: 1.2fr 0.95fr 0.95fr;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
}

.footer-section .time-slot {
    font-size: 0.72rem;
    padding: 4px 6px;
}

.footer-section .day-label {
    font-size: 0.82rem;
}

.footer-section .hours-table-header span {
    font-size: 0.62rem;
}

.footer-wave-emoji {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.15em;
    display: inline-block;
    transform-origin: 70% 80%;
    animation: wave-hand 2s ease-in-out infinite;
}

@keyframes wave-hand {
    0%   { transform: rotate(0deg); }
    10%  { transform: rotate(14deg); }
    20%  { transform: rotate(-8deg); }
    30%  { transform: rotate(14deg); }
    40%  { transform: rotate(-4deg); }
    50%  { transform: rotate(10deg); }
    60%  { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .brands-list {
        flex-direction: column;
        align-items: center;
    }
    .brand-badge {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 1.4rem 1.8rem;
        gap: 1.5rem;
    }
    .brand-img-wrap {
        width: 130px;
        height: 52px;
        flex-shrink: 0;
    }
}

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

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

@keyframes introAmbientDrift {
    from {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
    }
    to {
        transform: translate3d(2%, 1.5%, 0) scale(1.05);
    }
}

@keyframes introSweep {
    from {
        transform: translateX(-24%);
        opacity: 0;
    }
    25% {
        opacity: 0.5;
    }
    to {
        transform: translateX(24%);
        opacity: 0;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes heroGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

@keyframes imageGlow {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes cardSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 992px) {
    .about-content,
    .contact-wrapper,
    .company-details {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .hero-title {
        font-size: clamp(2rem, 7vw, 4rem);
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .contact-form-overlay {
        padding: 1.75rem;
    }

    .contact-form-overlay h3,
    .contact-form-overlay p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.95rem 0;
    }

    .header-container {
        position: relative;
        gap: 1rem;
        min-width: 0;
    }

    .logo {
        gap: 0.75rem;
        min-width: 0;
        flex: 1 1 auto;
    }

    .logo-text {
        white-space: nowrap;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.25rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-14px) scale(0.98);
        transform-origin: top center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-smooth);
        z-index: 999;
        border: 1px solid rgba(0, 102, 204, 0.2);
        border-radius: var(--radius-lg);
        max-height: calc(100svh - 96px);
        overflow-y: auto;
    }

    .contact-form-overlay {
        justify-content: flex-end;
        gap: 0.85rem;
        padding: 1.35rem;
    }

    .contact-form-overlay__eyebrow {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    .contact-form-overlay h3 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .contact-form-overlay p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .main-nav.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .main-nav .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 0;
    }

    .main-nav .nav-list > li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 0;
    }

    .nav-actions {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero {
        padding: calc(92px + var(--spacing-md)) 0 var(--spacing-lg);
    }

    section {
        padding: var(--spacing-lg) 0;
    }

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

    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    #mech-scrollbar {
        width: 24px;
    }

    #mech-pct {
        display: none;
    }

    .intro-scooter {
        font-size: 5rem;
    }

    .intro-logo {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    header {
        padding: 0.8rem 0;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .header-container {
        gap: 0.75rem;
    }

    .logo {
        gap: 0.6rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .company-type {
        display: none !important;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        padding: 0.35rem;
    }

    .main-nav {
        top: calc(100% + 0.65rem);
        padding: 1rem;
        max-height: calc(100svh - 86px);
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .about-image {
        height: 350px;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: calc(84px + var(--spacing-sm)) 0 var(--spacing-lg);
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .company-details {
        grid-template-columns: 1fr;
    }

    .brands-row {
        padding: 2.25rem 1.25rem;
        gap: 1.75rem;
    }

    .footer-content {
        gap: var(--spacing-lg);
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .header-container {
        gap: 0.65rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.08rem;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
    }

    .main-nav {
        padding: 0.95rem;
    }

    .section-title::after {
        width: 72px;
    }

    .brands-row {
        padding: 2rem 1rem;
        gap: 1.25rem;
    }

    .brands-label {
        gap: 0.6rem;
        letter-spacing: 0.16em;
    }

    .brands-label::before,
    .brands-label::after {
        width: 20px;
    }

    .brand-badge {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 1.2rem 1rem;
        gap: 0.9rem;
    }

    .brand-img-wrap {
        width: 112px;
        height: 48px;
        flex-shrink: 0;
    }

    .brand-tag {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
        padding: 0.55rem 0.75rem;
    }

    .hours-table {
        margin-top: 1.25rem;
    }

    .hours-table-header,
    .footer-section .hours-table-header {
        display: none;
    }

    .hours-table-row,
    .footer-section .hours-table-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding: 1rem;
    }

    .hours-table-row.today,
    .hours-table-row.today.is-open,
    .hours-table-row.today.is-closed {
        padding-left: calc(1rem - 3px);
    }

    .day-label,
    .footer-section .day-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.45rem;
        white-space: normal;
    }

    .hours-table-row.today .day-label::after,
    .hours-table-row.today.is-open .day-label::after,
    .hours-table-row.today.is-closed .day-label::after {
        margin-left: 0;
    }

    .time-slot,
    .footer-section .time-slot {
        width: 100%;
        justify-content: flex-start;
        white-space: normal;
        line-height: 1.4;
    }

    .full-span {
        grid-column: auto;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 0.98rem;
    }

    .section-title {
        font-size: clamp(1.85rem, 9vw, 2.3rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro-overlay,
    .intro-overlay::before,
    .intro-overlay::after,
    .hero::before,
    .hero-title,
    .hero-subtitle,
    .hero .btn {
        animation: none !important;
        transition: none !important;
    }

    .hero-title,
    .hero-subtitle,
    .hero .btn,
    .intro-content,
    .intro-badge,
    .intro-logo,
    .intro-copy {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
