/* =============================================
   MediaListPro - Light Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --blue:         #1e6fe4;
    --blue-dark:    #1557c0;
    --blue-light:   #eef4fd;
    --blue-mid:     #dbeafe;
    --text-dark:    #0f172a;
    --text-mid:     #334155;
    --text-subtle:  #64748b;
    --bg:           #ffffff;
    --bg-off:       #f8fafc;
    --border:       #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
    --radius:       12px;
    --radius-lg:    20px;
    --max-w:        1100px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
section.alt { background: var(--bg-off); }

/* ── Typography ── */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 20px;
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 12px;
}
h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
p { color: var(--text-mid); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 18px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-box {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--blue);
    display: flex; align-items: center; justify-content: center;
}
.logo-box span { color: white; font-weight: 800; font-size: 0.75rem; line-height: 1.1; text-align: center; }
.logo-text { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.logo-text em { color: var(--blue); font-style: normal; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }

/* ── Buttons ── */
.btn {
    display: inline-block; padding: 13px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    cursor: pointer; border: none; transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,111,228,0.3); text-decoration: none; color: white; }
.btn-outline { background: white; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); text-decoration: none; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 90px;
}
.hero-text { padding-top: 40px; }
.eyebrow {
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--blue);
    background: var(--blue-light); padding: 5px 14px; border-radius: 50px; margin-bottom: 22px;
}
.hero-sub { font-size: 1.15rem; color: var(--text-mid); margin: 22px 0 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-price-note { font-size: 0.88rem; color: var(--text-subtle); margin-top: 16px; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 580px; }

/* ── Steps ── */
.steps-intro { max-width: 560px; margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--blue); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem;
    margin-bottom: 18px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 820px; margin: 48px auto 0; }
.price-card {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 44px 36px; text-align: center; background: var(--bg);
    box-shadow: var(--shadow-sm); position: relative;
    transition: box-shadow 0.2s;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--blue); border-width: 2px; }
.price-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: white; font-size: 0.78rem; font-weight: 700;
    padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.price-num { font-size: 3.2rem; font-weight: 800; color: var(--text-dark); line-height: 1; margin: 16px 0 4px; }
.price-per { font-size: 0.95rem; color: var(--text-subtle); margin-bottom: 18px; }
.price-card p { font-size: 0.97rem; margin-bottom: 26px; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.testimonial-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow-sm);
}
.quote-mark { font-size: 3rem; line-height: 1; color: var(--blue-mid); font-family: Georgia, serif; margin-bottom: -8px; }
.testimonial-card blockquote { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin: 0 0 20px; font-style: italic; }
.testimonial-card cite { font-style: normal; font-weight: 700; color: var(--text-dark); display: block; font-size: 0.92rem; }
.testimonial-card cite span { color: var(--text-subtle); font-weight: 400; }

/* ── Contact / Airtable ── */
.contact-wrap { max-width: 860px; margin: 0 auto; }
.contact-wrap p { font-size: 1.05rem; margin-bottom: 36px; }
.airtable-iframe-wrap {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
}

/* ── Footer ── */
footer {
    background: var(--text-dark); color: rgba(255,255,255,0.6);
    padding: 56px 0 40px;
}
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.footer-brand .logo-box { background: var(--blue); }
.footer-brand .logo-text { color: white; }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.5); max-width: 340px; }
.footer-contact a { color: rgba(255,255,255,0.8); font-weight: 500; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 40px 0 24px; }
.footer-copy { font-size: 0.85rem; text-align: center; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-image { order: -1; max-height: 340px; }
    .steps-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
}
@media (max-width: 640px) {
    section { padding: 64px 0; }
    .nav-links a:not(.btn) { display: none; }
}
