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

:root {
    /* Couleurs principales - Thème noir/rose/fushia/magenta */
    --primary-pink: #FF1493;
    --pink-light: #FF69B4;
    --pink-dark: #DC143C;
    --fuchsia: #FF00FF;
    --magenta: #FF00CC;
    --magenta-dark: #CC0099;
    
    /* Couleurs de fond - Thème sombre */
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;
    
    /* Couleurs de texte - Thème clair sur fond sombre */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-lighter: #b0b0b0;
    --text-muted: #888888;
    
    /* Couleurs de bordure */
    --border-color: rgba(255, 20, 147, 0.2);
    --border-hover: rgba(255, 20, 147, 0.5);
    
    /* Ombres avec effet néon */
    --shadow-pink: rgba(255, 20, 147, 0.3);
    --shadow-fuchsia: rgba(255, 0, 255, 0.3);
    --shadow-magenta: rgba(255, 0, 204, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-white);
    background: var(--bg-black);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 204, 0.03) 0%, transparent 70%);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

/* Snow Animation Container */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: fall linear infinite;
    pointer-events: none;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

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

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

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

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-download,
.app-badge {
    position: relative;
    overflow: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 20, 147, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}



/* Header snow particles removed - animation was too distracting */

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.nav-container .btn-download {
    margin-left: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 60px;
    min-height: 60px;
    position: relative;
    z-index: 1001;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.4));
    transition: filter 0.3s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

.logo-container:hover .logo-image {
    filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.6));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-white);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-pink), var(--fuchsia), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-text {
    transform: translateX(3px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    padding: 0.5rem 0;
    display: inline-block;
    outline: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--fuchsia), var(--magenta));
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--text-white);
}

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

.nav-menu li {
    position: relative;
    z-index: 2;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary-pink), var(--fuchsia), var(--magenta));
    color: var(--text-white) !important;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Space Grotesk', sans-serif;
    z-index: 3;
    pointer-events: auto;
    outline: none;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3), 0 0 20px rgba(255, 0, 255, 0.2);
}

.btn-download:hover {
    background: linear-gradient(135deg, var(--magenta-dark), var(--primary-pink), var(--fuchsia));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4), 0 0 30px rgba(255, 0, 255, 0.3);
}

.btn-download:active {
    transform: translateY(0);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--shadow-pink);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    color: var(--bg-white);
    padding: 12rem 2rem 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1551524164-6cf77f7e1e2f?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    animation: parallaxMove 20s ease-in-out infinite;
    transform: scale(1.1);
}

@keyframes parallaxMove {
    0%, 100% {
        transform: scale(1.1) translateY(0);
    }
    50% {
        transform: scale(1.15) translateY(-20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(10, 10, 10, 0.8) 30%,
        rgba(255, 20, 147, 0.3) 50%,
        rgba(255, 0, 255, 0.2) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.7;
    }
    66% {
        transform: translateY(20px) translateX(-20px);
        opacity: 0.6;
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    box-shadow: 0 0 20px var(--shadow-pink);
    animation: slideIn 0.8s ease-out, pulse 2s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

.hero-logo {
    display: inline-block;
    margin-bottom: 2rem;
    animation: slideIn 0.8s ease-out, float 6s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
    filter: drop-shadow(0 0 20px var(--shadow-pink)) drop-shadow(0 0 40px var(--shadow-fuchsia));
}

.hero-logo-image {
    width: 280px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover .hero-logo-image {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px var(--shadow-pink)) drop-shadow(0 0 50px var(--shadow-fuchsia)) drop-shadow(0 0 70px var(--shadow-magenta));
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 
        0 0 20px var(--shadow-pink),
        0 0 40px var(--shadow-fuchsia),
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideIn 1s ease-out, float 8s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
}

.title-line {
    display: block;
    animation: slideInWord 0.8s ease-out both;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line {
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 3rem;
    opacity: 0.95;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 15px var(--shadow-pink);
    animation: slideIn 1s ease-out 0.6s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    animation: slideIn 1s ease-out 0.8s both;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.15);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--fuchsia), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--shadow-pink);
    filter: drop-shadow(0 0 10px var(--shadow-pink));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 20px var(--shadow-pink)) drop-shadow(0 0 30px var(--shadow-fuchsia));
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
    transform: translateY(-3px);
}

.app-badge {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.app-badge:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
}

.btn-app-store,
.btn-google-play {
    display: inline-block;
    text-decoration: none;
}

/* Tagline Section */
.tagline {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    position: relative;
    overflow: hidden;
}

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

.tagline-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tagline-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: slideIn 0.8s ease-out;
}

.tagline-icon {
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.tagline-icon:nth-child(1) {
    animation-delay: 0s;
}

.tagline-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.tagline-icon:nth-child(3) {
    animation-delay: 1s;
}

.tagline h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    text-shadow: 0 0 20px var(--shadow-pink);
}

.word-animate {
    display: inline-block;
    animation: slideInWord 0.6s ease-out both;
    position: relative;
}

.word-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.word-animate:nth-child(2) {
    animation-delay: 0.3s;
}

.word-animate:nth-child(3) {
    animation-delay: 0.5s;
}

.word-animate::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--pink-light));
    border-radius: 2px;
    animation: underlineExpand 0.8s ease-out both;
}

.word-animate:nth-child(1)::after {
    animation-delay: 0.4s;
}

.word-animate:nth-child(2)::after {
    animation-delay: 0.6s;
}

.word-animate:nth-child(3)::after {
    animation-delay: 0.8s;
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.tagline p {
    font-size: 1.25rem;
    color: var(--text-lighter);
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 50%, var(--bg-black) 100%);
    position: relative;
}

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

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideIn 0.8s ease-out;
}

.feature-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    animation: pulse 2s ease-in-out infinite;
}

.feature:nth-child(1) .feature-image {
    animation-delay: 0.1s;
}

.feature:nth-child(2) .feature-image {
    animation-delay: 0.2s;
}

.feature:nth-child(3) .feature-image {
    animation-delay: 0.3s;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-content {
    padding: 1rem;
    position: relative;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.feature-content h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
    line-height: 1.2;
    animation: slideIn 0.8s ease-out;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px var(--shadow-pink);
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--pink-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature:hover .feature-content h3::after {
    width: 100%;
}

.feature-content h3:hover {
    color: var(--primary-pink);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-lighter);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    animation: slideIn 0.6s ease-out both;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-pink);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.feature-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-content p {
    font-size: 1.15rem;
    color: var(--text-lighter);
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
    text-shadow: 0 0 20px var(--shadow-pink);
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-lighter);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* FAQ Section */
.faq {
    padding: 7rem 2rem;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 950px;
    margin: 0 auto;
}

.faq h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
    text-shadow: 0 0 20px var(--shadow-pink);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 20px var(--shadow-pink);
    transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
    animation: slideIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.5s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 30px var(--shadow-pink);
    transform: translateY(-2px) scale(1.01);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.3;
}

.faq-item p {
    color: var(--text-lighter);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Contact Section */
.contact {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 105, 180, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideIn 0.6s ease-out;
}

.contact-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--primary-pink), var(--fuchsia), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--shadow-pink);
    filter: drop-shadow(0 0 10px var(--shadow-pink));
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-lighter);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--shadow-pink);
    animation: slideIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--pink-light), var(--primary-pink));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px var(--shadow-pink), 0 0 20px var(--shadow-pink);
    transform: translateY(-2px);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--fuchsia), var(--magenta));
    color: var(--text-white);
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-pink), 0 0 30px var(--shadow-fuchsia);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--magenta-dark), var(--primary-pink), var(--fuchsia));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px var(--shadow-pink), 0 0 50px var(--shadow-fuchsia);
}

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

.btn-submit .btn-icon {
    font-size: 1.2rem;
    animation: float 2s ease-in-out infinite;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--shadow-pink));
    display: block;
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 15px var(--shadow-pink)) drop-shadow(0 0 25px var(--shadow-fuchsia));
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .feature {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 5rem;
    }

    .hero-title {
        margin-bottom: 2rem;
    }

    .app-badge {
        height: 50px;
    }

    .tagline,
    .features,
    .cta,
    .faq {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .feature {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 5rem;
    }

    .feature-reverse {
        direction: ltr;
    }

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

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

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 5rem 1rem 4rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .app-badge {
        width: 100%;
        height: auto;
        max-width: 200px;
        margin: 0 auto;
    }

    .tagline,
    .features,
    .cta,
    .faq,
    .contact {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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