:root {
    --primary-color: #FA233B;
    --bg-color: #0c0c0c;
    --card-bg: #1a1a1a;
    --text-color: #ffffff;
    --text-dim: #a0a0a0;
    --accent-color: #d4af37; /* Walnut gold */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header & Nav */
header {
    background: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 5% 100px;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1510 100%);
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 40px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
}

/* Features Section */
.features {
    background-color: #000;
}

.features h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-item p {
    color: var(--text-dim);
}

/* Privacy Notice */
.privacy-notice {
    background-color: #0c0c0c;
}

.privacy-notice h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.policy-details {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--accent-color);
}

.policy-details ul {
    list-style: none;
}

.policy-details li {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-dim);
}

.policy-details strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 4px;
}

/* Footer */
footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-content p {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 15px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

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