/* ==========================================================================
   Veloxity Racing Team — Milan Paulus Website
   Colors: Steel Blue (#aab8db), Dark Charcoal (#383641), Soft Lavender (#cecddb)
   Slogan: Fueled by oxygen, driven by speed!
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
    --velo-black: #2a2934;
    --velo-dark: #383641;
    --velo-darker: #302f3a;
    --velo-card: #42414d;
    --velo-accent: #aab8db;
    --velo-accent-dark: #8a9bc5;
    --velo-accent-glow: rgba(170, 184, 219, 0.35);
    --velo-white: #cecddb;
    --velo-bright: #e8e7ef;
    --velo-gray: #9594a0;
    --velo-light-gray: #b5b4c0;
    --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, system-ui;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, system-ui;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--velo-black);
    color: var(--velo-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--velo-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--velo-bright);
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--velo-bright);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p {
    margin-bottom: 1rem;
    color: var(--velo-light-gray);
}

.accent {
    color: var(--velo-accent);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--velo-accent);
    color: var(--velo-black);
}

.btn-primary:hover {
    background: var(--velo-bright);
    color: var(--velo-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--velo-accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--velo-accent);
    border: 2px solid var(--velo-accent);
}

.btn-outline:hover {
    background: var(--velo-accent);
    color: var(--velo-black);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1.4rem;
    font-size: 0.85rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(42, 41, 52, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(170, 184, 219, 0.1);
    transition: all var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--velo-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo .accent {
    color: var(--velo-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--velo-light-gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--velo-accent);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--velo-accent);
}

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

/* Nav button override — no underline, better contrast */
.nav-links .btn {
    color: var(--velo-black);
    font-weight: 800;
}

.nav-links .btn::after {
    display: none !important;
}

.nav-links .btn:hover {
    color: var(--velo-black);
}

/* --- Nav Dropdown (Over Milan) --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown > a .fa-chevron-down {
    font-size: 0.55rem;
    transition: transform var(--transition);
}

.nav-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: rgba(48, 47, 58, 0.98);
    border: 1px solid rgba(170, 184, 219, 0.15);
    border-radius: 10px;
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
}

.nav-submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(170, 184, 219, 0.15);
}

.nav-dropdown:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 8px);
}

.nav-submenu li { padding: 0; }

.nav-submenu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    color: var(--velo-light-gray);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-submenu li a::after { display: none; }

.nav-submenu li a i {
    color: var(--velo-accent);
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.nav-submenu li a:hover {
    color: var(--velo-accent);
    background: rgba(170, 184, 219, 0.06);
    padding-left: 1.6rem;
}

/* --- Lightbox / Modal --- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 41, 52, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    cursor: default;
}

.lightbox-caption {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--velo-bright);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: rgba(42, 41, 52, 0.8);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    color: var(--velo-bright);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    background: rgba(42, 41, 52, 0.6);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.lightbox-close:hover {
    background: var(--velo-accent);
    color: var(--velo-black);
}

/* Make rider/gallery images clickable */
.rider-card img,
.team-gallery-item img {
    cursor: zoom-in;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--velo-bright);
    transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 41, 52, 0.88) 0%,
        rgba(56, 54, 65, 0.6) 50%,
        rgba(42, 41, 52, 0.88) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(170, 184, 219, 0.12);
    border: 1px solid var(--velo-accent);
    color: var(--velo-accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 .accent {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--velo-accent);
    margin-top: 0.3rem;
}

.hero-slogan {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--velo-accent);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--velo-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Section Styling --- */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--velo-dark);
}

.section-darker {
    background: var(--velo-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--velo-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: var(--velo-accent);
    margin: 1rem auto;
    border-radius: 3px;
}

/* --- Team Intro Grid --- */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.team-text p {
    margin-bottom: 1.5rem;
}

.team-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--velo-accent);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--velo-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Team Info Cards --- */
.team-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-info-card {
    background: var(--velo-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(170, 184, 219, 0.08);
    transition: all var(--transition);
    text-align: center;
}

.team-info-card:hover {
    border-color: rgba(170, 184, 219, 0.25);
    transform: translateY(-4px);
}

.team-info-card .card-icon {
    font-size: 2.2rem;
    color: var(--velo-accent);
    margin-bottom: 1rem;
}

.team-info-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.team-info-card p {
    font-size: 0.9rem;
    color: var(--velo-gray);
}

/* --- Rider Cards with Photo --- */
.team-riders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rider-card {
    background: var(--velo-card);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(170, 184, 219, 0.08);
    transition: all var(--transition);
}

.rider-card:hover {
    border-color: rgba(170, 184, 219, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.rider-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.rider-card-info {
    padding: 1rem 0.75rem 1.25rem;
}

.rider-card .rider-name {
    font-weight: 700;
    color: var(--velo-bright);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.rider-card .rider-role {
    font-size: 0.8rem;
    color: var(--velo-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Team Gallery --- */
.team-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.team-gallery-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition);
}

.team-gallery-item:hover img {
    transform: scale(1.05);
}

.team-gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(42, 41, 52, 0.9), transparent);
    font-size: 0.85rem;
    color: var(--velo-white);
    font-weight: 600;
}

/* --- Team CTA --- */
.team-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(170, 184, 219, 0.08), rgba(170, 184, 219, 0.02));
    border: 1px solid rgba(170, 184, 219, 0.15);
    border-radius: 16px;
}

.team-cta h3 {
    margin-bottom: 0.75rem;
}

.team-cta p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: var(--velo-card);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(170, 184, 219, 0.08);
}

.stat-box .stat-number {
    font-size: 2.5rem;
}

.stat-box .stat-label {
    margin-top: 0.3rem;
    display: block;
}

/* --- Logo Banner --- */
.logo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-banner img {
    max-height: 120px;
    border-radius: 12px;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--velo-accent), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 22px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--velo-accent);
    border: 3px solid var(--velo-black);
    box-shadow: 0 0 15px var(--velo-accent-glow);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--velo-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--velo-card);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(170, 184, 219, 0.08);
    transition: border-color var(--transition);
}

.timeline-content:hover {
    border-color: rgba(170, 184, 219, 0.25);
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.timeline-content p {
    font-size: 0.95rem;
}

.timeline-content img {
    border-radius: 8px;
    margin: 1rem 0;
}

/* --- Videos Section --- */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--velo-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(170, 184, 219, 0.08);
    transition: all var(--transition);
}

.video-card:hover {
    border-color: rgba(170, 184, 219, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card-info {
    padding: 1rem 1.5rem;
}

.video-card-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.video-card-info span {
    font-size: 0.8rem;
    color: var(--velo-gray);
}

/* --- Partners Section --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--velo-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(170, 184, 219, 0.08);
    transition: all var(--transition);
}

.partner-card:hover {
    border-color: rgba(170, 184, 219, 0.25);
    transform: translateY(-4px);
}

.partner-card img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.partner-card h3 {
    margin-bottom: 0.75rem;
}

.partner-card p {
    font-size: 0.95rem;
}

/* --- Gallery Preview --- */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.gallery-preview-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-preview-item:hover img {
    transform: scale(1.08);
}

.gallery-preview-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 41, 52, 0.4), transparent);
}

/* --- Footer --- */
.footer {
    background: var(--velo-dark);
    border-top: 1px solid rgba(170, 184, 219, 0.1);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--velo-gray);
    max-width: 350px;
}

.footer-links h4 {
    color: var(--velo-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a {
    color: var(--velo-gray);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links ul li a:hover {
    color: var(--velo-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(170, 184, 219, 0.08);
    color: var(--velo-light-gray);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--velo-accent);
    color: var(--velo-black);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(170, 184, 219, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--velo-gray);
}

.footer-bottom a {
    color: var(--velo-accent);
}

/* --- Page Header (for sub-pages) --- */
.page-header {
    padding: 7rem 0 3rem;
    background: var(--velo-dark);
    text-align: center;
    border-bottom: 1px solid rgba(170, 184, 219, 0.1);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--velo-gray);
}

/* --- Responsive --- */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    .hero h1 { font-size: 3rem; }
    .hero h1 .accent { font-size: 1.4rem; }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-riders {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(42, 41, 52, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(170, 184, 219, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile dropdown */
    .nav-dropdown > a .fa-chevron-down {
        transition: transform var(--transition);
    }

    .nav-dropdown.open > a .fa-chevron-down {
        transform: rotate(180deg);
    }

    .nav-submenu {
        position: static;
        transform: none;
        min-width: 0;
        background: rgba(170, 184, 219, 0.04);
        border: none;
        border-left: 2px solid var(--velo-accent);
        border-radius: 0;
        padding: 0.5rem 0 0.5rem 0.5rem;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        backdrop-filter: none;
        display: none;
    }

    .nav-submenu::before { display: none; }

    .nav-dropdown.open .nav-submenu {
        display: block;
    }

    .nav-submenu li a {
        padding: 0.5rem 1rem;
    }

    .nav-submenu li a:hover {
        padding-left: 1.2rem;
    }

    .team-info-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 .accent {
        font-size: 1.1rem;
    }

    .hero-slogan {
        font-size: 1.05rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-dot {
        left: 7px;
    }

    .timeline-item {
        padding-left: 45px;
    }

    .page-header {
        padding: 6rem 0 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .gallery-preview {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

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

    .team-riders {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

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

::-webkit-scrollbar-track {
    background: var(--velo-black);
}

::-webkit-scrollbar-thumb {
    background: var(--velo-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--velo-accent-dark);
}

/* Selection */
::selection {
    background: var(--velo-accent);
    color: var(--velo-black);
}

