/* ============================================================
   Creative Radio Jingles — Shared Landing Page Stylesheet
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-dark:              #1a1a1a;
    --primary-green:        #3bb34a;
    --primary-green-hover:  #2e963b;
    --accent-gold:          #a2b72a;
    --text-light:           #ffffff;
    --text-muted:           #cbd5e1;
    --text-dark:            #1a1a1a;
    --bg-light:             #d9dcdf;
    --card-light:           #edf2f7;
    --border-color:         #cbd5e1;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- NAVBAR --- */
.navbar {
    background-color: var(--bg-dark);
    border-bottom: 2px solid #2d2d2d;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.nav-logo .brand-creative { color: var(--primary-green); }
.nav-logo .brand-jingles  { color: var(--text-light); font-weight: 700; margin-left: 4px; }

.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary-green); }
.nav-links a.nav-cta {
    background: var(--primary-green);
    color: #fff;
    padding: 6px 20px;
    border-radius: 6px;
    transition: background 0.2s, transform 0.1s;
}
.nav-links a.nav-cta:hover { background: var(--primary-green-hover); transform: translateY(-1px); color: #fff; }

/* --- HERO --- */
.lp-hero {
    background: linear-gradient(rgba(26,26,26,0.84), rgba(26,26,26,0.92)), url('/hero-bg.webp') no-repeat center center / cover;
    color: var(--text-light);
    text-align: center;
    padding: 56px 20px 52px;
    border-bottom: 5px solid var(--primary-green);
}
.lp-hero-inner { max-width: 860px; margin: 0 auto; }

.lp-hero img.lp-logo {
    width: 88px;
    max-width: 70%;
    display: block;
    margin: 0 auto 18px;
}
.lp-tagline {
    text-transform: uppercase;
    color: var(--primary-green);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.lp-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 18px;
}
.lp-hero .lp-sub {
    font-size: 1.15rem;
    color: var(--accent-gold);
    max-width: 700px;
    margin: 0 auto 36px;
}
.btn-cta {
    display: inline-block;
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59,179,74,0.35);
}
.btn-cta:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59,179,74,0.45);
}
.btn-cta-outline {
    display: inline-block;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    text-decoration: none;
    padding: 13px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 12px;
    transition: all 0.3s;
}
.btn-cta-outline:hover { background: var(--primary-green); color: #fff; }

/* --- MAIN WRAPPER --- */
.lp-main { max-width: 960px; margin: 32px auto 0; padding: 0 20px 40px; }

/* --- STATS BAR --- */
.lp-stats {
    display: flex;
    gap: 16px;
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    border: 1px solid #2d2d2d;
    text-align: center;
}
.lp-stat { flex: 1; }
.lp-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 6px;
}
.lp-stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* --- SECTION TITLES --- */
.lp-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.lp-section-sub {
    text-align: center;
    color: #555;
    margin-bottom: 28px;
    font-size: 1rem;
}

/* --- BENEFITS GRID --- */
.lp-benefits { margin-bottom: 32px; }
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lp-benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 26px 22px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.lp-benefit-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.lp-benefit-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.lp-benefit-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.lp-benefit-card p  { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* --- DEMO SECTION --- */
.lp-demo {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 28px;
    border: 1px solid #2d2d2d;
    text-align: center;
}
.lp-demo h2 { color: var(--text-light); font-size: 1.4rem; margin-bottom: 10px; }
.lp-demo p  { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.lp-demo audio { width: 100%; max-width: 520px; border-radius: 8px; }
.lp-demo .demo-links { margin-top: 20px; }
.lp-demo .demo-links a {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lp-demo .demo-links a:hover { text-decoration: underline; }

/* --- PROCESS --- */
.lp-process { margin-bottom: 32px; }
.lp-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lp-process-card {
    background: #fff;
    border-radius: 12px;
    padding: 26px 22px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.lp-step-num {
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 auto 14px;
}
.lp-process-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.lp-process-card p  { font-size: 0.88rem; color: #555; line-height: 1.6; }

/* --- CTA BANNER --- */
.lp-cta-banner {
    background: var(--primary-green);
    border-radius: 16px;
    padding: 44px 32px;
    text-align: center;
    margin-bottom: 32px;
    box-shadow: 0 8px 30px rgba(59,179,74,0.25);
}
.lp-cta-banner h2 { color: #fff; font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.lp-cta-banner p  { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
.lp-cta-banner .btn-white {
    display: inline-block;
    background: #fff;
    color: var(--primary-green);
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.lp-cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }

/* --- FAQ --- */
.lp-faq { margin-bottom: 32px; }
.lp-faq-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.lp-faq-item { background: #fff; border-radius: 10px; padding: 22px 24px; border: 1px solid var(--border-color); }
.lp-faq-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.lp-faq-item p  { font-size: 0.9rem; color: #555; line-height: 1.65; }

/* --- FOOTER --- */
footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    text-align: center;
    padding: 32px 20px;
    font-size: 0.9rem;
    margin-top: 20px;
}
footer .social-row { display: flex; gap: 16px; justify-content: center; margin-bottom: 16px; }
footer .social-icon {
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}
footer .social-icon svg { width: 18px; height: 18px; }
footer .social-icon:hover { color: var(--primary-green); background: rgba(59,179,74,0.15); }
footer p { margin-bottom: 6px; }
footer .footer-highlight { color: var(--primary-green); font-weight: 600; }
footer a { color: inherit; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .lp-hero h1 { font-size: 2rem; }
    .lp-benefits-grid,
    .lp-process-grid { grid-template-columns: 1fr; }
    .lp-stats { flex-direction: column; gap: 20px; padding: 24px 20px; }
    .lp-demo { padding: 24px 16px; }
    .lp-cta-banner { padding: 32px 20px; }
    .lp-cta-banner h2 { font-size: 1.5rem; }
    .nav-links a:not(.nav-cta) { display: none; }
}
