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

/* ===== TOKENS ===== */
:root {
    --green: #10B981;
    --green-dark: #059669;
    --green-glow: rgba(16, 185, 129, 0.15);
    --bg: #000000;
    --bg-card: #0a0a0a;
    --bg-card2: #111111;
    --border: #1a1a1a;
    --border-mid: #262626;
    --text: #ffffff;
    --text-muted: #9CA3AF;
    --text-dim: #4B5563;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'IBM Plex Mono', 'Courier New', monospace;
    --radius: 10px;
    --transition: 0.18s ease;
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== HERO ===== */
.hero {
    padding: 56px 0 64px;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hero-accent {
    color: var(--green);
}

h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 500;
    color: var(--green);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.hero-body {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}

.hero-visual {
    width: 100%;
    margin: 28px 0;
}

.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--green-glow);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 20px;
    text-align: left;
    line-height: 1.6;
}

.guarantee-icon {
    color: var(--green);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.guarantee strong {
    color: var(--text);
}

.btn-primary {
    display: inline-block;
    background: var(--green);
    color: #000;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 15px 34px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    margin-bottom: 14px;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.hero-stat {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

.hero-stat strong {
    color: var(--text-muted);
}

/* ===== SECTIONS ===== */
.section {
    padding: 88px 0;
    border-top: 1px solid var(--border);
}

.section-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 52px;
}

/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color var(--transition), background var(--transition);
}

.card:hover {
    border-color: rgba(16, 185, 129, 0.35);
    background: var(--bg-card2);
}

.card-number {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 14px;
}

.card h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

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

/* ===== DEMO ===== */
.demo {
    text-align: center;
}

.demo .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.video-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    max-width: 860px;
    margin: 0 auto;
}

.video-wrap wistia-player {
    display: block;
    width: 100%;
}

/* ===== TRUST ===== */
.trust {
    padding: 52px 0;
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 0 32px;
}

.trust-icon {
    color: var(--green);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.trust-divider {
    width: 1px;
    height: 60px;
    background: var(--border-mid);
    flex-shrink: 0;
}

/* ===== FAST START ===== */
.steps {
    display: flex;
    align-items: flex-start;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.step-time {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 14px;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--green);
    color: #000;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 200px;
    margin: 0 auto;
}

.step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 76px;
    width: 60px;
}

.step-line {
    width: 100%;
    height: 1px;
    background: var(--border-mid);
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: left;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cta-image-col {
    border-radius: 14px;
    overflow: hidden;
}

.cta-image {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.cta-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cta-content-col h2 {
    margin-bottom: 0;
}

.cta-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #0a0a0a;
    border: 1px solid var(--border-mid);
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    padding: 44px 40px;
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(8px);
    transition: transform 0.22s ease;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition);
    padding: 4px;
}

.modal-close:hover {
    color: var(--text);
}

/* Progress */
.modal-progress {
    margin-bottom: 36px;
}

.progress-bar {
    height: 2px;
    background: var(--border-mid);
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.35s ease;
    width: 0%;
}

.progress-text {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.18s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-step h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 24px;
}

/* Radio */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card2);
    border: 1px solid var(--border-mid);
    border-radius: 8px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    font-size: 15px;
    user-select: none;
}

.radio-option:hover {
    border-color: rgba(16, 185, 129, 0.4);
}

.radio-option input[type="radio"] {
    accent-color: var(--green);
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    cursor: pointer;
}

.radio-option:has(input:checked) {
    border-color: var(--green);
    background: var(--green-glow);
}

/* Text Inputs */
.field-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.field-group input {
    width: 100%;
    background: var(--bg-card2);
    border: 1px solid var(--border-mid);
    border-radius: 8px;
    padding: 15px 16px;
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition);
    -webkit-appearance: none;
}

.field-group input::placeholder {
    color: var(--text-dim);
}

.field-group input:focus {
    border-color: var(--green);
}

/* Error */
.error-msg {
    font-size: 13px;
    color: #F87171;
    margin-bottom: 12px;
    min-height: 18px;
}

/* Buttons */
.step-nav {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.btn-next,
.btn-submit {
    flex: 1;
    background: var(--green);
    color: #000;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition);
    letter-spacing: -0.01em;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--green-dark);
}

.btn-next.full-width {
    width: 100%;
    margin-top: 4px;
}

.btn-back {
    background: transparent;
    border: 1px solid var(--border-mid);
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
    white-space: nowrap;
}

.btn-back:hover {
    border-color: var(--text-dim);
    color: var(--text);
}

/* Thank You */
.thank-you {
    text-align: center;
    padding: 16px 0 8px;
}

.thank-you-icon {
    width: 64px;
    height: 64px;
    background: var(--green);
    color: #000;
    font-size: 30px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thank-you h3 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.thank-you p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ===== DEPOSIT CARD (HERO) ===== */
.deposit-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    font-size: 13px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
    text-align: left;
    max-width: 560px;
    margin: 0 auto;
}

.deposit-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 22px 16px;
    gap: 12px;
}

.deposit-header-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.deposit-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.deposit-generated {
    font-size: 12px;
    color: #6B7280;
}

.deposit-location {
    font-size: 12px;
    color: #374151;
    margin-top: 4px;
    font-weight: 500;
}

.deposit-recoverable-badge {
    background: var(--green);
    border-radius: 8px;
    padding: 8px 14px;
    text-align: right;
    flex-shrink: 0;
}

.drb-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.drb-amount {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.03em;
    line-height: 1;
}

.deposit-metrics {
    display: flex;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.deposit-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border-right: 1px solid #E5E7EB;
    gap: 2px;
}

.deposit-metric:last-child {
    border-right: none;
}

.dm-label {
    font-size: 9px;
    color: #9CA3AF;
    font-family: var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dm-value {
    font-size: 18px;
    font-weight: 800;
    font-family: var(--mono);
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.dm-warn { color: #D97706 !important; }
.dm-neutral { color: #111; }

.dm-target {
    font-size: 10px;
    color: #9CA3AF;
    font-family: var(--mono);
}

.deposit-fixes-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B7280;
    padding: 14px 22px 8px;
}

.deposit-findings {
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deposit-finding {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
}

.finding-bar {
    width: 4px;
    flex-shrink: 0;
}

.bar-high { background: var(--green); }
.bar-med { background: #FBBF24; }

.finding-body {
    flex: 1;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.finding-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.priority-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    border-radius: 3px;
    flex-shrink: 0;
    font-family: var(--mono);
}

.tag-high {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.tag-med {
    background: rgba(251, 191, 36, 0.15);
    color: #B45309;
}

.finding-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.finding-note {
    font-size: 11px;
    color: #6B7280;
    line-height: 1.4;
}

.finding-amt {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 800;
    color: var(--green);
    flex-shrink: 0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
}

.deposit-footer {
    padding: 10px 22px 16px;
    font-size: 11px;
    color: #9CA3AF;
    font-style: italic;
    text-align: center;
    border-top: 1px solid #F3F4F6;
}

/* ===== AS SEEN ON ===== */
.as-seen-on {
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    background: rgba(255,255,255,0.03);
}

.as-seen-on .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.aso-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}

.aso-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.aso-logo {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s;
}

.aso-logo:hover { color: rgba(255,255,255,0.55); }

/* Per-brand type treatments */
.aso-forbes  { letter-spacing: 0.06em; font-size: 14px; }
.aso-grit    { font-style: italic; letter-spacing: -0.01em; }
.aso-fintech { font-size: 14px; letter-spacing: 0.04em; }
.aso-tv      { font-weight: 400; }
.aso-qsr     { letter-spacing: 0.08em; font-size: 13px; }
.aso-mag     { font-weight: 500; letter-spacing: 0.02em; }
.aso-tc      { font-size: 15px; color: rgba(255,255,255,0.22); }

/* ===== INBOX EMAIL MOCKUP ===== */
.inbox-section h2 {
    margin-bottom: 32px;
}

.inbox-section .section-sub {
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.email-mockup {
    background: #0f1117;
    border: 1px solid #1e2130;
    border-radius: 14px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
}

.email-sender-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1e2130;
}

.email-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    color: #000;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-from {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.email-subject {
    font-size: 13px;
    color: var(--text-muted);
}

.email-locations {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.email-location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #1e2130;
    gap: 12px;
}

.email-location-row:last-child {
    border-bottom: none;
}

.el-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.el-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.el-detail {
    font-size: 12px;
    color: var(--text-dim);
}

.el-amount {
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
}

.email-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 0;
    margin-top: 4px;
    border-top: 1px solid #1e2130;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.email-total-amt {
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 800;
    color: var(--green);
}

/* ===== STATS ===== */
.stats-section {
    padding: 52px 0;
    background: #0d0d0d;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.stat-number {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-plus {
    color: var(--green);
    font-size: 0.7em;
}

.stat-unit {
    color: var(--green);
    font-size: 0.5em;
    font-weight: 600;
    letter-spacing: -0.01em;
    vertical-align: middle;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 64px;
    background: var(--border-mid);
    flex-shrink: 0;
}

/* ===== LEAK SECTION ===== */
.leak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.leak-card {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition);
}

.leak-card:hover {
    border-color: #FBBF24;
}

.leak-icon {
    color: #FBBF24;
    margin-bottom: 12px;
}

.leak-category {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.leak-amount {
    font-size: 26px;
    font-weight: 800;
    color: #FBBF24;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    line-height: 1;
}

.leak-amount span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0;
}

.leak-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

.leak-total-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 8px;
}

.leak-total-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
}

.leak-total-amount {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--green);
    line-height: 1;
}

.leak-total-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.leak-total-annual {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 12px;
}

/* ===== RESULTS ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

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

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.result-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.result-testimonial {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.result-headline {
    font-size: 22px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.result-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.result-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2a2a3a;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-attr-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.result-attr-company {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    padding: 36px 40px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    font-size: 18px;
    font-style: normal;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 24px;
}

.testimonial-attr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a3a;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
}

.testimonial-company {
    font-size: 13px;
    color: var(--text-dim);
    text-align: left;
}

/* ===== STEPS EXTRA ===== */
.step-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text);
}

.steps-cta {
    text-align: center;
    margin-top: 52px;
}

.steps-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 12px;
    font-family: var(--mono);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.faq-item {
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 8px;
}

.faq-q {
    width: 100%;
    background: var(--bg-card);
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background var(--transition);
}

.faq-q:hover {
    background: var(--bg-card2);
}

.faq-arrow {
    font-size: 22px;
    color: var(--green);
    flex-shrink: 0;
    transition: transform 0.22s ease;
    line-height: 1;
}

.faq-item.open .faq-arrow {
    transform: rotate(90deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-card);
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-a p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 40px;
    margin-top: 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-name {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-mid);
    padding: 7px 14px;
    border-radius: 6px;
    transition: color var(--transition), border-color var(--transition);
}

.footer-linkedin:hover {
    color: #0A66C2;
    border-color: #0A66C2;
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-muted);
}

.footer-sep {
    color: var(--border-mid);
    font-size: 13px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 680px;
    letter-spacing: 0.01em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .leak-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 40%;
    }
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-section {
        text-align: center;
    }

    .cta-content-col {
        align-items: center;
    }

    .hero {
        padding: 40px 0 48px;
    }

    h1 {
        font-size: clamp(30px, 7vw, 42px);
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .trust-grid {
        flex-direction: column;
        gap: 32px;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step {
        padding: 0;
        width: 100%;
        max-width: 280px;
    }

    .step-connector {
        padding-top: 0;
        width: 1px;
        height: 40px;
        flex-direction: column;
    }

    .step-line {
        width: 1px;
        height: 100%;
    }

    .email-header-row {
        flex-direction: column;
        gap: 10px;
    }

    .modal {
        padding: 32px 24px;
        border-radius: 14px;
    }

    .modal-progress {
        margin-bottom: 28px;
    }

    .form-step h3 {
        font-size: 20px;
    }

    .btn-back {
        padding: 15px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 64px 0;
    }

    .section-sub {
        font-size: 16px;
    }

    .deposit-metrics {
        flex-wrap: wrap;
    }
}
