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

:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #1B9CFC;
    --success: #26DE81;
    --danger: #FC5C65;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --gray: #999;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px 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 h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    color: var(--gray);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-button {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 0.5rem;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-content > p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.stat h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray);
    font-size: 0.9rem;
}

.phone-mockup {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 2rem;
    padding: 1rem;
    aspect-ratio: 9/16;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.phone-screen {
    background: white;
    border-radius: 1.5rem;
    width: 100%;
    height: 100%;
    padding: 2rem 1rem;
    color: #333;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.phone-screen p {
    background: var(--light);
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-large {
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--light);
}

.btn-primary-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    background: var(--primary);
    color: white;
}

.btn-primary-large:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Sections */
section {
    padding: 4rem 2rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

/* How It Works */
.how-it-works {
    background: var(--light);
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step p {
    color: var(--gray);
}

/* Bonuses */
.bonuses {
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.bonus-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.bonus-card.highlight {
    border: 3px solid var(--primary);
}

.bonus-header {
    padding: 1.5rem;
    color: white;
    position: relative;
}

.bonus-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--danger);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bonus-body {
    padding: 1.5rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.requirement {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.time {
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Why Bremo */
.why-bremo {
    background: var(--light);
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature p {
    color: var(--gray);
}

/* Social Proof */
.social-proof {
    background: var(--secondary);
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.social-proof h2 {
    color: white;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.testimonial p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.author {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0 !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    color: white;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
}

.cta-section p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
}

.guarantee {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    opacity: 0.95;
}

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

footer p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .nav-links {
        gap: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}
