/* ══════════════════════════════════════════════════════════
   AGENT PRICE'S INTELLIGENCE BUREAU — STYLESHEET
   Aesthetic: Editorial Authority meets Cold War Dossier
   ══════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F5F4F0;
    --light-gray: #EDECEA;
    --mid-gray: #B8B5AD;
    --charcoal: #333333;
    --dark: #1A1A1A;
    --classified-red: #D32F2F;
    --red-dark: #B71C1C;
    --red-light: #FFEBEE;
    --green: #2E7D32;
    --green-light: #E8F5E9;
    --amber: #F9A825;

    --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-mono: 'Special Elite', 'Courier New', Courier, monospace;

    --max-width: 1200px;
    --sidebar-width: 340px;
    --gap: 2.5rem;
    --radius: 4px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --transition: 0.2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--off-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--classified-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--classified-red);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: var(--charcoal);
}
.brand-text:hover { color: var(--charcoal); }

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--mid-gray);
    font-style: italic;
    line-height: 1.2;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all var(--transition);
}
.nav-link:hover {
    color: var(--classified-red);
    background: var(--red-light);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
    background:
        linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(51,51,51,0.88) 100%),
        repeating-linear-gradient(
            0deg,
            transparent, transparent 29px,
            rgba(255,255,255,0.03) 29px, rgba(255,255,255,0.03) 30px
        );
    color: var(--white);
    padding: 5rem 1.5rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(211,47,47,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.hero-classified-stamp {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--classified-red);
    border: 2px solid var(--classified-red);
    padding: 0.3rem 1.2rem;
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   SECTIONS & LAYOUT
   ══════════════════════════════════════════════════════════ */
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-section { padding: 3.5rem 0; }

.two-col {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: var(--gap);
    align-items: start;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.section-intro {
    color: var(--mid-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.section-label {
    text-align: center;
    margin-bottom: 2rem;
}
.section-label span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--classified-red);
    padding: 0.3rem 1.5rem;
    border: 1px solid var(--classified-red);
    background: var(--red-light);
}

/* ══════════════════════════════════════════════════════════
   FEATURED GRID (3 newest)
   ══════════════════════════════════════════════════════════ */
.featured-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.featured-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
}
.featured-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: var(--charcoal);
    border-color: var(--classified-red);
}

.featured-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream);
}
.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.featured-card:hover .featured-card-img img { transform: scale(1.04); }

.savings-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--classified-red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(211,47,47,0.35);
}

.featured-card-body {
    padding: 1.25rem;
}
.featured-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0.4rem 0 0.5rem;
}

.card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--classified-red);
    background: var(--red-light);
    padding: 0.15rem 0.55rem;
    border-radius: 2px;
}

.card-savings-pct {
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   INTEL FEED (List Cards)
   ══════════════════════════════════════════════════════════ */
.intel-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    transition: all 0.25s ease;
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
}
.intel-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--classified-red);
    color: var(--charcoal);
}

.intel-card-img {
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
}
.intel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intel-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.intel-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0.35rem 0 0.5rem;
    line-height: 1.35;
}

.intel-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
}

.intel-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--light-gray);
}

.meta-savings {
    font-size: 0.85rem;
    color: var(--green);
}
.meta-savings strong { font-size: 1rem; }

.meta-action {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--classified-red);
    letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════════════════════ */
.sidebar-col {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--classified-red);
    color: var(--dark);
}

.mission-widget p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
}

.mission-defs { margin-bottom: 0.5rem; }
.mission-defs dt {
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    float: left;
    clear: left;
    margin-right: 0.4rem;
}
.mission-defs dd {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #555;
}

.status-active {
    color: var(--green);
    font-weight: 700;
    position: relative;
}
.status-active::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    margin-right: 0.35rem;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.sidebar-deal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--charcoal);
    font-size: 0.88rem;
    transition: all var(--transition);
}
.sidebar-deal:last-child { border-bottom: none; }
.sidebar-deal:hover { color: var(--classified-red); }

.deal-name { font-weight: 600; }
.deal-amount {
    font-weight: 700;
    color: var(--green);
    font-size: 0.95rem;
}

/* Newsletter Widget */
.newsletter-widget {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}
.newsletter-widget h4 {
    color: var(--white);
    border-color: var(--classified-red);
}
.newsletter-widget p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}
.newsletter-widget input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    outline: none;
    transition: border var(--transition);
}
.newsletter-widget input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-widget input:focus { border-color: var(--classified-red); }
.newsletter-widget button {
    width: 100%;
    padding: 0.7rem;
    background: var(--classified-red);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background var(--transition);
}
.newsletter-widget button:hover { background: var(--red-dark); }

/* ══════════════════════════════════════════════════════════
   REVIEW PAGE
   ══════════════════════════════════════════════════════════ */
.breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    color: var(--mid-gray);
}
.breadcrumb a { color: var(--mid-gray); }
.breadcrumb a:hover { color: var(--classified-red); }
.breadcrumb span { margin: 0 0.4rem; }
.breadcrumb .current { color: var(--charcoal); font-weight: 600; }

.review-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.review-meta-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-classification {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--green);
}

/* Hero Image */
.review-hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
}
.review-hero-image img {
    width: 100%;
    display: block;
}

.review-savings-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 3rem 1.5rem 1.25rem;
}

.overlay-inner {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.overlay-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
}

.overlay-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
}

.overlay-pct {
    font-size: 0.88rem;
    color: var(--amber);
    font-weight: 600;
}

/* Report Blocks */
.report-block {
    margin-bottom: 2.5rem;
}
.report-block h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.block-content {
    font-size: 1rem;
    line-height: 1.8;
}
.block-content p {
    margin-bottom: 1rem;
}

/* Mission Log — typed memo style */
.mission-log-block { position: relative; }

.block-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--classified-red);
    margin-bottom: 0.6rem;
}

.typed-memo {
    background: var(--cream);
    border-left: 4px solid var(--classified-red);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    line-height: 1.75;
    color: #444;
    position: relative;
}

.field-report-text {
    white-space: pre-line;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table tr {
    border-bottom: 1px solid var(--light-gray);
}
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
    padding: 0.85rem 0.75rem;
    font-size: 0.95rem;
}
.spec-icon {
    width: 30px;
    color: var(--classified-red);
    font-size: 0.75rem;
    text-align: center;
}

/* Pros/Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pros-heading {
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.cons-heading {
    color: var(--classified-red);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.assessment-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
    margin-top: 2px;
}

.x-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-light);
    color: var(--classified-red);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
    margin-top: 2px;
}

/* Agent Note */
.agent-note-block {
    background: var(--cream);
    border: 1px dashed var(--mid-gray);
    border-radius: var(--radius);
    padding: 0;
}

.agent-note-inner {
    padding: 1.25rem 1.5rem;
}

.note-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--classified-red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.agent-note-inner p {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Verdict */
.verdict-block {
    background: var(--white);
    border: 2px solid var(--classified-red);
    border-radius: var(--radius);
    padding: 2rem;
}
.verdict-block h2 {
    border-bottom-color: var(--classified-red);
    color: var(--classified-red);
}

.verdict-text p {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.7;
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.15rem 2rem;
    margin-top: 1.5rem;
    background: var(--classified-red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(211,47,47,0.35);
    text-decoration: none;
}
.cta-button:hover {
    background: var(--red-dark);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(211,47,47,0.45);
    transform: translateY(-1px);
}

.cta-icon { font-size: 1.3rem; }
.cta-savings {
    font-size: 0.78rem;
    opacity: 0.85;
    font-weight: 400;
}

.cta-small {
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
}

/* Sidebar — Agent Profile */
.agent-profile-widget { text-align: center; }
.agent-avatar {
    margin: 0 auto 1rem;
}
.avatar-placeholder {
    width: 72px;
    height: 72px;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--classified-red);
}

.retired-tag {
    font-weight: 400;
    font-size: 0.78em;
    color: var(--mid-gray);
}

.agent-bio-short {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #666;
    margin-bottom: 0.75rem;
}

.widget-link {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Sticky CTA in Sidebar */
.sticky-cta-widget {
    text-align: center;
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}
.sticky-cta-widget .cta-button { margin-top: 0.75rem; }
.sticky-product-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.sticky-savings {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--amber);
}

/* ══════════════════════════════════════════════════════════
   STATIC PAGES (About, Terms, Privacy, Contact)
   ══════════════════════════════════════════════════════════ */
.page-single { padding: 3rem 0 5rem; }

.narrow-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.dossier-stamp {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--classified-red);
    border: 2px solid var(--classified-red);
    padding: 0.25rem 1rem;
    margin-bottom: 2.5rem;
    transform: rotate(-0.5deg);
}

.prose-block {
    margin-bottom: 2.5rem;
}
.prose-block h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}
.prose-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-block {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
}

/* Methodology Steps */
.methodology-steps {
    margin: 1.5rem 0;
}

.method-step {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--classified-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 50%;
}

.method-step h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.method-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Form */
.contact-reasons {
    margin: 1rem 0 2rem;
}
.reason {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form { margin-top: 1rem; }
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--classified-red);
}

.form-confirmation {
    background: var(--green-light);
    border: 1px solid var(--green);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--green);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    padding: 3rem 0 0;
    margin-top: 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    padding: 0.25rem 0;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-disclaimer p {
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
}

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
    }
    .sidebar-col {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body { font-size: 16px; }

    .header-nav { display: none; }
    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 3px solid var(--classified-red);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    .mobile-nav-toggle { display: flex; }

    .hero { padding: 3rem 1rem 2.5rem; }
    .hero-headline { font-size: 1.8rem; }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .intel-card {
        flex-direction: column;
    }
    .intel-card-img {
        width: 100%;
        height: 200px;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-col {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════
   AMAZON AFFILIATE COMPLIANCE ELEMENTS
   ══════════════════════════════════════════════════════════ */

/* Site-wide disclosure bar below header */
.affiliate-disclosure-bar {
    background: #FFF8E1;
    border-bottom: 1px solid #FFE082;
    text-align: center;
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    color: #5D4037;
    line-height: 1.4;
}
.affiliate-disclosure-bar em {
    font-style: normal;
    font-weight: 700;
    background: rgba(211,47,47,0.1);
    color: var(--classified-red);
    padding: 0.1rem 0.35rem;
    border-radius: 2px;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
}

/* Contextual disclosure near affiliate links */
.affiliate-context-disclosure {
    font-size: 0.75rem;
    color: #888;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    padding: 0.3rem 0;
    border-top: 1px dashed #ddd;
    font-style: italic;
}
.affiliate-context-light {
    color: rgba(255,255,255,0.5);
    border-top-color: rgba(255,255,255,0.15);
    text-align: center;
    font-size: 0.7rem;
}

/* ══════════════════════════════════════════════════════════
   AMAZON COMPLIANCE — ADDITIONAL ELEMENTS (v2)
   ══════════════════════════════════════════════════════════ */

/* FIX 2: Freshness datestamp */
.review-datestamp {
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-left: 4px solid #F9A825;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    color: #5D4037;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.datestamp-icon {
    margin-right: 0.3rem;
}

/* FIX 3: Above-fold disclosure */
.above-fold-disclosure {
    font-size: 0.8rem;
    color: #888;
    padding: 0.5rem 0;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
}
.above-fold-disclosure em {
    font-style: italic;
}

/* FIX 4: Foreign Channels tooltip */
.fc-tooltip {
    display: inline-block;
    cursor: help;
    color: var(--classified-red);
    font-weight: 700;
    font-size: 0.85em;
    margin-left: 1px;
    position: relative;
    border-bottom: 1px dashed var(--classified-red);
    padding: 0 2px;
}
.fc-tooltip-light {
    color: var(--amber);
    border-bottom-color: var(--amber);
}

/* FIX 4: Foreign Channels footnote block */
.fc-footnote-block {
    background: var(--cream);
    border-left: 3px solid var(--mid-gray);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
}
.fc-footnote-block p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.fc-asterisk {
    color: var(--classified-red);
    font-weight: 700;
    font-size: 1.1em;
}

/* FIX 5: Bureau Chief card */
.bureau-chief-block {
    background: var(--white);
    border: 2px solid var(--classified-red);
    border-radius: var(--radius);
    padding: 2rem;
}
.bureau-chief-block h2 {
    color: var(--classified-red);
    border-bottom-color: var(--classified-red);
}
.bureau-chief-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.chief-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 3px solid var(--classified-red);
}
.chief-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.7;
}
.chief-info p:last-child {
    margin-bottom: 0;
}

/* Footer sub-disclosure */
.footer-sub-disclosure {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
    .bureau-chief-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ══════════════════════════════════════════════════════════
   HERO STATS BAR
   ══════════════════════════════════════════════════════════ */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    .stat-num {
        font-size: 1.2rem;
    }
}

/* ══════════════════════════════════════════════════════════
   HERO QUOTE DESIGN
   ══════════════════════════════════════════════════════════ */
.hero-quote {
    position: relative;
    display: inline-block;
    max-width: 700px;
    margin: 0 auto 0.75rem;
}

.hero-quotemark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--classified-red);
    line-height: 0;
    position: relative;
    top: 0.25em;
    opacity: 0.7;
    user-select: none;
}

.hero-quotemark-close {
    top: 0.35em;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.02em;
    display: inline;
}

.hero-attribution {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--amber);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .hero-quotemark {
        font-size: 2.5rem;
    }
    .hero-attribution {
        font-size: 0.82rem;
    }
}
