/* ============================================
   VIKREYA — Redesign v3
   Inspired by: Equiem (dark hero, asymmetry, editorial)
   Palette: warm sage green + charcoal + cream
   Fonts: Outfit (body) + Playfair Display (headlines)
   Feel: Confident, human, editorial — NOT template
   ============================================ */

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

:root {
    --green:      #2d6a4f;
    --green-light:#b7e4c7;
    --green-bg:   #eef6f1;
    --green-pale: #f4faf6;
    --sage:       #52b788;
    --gold:       #d4a24e;
    --gold-bg:    #fdf6ec;

    --dark:       #1a1a2e;
    --dark-mid:   #2d2d44;
    --charcoal:   #3d3d56;

    --bg:         #fafaf7;
    --white:      #ffffff;
    --text:       #1a1a2e;
    --text-mid:   #5c5c72;
    --text-light: #9595a8;
    --border:     #e5e5e0;

    --font:       'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --serif:      'Playfair Display', Georgia, serif;

    --container:  1140px;
    --radius:     12px;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* ---- ACCESSIBILITY ---- */
/* Skip to content link for keyboard users */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 9999;
    transition: top 0.2s;
    text-decoration: none;
}
.skip-to-content:focus {
    top: 0;
}

/* Global focus-visible styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
    border-radius: 4px;
}
/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}
/* Specific overrides for dark backgrounds */
.hero *:focus-visible,
.why *:focus-visible,
.header *:focus-visible,
.email-capture-inner *:focus-visible {
    outline-color: var(--green-light);
}
/* Buttons get a subtle ring instead */
button:focus-visible, .btn-hero-primary:focus-visible, .btn-nav:focus-visible, a:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---- HEADER / NAV ---- */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(20px);
}
.header-app {
    background: rgba(250,250,247,0.92);
    border-bottom: 1px solid var(--border);
}
.header-app .logo, .header-app .logo span { color: var(--text); }
.nav {
    max-width: var(--container); margin: 0 auto; padding: 0 28px;
    height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
    font-family: var(--serif); font-size: 24px; font-weight: 700;
    color: #fff; text-decoration: none; letter-spacing: -0.01em;
}
.logo span {
    font-family: var(--font); font-weight: 400; font-size: 14px;
    color: rgba(255,255,255,0.55); margin-left: 8px; letter-spacing: 0.02em;
}
.logo-footer { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--text); text-decoration: none; }
.logo-footer span { font-family: var(--font); font-weight: 400; font-size: 13px; color: var(--text-mid); margin-left: 6px; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link {
    font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.65);
    text-decoration: none; transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.btn-nav {
    font-family: var(--font); font-size: 14px; font-weight: 600;
    color: var(--dark); background: var(--sage); border: none;
    padding: 10px 24px; border-radius: 8px; cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.btn-nav:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-nav-ghost {
    font-family: var(--font); font-size: 14px; font-weight: 500;
    color: var(--text-mid); background: none; border: none; cursor: pointer;
}
.btn-nav-ghost:hover { color: var(--text); }

/* ---- HERO ---- */
.hero {
    background: var(--dark);
    padding: 140px 28px 100px;
    overflow: hidden;
}
.hero-grid {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
    font-size: 13px; font-weight: 500; color: var(--sage);
    letter-spacing: 0.04em; margin-bottom: 24px;
}
.hero h1 {
    font-family: var(--serif); font-size: clamp(38px, 4.8vw, 58px);
    font-weight: 700; line-height: 1.1; color: #fff;
    letter-spacing: -0.02em; margin-bottom: 24px;
}
.hero-body {
    font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.65);
    margin-bottom: 36px; max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-hero-primary {
    font-family: var(--font); font-size: 16px; font-weight: 600;
    color: var(--dark); background: var(--sage); border: none;
    padding: 16px 36px; border-radius: 10px; cursor: pointer;
    transition: all 0.2s;
}
.btn-hero-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(82,183,136,0.25); }
.btn-hero-ghost {
    font-family: var(--font); font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,0.6); text-decoration: none; padding: 16px 8px;
    transition: color 0.2s;
}
.btn-hero-ghost:hover { color: #fff; }
.hero-proof {
    display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap;
}
.hero-proof span {
    font-size: 13px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px;
}

/* Hero visual — floating cards */
.hero-right { position: relative; }
.hero-visual { position: relative; height: 380px; }
.hero-card {
    position: absolute; background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px 24px;
    animation: floatCard 6s ease-in-out infinite;
}
.hc1 { top: 0; left: 0; animation-delay: 0s; }
.hc2 { top: 80px; left: 180px; animation-delay: 1s; }
.hc3 { top: 180px; left: 40px; animation-delay: 2s; }
.hc-label { font-size: 12px; font-weight: 500; color: var(--sage); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.hc-amount { font-family: var(--serif); font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hc-detail { font-size: 13px; color: rgba(255,255,255,0.45); }
.hero-total {
    position: absolute; bottom: 0; right: 0;
    background: var(--sage); border-radius: 14px; padding: 20px 28px;
    display: flex; flex-direction: column; gap: 2px;
}
.hero-total span { font-size: 12px; font-weight: 500; color: rgba(26,26,46,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-total strong { font-family: var(--serif); font-size: 32px; color: var(--dark); }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---- WHAT WE DO — Editorial numbered list ---- */
.what { padding: 100px 0; }
.what-header { margin-bottom: 64px; }
.label {
    font-size: 13px; font-weight: 600; color: var(--sage);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.what h2, .steps h2, .email-box h3 {
    font-family: var(--serif); font-size: clamp(30px, 4vw, 44px);
    font-weight: 700; line-height: 1.15; color: var(--text); letter-spacing: -0.02em;
}
.why h2 {
    font-family: var(--serif); font-size: clamp(30px, 4vw, 44px);
    font-weight: 700; line-height: 1.15; color: #fff; letter-spacing: -0.02em;
}
.what-list { max-width: 720px; }
.what-item {
    display: grid; grid-template-columns: 60px 1fr; gap: 20px;
    padding: 36px 0; border-top: 1px solid var(--border);
}
.what-number {
    font-family: var(--serif); font-size: 28px; font-weight: 700;
    color: var(--sage); line-height: 1.2;
}
.what-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.what-content p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.new-badge {
    display: inline-block; font-size: 11px; font-weight: 700;
    color: var(--dark); background: var(--green-light); padding: 3px 10px;
    border-radius: 99px; margin-top: 10px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---- WHY IT MATTERS — Redesigned ---- */
.why {
    background: var(--dark);
    padding: 0;
    overflow: hidden;
}
.why-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 96px 28px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.why-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--sage);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.why-h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
}
.why-h2 em {
    font-style: italic;
    color: var(--sage);
}
.why-lede {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 640px;
}
.why-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.why-stat-card {
    padding: 44px 36px;
    background: rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.25s;
}
.why-stat-card:hover { background: rgba(255,255,255,0.07); }
.why-stat-card--accent {
    background: var(--sage);
    position: relative;
}
.why-stat-card--accent:hover { background: var(--green); }
.why-stat-card--accent .wsc-label { color: rgba(26,26,46,0.7); }
.wsc-number {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.why-stat-card--accent .wsc-number { color: var(--dark); }
.wsc-unit {
    font-family: var(--font);
    font-size: 0.38em;
    font-weight: 600;
    vertical-align: super;
    margin-left: 2px;
    letter-spacing: 0;
}
.wsc-label {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
    max-width: 220px;
}
.why-cta-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.why-closer {
    font-size: 17px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    max-width: 380px;
    line-height: 1.6;
}
/* Old stat-big for any lingering references */
.stat-big { font-family: var(--serif); font-size: 48px; font-weight: 700; color: var(--green); }
.why-body { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }

.btn-dark {
    font-family: var(--font); font-size: 15px; font-weight: 600;
    color: #fff; background: var(--dark); border: none;
    padding: 14px 32px; border-radius: 10px; cursor: pointer;
    transition: background 0.2s, transform 0.1s; margin-top: 12px;
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }

@media (max-width: 900px) {
    .why-stats-row { grid-template-columns: 1fr; gap: 1px; }
    .why-stat-card { padding: 32px 28px; }
    .why-cta-row { flex-direction: column; align-items: flex-start; gap: 24px; }
    .why-inner { gap: 48px; padding: 72px 24px 64px; }
}
@media (max-width: 640px) {
    .wsc-number { font-size: 56px; }
}

/* ---- STEPS ---- */
.steps { padding: 100px 0; }
.steps-header { margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-block { padding: 32px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; }
.step-n {
    font-family: var(--serif); font-size: 36px; font-weight: 700;
    color: var(--sage); margin-bottom: 16px;
}
.step-block h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-block p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ---- EMAIL ---- */
.email-section { padding: 80px 0; }
.email-box {
    max-width: 560px; margin: 0 auto; text-align: center;
    background: var(--dark); border-radius: 20px; padding: 48px 40px; color: #fff;
}
.email-box h3 { color: #fff; font-size: 28px; margin-bottom: 12px; }
.email-box p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.email-form { display: flex; gap: 10px; }
.email-input {
    flex: 1; font-family: var(--font); font-size: 15px;
    padding: 14px 18px; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px; background: rgba(255,255,255,0.08);
    color: #fff; outline: none; transition: border-color 0.2s;
}
.email-input::placeholder { color: rgba(255,255,255,0.35); }
.email-input:focus { border-color: var(--sage); }
.btn-email {
    font-family: var(--font); font-size: 14px; font-weight: 600;
    color: var(--dark); background: var(--sage); border: none;
    padding: 14px 24px; border-radius: 10px; cursor: pointer; white-space: nowrap;
    transition: background 0.2s;
}
.btn-email:hover { background: var(--green-light); }
.email-success { font-size: 15px; font-weight: 600; color: var(--sage); padding: 14px 0; }

/* Email Capture Section (Fix #9) */
.email-capture {
    padding: 80px 0 60px;
}
.email-capture-inner {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
}
.email-capture-inner h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text);
    margin-bottom: 12px;
}
.email-capture-inner > p {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 28px;
    line-height: 1.6;
}
.email-capture .email-form {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.email-capture .email-input {
    flex: 1;
    font-family: var(--font);
    font-size: 15px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.email-capture .email-input::placeholder { color: rgba(255,255,255,0.35); }
.email-capture .email-input:focus { border-color: var(--sage); }
.email-capture .email-submit-btn {
    white-space: nowrap;
    padding: 14px 28px;
    font-size: 14px;
}
.email-capture .email-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sage);
    padding: 14px 0;
}
.email-privacy {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}
@media (max-width: 600px) {
    .email-capture .email-form {
        flex-direction: column;
    }
    .email-capture-inner {
        padding: 36px 24px;
    }
}

/* ---- FOOTER ---- */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; margin-bottom: 32px; }
.footer-left p { font-size: 14px; color: var(--text-mid); margin-top: 8px; line-height: 1.6; }
.footer-right { display: flex; gap: 24px; align-items: start; }
.footer-right a { font-size: 14px; color: var(--text-mid); text-decoration: none; }
.footer-right a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-light); }

/* ============================================
   WIZARD / APP
   ============================================ */

.progress-bar { padding: 28px 28px 8px; display: flex; justify-content: center; align-items: center; gap: 0; }
.progress-track { display: flex; align-items: center; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 72px; }
.progress-dot {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    color: var(--text-light); background: var(--white); border: 2px solid var(--border);
    transition: all 0.3s;
}
.progress-step.active .progress-dot { color: #fff; background: var(--sage); border-color: var(--sage); box-shadow: 0 4px 16px rgba(82,183,136,0.3); }
.progress-step.done .progress-dot { color: #fff; background: var(--green); border-color: var(--green); }
.progress-step span { font-size: 11px; font-weight: 600; color: var(--text-light); }
.progress-step.active span { color: var(--sage); }
.progress-step.done span { color: var(--green); }
.progress-line {
    width: 64px; height: 2px; background: var(--border);
    margin: 0 4px; margin-bottom: 20px; transition: background 0.3s;
}
.progress-line.filled { background: var(--sage); }

/* Progress stepper — actual classes used in HTML */
.prog-item {
    display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 80px;
}
.prog-circle {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    color: var(--text-light); background: var(--white); border: 2px solid var(--border);
    transition: all 0.3s;
}
.prog-item span {
    font-size: 12px; font-weight: 600; color: var(--text-light);
    white-space: nowrap;
}
.prog-item.active .prog-circle {
    color: #fff; background: var(--sage); border-color: var(--sage);
    box-shadow: 0 4px 16px rgba(82,183,136,0.3);
}
.prog-item.active span { color: var(--sage); }
.prog-item.done .prog-circle {
    color: #fff; background: var(--green); border-color: var(--green);
}
.prog-item.done span { color: var(--green); }
.prog-line {
    width: 64px; height: 2px; background: var(--border);
    margin: 0 8px; margin-bottom: 20px; transition: background 0.3s;
}
.prog-line.filled { background: var(--sage); }

.wizard { max-width: 680px; margin: 24px auto 80px; padding: 0 28px; }
.step { display: none; animation: fadeUp 0.3s ease; }
.step.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.step h2 { font-family: var(--serif); font-size: 28px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.step-sub { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; }

/* Choices */
.choices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.choice input { display: none; }
.choice-inner {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px; background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
}
.choice-inner:hover { border-color: var(--sage); }
.choice input:checked + .choice-inner { border-color: var(--green); background: var(--green-bg); }
.choice-left { flex: 1; }
.choice-left strong { display: block; font-size: 16px; margin-bottom: 2px; }
.choice-left span { font-size: 14px; color: var(--text-mid); }
.choice-tag {
    font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px;
    letter-spacing: 0.03em; text-transform: uppercase; flex-shrink: 0;
}
.popular-tag { background: var(--gold-bg); color: var(--gold); }
.new-tag { background: var(--green-bg); color: var(--green); }
.choice-check {
    width: 24px; height: 24px; border-radius: 50%; background: var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: transparent; flex-shrink: 0;
    transition: all 0.2s;
}
.choice input:checked + .choice-inner .choice-check { background: var(--green); color: #fff; }

/* Upload instructions */
.upload-instructions {
    background: var(--green-bg); border: 1px solid var(--green-light);
    border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px;
}
.upload-instructions h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.upload-instructions ol { margin: 0; padding-left: 20px; }
.upload-instructions li { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 4px; }
.report-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.report-checklist span { font-size: 13px; font-weight: 600; color: var(--text); }

/* Upload zone */
.upload-zone {
    position: relative; border: 2px dashed var(--border); border-radius: 16px;
    padding: 48px 32px; text-align: center; background: var(--white);
    cursor: pointer; transition: all 0.2s; margin-bottom: 12px;
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--sage); background: var(--green-pale); }
.upload-zone input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.upload-icon { color: var(--sage); margin-bottom: 12px; }
.upload-main { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.upload-sub { font-size: 13px; color: var(--text-light); }

/* File list */
.file-list { margin-bottom: 20px; }
.file-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; background: var(--green-bg); border-radius: 10px;
    margin-bottom: 6px; animation: fadeUp 0.25s ease;
}
.file-item-left { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.file-remove {
    font-size: 13px; color: var(--text-light); background: none; border: none;
    cursor: pointer; transition: color 0.2s;
}
.file-remove:hover { color: #dc2626; }

/* Wizard actions */
.wizard-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.btn-primary {
    font-family: var(--font); font-size: 15px; font-weight: 600;
    color: #fff; background: var(--green); border: none;
    padding: 14px 32px; border-radius: 10px; cursor: pointer;
    transition: all 0.2s;
}
.btn-primary:hover:not(:disabled) { background: var(--sage); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-ghost-action {
    font-family: var(--font); font-size: 14px; font-weight: 500;
    color: var(--text-mid); background: none; border: none; cursor: pointer;
}
.btn-ghost-action:hover { color: var(--text); }

/* Loading */
.loading-box { text-align: center; padding: 64px 0; }
.spinner {
    width: 40px; height: 40px; border: 3px solid var(--border);
    border-top-color: var(--sage); border-radius: 50%;
    animation: spin 0.7s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-box p { font-size: 16px; font-weight: 600; }
.loading-sub { font-size: 14px !important; font-weight: 400 !important; color: var(--text-mid) !important; }

/* Results */
.results-header {
    background: var(--green-bg); border: 1px solid var(--green-light);
    border-radius: 16px; padding: 32px; text-align: center; margin-bottom: 24px;
}
.results-header h2 { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.results-header .big-number { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--green); margin: 8px 0; }
.results-header .results-meta { font-size: 14px; color: var(--text-mid); }
.results-header .results-meta span { display: inline-block; margin: 0 8px; }

/* Case cards */
.case-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 14px; }
.case-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.case-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; cursor: pointer; transition: background 0.15s;
}
.case-header:hover { background: var(--green-pale); }
.case-chevron {
    font-size: 18px; color: var(--text-light); margin-left: 12px; transition: transform 0.25s; display: inline-block; flex-shrink: 0;
}
.case-header-left { display: flex; align-items: center; gap: 12px; }
.case-priority { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.case-priority.high { background: #fef2f2; color: #dc2626; }
.case-priority.medium { background: var(--gold-bg); color: #b45309; }
.case-priority.low { background: #eff6ff; color: #1d4ed8; }
.case-title { font-size: 15px; font-weight: 600; }
.case-amount { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--green); }
.case-body { display: none; padding: 0 22px 22px; border-top: 1px solid var(--border); }
.case-body.open { display: block; animation: fadeUp 0.25s ease; }
.case-section { margin-top: 18px; }
.case-section h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 6px; }
.case-section p, .case-section li { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.case-section ol { padding-left: 18px; }
.case-section li { margin-bottom: 4px; }
.claim-template {
    background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
    padding: 18px; margin-top: 12px; font-size: 13px; line-height: 1.7;
    color: var(--text-mid); white-space: pre-wrap;
}
.claim-actions { display: flex; gap: 10px; margin-top: 14px; }
.btn-copy {
    font-family: var(--font); font-size: 13px; font-weight: 600;
    color: var(--green); background: var(--green-bg); border: none;
    padding: 10px 18px; border-radius: 8px; cursor: pointer; transition: all 0.2s;
}
.btn-copy:hover { background: var(--green); color: #fff; }
.btn-link {
    font-family: var(--font); font-size: 13px; font-weight: 600;
    color: var(--dark); background: var(--border); border: none;
    padding: 10px 18px; border-radius: 8px; cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; transition: all 0.2s;
}
.btn-link:hover { background: var(--dark); color: #fff; }

/* Feedback */
.feedback-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px; margin-top: 24px; text-align: center;
}
.feedback-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.feedback-sub { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; }
.feedback-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 8px; }
.star-btn {
    font-size: 30px; background: none; border: none; cursor: pointer; color: var(--border);
    transition: color 0.15s, transform 0.15s;
}
.star-btn:hover, .star-btn.active { color: var(--gold); transform: scale(1.12); }
.rating-label { font-size: 13px; color: var(--text-mid); margin-bottom: 18px; min-height: 18px; }
.feedback-tags-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 16px; }
.ftag {
    font-family: var(--font); font-size: 13px; font-weight: 500; padding: 7px 14px;
    border-radius: 99px; border: 1.5px solid var(--border); background: var(--white);
    color: var(--text-mid); cursor: pointer; transition: all 0.2s;
}
.ftag:hover { border-color: var(--sage); }
.ftag.selected { border-color: var(--green); background: var(--green-bg); color: var(--green); }
.feedback-textarea {
    width: 100%; font-family: var(--font); font-size: 14px; padding: 14px;
    border: 1.5px solid var(--border); border-radius: 10px; resize: vertical;
    margin-bottom: 10px; outline: none;
}
.feedback-textarea:focus { border-color: var(--sage); }
.feedback-email-input {
    width: 100%; font-family: var(--font); font-size: 14px; padding: 12px 14px;
    border: 1.5px solid var(--border); border-radius: 10px; outline: none;
    margin-bottom: 16px;
}
.feedback-email-input:focus { border-color: var(--sage); }
.feedback-done { text-align: center; padding: 24px; }
.feedback-done h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; color: var(--green); }
.feedback-done p { font-size: 14px; color: var(--text-mid); }

/* Toast */
.toast {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(60px);
    background: var(--dark); color: #fff; padding: 12px 24px; border-radius: 10px;
    font-size: 14px; font-weight: 600; opacity: 0; transition: all 0.3s; z-index: 9999; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { display: none; }
    .hero { padding: 120px 24px 72px; }
    .hero h1 { font-size: 36px; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
    .nav-right .nav-link { display: none; }
    .hero { padding: 100px 20px 56px; }
    .hero h1 { font-size: 30px; }
    .hero-body { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: start; }
    .what-item { grid-template-columns: 40px 1fr; gap: 14px; padding: 24px 0; }
    .email-box { padding: 36px 24px; }
    .email-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .case-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .claim-actions { flex-direction: column; }
    .report-checklist { grid-template-columns: 1fr; }
    .progress-line { width: 32px; }
    .prog-line { width: 32px; }
    .prog-item { min-width: 60px; }
    .prog-item span { font-size: 11px; }
    .prog-circle { width: 32px; height: 32px; font-size: 13px; }
    .wizard { padding: 0 16px; }
    .choice-inner { flex-wrap: wrap; }
    /* Mobile hamburger menu */
    .mobile-menu-btn { display: flex; }
    .nav-right { 
        display: none; 
        position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
        background: rgba(26,26,46,0.98);
        flex-direction: column;
        padding: 32px 28px;
        gap: 0;
        z-index: 99;
    }
    .nav-right.open { display: flex; }
    .nav-right .nav-link { 
        display: block; 
        font-size: 18px; 
        padding: 16px 0; 
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.7);
    }
    .nav-right .btn-nav { 
        margin-top: 16px; 
        text-align: center; 
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
    /* Better mobile tap targets */
    .btn-hero-primary { width: 100%; text-align: center; padding: 18px 36px; font-size: 17px; }
    .faq-q { font-size: 16px; padding: 16px 0; min-height: 48px; }
    .testi-grid { grid-template-columns: 1fr; }
    /* Fix footer on mobile */
    .footer-col { min-width: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile hamburger button */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: background 0.2s;
}
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: transform 0.3s;
}
.mobile-menu-btn span::before { top: -7px; }
.mobile-menu-btn span::after { top: 7px; }
.mobile-menu-btn.open span { background: transparent; }
.mobile-menu-btn.open span::before { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span::after { transform: rotate(-45deg) translate(5px, -5px); }

/* Upload zone feedback states */
.upload-zone { transition: border-color 0.2s, background 0.2s; }
.upload-zone.dragover {
    border-color: var(--sage) !important;
    background: rgba(82, 183, 136, 0.05) !important;
}
.file-item {
    transition: background 0.2s;
}
.file-item.processing {
    position: relative;
    overflow: hidden;
}
.file-item.processing::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
    animation: fileProcessing 1.5s ease-in-out infinite;
}
@keyframes fileProcessing {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Loading state spinner improvement */
.loading-spinner {
    display: inline-block;
    width: 24px; height: 24px;
    border: 3px solid rgba(82, 183, 136, 0.2);
    border-top-color: var(--sage);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Loading progress steps */
.loading-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
}
.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}
.loading-step {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}
.loading-step .ls-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}
.loading-step.active {
    color: var(--text);
}
.loading-step.active .ls-dot {
    background: var(--sage);
    transform: scale(1.3);
    animation: pulse-dot 0.6s ease-in-out;
}
.loading-step.done {
    color: var(--sage);
}
.loading-step.done .ls-dot {
    background: var(--sage);
    transform: scale(1);
}
@keyframes pulse-dot {
    0% { transform: scale(1); }
    50% { transform: scale(1.6); }
    100% { transform: scale(1.3); }
}

/* Loading progress bar */
.loading-progress-bar {
    width: 100%;
    max-width: 280px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.loading-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--sage);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Sample file download link */
.sample-file-download {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}
.sample-file-download .sample-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.sample-file-download .sample-link {
    color: var(--green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sample-file-download .sample-link:hover {
    color: var(--sage);
}

/* ============================================
   DOWNLOAD DROPDOWN
   ============================================ */

.download-dropdown {
    position: relative;
    display: inline-block;
}

.download-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    min-width: 280px;
    z-index: 1000;
    overflow: hidden;
}

.download-menu button {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: none;
    color: #e5e5e5;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease;
    border-bottom: 1px solid #2a2a2a;
}

.download-menu button:last-child {
    border-bottom: none;
}

.download-menu button:hover {
    background: #2a2a2a;
}

.download-icon {
    font-size: 24px;
    min-width: 32px;
    text-align: center;
}

.download-format {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.download-desc {
    font-size: 12px;
    color: #999;
}


/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Hero */
.blog-hero {
    background: var(--green-pale);
    padding: 140px 28px 80px;
    text-align: center;
}
.blog-hero-title {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin: 16px 0 20px;
}
.blog-hero-desc {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-mid);
    max-width: 680px;
    margin: 0 auto;
}

/* Featured Article Card */
.blog-featured {
    padding: 60px 28px;
}
.featured-card {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}
.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.featured-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-bg);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.featured-card h2 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 0 0 16px;
}
.featured-card p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-mid);
    margin: 0 0 20px;
}
.featured-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
}

/* Blog Grid */
.blog-grid {
    padding: 40px 28px 100px;
    background: var(--bg);
}
.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
    max-width: var(--container);
    margin: 0 auto;
}
.article-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.article-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--sage);
    background: var(--green-pale);
    padding: 5px 12px;
    border-radius: 5px;
    margin-bottom: 16px;
}
.article-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    margin: 0 0 12px;
}
.article-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 0 0 16px;
}
.article-meta {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

/* Blog CTA */
.blog-cta {
    padding: 80px 28px;
    background: var(--dark);
}
.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.cta-box h2 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}
.cta-box p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin: 0 0 32px;
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

.article-page {
    padding: 120px 28px 100px;
    background: var(--bg);
}
.article-container {
    max-width: 780px;
    margin: 0 auto;
}
.article-header {
    margin-bottom: 48px;
}
.article-header h1 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin: 16px 0 20px;
}
.article-lead {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 0 0 24px;
}
.article-content {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
}
.article-content h2 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 56px 0 24px;
}
.article-content h3 {
    font-family: var(--font);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    margin: 40px 0 16px;
}
.article-content p {
    margin: 0 0 24px;
}
.article-content ul, .article-content ol {
    margin: 0 0 24px;
    padding-left: 28px;
}
.article-content li {
    margin-bottom: 12px;
}
.article-content strong {
    font-weight: 600;
    color: var(--text);
}
.article-content a {
    color: var(--green);
    text-decoration: underline;
    transition: color 0.2s;
}
.article-content a:hover {
    color: var(--sage);
}

/* Article specific components */
.template-box {
    background: var(--green-pale);
    border-left: 4px solid var(--green);
    padding: 28px;
    margin: 32px 0;
    font-size: 16px;
    line-height: 1.7;
}
.template-box p {
    margin: 0 0 16px;
}
.template-box p:last-child {
    margin: 0;
}

.inline-cta {
    display: inline-block;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    border-bottom: 2px solid var(--green);
    transition: color 0.2s, border-color 0.2s;
}
.inline-cta:hover {
    color: var(--sage);
    border-color: var(--sage);
}

.article-cta-box {
    background: var(--green-bg);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    margin: 64px 0 0;
}
.article-cta-box h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
}
.article-cta-box p {
    font-size: 17px;
    color: var(--text-mid);
    margin: 0 0 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 36px;
    }
    .blog-hero-desc {
        font-size: 17px;
    }
    .featured-card {
        padding: 32px 24px;
    }
    .featured-card h2 {
        font-size: 28px;
    }
    .blog-articles {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .article-header h1 {
        font-size: 32px;
    }
    .article-lead {
        font-size: 18px;
    }
    .article-content {
        font-size: 17px;
    }
    .article-content h2 {
        font-size: 26px;
    }
    .article-content h3 {
        font-size: 21px;
    }
    .cta-box h2 {
        font-size: 32px;
    }
    .article-cta-box {
        padding: 32px 24px;
    }
}

/* ============================================
   NEW SECTIONS — UX Improvements 2026
   ============================================ */

/* --- TICKER STRIP --- */
.ticker-strip {
    background: var(--dark);
    padding: 10px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: tickerScroll 28s linear infinite;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}
.ticker-inner span {
    flex-shrink: 0;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 100px 0 80px;
    background: var(--white);
}
.hiw-header {
    text-align: center;
    margin-bottom: 56px;
}
.hiw-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin: 12px 0 16px;
}
.hiw-desc {
    font-size: 18px;
    color: var(--text-mid);
    max-width: 540px;
    margin: 0 auto;
}

/* VIDEO DEMO */
.video-demo-wrapper {
    margin-bottom: 56px;
}
.video-demo-player {
    position: relative;
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 32px 80px rgba(26,26,46,0.28);
}
.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.demo-screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    overflow: hidden;
}
.demo-stage {
    width: 100%;
    height: 100%;
    position: relative;
}
.demo-frame {
    position: absolute;
    inset: 0;
    padding: 20px 24px;
    display: none;
    flex-direction: column;
    background: var(--bg);
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.demo-frame.active {
    display: flex;
    opacity: 1;
}
/* Frame 1 — hero */
.demo-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark);
    padding: 8px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.demo-logo {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.demo-logo span { font-family: var(--font); font-size: 10px; color: rgba(255,255,255,0.5); margin-left: 4px; }
.demo-nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    color: rgba(255,255,255,0.55);
}
.demo-cta-btn {
    background: var(--sage);
    color: var(--dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 9px;
}
.demo-hero-content {
    padding: 0 8px;
    flex: 1;
}
.demo-eyebrow { font-size: 9px; color: var(--sage); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.demo-h1 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: #fff; background: var(--dark); padding: 10px 14px; border-radius: 6px; margin-bottom: 8px; line-height: 1.3; }
.demo-hero-body { font-size: 9px; color: var(--text-mid); margin-bottom: 12px; max-width: 300px; line-height: 1.6; }
.demo-btn-group { display: flex; gap: 8px; align-items: center; }
.demo-primary-btn { background: var(--sage); color: var(--dark); padding: 6px 12px; border-radius: 5px; font-size: 9px; font-weight: 700; }
.demo-ghost-btn { color: var(--text-mid); font-size: 9px; border-bottom: 1px solid var(--border); }
.demo-cards-cluster { position: absolute; right: 24px; top: 60px; display: flex; flex-direction: column; gap: 8px; }
.demo-mini-card { background: #fff; border-radius: 8px; padding: 8px 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); border: 1px solid var(--border); min-width: 130px; }
.dmc1 { animation: floatCard 4s ease-in-out infinite; }
.dmc2 { animation: floatCard 4s ease-in-out 1s infinite; }
.dmc3 { animation: floatCard 4s ease-in-out 2s infinite; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.dmc-label { font-size: 8px; color: var(--text-mid); margin-bottom: 4px; }
.dmc-amount { font-size: 16px; font-weight: 700; color: var(--green); font-family: var(--serif); }

/* Frame 2 — wizard step 1 */
.demo-wizard-header { margin-bottom: 16px; }
.demo-progress { display: flex; align-items: center; gap: 6px; font-size: 9px; }
.dp-step { padding: 4px 10px; border-radius: 20px; background: var(--border); color: var(--text-mid); font-size: 9px; }
.dp-step.active { background: var(--green); color: #fff; font-weight: 600; }
.dp-step.done { background: var(--green-light); color: var(--green); font-weight: 600; }
.dp-line { height: 1px; background: var(--border); flex: 1; }
.dp-line.active { background: var(--green); }
.demo-wizard-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.demo-wiz-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--text); }
.demo-choices { display: flex; flex-direction: column; gap: 6px; }
.demo-choice { display: flex; align-items: flex-start; gap: 8px; padding: 8px 10px; border: 1px solid var(--border); border-radius: 6px; background: #fff; font-size: 9px; }
.demo-choice.selected { border-color: var(--green); background: var(--green-pale); }
.dchoice-check { width: 14px; height: 14px; border-radius: 50%; background: var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 8px; color: #fff; }
.demo-choice.selected .dchoice-check { background: var(--green); }
.demo-choice strong { display: block; font-size: 10px; margin-bottom: 2px; color: var(--text); }
.demo-choice span { color: var(--text-mid); line-height: 1.5; }
.demo-wiz-btn { align-self: flex-end; background: var(--green); color: #fff; padding: 8px 18px; border-radius: 6px; font-size: 10px; font-weight: 600; margin-top: auto; }

/* Frame 3 — upload */
.demo-upload-zone { border: 2px dashed var(--border); border-radius: 8px; padding: 20px; text-align: center; background: var(--bg); }
.demo-upload-icon { font-size: 20px; margin-bottom: 6px; color: var(--text-light); }
.demo-upload-text { font-size: 10px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.demo-upload-sub { font-size: 8px; color: var(--text-light); }
.demo-file-added { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: var(--green-pale); border-radius: 6px; border: 1px solid var(--green-light); }
.demo-file-icon { font-size: 14px; }
.demo-file-name { font-size: 9px; font-weight: 500; color: var(--text); flex: 1; }
.demo-file-size { font-size: 8px; color: var(--text-light); }
.demo-file-ok { color: var(--green); font-size: 11px; font-weight: 700; }

/* Frame 4 — results */
.demo-results-body { display: flex; flex-direction: column; gap: 10px; }
.demo-results-header { display: flex; align-items: center; justify-content: space-between; }
.demo-results-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--text); }
.demo-results-total { font-size: 10px; color: var(--text-mid); }
.demo-results-total strong { color: var(--green); font-size: 14px; }
.demo-result-rows { display: flex; flex-direction: column; gap: 4px; }
.demo-result-row { display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: #fff; border: 1px solid var(--border); border-radius: 6px; font-size: 8px; }
.drr-type { color: var(--text); font-weight: 500; min-width: 110px; }
.drr-asin { color: var(--text-light); font-family: monospace; min-width: 65px; }
.drr-qty { color: var(--text-mid); min-width: 55px; }
.drr-amount { color: var(--text); font-weight: 600; min-width: 55px; }
.drr-status.claimable { background: var(--green); color: #fff; padding: 3px 8px; border-radius: 4px; font-size: 8px; font-weight: 600; }
.demo-download-btn { align-self: flex-end; background: var(--green); color: #fff; padding: 8px 18px; border-radius: 6px; font-size: 10px; font-weight: 600; }

/* Play overlay */
.demo-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}
.demo-play-overlay:hover { background: rgba(26,26,46,0.45); }
.demo-play-circle {
    width: 72px; height: 72px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: 0 8px 32px rgba(82,183,136,0.35);
    transition: transform 0.2s;
}
.demo-play-overlay:hover .demo-play-circle { transform: scale(1.06); }
.demo-play-overlay span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.demo-play-overlay.hidden { display: none; }

/* Demo progress bar (shown during playback) */
.demo-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--sage);
    width: 0%;
    transition: width 0.3s linear;
    z-index: 20;
}

/* HOW IT WORKS STEPS */
.hiw-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}
.hiw-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.hiw-step-num {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 12px;
}
.hiw-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.hiw-step p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}
.hiw-arrow {
    font-size: 24px;
    color: var(--border);
    padding-top: 28px;
    flex-shrink: 0;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 96px 0;
    background: var(--green-pale);
}
.testimonials .label { margin-bottom: 8px; }
.testimonials h2 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.testi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(45,106,79,0.10);
}
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testi-card p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.testi-avatar {
    width: 40px; height: 40px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: var(--text); }
.testi-author span { font-size: 12px; color: var(--text-light); }

/* --- FAQ --- */
.faq-section {
    padding: 96px 0;
    background: var(--white);
}
.faq-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: flex-start;
}
.faq-left .label { margin-bottom: 8px; }
.faq-left h2 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}
.faq-sub {
    font-size: 15px;
    color: var(--text-mid);
}
.faq-sub a { color: var(--green); text-decoration: underline; }
.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
}
.faq-item:hover .faq-q { color: var(--green); }
.faq-icon {
    font-size: 22px;
    color: var(--text-light);
    transition: transform 0.2s;
    line-height: 1;
    flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--green); }
.faq-a {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding-top: 0;
}
.faq-item.open .faq-a {
    max-height: 200px;
    padding-top: 12px;
}

/* --- ARTICLE ADDITIONS --- */
.article-cta {
    background: var(--green-bg);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin: 48px 0 0;
}
.article-cta h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
}
.article-cta p {
    font-size: 16px;
    color: var(--text-mid);
    margin: 0 0 24px;
}

/* Related articles */
.related-articles {
    background: var(--green-pale);
    padding: 64px 0;
}
.related-articles h2 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45,106,79,0.10);
}
.related-card .article-tag { font-size: 11px; }
.related-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
}
.related-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-top: auto;
}

/* Blog new badge wrapper */
.article-tag-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}
.article-card--new { position: relative; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .testi-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .hiw-steps { flex-direction: column; align-items: center; }
    .hiw-arrow { transform: rotate(90deg); }
    .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .how-it-works { padding: 64px 0 56px; }
    .hiw-header h2 { font-size: 32px; }
    .testimonials { padding: 64px 0; }
    .testimonials h2 { font-size: 30px; }
    .faq-section { padding: 64px 0; }
    .faq-left h2 { font-size: 30px; }
    .demo-cards-cluster { display: none; }
    .demo-nav-links span:not(.demo-cta-btn) { display: none; }
}

/* ============================================
   CLAIM TRACKER
   ============================================ */

.claim-tracker-panel {
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}
.claim-tracker-header h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.claim-tracker-sub {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 20px;
}
.claim-tracker-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.ct-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 20px;
    min-width: 70px;
}
.ct-stat.ct-filed { border-color: #93c5fd; background: #eff6ff; }
.ct-stat.ct-approved { border-color: var(--green-light); background: var(--green-bg); }
.ct-stat.ct-denied { border-color: #fca5a5; background: #fef2f2; }
.ct-num { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--text); }
.ct-label { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.ct-recovered {
    background: var(--green-bg);
    border: 1px solid var(--green-light);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 16px;
}
.claim-tracker-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.ct-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.ct-case-info {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
    min-width: 0;
}
.ct-case-type {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ct-case-amount {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
}
.ct-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.claim-status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 99px;
    white-space: nowrap;
}
.status-pending { background: var(--bg); color: var(--text-mid); border: 1px solid var(--border); }
.status-filed { background: #eff6ff; color: #1d4ed8; border: 1px solid #93c5fd; }
.status-approved { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-light); }
.status-denied { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.ct-select {
    font-family: var(--font);
    font-size: 12px;
    padding: 6px 10px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    outline: none;
}
.ct-select:focus { border-color: var(--sage); }

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-hero {
    padding: 120px 0 60px;
    background: var(--white);
    text-align: center;
}
.pricing-hero h1 {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin: 12px 0 16px;
}
.pricing-desc {
    font-size: 18px;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
}

.pricing-grid-section {
    padding: 40px 0 80px;
    background: var(--bg);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.pricing-card-featured {
    border-color: var(--green);
    border-width: 3px;
    transform: scale(1.04);
}
.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.pricing-card-header {
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.pricing-card-header h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.pricing-price {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}
.pricing-price span {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-mid);
}
.pricing-tagline {
    font-size: 14px;
    color: var(--text-mid);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}
.pricing-feature {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}
.pricing-feature-disabled {
    color: var(--text-light);
    opacity: 0.5;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    width: 100%;
    font-family: var(--font);
}
.pricing-cta-free {
    background: var(--green-bg);
    color: var(--green);
    border: 2px solid var(--green);
}
.pricing-cta-free:hover {
    background: var(--green);
    color: #fff;
}
.pricing-cta-pro {
    background: var(--green);
    color: #fff;
}
.pricing-cta-pro:hover {
    background: var(--sage);
}
.pricing-cta-business {
    background: var(--dark);
    color: #fff;
}
.pricing-cta-business:hover {
    background: var(--charcoal);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

.pricing-faq {
    padding: 80px 0;
    background: var(--white);
}
.pricing-faq h2 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 48px;
}
.faq-pricing-grid {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-cta-final {
    padding: 80px 0;
    background: var(--green-pale);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pricing-card-featured {
        transform: scale(1);
    }
    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }
    .pricing-hero h1 {
        font-size: 36px;
    }
}
