/* ═══════════════════════════════════════════
   FINANCE TEMPLATES — Landing Page Styles
   Font: Inter + JetBrains Mono
   Palette: Indigo (#4F46E5) + Slate
   ═══════════════════════════════════════════ */

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

:root {
    --primary: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #818CF8;
    --bg: #FAFBFF;
    --bg-dark: #0B0F1A;
    --text: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --card: #FFFFFF;
    --green: #10B981;
    --red: #EF4444;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
    --shadow: 0 4px 24px rgba(15,23,42,0.06);
    --shadow-lg: 0 12px 48px rgba(15,23,42,0.1);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
    --mono: 'JetBrains Mono', 'Consolas', monospace;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.mono { font-family: var(--mono); }
.green { color: var(--green) !important; }
.red { color: var(--red) !important; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 16px rgba(79,70,229,0.4); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--primary); }

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius); }
.btn-block { display: flex; justify-content: center; width: 100%; padding: 12px 24px; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250,251,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226,232,240,0.5);
    transition: all var(--transition);
}
.nav.scrolled { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-sm); }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.nav-logo-icon svg { display: block; }
.nav-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}
.nav-links {
    display: flex;
    gap: 4px;
    flex: 1;
}
.nav-links a {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--text);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.2s;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99,102,241,0.06);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 24px;
}
.hero-gradient {
    background: linear-gradient(135deg, #4F46E5 0%, #0EA5E9 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    max-width: 640px;
    margin: 0 auto 36px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}
.hero-proof-avatars { display: flex; }
.avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg);
    margin-left: -6px;
}
.avatar:first-child { margin-left: 0; }
.hero-proof-text {
    font-size: 13px;
    color: var(--text-muted);
}
.hero-proof-text strong { color: var(--text-secondary); }

/* Screenshot */
.hero-screenshot {
    max-width: 960px;
    margin: 0 auto;
    perspective: 1200px;
}
.screenshot-window {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.02);
    transform: rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.screenshot-window:hover { transform: rotateX(0deg); }
.screenshot-dots {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--border-light);
}
.screenshot-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #E2E8F0;
}
.screenshot-dots span:first-child { background: #FCA5A5; }
.screenshot-dots span:nth-child(2) { background: #FCD34D; }
.screenshot-dots span:nth-child(3) { background: #86EFAC; }

.screenshot-content { padding: 0; }
.ss-header { background: #F8FAFC; padding: 0 16px; border-bottom: 1px solid var(--border-light); }
.ss-nav { display: flex; gap: 0; overflow-x: auto; }
.ss-tab {
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.ss-tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

.ss-body { padding: 20px 24px 24px; }
.ss-title-row { margin-bottom: 16px; }
.ss-title { font-size: 15px; font-weight: 700; color: var(--text); display: block; }
.ss-subtitle { font-size: 11px; color: var(--text-muted); }

.ss-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.ss-table th {
    background: #0F172A;
    color: #fff;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: left;
}
.ss-table th:nth-child(3), .ss-table th:nth-child(4) { text-align: right; }
.ss-table td { padding: 6px 12px; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
.ss-table td:nth-child(3), .ss-table td:nth-child(4) { text-align: right; }
.ss-table td:nth-child(2) { text-align: center; color: var(--text-muted); font-size: 11px; }
.ss-table .ss-section td { font-weight: 700; color: var(--text); background: #F9FAFB; }
.ss-table .ss-total td { font-weight: 700; color: var(--text); border-top: 2px solid var(--text); }
.ss-table .ss-grand td { font-weight: 800; color: #fff; background: #0F172A; }
.ss-table .mono { font-family: var(--mono); font-size: 11px; }

/* ═══════════════════════════════════════════
   LOGOS BAR
   ═══════════════════════════════════════════ */
.logos-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: #fff;
}
.logos-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.logos-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.logo-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -0.02em;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════ */
.section-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99,102,241,0.06);
    border: 1px solid rgba(99,102,241,0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
}

.features, .how-it-works, .statements, .comparison, .pricing, .faq {
    padding: 100px 0;
}
.features, .comparison { text-align: center; }
.features .section-sub, .how-it-works .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
    text-align: left;
}
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}
.feature-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-it-works { background: #fff; text-align: center; }
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 56px;
}
.step-card {
    flex: 1;
    max-width: 300px;
    padding: 32px 28px;
    text-align: center;
}
.step-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(79,70,229,0.08);
    font-family: var(--mono);
    line-height: 1;
    margin-bottom: 16px;
}
.step-visual { margin-bottom: 20px; }
.step-icon-wrap {
    width: 72px; height: 72px;
    background: rgba(99,102,241,0.04);
    border: 1px solid rgba(99,102,241,0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

/* (showcase section removed — replaced by interactive demo) */

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.compare-table-wrap {
    max-width: 800px;
    margin: 48px auto 0;
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.compare-table th, .compare-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
}
.compare-table thead th {
    background: #F8FAFC;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}
.compare-table thead th:first-child { border-radius: 10px 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 10px 0 0; }
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.compare-table .compare-old { color: var(--text-muted); }
.compare-table .compare-new { color: var(--primary); }
.compare-table .compare-new strong { color: var(--text); }
.compare-table tbody tr:hover { background: #F8FAFC; }

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing { text-align: center; background: #fff; }
.pricing .section-sub { margin: 0 auto; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.pricing-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--transition);
}
.pricing-card:hover { border-color: var(--primary-light); }
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(79,70,229,0.15);
}
.pricing-badge {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
}
.pricing-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.pricing-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}
.pricing-features li {
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li::before {
    content: '';
    width: 16px; height: 16px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2310B981' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.pricing-features li strong { color: var(--text); }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq { text-align: center; }
.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: max-height 0.3s, padding 0.3s;
}
.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.final-cta { padding: 0 0 100px; }
.cta-card {
    background: linear-gradient(135deg, #4F46E5 0%, #3730A3 100%);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    color: #fff;
}
.cta-card h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.01em; }
.cta-card p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 28px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* Hero additions */
.hero-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; text-align: center; }

/* Trust bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(16,185,129,0.04);
    border: 1px solid rgba(16,185,129,0.1);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Sticky CTA bar */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.sticky-cta-text s { color: var(--text-muted); font-weight: 400; }

/* Pricing strikethrough */
.pricing-strike {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 4px;
    text-decoration: line-through;
}

/* Steps row (horizontal) */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}
.step-card { flex: 1; max-width: 320px; text-align: center; padding: 24px; }
.step-num {
    width: 36px; height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--mono);
    margin-bottom: 16px;
}
.step-icon-area { margin-bottom: 16px; }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-divider {
    width: 48px;
    height: 2px;
    background: var(--border);
    margin-top: 80px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   APP FRAME PREVIEWS
   ═══════════════════════════════════════════ */
.preview { padding: 100px 0; background: #F8FAFC; text-align: center; }
.preview .section-sub { margin: 0 auto 0; }

.preview-tabs {
    display: inline-flex;
    gap: 4px;
    margin: 40px 0 32px;
    padding: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
}
.preview-tab {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
}
.preview-tab.active { background: var(--primary); color: #fff; }
.preview-tab:hover:not(.active) { background: #F1F5F9; color: var(--text); }

.preview-panel { display: none; }
.preview-panel.active { display: block; }

.app-frame {
    display: flex;
    background: #F0F2F5;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #D1D5DB;
    box-shadow: 0 20px 60px rgba(15,23,42,0.12), 0 0 0 1px rgba(0,0,0,0.03);
    text-align: left;
    max-height: 520px;
}
.app-sidebar {
    width: 200px;
    background: linear-gradient(180deg, #0F172A 0%, #131C2E 100%);
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    font-size: 11px;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.app-sb-brand {
    padding: 14px 14px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-sb-icon {
    width: 24px; height: 24px;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
}
.app-sb-company {
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    color: #E2E8F0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-sb-label {
    padding: 12px 14px 4px;
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.app-sb-item {
    padding: 6px 14px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}
.app-sb-item.active { color: #fff; font-weight: 600; background: rgba(255,255,255,0.06); border-left: 3px solid #60A5FA; }
.app-sb-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.app-sb-sub {
    padding: 4px 14px 4px 32px;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    position: relative;
}
.app-sb-sub::before {
    content: '';
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    position: absolute;
    left: 22px;
    top: 50%;
    margin-top: -1.5px;
}
.app-sb-sub.active { color: #fff; font-weight: 600; }
.app-sb-sub.active::before { background: #818CF8; }
.app-sb-status {
    margin-top: auto;
    padding: 10px 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #6B7280; }
.status-dot.connected { background: #10B981; box-shadow: 0 0 6px rgba(16,185,129,0.6); }

.app-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.app-topbar {
    height: 40px;
    background: #fff;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex-shrink: 0;
}
.app-topbar-title { font-size: 12px; font-weight: 600; color: var(--text); }
.app-topbar-sub { font-weight: 400; color: var(--text-muted); font-size: 11px; margin-left: 6px; }
.app-topbar-btn {
    font-size: 10px;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}
.app-content { padding: 14px 16px; overflow-y: auto; flex: 1; }
.app-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.app-card-head { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.app-card-sub { font-size: 9px; color: var(--text-muted); margin-bottom: 12px; }
.app-footnote { font-size: 9px; color: var(--text-muted); margin-top: 10px; padding: 6px 8px; background: #F9FAFB; border-radius: 4px; }

.app-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.app-table th {
    background: #0F172A;
    color: #fff;
    padding: 6px 8px;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.app-table td {
    padding: 4px 8px;
    border-bottom: 1px solid #F3F4F6;
    color: var(--text-secondary);
    font-size: 10px;
}
.app-table .at-section td { font-weight: 700; color: var(--text); background: #F9FAFB; }
.app-table .at-total td { font-weight: 700; color: var(--text); border-top: 1.5px solid var(--text); }
.app-table .at-grand td { font-weight: 800; color: #fff; background: #0F172A; }
.app-table .at-stripe td { background: #FAFBFC; }
.app-table .at-tb-total td { border-top: 2px solid #334155; background: #F1F5F9; }
.at-amt { text-align: right; font-family: var(--mono); font-size: 10px; }
.at-note { text-align: center; color: var(--text-muted); font-size: 9px; }
.at-group { font-size: 9px; color: #9CA3AF; }
.at-nature {
    font-size: 9px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 3px;
}
.at-nature.income { color: #059669; background: #ECFDF5; }
.at-nature.expense { color: #D97706; background: #FFFBEB; }
.at-nature.asset { color: #2563EB; background: #EFF6FF; }
.at-nature.liability { color: #DC2626; background: #FEF2F2; }
.at-nature.capital { color: #7C3AED; background: #F5F3FF; }

.app-table-sm td { padding: 3px 8px; }
.app-table-sm th { padding: 5px 8px; }

.app-note-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.app-note-num {
    width: 22px; height: 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--mono);
}

.app-kpi-row {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}
.app-kpi {
    flex: 1;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 12px;
    border-left: 3px solid #6B7280;
}
.app-kpi.green-bar { border-left-color: #10B981; }
.app-kpi.red-bar { border-left-color: #EF4444; }
.app-kpi.blue-bar { border-left-color: #3B82F6; }
.app-kpi-label { font-size: 9px; color: #6B7280; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.app-kpi-val { font-size: 13px; font-weight: 700; color: var(--text); font-family: var(--mono); margin-top: 2px; }
.app-kpi-sub { font-size: 9px; color: #9CA3AF; margin-top: 1px; }
.app-kpi-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    padding: 1px 6px;
    background: #DCFCE7;
    color: #166534;
    border-radius: 3px;
    margin-top: 2px;
}

.app-filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.app-search-input {
    flex: 1;
    padding: 5px 10px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 10px;
    color: #9CA3AF;
}
.app-select {
    padding: 5px 10px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 10px;
    color: #6B7280;
}

/* ── Interactive Demo ── */
.demo { padding: 100px 0; background: #0B0F1A; color: #fff; text-align: center; }
.demo .container { max-width: 1280px; }
.demo .section-label { background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.3); color: #818CF8; }
.demo .section-title { color: #fff; }
.demo .section-sub { color: rgba(255,255,255,0.45); margin: 0 auto; }

.demo-frame {
    display: flex;
    background: #F0F2F5;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #334155;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    text-align: left;
    margin-top: 40px;
    height: 520px;
}
.demo-sidebar {
    width: 210px;
    background: linear-gradient(180deg, #0F172A 0%, #131C2E 100%);
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    font-size: 11px;
    display: flex;
    flex-direction: column;
}
.demo-nav {
    display: block;
    padding: 5px 14px 5px 34px;
    font-size: 10.5px;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    position: relative;
    transition: all 0.15s;
}
.demo-nav::before {
    content: '';
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    position: absolute;
    left: 22px; top: 50%;
    margin-top: -1.5px;
}
.demo-nav:hover { color: rgba(255,255,255,0.7); }
.demo-nav.active { color: #fff; font-weight: 600; }
.demo-nav.active::before { background: #818CF8; }

.demo-main { flex: 1; display: flex; flex-direction: column; min-width: 0; background: #F0F2F5; }
.demo-content { padding: 16px 20px; overflow-y: auto; flex: 1; }
.demo-screen { display: none; animation: fadeUp 0.3s ease; }
.demo-screen.active { display: block; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-hint {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

/* ── Single Pricing ── */
.single-pricing {
    max-width: 640px;
    margin: 40px auto 0;
}
.single-price-card {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(79,70,229,0.12);
}
.sp-price {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}
.sp-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.sp-includes-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.sp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    text-align: left;
    margin-bottom: 32px;
}
.sp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}
.sp-cta {
    font-size: 16px;
    padding: 16px 32px;
    margin-bottom: 24px;
}
.sp-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.sp-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: #0F172A;
    color: rgba(255,255,255,0.6);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .nav-logo-text { color: #fff; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════
   HERO BADGES & STATS
   ═══════════════════════════════════════════ */
.hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badge-proof { border-color: rgba(79,70,229,0.15); }

.hero-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-stat {
    padding: 6px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

/* Hero entrance animation */
@keyframes heroEnter {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.anim-hero { animation: heroEnter 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.hero-badges { animation-delay: 0s; }
.hero-title.anim-hero { animation-delay: 0.1s; }
.hero-sub.anim-hero { animation-delay: 0.2s; }
.hero-stats.anim-hero { animation-delay: 0.25s; }
.hero-cta.anim-hero { animation-delay: 0.3s; }
.hero-screenshot.anim-hero { animation-delay: 0.45s; }


/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials { padding: 100px 0; text-align: center; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    text-align: left;
}
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }
.stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-author strong { font-size: 13px; color: var(--text); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   CLICKABLE DRILL-DOWN LINKS
   ═══════════════════════════════════════════ */
.note-link {
    display: inline-flex;
    width: 18px; height: 18px;
    background: rgba(79,70,229,0.08);
    color: var(--primary);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    font-family: var(--mono);
}
.note-link:hover { background: var(--primary); color: #fff; transform: scale(1.15); }

.ledger-link {
    color: var(--primary);
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px dashed rgba(79,70,229,0.3);
    transition: all 0.15s;
}
.ledger-link:hover { color: var(--primary-dark); border-bottom-color: var(--primary); }

.voucher-num-link {
    color: var(--primary);
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.15s;
}
.voucher-num-link:hover { text-decoration: underline; color: var(--primary-dark); }

.demo-breadcrumb {
    background: #EEF2FF;
    padding: 6px 16px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #C7D2FE;
}
.demo-breadcrumb a {
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}
.demo-breadcrumb a:hover { text-decoration: underline; }
.demo-breadcrumb span { color: var(--text-secondary); }

@keyframes noteHighlight {
    0% { box-shadow: 0 0 0 0 rgba(79,70,229,0.4); }
    50% { box-shadow: 0 0 0 4px rgba(79,70,229,0.15); }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.note-highlighted { animation: noteHighlight 1s ease; border-color: var(--primary) !important; }

/* Clickable line items and amounts */
.line-item-link {
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
    padding: 1px 2px;
    border-radius: 2px;
}
.line-item-link:hover { background: rgba(79,70,229,0.06); color: var(--primary); }
.at-section .line-item-link { color: var(--text); font-weight: 700; }
.at-section .line-item-link:hover { color: var(--primary); }

.amt-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 10px;
    transition: all 0.15s;
    padding: 1px 3px;
    border-radius: 2px;
}
.amt-link:hover { background: rgba(79,70,229,0.06); color: var(--primary); }

/* Schedule III badge */
.sch3-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    background: rgba(16,185,129,0.1);
    color: #059669;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Compliance callout bar */
.compliance-bar {
    background: #F0FDF4;
    border-top: 1px solid #BBF7D0;
    border-bottom: 1px solid #BBF7D0;
    padding: 14px 0;
}
.compliance-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-size: 14px;
    color: #166534;
}
.compliance-inner strong { color: #15803D; }
.compliance-inner svg { flex-shrink: 0; }

/* Launch offer badge */
.launch-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

/* Legal pages */
.legal-hero { padding: 140px 0 40px; text-align: center; }
.legal-hero h1 { font-family: var(--font-serif); font-size: 36px; color: var(--text); margin-bottom: 8px; }
.legal-hero p { font-size: 14px; color: var(--text-muted); }
.legal-content { max-width: 720px; margin: 0 auto; padding: 40px 24px 100px; }
.legal-content h2 { font-size: 18px; font-weight: 700; color: var(--text); margin-top: 40px; margin-bottom: 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 24px; font-size: 15px; line-height: 1.8; color: var(--text-secondary); }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--primary); }

/* ═══════════════════════════════════════════
   SIDEBAR "COMING SOON" TOOLTIP
   ═══════════════════════════════════════════ */
.app-sb-item.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    position: relative;
}
.app-sb-item.disabled:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    padding: 4px 10px;
    background: #1E293B;
    color: #94A3B8;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
}

/* ═══════════════════════════════════════════
   MOBILE DEMO TABS
   ═══════════════════════════════════════════ */
.demo-mobile-tabs {
    display: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #0F172A;
    padding: 0 8px;
    gap: 0;
    flex-shrink: 0;
}
.demo-mtab {
    padding: 10px 14px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
}
.demo-mtab.active { color: #fff; border-bottom-color: #818CF8; }
.demo-mtab:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════
   LEAD CAPTURE MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(11,15,26,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 440px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}
.modal-overlay.active .modal-card { transform: translateY(0); }
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border: none;
    background: #F1F5F9;
    border-radius: 8px;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.modal-close:hover { background: #E2E8F0; color: var(--text); }
.modal-icon { margin-bottom: 16px; }
.modal-title { font-family: var(--font-serif); font-size: 22px; color: var(--text); margin-bottom: 8px; }
.modal-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.modal-input:focus { border-color: var(--primary); }
.modal-privacy { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.modal-success { font-size: 15px; color: var(--green); font-weight: 600; padding: 20px 0; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger animation */
.nav-toggle span { transition: all 0.25s ease; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: #fff;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .nav-actions.open { display: flex; flex-direction: column; position: absolute; top: 290px; left: 0; right: 0; background: #fff; padding: 0 24px 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; }
    .step-divider { width: 2px; height: 24px; margin: 0 auto; }
    .demo-sidebar { display: none; }
    .demo-mobile-tabs { display: flex; }
    .demo-frame { height: auto; min-height: 420px; max-height: 85vh; flex-direction: column; }
    .demo-content { padding: 10px 12px; }
    .demo .container { max-width: 100%; padding: 0 12px; }
    .demo { padding: 60px 0; }
    .demo-mobile-tabs { padding: 0 4px; }
    .demo-mtab { padding: 8px 10px; font-size: 10px; }
    .app-table th { font-size: 7px; padding: 4px 5px; }
    .app-table td { font-size: 9px; padding: 3px 5px; }
    .at-amt { font-size: 9px; }
    .app-card { padding: 10px; }
    .app-card-head { font-size: 11px; }
    .app-card-sub { font-size: 8px; }
    .app-topbar { padding: 0 10px; height: 34px; }
    .app-topbar-title { font-size: 11px; }
    .app-topbar-btn { font-size: 9px; padding: 3px 8px; }
    .demo-breadcrumb { padding: 5px 10px; font-size: 10px; }
    .app-kpi-row { flex-wrap: wrap; }
    .app-kpi { min-width: 45%; }
    .app-kpi-val { font-size: 11px; }
    .app-note-header { font-size: 11px; }
    .app-note-num { width: 18px; height: 18px; font-size: 9px; }
    .note-link { width: 16px; height: 16px; font-size: 8px; }
    .sch3-badge { font-size: 7px; padding: 1px 4px; }
    .compliance-inner { font-size: 12px; text-align: center; flex-wrap: wrap; justify-content: center; }
    .sp-grid { grid-template-columns: 1fr; }
    .compare-table-wrap { margin-top: 32px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .compare-table { min-width: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .hero-title br { display: none; }
    .section-title br { display: none; }
    .hero-stats { gap: 8px; }
    .hero-stat { font-size: 11px; padding: 5px 10px; }
    .sticky-cta-text { font-size: 12px; }
    .app-sb-item.disabled:hover::after { display: none; }
}
@media (max-width: 480px) {
    .hero { padding: 120px 0 60px; }
    .hero-screenshot { margin: 0 -12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-badges { flex-direction: column; align-items: center; }
}
