/* index.css — Viracash homepage styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink: #0d0d0d;
    --paper: #fafaf7;
    --accent: #e63946;
    --accent-light: rgba(230,57,70,0.08);
    --muted: #6b7280;
    --muted-light: #9ca3af;
    --border: #e5e5e0;
    --card-bg: #f4f4ef;
    --card-hover: #eeeee8;
    --green: #16a34a;
    --amber: #d97706;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,250,247,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 7px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(230,57,70,0.3); }
.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 9px;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--ink);
    padding: 1rem 2.5rem;
    border-radius: 9px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1.5px solid var(--border);
    transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { border-color: var(--ink); background: var(--card-bg); }

/* SECTION BASE */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.section-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

/* HERO */
.hero {
    padding: 5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: var(--paper);
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-trust {
    margin-top: 1.75rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* HERO VISUAL */
.hero-visual {
    position: relative;
}
.sim-preview {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}
.sim-topbar {
    background: var(--ink);
    padding: 0.8rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sim-dot { width: 10px; height: 10px; border-radius: 50%; }
.sim-dot.r { background: #ff5f57; }
.sim-dot.y { background: #ffbd2e; }
.sim-dot.g { background: #28c840; }
.sim-url {
    margin-left: 0.75rem;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 0.2rem 0.7rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    font-family: monospace;
    flex: 1;
}
.sim-body {
    padding: 1.5rem;
}
.sim-score-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.sim-score-ring {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}
.sim-score-ring svg { width: 72px; height: 72px; transform: rotate(-90deg); }
.sim-score-ring .ring-bg { fill: none; stroke: #f0f0ea; stroke-width: 6; }
.sim-score-ring .ring-fill { fill: none; stroke: var(--accent); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 172; stroke-dashoffset: 52; }
.sim-score-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
}
.sim-score-info h4 {
    font-size: 0.9rem;
    letter-spacing: -0.3px;
    margin-bottom: 0.2rem;
}
.sim-score-info p {
    font-size: 0.75rem;
    color: var(--muted);
}
.sim-chart-area {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.sim-chart-svg { width: 100%; height: 100px; }
.sim-envelopes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
}
.sim-env {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 0.5rem 0.4rem;
    text-align: center;
}
.sim-env-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sim-env-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 0.2rem;
}
.sim-env.active { background: var(--ink); }
.sim-env.active .sim-env-name { color: rgba(255,255,255,0.6); }
.sim-env.active .sim-env-val { color: white; }
.sim-total-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.sim-total-label { font-size: 0.8rem; color: var(--muted); }
.sim-total-val {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}
.sim-total-net {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
}
.sim-badge-row {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--accent);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(230,57,70,0.35);
}

/* DIVIDER */
.full-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
}

/* PROBLEM SECTION */
.problem-section {
    background: var(--ink);
    color: var(--paper);
}
.problem-section > section {
    padding: 5rem 2rem;
}
.problem-section .section-label {
    color: rgba(230,57,70,0.8);
}
.problem-section h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: -1.5px;
    margin-bottom: 3rem;
    max-width: 750px;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}
.stat-card {
    background: rgba(255,255,255,0.04);
    padding: 2.5rem 2rem;
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -2px;
}
.stat-desc {
    font-size: 0.95rem;
    color: rgba(250,250,247,0.6);
    line-height: 1.5;
}

/* SOLUTION SECTION */
.solution-section h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    max-width: 700px;
}
.solution-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3.5rem;
    max-width: 560px;
}
.envelopes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.envelope-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: default;
}
.envelope-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--accent);
}
.env-icon {
    width: 40px; height: 40px;
    background: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.envelope-card h4 {
    font-size: 1rem;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}
.envelope-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}
.env-tag {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.2rem 0.5rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
}

/* CTA BAND */
.cta-band {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-band > section {
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.cta-band h3 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    letter-spacing: -0.8px;
}
.cta-band h3 em {
    font-style: normal;
    color: var(--accent);
}

/* FEATURES */
.features-section h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}
.features-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3.5rem;
    max-width: 560px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.feature-card.featured {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}
.feature-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.feature-card h3 {
    font-size: 1.1rem;
    letter-spacing: -0.4px;
    margin-bottom: 0.6rem;
}
.feature-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
}
.feature-card.featured p { color: rgba(250,250,247,0.6); }
.feature-card.featured h3 { color: var(--paper); }

/* COMPARISON TABLE */
.comparison-section {
    background: var(--ink);
    color: var(--paper);
}
.comparison-section > section {
    padding: 5rem 2rem;
}
@media (max-width: 768px) {
    .comparison-section > section { padding: 3.5rem 1.5rem; }
}
.comparison-section .section-label {
    color: rgba(230,57,70,0.8);
}
.comparison-section h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: -1.5px;
    margin-bottom: 0.75rem;
    max-width: 650px;
}
.comparison-section .sub {
    font-size: 1.05rem;
    color: rgba(250,250,247,0.5);
    margin-bottom: 3rem;
}
.comp-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.comp-table-scroll::-webkit-scrollbar { display: none; }
.comp-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    min-width: 560px;
}
.comp-table thead th {
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}
.comp-table thead th.highlight {
    background: rgba(230,57,70,0.15);
    color: var(--accent);
}
.comp-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comp-table tbody td {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: rgba(250,250,247,0.7);
    vertical-align: middle;
}
.comp-table tbody td:first-child {
    color: rgba(250,250,247,0.9);
    font-weight: 500;
}
.comp-table tbody td.highlight {
    background: rgba(230,57,70,0.06);
}
.comp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table tbody tr:hover td.highlight { background: rgba(230,57,70,0.1); }
.check { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.cross { color: rgba(250,250,247,0.25); font-size: 1rem; }
.partial { color: var(--amber); }

/* HOW IT WORKS */
.how-section h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}
.how-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3.5rem;
    max-width: 500px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    pointer-events: none;
}
.step {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.step h3 {
    font-size: 1rem;
    margin-bottom: 0.65rem;
    letter-spacing: -0.3px;
}
.step p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
}
.step.last { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.step.last h3 { color: var(--paper); }
.step.last p { color: rgba(250,250,247,0.6); }
.step.last .step-num { color: var(--accent); }

/* QUOTE */
.quote-section > section {
    padding: 3rem 2rem;
}
.quote-block {
    background: var(--ink);
    color: var(--paper);
    border-radius: 16px;
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
}
.quote-block::before {
    content: '"';
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12rem;
    position: absolute;
    top: -2rem;
    left: 2rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.15;
}
.quote-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 500;
    line-height: 1.45;
    max-width: 780px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}
.quote-source {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(250,250,247,0.4);
    position: relative;
    z-index: 1;
}

/* CLOSING */
.closing-section {
    text-align: center;
    padding: 6rem 2rem 5rem;
}
.closing-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -2px;
    margin-bottom: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.closing-section h2 em {
    font-style: normal;
    color: var(--accent);
}
.closing-section p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}
.closing-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.closing-trust {
    margin-top: 1.5rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}
.footer-logo span { color: var(--accent); }
.footer-right {
    font-size: 0.8rem;
    color: var(--muted);
}

/* HAMBURGER / MOBILE MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 200;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(12px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn-cta-mobile {
    margin-top: 0.5rem;
    background: var(--accent);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .envelopes-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
}
@media (max-width: 768px) {
    section { padding: 3.5rem 1.5rem; }
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }
    .hero-visual { order: -1; }
    .hero-badge { font-size: 0.7rem; }
    .stat-grid { grid-template-columns: 1fr; gap: 1px; }
    .envelopes-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .cta-band > section { flex-direction: column; align-items: flex-start; }
    .quote-block { padding: 3rem 2rem; }
    .quote-block::before { font-size: 7rem; }
    .comp-table { font-size: 0.8rem; }
    .comp-table thead th, .comp-table tbody td { padding: 0.8rem 0.75rem; }
    footer { flex-direction: column; gap: 0.75rem; text-align: center; }
    .closing-section { padding: 4rem 1.5rem 3rem; }
    .sim-envelopes { grid-template-columns: repeat(3, 1fr); }
    .hero-trust { flex-wrap: wrap; gap: 1rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    nav .btn-primary { display: none; }
}
@media (max-width: 480px) {
    .envelopes-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
}

/* EMAIL CAPTURE FORM */
.email-capture { margin-top: 1.5rem; }
.email-capture-form {
    display: flex;
    gap: 0.5rem;
    max-width: 420px;
}
.email-capture-form input[type="email"] {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    background: white;
    color: var(--ink);
    outline: none;
    transition: border-color 0.15s;
}
.email-capture-form input[type="email"]:focus { border-color: var(--accent); }
.email-capture-form input[type="email"]::placeholder { color: var(--muted-light); }
.email-capture-form button {
    padding: 0.7rem 1.25rem;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, transform 0.1s;
}
.email-capture-form button:hover { background: #1a1a1a; transform: translateY(-1px); }
.email-capture-form button:disabled { opacity: 0.6; cursor: default; transform: none; }
.email-capture-msg { margin-top: 0.5rem; font-size: 0.82rem; font-weight: 500; }
.email-capture-msg.success { color: var(--green); }
.email-capture-msg.error { color: #dc2626; }
.email-rgpd { margin-top: 0.4rem; font-size: 0.72rem; color: var(--muted-light); }

/* CTA / EMAIL DIVIDER */
.cta-email-divider {
    margin: 1.25rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 420px;
}
.cta-email-divider span { font-size: 0.78rem; color: var(--muted-light); white-space: nowrap; }

/* HERO CTA ENHANCEMENTS */
.btn-hero-cta { font-size: 1.2rem !important; padding: 1.1rem 2.75rem !important; box-shadow: 0 6px 20px rgba(230,57,70,0.25); }

/* MOBILE FULL-WIDTH CTA */
@media (max-width: 640px) {
    .cta-band section { flex-direction: column; gap: 1.25rem; text-align: center; }
    .cta-band .btn-primary { width: 100%; justify-content: center; }
    .closing-ctas .btn-primary { width: 100%; justify-content: center; }
}

/* RESOURCES STRIP */
.resources-strip {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.resources-strip a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
    font-weight: 500;
}
.resources-strip a:hover { color: var(--accent); }
.resources-strip .sep { color: var(--border); font-size: 1rem; }