/*
Theme Name: JournoRequest
Theme URI: https://journorequest.com
Author: JI Digital
Author URI: https://jidigital.co.uk
Description: Marketing theme for JournoRequest — the affordable HARO alternative
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: journorequest
*/

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
    --bg: #FFFFFF;
    --bg-alt: #F8F7FF;
    --bg-dark: #0D0D14;
    --bg-card: #FAFAFA;
    --text: #0D0D14;
    --text-mid: #4B4B6B;
    --text-muted: #9090A8;
    --purple: #7C3AED;
    --purple-dark: #6D28D9;
    --purple-light: #EDE9FE;
    --purple-glow: rgba(124, 58, 237, 0.15);
    --border: #EAEAF0;
    --border-strong: #D4D4E0;
    --heading: 'Sora', sans-serif;
    --body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-pill: 9999px;
    --max: 760px;
    --wide: 1100px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); font-size: 1rem; line-height: 1.7; color: var(--text); background: var(--bg); }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--heading); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); font-weight: 600; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.wrap   { max-width: var(--max);  margin: 0 auto; padding: 0 2rem; }
.wrap-w { max-width: var(--wide); margin: 0 auto; padding: 0 2rem; }
.sec    { padding: 7rem 0; }
.sec-sm { padding: 4rem 0; }
.tc     { text-align: center; }
.mx     { margin-left: auto; margin-right: auto; }

/* Section label badge */
.label {
    display: inline-flex;
    align-items: center;
    font-family: var(--heading);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple);
    background: var(--purple-light);
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Dark section label */
.label-dark {
    display: inline-flex;
    align-items: center;
    font-family: var(--heading);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.12);
}

.sub {
    font-family: var(--body);
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 560px;
}

.sub-dark {
    font-family: var(--body);
    font-size: 1.125rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 560px;
}

/* ============================================================
   Floating Pill Nav
   ============================================================ */
.pill-nav {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 900px;
    transition: box-shadow 0.2s ease;
}

.pill-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 0.5rem 0.625rem 0.5rem 1.5rem;
    box-shadow: 0 2px 12px rgba(13, 13, 20, 0.06);
}

.pill-nav.scrolled .pill-nav__inner {
    box-shadow: 0 4px 24px rgba(13, 13, 20, 0.12);
}

.pill-nav__logo {
    font-family: var(--heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.03em;
    flex-shrink: 0;
    white-space: nowrap;
}

.pill-nav__logo b {
    color: var(--purple);
}

.pill-nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.pill-nav__links li { list-style: none; }

.pill-nav__links a {
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    transition: color 0.15s, background 0.15s;
}

.pill-nav__links a:hover,
.pill-nav__links a.on {
    color: var(--text);
    background: var(--border);
}

.pill-nav__cta {
    display: inline-flex;
    align-items: center;
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--purple);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background 0.15s;
    flex-shrink: 0;
    white-space: nowrap;
}

.pill-nav__cta:hover {
    background: var(--purple-dark);
    color: #fff;
}

/* Mobile hamburger */
.pill-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.375rem;
}

.pill-nav__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.2s;
}

/* Mobile drawer */
.pill-nav__drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 199;
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
}

.pill-nav__drawer.open { display: flex; }

.pill-nav__drawer a {
    font-family: var(--body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}

.pill-nav__drawer .pill-nav__cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
}

.pill-nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-p {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    box-shadow: 0 1px 3px rgba(124, 58, 237, 0.3);
}

.btn-p:hover {
    background: var(--purple-dark);
    color: #fff;
    border-color: var(--purple-dark);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    transform: translateY(-1px);
}

.btn-o {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}

.btn-o:hover {
    background: var(--purple-light);
    color: var(--purple);
}

.btn-g {
    background: transparent;
    color: var(--text-mid);
    border-color: var(--border-strong);
}

.btn-g:hover {
    border-color: var(--text);
    color: var(--text);
    background: var(--bg-card);
}

.btn-lg  { padding: 1.0625rem 2.5rem; font-size: 1rem; }
.btn-sm  { padding: 0.5rem 1.125rem; font-size: 0.8125rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    padding: 9rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .wrap { position: relative; z-index: 1; }

.hero .label { margin-bottom: 1.5rem; }

.hero h1 {
    margin-bottom: 1.375rem;
    letter-spacing: -0.035em;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .grad {
    background: linear-gradient(135deg, var(--purple) 0%, #A855F7 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .sub {
    margin: 0 auto 2.5rem;
    font-size: 1.1875rem;
}

.hero-actions {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-proof {
    margin-top: 1.75rem;
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-proof::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.hero-proof strong { color: var(--text); font-weight: 600; }

/* ============================================================
   Live Ticker
   ============================================================ */
.ticker {
    background: var(--bg-dark);
    color: #fff;
    padding: 0.75rem 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    gap: 4rem;
    animation: ticker-scroll 32s linear infinite;
    white-space: nowrap;
    font-family: var(--body);
    font-size: 0.75rem;
    letter-spacing: 0.01em;
}

.ticker-inner span { opacity: 0.55; }
.ticker-inner span b { color: #C4B5FD; opacity: 1; font-weight: 500; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.stats-item {
    text-align: center;
    padding: 2.75rem 1rem;
    border-right: 1px solid var(--border);
}

.stats-item:last-child { border-right: none; }

.stats-num {
    font-family: var(--heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stats-lbl {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ============================================================
   Dark Pitch Section
   ============================================================ */
.pitch {
    background: var(--bg-dark);
    color: #fff;
}

.pitch-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pitch-left .label-dark { margin-bottom: 1.5rem; }

.pitch-left h2 {
    color: #fff;
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.pitch-left h2 .grad {
    background: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pitch-left .sub-dark { margin-bottom: 2rem; }

.pitch-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pitch-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pitch-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--purple-glow);
    border: 1px solid rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.pitch-card-text h4 {
    font-family: var(--heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.pitch-card-text p {
    font-family: var(--body);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ============================================================
   How It Works Steps
   ============================================================ */
.steps-section { background: var(--bg-alt); }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.step {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--purple-light);
    border: 1px solid rgba(124, 58, 237, 0.2);
    font-family: var(--heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 1.125rem;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    color: var(--text);
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ============================================================
   Comparison Table
   ============================================================ */
.cmp-section { background: var(--bg); }

.cmp-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 3rem;
}

.cmp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.cmp-table thead tr {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.cmp-table th {
    font-family: var(--heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: left;
    padding: 1rem 1.25rem;
    color: var(--text-mid);
}

.cmp-table th:first-child { color: var(--text); }

.cmp-table th.th-jr {
    color: var(--purple);
    background: var(--purple-light);
}

.cmp-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
    vertical-align: middle;
}

.cmp-table tr:last-child td { border-bottom: none; }

.cmp-table td:first-child {
    font-weight: 500;
    color: var(--text);
    font-size: 0.875rem;
}

.cmp-table td.td-jr {
    font-weight: 600;
    color: var(--purple);
    background: rgba(124, 58, 237, 0.03);
}

.cmp-table td.good  { color: #16A34A; }
.cmp-table td.bad   { color: #DC2626; }
.cmp-table td.mid   { color: var(--text-mid); }

.cmp-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cmp-note a {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.proof { background: var(--bg-alt); }

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.proof-card {
    background: var(--bg);
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow 0.2s;
}

.proof-card:hover {
    box-shadow: 0 8px 32px rgba(13, 13, 20, 0.07);
}

.proof-quote-mark {
    font-family: var(--heading);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--purple-light);
    font-weight: 800;
}

.proof-quote {
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    flex: 1;
}

.proof-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.proof-author {
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.proof-author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 1px;
}

.proof-result {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--purple);
    background: var(--purple-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

/* ============================================================
   Who It's For (Personas)
   ============================================================ */
.personas { background: var(--bg); }

.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.persona-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.persona-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 0 0 3px var(--purple-glow);
}

.persona-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
}

.persona-role {
    font-family: var(--heading);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.5rem;
    display: block;
}

.persona-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    color: var(--text);
}

.persona-card p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ============================================================
   Trust Bar
   ============================================================ */
.trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2.5rem;
    padding: 1.5rem 2rem;
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.trust-item::before {
    content: '✓';
    font-size: 0.75rem;
    color: #22C55E;
    font-weight: 700;
}

/* ============================================================
   Final CTA Section
   ============================================================ */
.cta-section {
    background: var(--bg-dark);
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .label-dark { margin-bottom: 1.5rem; }

.cta-section h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-section .sub-dark {
    margin: 0 auto 2.5rem;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-white {
    background: #fff;
    color: var(--purple);
    border-color: #fff;
    font-weight: 700;
}

.btn-white:hover {
    background: #F3F0FF;
    color: var(--purple-dark);
    border-color: #F3F0FF;
}

.btn-outline-white {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.25);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.cta-note {
    margin-top: 1.375rem;
    font-family: var(--body);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    position: relative;
}

/* ============================================================
   Page Header (inner pages)
   ============================================================ */
.pg-hdr {
    padding: 7rem 0 4rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.pg-hdr .label { margin-bottom: 1rem; }
.pg-hdr .sub   { margin: 1rem auto 0; }

/* ============================================================
   Blog / Post Cards
   ============================================================ */
.post-card {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.post-card:last-child { border-bottom: none; }

.post-meta {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.post-meta span + span::before { content: ' · '; color: var(--border-strong); }

.post-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.post-card h2 a { color: var(--text); text-decoration: none; }
.post-card h2 a:hover { color: var(--purple); }

.post-excerpt { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: 1rem; }

.read-more {
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple);
}

.read-more::after { content: ' →'; }

/* ============================================================
   Single Post Body
   ============================================================ */
.single-post-body h2 { margin: 2.5rem 0 1rem; }
.single-post-body h3 { margin: 2rem 0 0.75rem; }
.single-post-body p  { margin-bottom: 1.25rem; color: var(--text-mid); font-size: 1rem; line-height: 1.8; }
.single-post-body p strong { color: var(--text); }
.single-post-body ul { list-style: none; margin-bottom: 1.25rem; }
.single-post-body ul li { padding: 0.4rem 0; color: var(--text-mid); display: flex; gap: 0.5rem; }
.single-post-body ul li::before { content: '→'; font-size: 0.75rem; color: var(--purple); flex-shrink: 0; margin-top: 0.1rem; }
.single-post-body ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.single-post-body ol li { padding: 0.25rem 0; color: var(--text-mid); }
.single-post-body blockquote { border-left: 3px solid var(--purple); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; font-size: 1.125rem; color: var(--text); }
.single-post-body a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }
.single-post-body pre, .single-post-body code { font-family: monospace; font-size: 0.875rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; }
.single-post-body pre  { padding: 1.5rem; overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); }
.single-post-body code { padding: 0.15rem 0.45rem; }

/* ============================================================
   Pricing Cards
   ============================================================ */
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 760px;
    margin: 3rem auto 0;
}

.price-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    background: var(--bg);
}

.price-card--pop {
    border-color: var(--purple);
    box-shadow: 0 0 0 1px var(--purple), 0 8px 32px var(--purple-glow);
}

.price-badge {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: #fff;
    font-family: var(--heading);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.price-tier {
    font-family: var(--heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-amt {
    font-family: var(--heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text);
}

.price-per {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    margin-bottom: 2rem;
}

.price-list { list-style: none; margin-bottom: 2rem; }

.price-list li {
    padding: 0.5625rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.price-list li::before {
    content: '→';
    color: var(--purple);
    flex-shrink: 0;
    font-size: 0.8125rem;
    margin-top: 0.2rem;
    font-weight: 600;
}

.price-card .btn { width: 100%; }

.price-guarantee {
    text-align: center;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.price-guarantee strong { color: var(--text); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: var(--max); margin: 3rem auto 0; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.375rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    gap: 1rem;
}

.faq-q-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--purple-light);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--purple);
    font-weight: 400;
    line-height: 1;
    transition: background 0.15s;
}

.faq-item.open .faq-q-icon {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

.faq-a {
    display: none;
    padding-bottom: 1.375rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-size: 0.9375rem;
}

.faq-item.open .faq-a { display: block; }

/* ============================================================
   Comparison Table (HARO alt page)
   ============================================================ */
.cmp-tbl { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.cmp-tbl th { font-family: var(--heading); font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; text-align: left; padding: 0.875rem; border-bottom: 2px solid var(--text); color: var(--text-muted); }
.cmp-tbl td { padding: 0.875rem; border-bottom: 1px solid var(--border); }
.cmp-tbl tr td:last-child { color: var(--purple); font-weight: 600; }

/* ============================================================
   Timeline
   ============================================================ */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 2.5rem; }
.tl-item::before { content: ''; position: absolute; left: -2.75rem; top: 0.5rem; width: 7px; height: 7px; background: var(--purple); border-radius: 50%; }
.tl-date { font-family: var(--body); font-size: 0.6875rem; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }

/* ============================================================
   Footer
   ============================================================ */
.ftr {
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.ftr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.ftr-logo {
    font-family: var(--heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.03em;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.ftr-logo b { color: var(--purple); }

.ftr-brand p {
    max-width: 280px;
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.ftr-col h4 {
    font-family: var(--heading);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 1rem;
}

.ftr-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.ftr-col a  { color: var(--text-muted); font-size: 0.875rem; text-decoration: none; transition: color 0.15s; }
.ftr-col a:hover { color: var(--purple); }

.ftr-btm {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
}

.ftr-badges {
    display: flex;
    gap: 1.5rem;
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

/* ============================================================
   Sticky Mobile CTA
   ============================================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 0.875rem 1rem;
    z-index: 99;
    text-align: center;
}

.mobile-cta .btn { width: 100%; max-width: 480px; }

/* ============================================================
   Pagination
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 0.5rem; padding: 3rem 0; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: all 0.15s; }
.page-numbers:hover, .page-numbers.current { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ============================================================
   Responsive — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .pitch-inner { grid-template-columns: 1fr; gap: 3rem; }
    .ftr-grid    { grid-template-columns: 1fr 1fr; }
    .ftr-brand   { grid-column: 1 / -1; }
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {
    .pill-nav__links { display: none; }
    .pill-nav__cta   { display: none; }
    .pill-nav__hamburger { display: flex; }
    .pill-nav__inner { padding: 0.625rem 0.875rem 0.625rem 1.25rem; }

    .mobile-cta    { display: block; }
    .proof-grid    { grid-template-columns: 1fr; }
    .personas-grid { grid-template-columns: 1fr; }
    .ftr-grid      { grid-template-columns: 1fr 1fr; }
    .ftr-brand     { grid-column: 1 / -1; }
    .ftr-btm       { flex-direction: column; gap: 0.75rem; text-align: center; }
    .hero          { padding: 8rem 0 4rem; }
    .sec           { padding: 5rem 0; }
    .pitch-inner   { grid-template-columns: 1fr; }
    body           { padding-bottom: 4rem; }
}

/* ============================================================
   Responsive — 640px
   ============================================================ */
@media (max-width: 640px) {
    .steps          { grid-template-columns: 1fr; }
    .price-grid     { grid-template-columns: 1fr; }
    .personas-grid  { grid-template-columns: 1fr; }
    .stats          { grid-template-columns: 1fr 1fr; }
    .stats-item:nth-child(2)  { border-right: none; }
    .trust          { gap: 0.5rem 1.5rem; }
    .hero-actions   { flex-direction: column; align-items: stretch; }
    .cta-actions    { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 360px; }
    .ftr-badges     { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
    .cmp-table      { font-size: 0.8125rem; }
    .cmp-table th,
    .cmp-table td   { padding: 0.625rem 0.75rem; }
    .pill-nav       { top: 0.75rem; width: calc(100% - 1.5rem); }
}

/* ============================================================
   Responsive — 480px
   ============================================================ */
@media (max-width: 480px) {
    h1  { font-size: 2.125rem; }
    h2  { font-size: 1.625rem; }
    .hero { padding: 6rem 0 3.5rem; }
    .stats-num { font-size: 2rem; }
    .proof-footer { flex-direction: column; align-items: flex-start; }
}
