/* ============================================
   SP3CTRA - Styles CSS
   Version multilingue avec formulaire
   ============================================ */

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

:root {
    /* THEME: MINIMAL CLAIR - Dégradé Bordeaux/Rouge/Bleu */
    --color-bg: #fefefe;
    --color-bg-secondary: #f5f3f0;
    --color-bg-card: #ffffff;
    --color-bg-dark: #1a1a2e;
    --color-bg-navbar: #212121;
    --color-primary: #1a1a1a;
    --color-primary-light: #333333;
    /* Couleurs du dégradé - nouvelles couleurs */
    --color-bordeaux: #3F1717;
    --color-red: #FF0707;
    --color-blue: #0042FF;
    --color-accent: #FF0707;
    --color-accent-light: #FF3333;
    --color-success: #2d6a4f;
    --color-error: #dc2626;
    --color-text: #1a1a1a;
    --color-text-muted: #6b6b6b;
    --color-text-light: #f5f5f5;
    --color-border: #e8e4df;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0);
    --shadow-hover: 0 12px 40px rgba(139, 21, 56, 0.2);
    --radius: 12px;
    --radius-sm: 6px;
}

html {
    scroll-behavior: smooth;
}

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

/* Pas de texture - fond propre et moderne */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary-light);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ============================================
   FEATURE LIGHTBOX MODAL
   ============================================ */
.feature-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.feature-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.feature-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10001;
    line-height: 1;
    padding: 10px;
}

.feature-lightbox .lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.feature-lightbox .lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Make feature images clickable */
.feature-card .feature-image {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card .feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(129, 140, 248, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.feature-card .feature-image:hover::after {
    background: rgba(129, 140, 248, 0.15);
}

.feature-card .feature-image:hover img {
    transform: scale(1.02);
}

.feature-card .feature-image img {
    transition: transform 0.3s ease;
}

/* Zoom icon indicator on hover */
.feature-card .feature-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 32px;
    z-index: 2;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.feature-card .feature-image:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ============================================
   WAITING LIST MODAL
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg-navbar);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.725rem; /* 15% plus grand que 1.5rem */
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-bordeaux) 0%, var(--color-red) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo blanc dans la navbar */
.navbar .logo {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
}

/* Social Icons in Navbar */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

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

.nav-links a:hover {
    color: white;
}

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

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

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

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--color-bordeaux) 0%, var(--color-red) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Styles spécifiques pour "Découvrez" (petit) et "Sp3ctra" (très grand) */
.title-discover {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 8px;
}

.title-sp3ctra {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-badge {
    margin-top: 32px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

/* Badge ruban pleine largeur */
.badge-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 24px;
    background: #8B1538;
    border: none;
    width: 100%;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: white;
    text-transform: uppercase;
    font-family: var(--font-display);
    transition: font-size 0.3s ease;
}

.laurel-left,
.laurel-right {
    width: 50px;
    height: 40px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.laurel-right {
    transform: scaleX(-1);
}

.hero-image-wrapper {
    position: relative;
    margin-top: 48px;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    overflow: visible;
}

.hero-image-bg {
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    height: auto;
    z-index: -1;
    overflow: visible;
}

.hero-image-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    z-index: 100;
    background: white;
    padding: 32px 0 24px;
    /* Bordure haute floue */
    box-shadow: 0 -20px 40px rgba(255, 255, 255, 0.9);
}

.hero-scroll::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}

.scroll-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-text-muted);
    border-bottom: 2px solid var(--color-text-muted);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { top: 0; }
    50% { top: 6px; }
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.news-card {
    background: var(--color-bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.news-card.featured .news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.2);
    color: var(--color-primary-light);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.news-card p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* News Carousel - Full Width Sliding */
.news-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0 40px;
}

.carousel-container {
    display: flex;
    gap: 24px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 calc((100vw - 1200px) / 2);
}

.carousel-slide {
    flex: 0 0 1100px;
    width: 1100px;
    min-height: 400px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.carousel-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-size: 0;
    line-height: 0;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

.carousel-slide:hover .carousel-image img {
    transform: scale(1.05);
}

.carousel-content {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.carousel-content .news-tag {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.carousel-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: white;
}

.carousel-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-border);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--color-text);
}

.carousel-control:hover {
    background: white;
    border-color: var(--color-primary);
    color: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 24px;
}

.carousel-control.next {
    right: 24px;
}

.carousel-control svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    gap: 12px;
    z-index: 10;
    justify-content: center;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.3);
    border: 2px solid rgba(26, 26, 26, 0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator:hover {
    background: rgba(26, 26, 26, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: #1a1a1a;
    width: 32px;
    border-radius: 6px;
    border-color: #1a1a1a;
}

/* Responsive Carousel */
@media (max-width: 968px) {
    .news-carousel {
        padding: 20px 0 40px;
    }
    
    .carousel-container {
        padding: 0;
        justify-content: center;
        gap: 16px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(100vw - 48px);
        width: calc(100vw - 48px);
        max-width: 600px;
        display: flex;
        flex-direction: column;
        min-height: auto;
        margin: 0 auto;
    }
    
    .carousel-image {
        flex: 0 0 auto;
        aspect-ratio: 16 / 9;
        width: 100%;
        display: block;
        font-size: 0;
        line-height: 0;
    }
    
    .carousel-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        margin: 0;
        padding: 0;
        border: none;
    }
    
    .carousel-content {
        flex: 1 0 auto;
        padding: 28px 24px;
        margin: 0;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .carousel-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control.prev {
        left: 8px;
    }
    
    .carousel-control.next {
        right: 8px;
    }
}

@media (max-width: 640px) {
    .carousel-slide {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px);
        max-width: none;
    }
    
    .carousel-image {
        aspect-ratio: 16 / 9;
    }
    
    .carousel-content {
        padding: 24px 20px;
    }
    
    .carousel-content h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }
    
    .carousel-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 calc(100vw - 24px);
        width: calc(100vw - 24px);
    }
    
    .carousel-image {
        aspect-ratio: 16 / 9;
    }
    
    .carousel-content {
        padding: 20px 16px;
    }
    
    .carousel-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .carousel-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .carousel-control {
        width: 32px;
        height: 32px;
    }
    
    .carousel-control.prev {
        left: 4px;
    }
    
    .carousel-control.next {
        right: 4px;
    }
    
    .carousel-indicators {
        margin-top: 20px;
    }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    padding: 100px 0;
    text-align: center;
}

.intro-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-bordeaux) 0%, var(--color-red) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-tagline {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.intro-image {
    max-width: 900px;
    margin: 0 auto;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-image video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #000;
}

/* Video Container with Play Button */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 7, 7, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(255, 7, 7, 0.4);
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 7, 7, 1);
    box-shadow: 0 12px 48px rgba(255, 7, 7, 0.6);
}

.video-play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 6px; /* Décalage pour centrer visuellement le triangle play */
}

.video-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Positionner les contrôles natifs en bas à droite */
.video-container video::-webkit-media-controls-enclosure {
    justify-content: flex-end;
}

/* ============================================
   PRESALE SECTION
   ============================================ */
.presale-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-bordeaux) 0%, var(--color-red) 50%, var(--color-blue) 100%);
    color: white;
    text-align: center;
}

.presale-content {
    max-width: 900px;
    margin: 0 auto;
}

.presale-section .section-title {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.presale-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.presale-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.presale-partners {
    margin: 48px 0;
}

.presale-partners h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-logo img {
    max-height: 60px;
    opacity: 0.9;
    transition: var(--transition);
}

.partner-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.presale-section .btn {
    background: white;
    color: var(--color-primary);
    margin-top: 24px;
}

.presale-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--color-bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

/* Image 4:3 en haut */
.feature-image {
    width: 100%;
    aspect-ratio: 4 / 3; /* Image 4:3 */
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

/* Contenu texte en dessous, toujours visible */
.feature-content {
    padding: 28px;
}

.feature-content h3 {
    color: var(--color-text);
}

.feature-content p,
.feature-content li {
    color: var(--color-text-muted);
}

.feature-icon .icon {
    color: var(--color-text);
}

.feature-icon {
    font-size: 1rem; /* 50% plus petit */
    margin-bottom: 16px;
}

.feature-icon .icon {
    width: 24px;
    height: 24px;
}

.feature-icon .icon-lg {
    width: 24px;
    height: 24px;
}

/* ============================================
   QUICK START SECTION
   ============================================ */
.quickstart-section {
    background: #000000;
    padding: 80px 0;
    width: 100%;
}

.quickstart-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.quickstart-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 24px;
    min-height: 2.8em;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.step-desc {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.step-platforms {
    margin-top: 12px;
}

.platform-icons {
    height: 24px;
    width: auto;
    /* Pas de filtre - l'image doit s'afficher avec ses couleurs d'origine */
    opacity: 0.9;
}

/* Quick Start Responsive */
@media (max-width: 1200px) {
    .quickstart-grid {
        gap: 16px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 968px) {
    .quickstart-section {
        padding: 60px 0;
    }
    
    .quickstart-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 24px;
    }
    
    .quickstart-step:nth-child(4),
    .quickstart-step:nth-child(5) {
        grid-column: span 1;
    }
    
    /* Centrer les 2 derniers éléments sur la 2e ligne */
    .quickstart-grid {
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .quickstart-section {
        padding: 48px 0;
    }
    
    .quickstart-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    
    .quickstart-step {
        padding: 16px 8px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .step-title {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .step-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .quickstart-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 280px;
    }
    
    .quickstart-step {
        padding: 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
}

/* Badge cliquable - Effet hover subtil */
.badge-link {
    text-decoration: none;
    cursor: pointer;
    display: block;
    width: 100%;
}

.badge-link:hover .badge-text {
    font-size: 0.95rem;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.feature-list {
    list-style: none;
    margin-bottom: 16px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.feature-content p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ============================================
   SPECS SECTION
   ============================================ */
.specs-section {
    padding: 100px 0;
}

.specs-header {
    text-align: center;
    margin-bottom: 48px;
}

.specs-tagline {
    font-size: 1.3rem;
    color: var(--color-text-muted);
}

.specs-tagline strong {
    color: var(--color-primary-light);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.spec-card {
    background: #f0f0f2; /* Légèrement plus foncé que le fond blanc */
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

/* Animation hover supprimée pour .spec-card */

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.spec-card h4 {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--color-primary-light);
}

.about-partners h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partner {
    background: var(--color-bg-card);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.partner-name {
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.partner-name:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

/* Animation hover supprimée pour .faq-item */

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 16px;
}

.faq-item p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.contact-form-container h3,
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

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

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* Contact Info */
.contact-info {
    padding: 32px;
    background: var(--color-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    height: fit-content;
}

.info-block {
    margin-bottom: 32px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h4 {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-email {
    color: var(--color-primary-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    word-break: break-word;
    display: inline-block;
}

.contact-email:hover {
    color: var(--color-accent);
}

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

.contact-text strong {
    color: var(--color-text);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.events-list {
    list-style: none;
}

.events-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
}

.events-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.events-list li small {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d0d1a 0%, #0f1629 50%, #121225 100%);
    border-top: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo .logo {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: block;
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: right;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Contact Form Styles */
.footer-contact-section {
    margin-bottom: 60px;
}

.footer-contact-section .contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-contact-section h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.footer-contact-section label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-contact-section .contact-email {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-section .contact-email:hover {
    color: white;
}

.footer-contact-section .contact-text {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-section .contact-text strong {
    color: white;
}

.footer-contact-section .info-block h4 {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.footer-contact-section .form-note {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .checkbox-group label {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-section .contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

/* Bouton rouge simple dans le footer */
.footer-contact-section .btn-primary {
    background: #FF0707;
    color: white;
    border: none;
    box-shadow: none;
}

.footer-contact-section .btn-primary:hover {
    background: #CC0000;
    transform: none;
    box-shadow: none;
}

.footer-contact-section .btn-primary:focus {
    outline: none;
    box-shadow: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: nowrap;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    /* Cacher les icônes et langues en mode normal */
    .social-icons,
    .lang-selector {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
    
    /* Menu mobile fermé */
    .nav-links {
        display: none;
        position: fixed;
        top: 69px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 69px);
        min-height: calc(100vh - 69px);
        background: var(--color-bg-navbar);
        flex-direction: column;
        padding: 32px 24px 40px;
        gap: 4px;
        border: none;
        overflow-y: auto;
        z-index: 999;
        justify-content: flex-start;
        align-items: stretch;
    }
    
    /* Menu mobile ouvert */
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        text-align: center;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 1rem;
        font-weight: 500;
        padding: 14px 20px;
        color: white;
        display: block;
        width: 100%;
        border-radius: 8px;
        transition: background 0.2s ease;
        white-space: normal;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    /* Pas de pseudo-éléments complexes */
    .nav-links::after {
        display: none;
    }
    
    /* Styles des icônes dans le menu mobile */
    .social-icons.mobile-visible {
        display: flex !important;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .lang-selector.mobile-visible {
        display: flex !important;
        justify-content: center;
        margin-top: 16px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links p {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive */
    .footer-contact-section .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-contact-section .contact-info {
        padding: 24px;
    }
    
    .info-block {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 40px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .news-content,
    .feature-content {
        padding: 20px;
    }
    
    .spec-card {
        padding: 24px;
    }
    
    .contact-info {
        padding: 24px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .lang-selector {
        gap: 2px;
        padding: 3px;
    }
    
    .lang-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
}

/* ============================================
   FORM SUCCESS/ERROR STATES
   ============================================ */
.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-success);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    color: var(--color-success);
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--color-error);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    color: var(--color-error);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   WAITING LIST MODULE
   ============================================ */
.waitlist-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    animation: slideInUp 0.5s ease-out;
}

.waitlist-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    min-width: 280px;
    transition: var(--transition);
}

.waitlist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

.waitlist-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: var(--font-display);
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    background: var(--color-accent-light);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.waitlist-status {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Waiting List Modal */
.waitlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.waitlist-modal.active {
    display: flex;
}

.waitlist-modal-content {
    background: var(--color-bg-card);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    border: 1px solid var(--color-border);
    animation: modalSlideIn 0.3s ease-out;
}

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

.waitlist-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.waitlist-close:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.waitlist-modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-modal-desc {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.waitlist-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.waitlist-form input[type="email"],
.waitlist-form input[type="text"] {
    padding: 14px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.radio-group {
    flex-direction: row !important;
    gap: 24px !important;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--color-text);
    font-weight: 500;
}

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

.waitlist-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: var(--font-display);
}

.waitlist-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.waitlist-price-note {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.waitlist-price-note strong {
    color: var(--color-primary-light);
    font-size: 1.2rem;
}

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

/* Responsive Waiting List */
@media (max-width: 480px) {
    .waitlist-float {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    
    .waitlist-card {
        padding: 16px 20px;
        min-width: unset;
    }
    
    .waitlist-price {
        font-size: 1.5rem;
    }
    
    .waitlist-modal-content {
        padding: 32px 24px;
    }
    
    .radio-group {
        flex-direction: column !important;
        gap: 12px !important;
    }
}




/* ============================================
   ICON STYLES ENHANCEMENT
   ============================================ */
.feature-icon .icon,
.spec-icon .icon {
    color: var(--color-text);
    transition: color 0.3s ease, transform 0.3s ease;
}

.badge .icon {
    color: var(--color-accent);
    filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.3));
}

.badge .icon svg {
    fill: currentColor;
    stroke: none;
}

.events-list .icon {
    color: var(--color-text);
    margin-right: 8px;
}


/* ============================================
   LOADING STATE
   ============================================ */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
    
    .reveal-stagger .reveal-item {
        opacity: 1;
        transform: none;
    }
}
