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

:root {
    --primary: #DC2626;
    --dark: #1A1A1A;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

/* Hero */
.hero {
    margin-top: 80px;
    padding: 100px 2rem 120px;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.highlight {
    color: #FEF08A;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Value Props */
.value-props {
    padding: 100px 2rem;
    background: var(--white);
}

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

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.prop-card {
    text-align: left;
}

.prop-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.prop-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.prop-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Menu */
.menu {
    padding: 100px 2rem;
    background: var(--light-gray);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.menu-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.menu-category {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 2rem;
}

.pizza-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pizza-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.pizza-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 2rem;
    background: var(--white);
}

.cta-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1;
}

.cta-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.contact-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--light-gray);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
    min-width: 200px;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.whatsapp:hover {
    background: #25D366;
    color: white;
}

.email:hover {
    background: var(--dark);
    color: white;
}

.instagram:hover {
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCB045);
    color: white;
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    text-align: left;
    font-weight: 700;
    color: inherit;
    line-height: 1.3;
}

.btn-text small {
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.875rem;
}

.service-area {
    text-align: center;
    color: var(--gray);
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

footer p:first-child {
    font-weight: 700;
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 60px 1.5rem 80px;
    }

    h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 320px;
    }

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

    .value-props,
    .menu,
    .cta-section {
        padding: 60px 1.5rem;
    }
}