:root {
    /* Updated palette that compliments red/gold logo */
    --primary: #C84141;
    --primary-dark: #A83535;
    --accent: #D4A017;
    --dark: #1A1A1A;
    --light: #FAFAFA;
    --success: #22c55e;
    --text-main: #2C2C2C;
    --text-muted: #666666;
    --border: #E5E5E5;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #fff;
}

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

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo span { color: var(--accent); }

.logo img {
    max-height: 60px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    display: block;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
    color: var(--primary);
    border-bottom: 1.5px solid var(--primary);
}

.nav-links .btn.btn-primary {
    border-bottom: none;
    padding: 12px 24px;
}

.nav-links .btn.btn-primary:hover {
    border-bottom: none;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 65, 65, 0.3);
}

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

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

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Trust Badge --- */
.trust-badge {
    background: #FFF9E6;
    border: 1px solid #FFE699;
    padding: 12px 0;
    text-align: center;
}

.trust-badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    transition: opacity 0.2s;
}

.trust-logo-link:hover {
    opacity: 0.7;
}

.mini-logo {
    height: 20px;
    width: auto;
}

/* --- Hero Section --- */
.hero {
    padding: 80px 0 0px;
    background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
    text-align: center;
}

.badge {
    background: #FFEAEA;
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-subtext {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* --- Dashboard Preview --- */
.dashboard-preview {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.dashboard-preview::before {
    content: '📊';
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.dashboard-preview::after {
    content: 'Dashboard Preview: Real-Time Stats, Ad Zone Management, Geotargeting Controls';
    text-align: center;
    font-size: 16px;
}

/* --- Stats Bar --- */
.stats-bar {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 16px;
}

/* --- Platform Compatibility --- */
.platform-bar {
    padding: 40px 0;
    text-align: center;
    background: var(--light);
    border-bottom: 1px solid var(--border);
}

.platform-bar p {
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.platform-logo {
    font-weight: 800;
    font-size: 18px;
    color: var(--text-muted);
}

/* --- Feature Grid --- */
.features {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-title p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.card {
    background: white;
    padding: 36px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    color: var(--primary);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Pricing Comparison --- */
.pricing {
    padding: 100px 0;
    background: var(--light);
}

.price-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-col {
    padding: 60px 40px;
    text-align: center;
}

.price-col.competitor {
    background: #fff;
    color: var(--text-muted);
}

.price-col.peeps {
    background: var(--dark);
    color: white;
    position: relative;
}

.price-col.peeps::before {
    content: 'MOST PROFITABLE';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 800;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.price-col h3 {
    font-size: 20px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.price-value {
    font-size: 64px;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1;
}

.price-value span {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.6;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 30px auto 40px;
    display: inline-block;
}

.price-features li {
    margin-bottom: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    font-size: 18px;
    padding: 16px 40px;
}

.cta-section .btn-primary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.cta-subtext {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* --- Footer --- */
footer {
    padding: 60px 0 40px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links .btn.btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .price-table {
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        height: 300px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}
