:root {
    --primary-color: #ff6b35;
    --secondary-color: #004643;
    --accent-color: #f9bc60;
    --text-dark: #001e1d;
    --text-light: #f9f9f9;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --border-color: #e1e5e9;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Header */
.header {
    background: var(--background-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo img {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%),
        url('../img/logo-front.png');
    background-size: auto, 150px 150px;
    background-repeat: no-repeat, repeat;
    background-position: center, center;
    padding: 4rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/logo-front.png');
    background-size: 150px 150px;
    background-repeat: repeat;
    opacity: 0.07;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Patua One', serif;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    max-width: 500px;
    margin: 0 auto;
    background: var(--background-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-section h2 {
    font-family: 'Patua One', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* User Type Selector */
.user-type-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
    background: var(--background-light);
    padding: 4px;
    border-radius: 12px;
}

.user-type-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.user-type-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
}

.user-type-btn:hover:not(.active) {
    background: var(--background-white);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 12px;
    color: white;
}

.success-message h3 {
    font-family: 'Patua One', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--background-white);
}

.how-it-works h2 {
    text-align: center;
    font-family: 'Patua One', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-family: 'Patua One', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Benefits */
.benefits {
    padding: 6rem 0;
    background: var(--background-light);
}

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

.benefit-card {
    background: var(--background-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.benefit-card h3 {
    font-family: 'Patua One', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.benefit-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefit-card li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.benefit-tagline {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

.owner-benefit {
    border-top: 4px solid var(--accent-color);
}

.advertiser-benefit {
    border-top: 4px solid var(--primary-color);
}

/* Why It Works */
.why-it-works {
    padding: 6rem 0;
    background: var(--background-white);
}

.why-it-works h2 {
    text-align: center;
    font-family: 'Patua One', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}

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

.reason {
    text-align: center;
    padding: 2rem;
}

.reason h3 {
    font-family: 'Patua One', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.reason p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-section {
        margin: 0 20px;
        padding: 2rem;
    }
    
    .user-type-selector {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 2rem;
    }
}

/* Everyone Wins Section */
.everyone-wins {
    padding: 6rem 0;
    background: var(--background-light);
}

.everyone-wins h2 {
    text-align: center;
    font-family: 'Patua One', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.win-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.win-item h3 {
    font-family: 'Patua One', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.win-item p {
    font-size: 1rem;
    opacity: 0.8;
}

.everyone-wins-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Final Pitch Section */
.final-pitch {
    padding: 6rem 0;
    background: var(--background-white);
}

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

.final-pitch h2 {
    font-family: 'Patua One', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.pitch-text {
    margin-bottom: 4rem;
}

.pitch-line {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.pitch-hook {
    font-size: 1.3rem;
    margin: 2rem 0;
    color: var(--primary-color);
    line-height: 1.5;
}

.pitch-twist {
    font-size: 1.2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    line-height: 1.6;
}

.final-cta {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.final-cta h3 {
    font-family: 'Patua One', serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn.primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.cta-btn.primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

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

.cta-btn.secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .final-pitch h2 {
        font-size: 2rem;
    }
    
    .pitch-line, .pitch-hook, .pitch-twist {
        font-size: 1.1rem;
    }
    
    .final-cta {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}