/* ==================== DOWNLOAD REPORT 2026 PAGE ==================== */

/* CSS Variables (Page-specific) */
:root {
    --glow-gradient: linear-gradient(90deg,
        #49ccf9, #8700ff, #8167ea, #ff6b9d,
        #f9a852, #ff6b9d, #8167ea, #8700ff, #49ccf9);
}

/* Background Mesh */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 800px 600px at 10% 10%, rgba(129, 103, 234, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 600px 500px at 90% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 500px 400px at 80% 80%, rgba(236, 72, 153, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 700px 500px at 20% 90%, rgba(99, 102, 241, 0.05) 0%, transparent 55%);
}

/* Typography Utilities */
.serif-italic {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 33%, #ec4899 66%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== URGENCY BANNER ==================== */
.urgency-banner {
    background: linear-gradient(90deg, var(--navy) 0%, #1a1333 100%);
    color: white;
    padding: 12px 24px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.4s ease;
}

.urgency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urgency-banner .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.urgency-banner p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.urgency-banner .highlight {
    color: var(--accent-orange);
}

.download-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
}

/* ==================== NAV OFFSET (PAGE-SPECIFIC) ==================== */
/* When urgency banner is visible, offset nav to avoid being covered */
nav.with-banner {
    top: 44px;
    transition: top 0.4s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    z-index: 1;
    padding: 180px 48px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--off-white);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partnership Badge */
.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: white;
    border-radius: 100px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.partnership-badge .divider {
    width: 1px;
    height: 24px;
    background: var(--border-light);
}

.partnership-badge span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

/* Crisis Stat with Animated Gradient Border (SIGNATURE ELEMENT) */
.crisis-stat {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
    z-index: 1;
}

.crisis-stat::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--glow-gradient);
    background-size: 400% 100%;
    border-radius: 17px;
    z-index: -1;
    animation: gradientMove 8s ease-in-out infinite;
}

.crisis-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 14px;
    z-index: -1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

.crisis-stat-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crisis-stat-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-red);
    stroke-width: 2;
    fill: none;
}

.crisis-stat-content {
    display: flex;
    flex-direction: column;
}

.crisis-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1.3;
}

.crisis-stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* Hero Heading */
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--navy);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .serif-italic {
    display: inline;
    background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description strong {
    color: var(--dark-text);
    font-weight: 700;
}

/* Competitor Warning */
.competitor-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(249, 168, 82, 0.1) 0%, rgba(249, 168, 82, 0.05) 100%);
    border: 1px solid rgba(249, 168, 82, 0.3);
    border-radius: 10px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.35s both;
}

.competitor-warning svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-orange);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.competitor-warning p {
    font-size: 13px;
    color: var(--dark-text);
    font-weight: 500;
}

.competitor-warning strong {
    color: var(--accent-orange);
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 20px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(139, 92, 246, 0.15);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(139, 92, 246, 0.5),
        0 0 60px rgba(139, 92, 246, 0.2);
}

.btn-hero svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.hero-trust {
    font-size: 13px;
    color: var(--muted);
}

.hero-trust strong {
    color: var(--dark-text);
}

/* Hero Visual (Report Cover) */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.report-showcase {
    position: relative;
    perspective: 1000px;
}

.report-cover {
    position: relative;
    background: linear-gradient(135deg, #1a1333 0%, #2d1f4a 50%, #1a1333 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow:
        0 60px 100px rgba(14, 14, 68, 0.25),
        0 30px 60px rgba(14, 14, 68, 0.15),
        0 10px 20px rgba(14, 14, 68, 0.1);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.report-cover:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.report-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 300px 200px at 20% 20%, rgba(129, 103, 234, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 250px 200px at 80% 70%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.report-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    margin-bottom: 24px;
}

.report-badge span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lavender);
}

.report-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.report-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Table of Contents Preview */
.toc-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.toc-preview-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--violet-light);
    margin-bottom: 16px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.toc-item:last-child {
    border-bottom: none;
}

.toc-number {
    width: 24px;
    height: 24px;
    background: rgba(129, 103, 234, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--violet-light);
    flex-shrink: 0;
}

.toc-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Floating Stats Cards */
.floating-stat {
    position: absolute;
    background: white;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-stat-1 {
    top: 60px;
    right: -30px;
    animation-delay: 0s;
}

.floating-stat-2 {
    bottom: 80px;
    left: -40px;
    animation-delay: 3s;
}

.floating-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.floating-stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* ==================== SNEAK PEEK SECTION (DARK) ==================== */
.sneak-peek {
    position: relative;
    z-index: 1;
    padding: 100px 48px;
    background: var(--navy);
    overflow: hidden;
}

.sneak-peek::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 10% 30%, rgba(129, 103, 234, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 90% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.sneak-peek-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sneak-peek-header {
    text-align: center;
    margin-bottom: 60px;
}

.sneak-peek-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(129, 103, 234, 0.15);
    border: 1px solid rgba(129, 103, 234, 0.3);
    border-radius: 100px;
    margin-bottom: 24px;
}

.sneak-peek-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--violet-light);
    stroke-width: 1.5;
    fill: none;
}

.sneak-peek-badge span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--violet-light);
}

.sneak-peek-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.sneak-peek-header h2 .serif-italic {
    color: var(--violet-light);
}

.sneak-peek-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Showcase Grid */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-reveal {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.stat-reveal.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--violet) 0%, var(--accent-pink) 50%, var(--accent-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-reveal:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(129, 103, 234, 0.3);
}

.stat-reveal:hover::before {
    opacity: 1;
}

.stat-reveal-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(129, 103, 234, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-reveal-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--violet-light);
    stroke-width: 1.5;
    fill: none;
}

.stat-reveal-value {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-reveal-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.stat-reveal-source {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
}

/* Chapter Preview Grid */
.chapter-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.chapter-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.chapter-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.chapter-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(129, 103, 234, 0.3);
    transform: translateY(-4px);
}

.chapter-number {
    display: none;
}

.chapter-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.chapter-teaser {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.chapter-link {
    font-size: 13px;
    color: var(--violet-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.chapter-link:hover {
    gap: 10px;
}

.chapter-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ==================== FORM SECTION (LIGHT) ==================== */
.form-section {
    position: relative;
    z-index: 1;
    padding: 100px 48px;
    background: var(--off-white);
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.form-content h2 .serif-italic {
    background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-content > p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Insight Cards */
.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insight-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.insight-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.insight-card:hover {
    border-color: rgba(129, 103, 234, 0.3);
    transform: translateX(4px);
}

.insight-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(129, 103, 234, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--violet);
    stroke-width: 1.5;
    fill: none;
}

.insight-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.insight-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Download Card */
.download-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 20px 60px rgba(14, 14, 68, 0.08),
        0 8px 24px rgba(14, 14, 68, 0.04);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 120px;
}

.form-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(249, 168, 82, 0.1) 0%, rgba(249, 168, 82, 0.05) 100%);
    border: 1px solid rgba(249, 168, 82, 0.2);
    border-radius: 10px;
    margin-bottom: 24px;
}

.form-urgency svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-orange);
    stroke-width: 2;
    fill: none;
}

.form-urgency span {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
}

.download-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
}

.download-card > p {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 24px;
}

.live-downloads {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.live-downloads .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-downloads span {
    font-size: 13px;
    color: var(--muted);
}

.live-downloads strong {
    color: var(--dark-text);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark-text);
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(129, 103, 234, 0.1);
}

.form-group input::placeholder {
    color: var(--light-muted);
}

.form-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(249, 168, 82, 0.1) 0%, rgba(249, 168, 82, 0.05) 100%);
    border: 1px solid rgba(249, 168, 82, 0.3);
    border-radius: 100px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-orange);
}

.form-urgency-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}

/* Download Form */
.download-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-privacy {
    font-size: 12px;
    color: var(--light-muted);
    line-height: 1.6;
    margin-top: 12px;
    text-align: center;
}

.form-privacy a {
    color: var(--violet);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* Form Trust Section */
.form-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(129, 103, 234, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--muted);
}

.trust-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-green);
    stroke-width: 2;
    fill: none;
}

/* ==================== WHO'S READING THIS SECTION ==================== */
.readers-section {
    position: relative;
    z-index: 1;
    padding: 100px 48px;
    background: white;
}

.readers-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.readers-header {
    margin-bottom: 48px;
}

.readers-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.readers-header p {
    font-size: 16px;
    color: var(--muted);
}

.readers-roles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.reader-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--off-white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s ease;
}

.reader-role:hover {
    background: rgba(129, 103, 234, 0.08);
    transform: translateY(-2px);
}

.reader-role svg {
    width: 18px;
    height: 18px;
    stroke: var(--violet);
    stroke-width: 1.5;
    fill: none;
}

/* ==================== FINAL CTA (DARK) ==================== */
.final-cta {
    position: relative;
    z-index: 1;
    padding: 120px 48px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1333 50%, var(--navy-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 800px 500px at 50% 30%, rgba(129, 103, 234, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 20% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 500px 400px at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--violet);
    top: -100px;
    left: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    bottom: -50px;
    right: -50px;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(20px, 20px); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(249, 168, 82, 0.15);
    border: 1px solid rgba(249, 168, 82, 0.3);
    border-radius: 100px;
    margin-bottom: 28px;
}

.cta-urgency-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-orange);
    stroke-width: 2;
    fill: none;
}

.cta-urgency-badge span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.final-cta h2 .serif-italic {
    background: linear-gradient(135deg, var(--violet-light) 0%, #ec4899 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    background: white;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 30px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(255, 255, 255, 0.1);
}

.btn-cta-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(255, 255, 255, 0.3),
        0 0 80px rgba(255, 255, 255, 0.15);
}

.btn-cta-large svg {
    width: 22px;
    height: 22px;
    stroke: var(--violet);
    stroke-width: 2;
    fill: none;
}

/* ==================== SUCCESS STATE ==================== */
.success-state {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 68, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-state.active {
    display: flex;
    opacity: 1;
}

.success-content {
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 500px;
    position: relative;
    animation: successSlideUp 0.5s ease-out;
}

.success-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(14, 14, 68, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.success-close:hover {
    background: rgba(14, 14, 68, 0.1);
    transform: rotate(90deg);
}

.success-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy);
    stroke-width: 2;
    stroke-linecap: round;
}

@keyframes successSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-green);
    stroke-width: 2;
    fill: none;
}

.success-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.success-description {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-download {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    color: white;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 20px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(139, 92, 246, 0.5),
        0 0 60px rgba(139, 92, 246, 0.2);
}

.btn-download:hover::before {
    left: 100%;
}

.btn-download svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Desktop L (1440px and below) */
@media (max-width: 1440px) {
    .hero-container {
        gap: 60px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 42px;
    }

    .form-section-title {
        font-size: 42px;
    }
}

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .hero {
        padding: 160px 40px 80px;
    }

    .hero-container {
        gap: 50px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .chapter-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-columns {
        gap: 60px;
    }
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero {
        padding: 140px 32px 60px;
        min-height: auto;
    }

    .floating-stat-1,
    .floating-stat-2 {
        display: none;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chapter-preview {
        grid-template-columns: 1fr;
    }

    .form-columns {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-card {
        position: relative;
        top: 0;
    }

    .sneak-peek {
        padding: 80px 32px;
    }

    .sneak-peek-header h2 {
        font-size: 32px;
    }

    .form-section {
        padding: 80px 32px;
    }
}

/* Mobile L (768px and below) */
@media (max-width: 768px) {
    .hero {
        padding: 120px 24px 50px;
    }

    .hero h1 {
        font-size: 36px;
    }

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

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

    .report-cover {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .final-cta {
        padding: 80px 24px;
    }

    .final-cta h2 {
        font-size: 36px;
    }

    .success-content {
        padding: 40px 28px;
        margin: 20px;
    }

    .success-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

    .success-close svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile M (480px and below) */
@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 40px;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-section-title {
        font-size: 28px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .sneak-peek {
        padding: 60px 20px;
    }

    .form-section {
        padding: 60px 20px;
    }

    .form-card {
        padding: 28px;
    }

    .stat-card-number {
        font-size: 42px;
    }

    .chapter-card {
        padding: 24px;
    }
}
