:root {
    --primary-red: #DA291C;
    --primary-red-hover: #b82217;
    --bg-dark: #1E1E1E;
    --bg-darker: #121212;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --accent-green: #2ecc71;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.text-highlight {
    color: var(--primary-red);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

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

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--primary-red);
}

.lang-switcher {
    background-color: var(--card-bg);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.lang-switcher:hover {
    border-color: var(--primary-red);
}

.lang-switcher option {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(218, 41, 28, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-red);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background-color: rgba(218, 41, 28, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218,41,28,0.15) 0%, rgba(30,30,30,0) 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.store-badges {
    display: flex;
    gap: 16px;
}

.store-badge img {
    height: 40px;
    transition: transform 0.3s ease;
}

.store-badge:hover img {
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background-color: var(--bg-darker);
    border-radius: 40px;
    border: 8px solid #333;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 2px #444;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
}

.phone-screen::after {
    content: "L'Affaire";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-red);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 41, 28, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 16px;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to right, rgba(218, 41, 28, 0.1), transparent);
}

.cta-banner h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h3 {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 16px;
    font-weight: 800;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .cta-group {
        align-items: center;
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
    
    .nav-links {
        display: none;
    }
}
