/* ============================================
   V8.3 — Dark Premium Theme + B2B Conversion
   CleanTably Landing Page
   ============================================ */

:root {
        /* Dark Premium Palette — preserved from V8.2 */
        --bg-primary:         #0A0F1C;
        --bg-secondary:       #111827;
        --bg-card:            rgba(22, 30, 46, 0.8);
        --bg-card-solid:      #161E2E;
        --text-main:          #F1F5F9;
        --text-muted:         #94A3B8;
        --text-dim:           #64748B;
        --accent:             #10B981;
        --accent-hover:       #059669;
        --accent-light:       #34D399;
        --accent-glow:        rgba(16, 185, 129, 0.15);
        --accent-glow-strong: rgba(16, 185, 129, 0.3);
        --white:              #FFFFFF;
        --border-subtle:      rgba(255, 255, 255, 0.08);
        --border-hover:       rgba(16, 185, 129, 0.4);
        --shadow-soft:        0 20px 40px -12px rgba(0, 0, 0, 0.5);
        --shadow-glow:        0 0 60px -12px rgba(16, 185, 129, 0.2);

        /* Amber — value / ROI / pricing accent (NEW in V8.3) */
        --amber:              #F59E0B;
        --amber-hover:        #D97706;
        --amber-light:        #FCD34D;
        --amber-glow:         rgba(245, 158, 11, 0.12);
        --amber-glow-strong:  rgba(245, 158, 11, 0.25);
        --border-amber:       rgba(245, 158, 11, 0.3);
        --shadow-amber:       0 0 40px -12px rgba(245, 158, 11, 0.15);

        /* Typography (V8.3 update) */
        --font-heading: 'Fraunces', serif;
        --font-sans:    'DM Sans', system-ui, -apple-system, sans-serif;
        --font-mono:    'DM Mono', monospace;

        --radius-lg:   1.5rem;
        --radius-pill: 9999px;
}

/* Reset & Base */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

html {
        scroll-behavior: smooth;
        overflow-x: clip;
}

body {
        font-family: var(--font-sans);
        background-color: var(--bg-primary);
        color: var(--text-main);
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
        position: relative;
        overflow-x: clip;
        background:
                radial-gradient(ellipse at 80% 10%, rgba(16, 185, 129, 0.1) 0%, transparent 45%),
                radial-gradient(ellipse at 10% 90%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
                var(--bg-primary);
}

/* Noise Texture Overlay */
.bg-noise {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        opacity: 0.03;
        z-index: 0;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        background-repeat: repeat;
        background-size: 256px 256px;
}

/* Background Orbs — green + amber only */
.orb-container {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
}

.orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        animation: floating 15s infinite ease-in-out alternate;
}

.orb-1 {
        width: 50vw; height: 50vw;
        opacity: 0.4;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(0,0,0,0) 70%);
        top: -20%; right: -10%;
        animation-delay: 0s;
}

.orb-2 {
        width: 40vw; height: 40vw;
        opacity: 0.1;
        background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, rgba(0,0,0,0) 70%);
        bottom: -10%; left: -10%;
        animation-delay: -7s;
}

@keyframes floating {
        0%   { transform: translate(0, 0) scale(1); }
        100% { transform: translate(30px, 50px) scale(1.05); }
}

.container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 1.5rem;
        position: relative;
        z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
        font-family: var(--font-heading);
        font-weight: 600;
        letter-spacing: -0.02em;
        color: var(--text-main);
}

/* ============================================
   HEADER — Dark Glassmorphism
   ============================================ */
.header {
        background-color: rgba(10, 15, 28, 0.55);
        backdrop-filter: blur(20px) saturate(160%);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
        padding: 0;
        transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid rgba(16, 185, 129, 0.12);
}

.header.scrolled {
        background-color: rgba(10, 15, 28, 0.88);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(16, 185, 129, 0.08);
        border-bottom-color: rgba(16, 185, 129, 0.18);
}

.nav.container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
        max-width: 100%;
        margin: 0;
        width: 100%;
        flex-wrap: nowrap;
}

.nav-left {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-right: 3rem;
        flex-shrink: 0;
}

.nav-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        margin-left: auto;
}

.nav-link-simple {
        text-decoration: none;
        color: var(--text-muted);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s;
        margin-right: 0.5rem;
}

.nav-link-simple:hover { color: var(--accent-light); }

.nav-input-group {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        padding: 2px;
        border: 1px solid var(--border-subtle);
        border-radius: 8px;
        transition: border-color 0.2s;
}

.nav-input-group:focus-within {
        border-color: var(--border-amber);
        box-shadow: 0 0 0 3px var(--amber-glow);
}

.nav-input {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--text-main);
        width: 180px;
}

.nav-input::placeholder { color: transparent; }
.nav-input:focus { outline: none; }

/* Fake animated placeholder */
.nav-input-wrapper {
        position: relative;
        display: inline-flex;
        align-items: center;
        overflow: hidden;
        width: 180px;
}

.nav-placeholder-anim {
        position: absolute;
        left: 0.75rem;
        top: 50%;
        transform: translateY(-50%) translateX(0);
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--text-dim);
        pointer-events: none;
        white-space: nowrap;
        animation: placeholder-drift 5s ease-in-out infinite;
        transition: opacity 0.15s;
}

.nav-placeholder-anim.hidden {
        opacity: 0;
}

@keyframes placeholder-drift {
        0%   { transform: translateY(-50%) translateX(0px); }
        50%  { transform: translateY(-50%) translateX(10px); }
        100% { transform: translateY(-50%) translateX(0px); }
}

.nav-actions .cta-button { white-space: nowrap; }

.nav-actions .cta-button.secondary {
        border: 1px solid var(--border-subtle);
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-main);
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
}

.nav-actions .cta-button.secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--border-hover);
}

.nav-actions .cta-button.primary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
}

.nav-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        transition: opacity 0.2s;
}

.nav-brand:hover { opacity: 0.9; }

.brand-icon { width: 36px; height: 36px; }

.brand-font {
        font-family: var(--font-sans);
        font-weight: 600;
        font-size: 1.4rem;
        color: var(--text-main);
        letter-spacing: -0.04em;
}

.nav-links {
        display: flex;
        align-items: center;
        gap: 0;
        white-space: nowrap;
}

.nav-links > a,
.nav-item > .nav-link {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.875rem;
        font-weight: 500;
        padding: 1.5rem 1.5rem;
        transition: color 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
}

.nav-links > a:hover,
.nav-item > .nav-link:hover { color: var(--accent-light); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
        text-align: left;
        padding: 3rem 0 4rem;
        overflow: visible;
}

.hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
}

.hero-content-left {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
}

/* Badge Pill */
.badge-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background-color: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.25);
        padding: 0.3rem 0.85rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--accent-light);
        width: fit-content;
}

.badge-pill .dot {
        width: 6px; height: 6px;
        background-color: var(--accent);
        border-radius: 50%;
        animation: pulse 2s infinite;
}

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

.badge-pill.badge-glow { box-shadow: 0 0 20px rgba(16, 185, 129, 0.1); }

.badge-pill.badge-amber {
        background-color: var(--amber-glow);
        border-color: var(--border-amber);
        color: var(--amber-light);
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.08);
}

.badge-pill.badge-amber .dot {
        background-color: var(--amber);
}

.badge-pill.badge-keyword {
        margin-bottom: 0.5rem;
        background-color: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.12);
        color: var(--text-secondary);
        font-weight: 500;
        letter-spacing: 0.02em;
}

.hero h1 {
        font-size: 4rem;
        line-height: 1.1;
        color: var(--text-main);
        letter-spacing: -0.03em;
}

.hero-italic {
        font-style: italic;
        color: var(--text-muted);
        font-weight: 400;
}

.text-accent {
        color: var(--accent);
        position: relative;
        display: inline-block;
}

.text-accent::after {
        content: '';
        position: absolute;
        bottom: 4px; left: 0;
        width: 100%; height: 8px;
        background-color: rgba(16, 185, 129, 0.15);
        z-index: -1;
        transform: rotate(-1deg);
}

.subtitle-left {
        font-size: 1.1rem;
        color: var(--text-muted);
        line-height: 1.75;
        max-width: 500px;
}

.hero-actions {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
}

/* CTA Buttons */
.cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        font-family: var(--font-sans);
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                    background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        text-decoration: none;
}

.cta-button.primary {
        background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
        color: white;
        box-shadow: 0 4px 15px -3px rgba(16, 185, 129, 0.4);
}

.cta-button.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -3px rgba(16, 185, 129, 0.5);
}

.cta-button.primary:active { transform: translateY(0); }

.cta-button.secondary {
        background-color: transparent;
        color: var(--text-main);
        border: 1px solid var(--border-subtle);
}

.cta-button.secondary:hover {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: var(--border-hover);
}

.cta-button.large {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
}

.cta-button.small {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
}

/* Trust Mini Bar */
.trust-mini {
        display: flex;
        gap: 1.5rem;
        margin-top: 1rem;
        border-top: 1px solid var(--border-subtle);
        padding-top: 1.5rem;
}

.trust-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-muted);
}

.icon-green { color: var(--accent); width: 16px; height: 16px; }

/* ============================================
   APP WINDOW — Hero Right Visual
   ============================================ */
.hero-visual-right { position: relative; overflow: hidden; }

.visual-glow {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 120%; height: 120%;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 65%);
        z-index: -1;
        pointer-events: none;
}

.app-window {
        background: rgba(22, 30, 46, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        box-shadow: 0 20px 50px -12px rgba(0,0,0,0.4),
                    0 0 0 1px rgba(255,255,255,0.05),
                    var(--shadow-glow);
        overflow: hidden;
        transform: rotateY(-5deg) rotateX(2deg);
        animation: float-card 6s ease-in-out infinite;
}

.hero-visual-right:hover .app-window {
        transform: rotateY(0) rotateX(0);
        transition: transform 0.5s ease;
}

.app-header {
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid var(--border-subtle);
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
}

.traffic-lights { display: flex; gap: 6px; }

.traffic-lights span {
        width: 10px; height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
}

.traffic-lights span:nth-child(1) { background-color: #EF4444; }
.traffic-lights span:nth-child(2) { background-color: #F59E0B; }
.traffic-lights span:nth-child(3) { background-color: #10B981; }

.app-address-bar {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-size: 0.75rem;
        color: var(--text-dim);
        flex: 1;
        text-align: center;
        font-family: var(--font-mono);
}

.app-body {
        padding: 2rem;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle at center, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
}

.transform-stage {
        display: flex;
        align-items: center;
        gap: 1.25rem;
}

/* Invoice Card (replaces source file cards) */
.invoice-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 10px;
        width: 140px;
        padding: 0.9rem;
        animation: slide-right 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.invoice-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-subtle);
}

.invoice-card-title {
        font-family: var(--font-mono);
        font-size: 0.55rem;
        font-weight: 500;
        color: var(--text-dim);
        letter-spacing: 0.1em;
}

.invoice-fields {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
}

.invoice-field {
        display: flex;
        flex-direction: column;
        gap: 1px;
}

.field-label {
        font-family: var(--font-mono);
        font-size: 0.48rem;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.06em;
}

.field-value {
        font-family: var(--font-mono);
        font-size: 0.6rem;
        color: var(--text-muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.invoice-field.total-field .field-value.total-value {
        color: var(--amber);
        font-weight: 500;
}

/* Process Arrow */
.process-arrow {
        color: var(--text-dim);
        animation: arrow-pulse 3s infinite;
}

/* Excel Output Card */
.excel-output-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 10px;
        width: 170px;
        overflow: hidden;
        position: relative;
        animation: fade-in 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.excel-output-header {
        background: linear-gradient(135deg, #107C41, #0E6E39);
        padding: 0.4rem 0.65rem;
        display: flex;
        align-items: center;
        gap: 0.35rem;
}

.excel-output-header i { color: white; width: 13px; height: 13px; }

.excel-output-header span {
        font-family: var(--font-mono);
        font-size: 0.6rem;
        color: rgba(255, 255, 255, 0.8);
}

.excel-output-body {}

.excel-output-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1.5fr;
        padding: 0.3rem 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        gap: 0.2rem;
}

.excel-output-row span {
        font-family: var(--font-mono);
        font-size: 0.58rem;
        color: var(--text-muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.excel-output-row.eor-header {
        background: rgba(255, 255, 255, 0.04);
}

.excel-output-row.eor-header span {
        color: var(--text-dim);
        font-weight: 500;
}

.excel-output-row.eor-sum {
        background: var(--amber-glow);
}

.excel-output-row.eor-sum span {
        color: var(--amber);
        font-weight: 500;
}

/* Extracted badge */
.excel-floating-badge {
        position: absolute;
        bottom: -10px; left: 50%;
        transform: translateX(-50%);
        background: var(--bg-card-solid);
        border: 1px solid var(--border-subtle);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        border-radius: 99px;
        padding: 4px 10px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--accent);
        white-space: nowrap;
        opacity: 0;
        animation: pop-up 3s infinite;
}

/* Keyframes */
@keyframes slide-right {
        0%  { transform: translateX(0); opacity: 1; }
        40% { transform: translateX(20px); opacity: 0; }
        41% { transform: translateX(-20px); opacity: 0; }
        50% { transform: translateX(0); opacity: 1; }
        100%{ transform: translateX(0); opacity: 1; }
}

@keyframes fade-in {
        0%  { opacity: 0.5; transform: scale(0.95); }
        45% { opacity: 0.5; transform: scale(0.95); }
        55% { opacity: 1; transform: scale(1); }
        100%{ opacity: 1; transform: scale(1); }
}

@keyframes pop-up {
        0%, 50%  { opacity: 0; transform: translate(-50%, 10px); }
        60%, 90% { opacity: 1; transform: translate(-50%, 0); }
        100%     { opacity: 0; transform: translate(-50%, -10px); }
}

@keyframes float-card {
        0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
        50%      { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); }
}

@keyframes arrow-pulse {
        0%, 100% { color: var(--text-dim); }
        50%      { color: var(--accent); transform: scale(1.1); }
}

/* File Badge */
.file-badge {
        font-size: 0.55rem;
        font-weight: 700;
        padding: 2px 5px;
        border-radius: 3px;
        color: white;
}

.pdf-badge  { background: #EF4444; }
.png-badge  { background: #6366F1; }
.jpg-badge  { background: #F59E0B; }

/* Mobile: Hero */
@media (max-width: 900px) {
        .hero-grid {
                grid-template-columns: minmax(0, 1fr);
                text-align: center;
                gap: 2rem;
        }

        .hero-content-left { align-items: center; min-width: 0; }
        .hero-visual-right { min-width: 0; }
        .hero-actions { justify-content: center; flex-wrap: wrap; }
        .trust-mini { justify-content: center; border-top: none; padding-top: 0; }
        .hero-visual-right { margin-top: 2rem; }
        .hero h1 { font-size: 2.8rem; }
        .subtitle-left { margin: 0 auto; }
}

@media (max-width: 500px) {
        .hero { padding: 3rem 1.5rem 3rem; }
        .hero h1 { font-size: 2.2rem; }
        .hero-actions { flex-direction: column; align-items: stretch; }
        .hero-actions .cta-button { text-align: center; justify-content: center; }
        .trust-mini { flex-wrap: wrap; gap: 0.75rem; }
        .badge-pill { white-space: normal; text-align: center; }
}

/* ============================================
   DROPZONE / LIVE PREVIEW
   ============================================ */
.p2-section-headline {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-main);
        text-align: center;
        margin-bottom: 0.5rem;
        letter-spacing: -0.02em;
        scroll-margin-top: 120px;
}

.p2-section-sub {
        text-align: center;
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 2rem;
}

.p2-divider { color: var(--accent); opacity: 0.5; margin: 0 0.15em; }

.p2-split-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 24px;
        box-shadow: var(--shadow-soft);
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
}

/* Upload Side */
.p2-upload-side {
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-right: 1px solid var(--border-subtle);
        cursor: pointer;
        transition: background 0.3s;
        position: relative;
}

.p2-upload-side:hover     { background: rgba(16, 185, 129, 0.03); }
.p2-upload-side.drag-over { background: rgba(16, 185, 129, 0.08); border-color: var(--accent); }

.p2-upload-icon-wrap {
        width: 80px; height: 80px;
        background: rgba(239, 68, 68, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: transform 0.3s;
        border: 1px solid rgba(239, 68, 68, 0.15);
}

.p2-upload-side:hover .p2-upload-icon-wrap { transform: rotate(-6deg) scale(1.05); }
.p2-upload-icon-wrap svg { color: #EF4444; }

.p2-upload-title { font-size: 1.25rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }

.p2-upload-desc {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 280px;
}

.p2-upload-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
        color: white;
        border: none;
        border-radius: 12px;
        padding: 0.75rem 2rem;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.25s, box-shadow 0.25s;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.p2-upload-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.p2-upload-btn:active { transform: translateY(0); }

.p2-trust-text {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        color: var(--accent-light);
        margin-bottom: 0.75rem;
        opacity: 0.85;
}

.p2-upload-formats {
        margin-top: 1rem;
        font-size: 0.7rem;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.1em;
}

/* Preview Side */
.p2-preview-side {
        padding: 2.5rem;
        background: rgba(255, 255, 255, 0.02);
        display: flex;
        flex-direction: column;
        justify-content: center;
}

.p2-preview-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
}

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

/* Mini Spreadsheet — V8.3: 3-column Vendor/Amount/Due Date */
.p2-mini-spreadsheet {
        background: var(--bg-card-solid);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        overflow: hidden;
}

.p2-sheet-header {
        display: grid;
        grid-template-columns: 2fr 1.2fr 1fr;
        background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
        padding: 0.5rem 0.75rem;
}

.p2-sheet-header span {
        font-size: 0.65rem;
        font-weight: 600;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.05em;
}

.p2-sheet-row {
        display: grid;
        grid-template-columns: 2fr 1.2fr 1fr;
        padding: 0.6rem 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.p2-sheet-row span {
        font-size: 0.75rem;
        color: var(--text-main);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.mono-val {
        font-family: var(--font-mono) !important;
        color: var(--accent) !important;
        font-weight: 500 !important;
}

/* Total Row */
.p2-sheet-total {
        display: grid;
        grid-template-columns: 2fr 1.2fr 1fr;
        padding: 0.6rem 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        background: var(--amber-glow);
}

.p2-sheet-total .total-label {
        font-family: var(--font-mono);
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-muted);
}

.p2-sheet-total .total-amount {
        font-family: var(--font-mono);
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--amber);
}

/* Auto-reveal animations */
.p2-sheet-row.auto-reveal,
.p2-sheet-total.auto-reveal,
.p2-sheet-status.auto-reveal {
        opacity: 0;
        transform: translateX(10px);
        animation: row-reveal 0.5s ease forwards;
}

.p2-sheet-row.auto-reveal:nth-child(2)   { animation-delay: 0.8s; }
.p2-sheet-row.auto-reveal:nth-child(3)   { animation-delay: 1.4s; }
.p2-sheet-row.auto-reveal:nth-child(4)   { animation-delay: 2.0s; }
.p2-sheet-row.auto-reveal:nth-child(5)   { animation-delay: 2.6s; }
.p2-sheet-total.auto-reveal              { animation-delay: 3.1s; }
.p2-sheet-status.auto-reveal             { animation-delay: 3.6s; }

@keyframes row-reveal {
        0%   { opacity: 0; transform: translateX(15px); }
        100% { opacity: 1; transform: translateX(0); }
}

/* Status row */
.p2-sheet-status {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.6rem 0.75rem;
        background: rgba(16, 185, 129, 0.1);
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--accent);
}

/* Trust Strip */
.p2-trust-strip {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 1.5rem;
}

.p2-trust-item {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.75rem;
        color: var(--text-muted);
}

.p2-trust-item svg { color: var(--accent); }

/* Lead Form (dynamic, after file drop) */
.lead-form {
        display: flex;
        gap: 0.5rem;
        max-width: 360px;
        margin: 0 auto;
}

.lead-input {
        flex: 1;
        padding: 0.625rem 1rem;
        border: 1px solid var(--border-subtle);
        border-radius: 10px;
        font-family: var(--font-sans);
        font-size: 0.875rem;
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-main);
        transition: border-color 0.2s;
}

.lead-input:focus { outline: none; border-color: var(--accent); }

.lead-button {
        padding: 0.625rem 1.25rem;
        background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-family: var(--font-sans);
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        transition: box-shadow 0.2s;
        white-space: nowrap;
}

.lead-button:hover { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); }

@media (max-width: 768px) {
        .p2-split-container { grid-template-columns: 1fr; }
        .p2-upload-side { border-right: none; border-bottom: 1px solid var(--border-subtle); }
        .p2-trust-strip { flex-direction: column; align-items: center; gap: 0.5rem; }
}

/* ============================================
   COMPARISON STRIP (replaces fake stats)
   ============================================ */
.comparison-strip {
        padding: 5rem 0;
        position: relative;
        z-index: 1;
}

.comparison-strip h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 0.75rem;
}

.section-sub {
        text-align: center;
        color: var(--text-muted);
        font-size: 1rem;
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
}

.comparison-table {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 20px;
        overflow: hidden;
        max-width: 860px;
        margin: 0 auto;
        box-shadow: var(--shadow-soft);
}

.comparison-row {
        display: grid;
        grid-template-columns: 2fr 2fr 2fr;
        border-bottom: 1px solid var(--border-subtle);
}

.comparison-row.last-row { border-bottom: none; }

.comparison-header-row {
        background: rgba(255, 255, 255, 0.03);
}

.comparison-cell {
        padding: 1.1rem 1.75rem;
        font-size: 0.9rem;
        color: var(--text-muted);
}

.comparison-cell.row-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.04em;
}

.comparison-cell.col-label {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.06em;
}

.comparison-cell.cleantably-col-head {
        color: var(--accent);
        display: flex;
        align-items: center;
        gap: 0.4rem;
}

.comparison-cell.manual-val {
        color: var(--text-dim);
        font-family: var(--font-mono);
        font-size: 0.85rem;
}

.comparison-cell.cleantably-val {
        color: var(--accent);
        font-family: var(--font-mono);
        font-size: 0.85rem;
        font-weight: 600;
}

@media (max-width: 768px) {
        .comparison-row { grid-template-columns: 1.5fr 1fr 1.5fr; }
        .comparison-cell { padding: 0.9rem 1rem; font-size: 0.8rem; }
}

/* ============================================
   SOCIAL PROOF — Compatible Exports
   ============================================ */
.social-proof {
        background-color: rgba(255, 255, 255, 0.02);
        padding: 3rem 0;
        text-align: center;
        border-top: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
        position: relative;
        z-index: 1;
}

.social-text {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-dim);
        margin-bottom: 2rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
}

.logos-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
}

.logo-card {
        padding: 1.5rem 2rem;
        border-radius: 1rem;
        border: 1px solid transparent;
        transition: transform 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
}

.logo-card:hover {
        background-color: rgba(255, 255, 255, 0.03);
        border-color: var(--border-hover);
        box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.15);
        transform: translateY(-5px);
}

.logo-item-img {
        height: 48px;
        width: auto;
        opacity: 0.4;
        transition: opacity 0.3s, filter 0.3s, transform 0.3s;
        filter: brightness(0.8);
}

.logo-card:hover .logo-item-img {
        opacity: 1;
        filter: brightness(1.2);
        transform: scale(1.1);
}

/* Tint pure-black SimpleIcons SVG to accent green */
.logo-item-img--tinted {
        filter: brightness(0) saturate(100%) invert(58%) sepia(51%) saturate(401%) hue-rotate(115deg) brightness(95%) contrast(88%);
        opacity: 0.6;
}
.logo-card:hover .logo-item-img--tinted {
        filter: brightness(0) saturate(100%) invert(58%) sepia(51%) saturate(501%) hue-rotate(115deg) brightness(105%) contrast(92%);
        opacity: 1;
}

/* ============================================
   INDUSTRY TABS (NEW)
   ============================================ */
.industry-section {
        padding: 7rem 0;
        position: relative;
        z-index: 1;
}

.industry-section h2 {
        font-size: 2.75rem;
        text-align: center;
        margin-bottom: 0.75rem;
}

.industry-tabs-wrapper { margin-top: 2rem; }

.industry-tab-cards {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
        flex-wrap: wrap;
}

.industry-tab {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.8rem 1.5rem;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        user-select: none;
}

.industry-tab:hover {
        border-color: var(--border-hover);
        color: var(--text-main);
        background: rgba(16, 185, 129, 0.05);
}

.industry-tab.active {
        background: rgba(16, 185, 129, 0.12);
        border-color: var(--border-hover);
        color: var(--accent-light);
        box-shadow: 0 4px 20px -4px rgba(16, 185, 129, 0.2);
}

.industry-tab svg { flex-shrink: 0; }

/* Industry Panels */
.industry-panels { position: relative; }

.industry-panel {
        display: none;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        animation: fade-panel 0.3s ease;
}

.industry-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
}

@keyframes fade-panel {
        from { opacity: 0; transform: translateY(8px); }
        to   { opacity: 1; transform: translateY(0); }
}

.panel-content {
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.25rem;
}

.panel-content h3 {
        font-size: 1.75rem;
        line-height: 1.2;
}

.panel-content p {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.7;
}

.panel-handles {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
}

.handle-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(16, 185, 129, 0.08);
        border: 1px solid rgba(16, 185, 129, 0.2);
        color: var(--accent-light);
        font-size: 0.78rem;
        font-weight: 600;
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
}

.handle-tag svg { color: var(--accent); }

.panel-visual {
        background: rgba(255, 255, 255, 0.02);
        border-left: 1px solid var(--border-subtle);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
}

/* Panel Spreadsheet */
.panel-spreadsheet {
        width: 100%;
        background: var(--bg-card-solid);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        overflow: hidden;
}

.ps-header {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid var(--border-subtle);
}

.ps-header span {
        padding: 0.6rem 0.75rem;
        font-size: 0.65rem;
        font-weight: 700;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-family: var(--font-mono);
}

.ps-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ps-row span {
        padding: 0.6rem 0.75rem;
        font-size: 0.75rem;
        color: var(--text-muted);
        font-family: var(--font-mono);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.ps-row.scanning {
        background: rgba(16, 185, 129, 0.06);
        animation: scan-row 2s infinite;
}

.ps-row.scanning span { color: var(--accent-light); }

@keyframes scan-row {
        0%, 100% { background: rgba(16, 185, 129, 0.04); }
        50%       { background: rgba(16, 185, 129, 0.12); }
}

.status-ok {
        color: var(--accent) !important;
        font-weight: 600 !important;
}

.status-scan {
        color: var(--amber) !important;
        font-weight: 600 !important;
        animation: pulse 1.5s infinite;
}

@media (max-width: 768px) {
        .industry-panel.active { grid-template-columns: 1fr; }
        .panel-visual { border-left: none; border-top: 1px solid var(--border-subtle); }
        .ps-header, .ps-row { grid-template-columns: repeat(2, 1fr); }
        .ps-header span:nth-child(n+3),
        .ps-row span:nth-child(n+3) { display: none; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
        scroll-margin-top: 100px;
        padding: 8rem 0;
        text-align: center;
        position: relative;
        z-index: 1;
}

.how-it-works h2 { font-size: 3rem; margin-bottom: 6rem; }

.steps-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
}

.step-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5rem;
        text-align: left;
}

.step-row.reverse { flex-direction: row-reverse; }

.step-connector {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 0;
}

.connector-line {
        width: 2px;
        height: 60px;
        background: linear-gradient(180deg, transparent, var(--accent), transparent);
        opacity: 0.3;
}

.connector-dot {
        width: 10px; height: 10px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
        animation: pulse 2s infinite;
}

.step-content { flex: 1; max-width: 450px; }

.step-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px; height: 48px;
        background: rgba(16, 185, 129, 0.1);
        color: var(--accent);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        font-family: var(--font-heading);
        border-radius: 12px;
        border: 1px solid rgba(16, 185, 129, 0.2);
}

.step-content h3 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        color: var(--text-main);
        line-height: 1.15;
}

.step-content p {
        color: var(--text-muted);
        font-size: 1.05rem;
        line-height: 1.7;
}

.step-visual {
        flex: 1;
        height: 350px;
        background: var(--bg-card);
        border-radius: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--border-subtle);
        position: relative;
        overflow: hidden;
        transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.step-visual:hover {
        transform: translateY(-5px);
        border-color: var(--border-hover);
        box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.abstract-dropzone {
        width: 80%; height: 70%;
        border: 2px dashed rgba(255, 255, 255, 0.12);
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        background-color: rgba(255, 255, 255, 0.02);
        transition: border-color 0.3s;
}

.step-visual:hover .abstract-dropzone { border-color: var(--accent); }
.abstract-dropzone i { color: var(--accent); width: 64px; height: 64px; }

.abstract-lines {
        width: 60%; height: 4px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
}

.abstract-lines::before, .abstract-lines::after {
        content: '';
        display: block;
        height: 4px;
        background-color: rgba(255, 255, 255, 0.08);
        border-radius: 2px;
        margin-top: 6px;
}

.abstract-lines::before { width: 80%; margin-left: auto; margin-right: auto; }
.abstract-lines::after  { width: 50%; margin-left: auto; margin-right: auto; }

.abstract-grid {
        width: 90%; height: 80%;
        display: flex;
        flex-direction: column;
        border: 1px solid var(--border-subtle);
        border-radius: 0.75rem;
        overflow: hidden;
        background: var(--bg-card-solid);
}

.grid-header {
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid var(--border-subtle);
        display: flex;
}

.grid-col-head {
        flex: 1;
        border-right: 1px solid var(--border-subtle);
        display: flex;
        align-items: center;
        padding: 0 0.75rem;
        font-size: 0.65rem;
        font-weight: 700;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-family: var(--font-mono);
}

.grid-row-abstract {
        flex: 1;
        display: flex;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.grid-cell {
        flex: 1;
        border-right: 1px solid rgba(255, 255, 255, 0.04);
        display: flex;
        align-items: center;
        padding: 0 0.75rem;
        font-size: 0.7rem;
        color: var(--text-muted);
        font-family: var(--font-mono);
}

.grid-row-abstract.scanning { animation: scan-row 2s infinite; }
.grid-row-abstract.scanning .grid-cell { color: var(--accent-light); font-weight: 600; }

.abstract-excel {
        width: 75%; height: 80%;
        background: var(--bg-card-solid);
        border: 1px solid var(--border-subtle);
        border-radius: 0.75rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        display: flex;
        flex-direction: column;
        overflow: hidden;
}

.excel-header {
        height: 15%;
        background: linear-gradient(135deg, #107C41, #0E6E39);
        border-radius: 0.75rem 0.75rem 0 0;
        display: flex;
        align-items: center;
        padding-left: 1rem;
        gap: 0.5rem;
}

.excel-header i { color: white; width: 20px; height: 20px; }
.excel-header span { color: rgba(255,255,255,0.7); font-size: 0.7rem; font-weight: 500; font-family: var(--font-mono); }

.excel-body {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, 1fr);
}

.excel-cell {
        border-right: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.excel-cell:nth-child(2), .excel-cell:nth-child(5), .excel-cell:nth-child(9) {
        background-color: rgba(16, 185, 129, 0.06);
}

@media (max-width: 768px) {
        .step-row, .step-row.reverse { flex-direction: column-reverse; gap: 2rem; text-align: center; }
        .step-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
        .step-connector { display: none; }
        .how-it-works h2 { font-size: 2rem; }
}

/* ============================================
   TESTIMONIALS (NEW)
   ============================================ */
.testimonials-section {
        padding: 6rem 0;
        position: relative;
        z-index: 1;
        background: rgba(255, 255, 255, 0.01);
        border-top: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
}

.testimonials-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 0.75rem;
}

.testimonials-sub {
        text-align: center;
        color: var(--text-muted);
        font-size: 1rem;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
}

.testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
}

.testimonial-card {
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-subtle);
        border-left: 2px solid var(--amber);
        border-radius: 16px;
        padding: 2rem;
        transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-amber);
        border-color: var(--border-amber);
        border-left-color: var(--amber);
}

.testimonial-stars {
        color: var(--amber);
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
}

.testimonial-quote {
        color: var(--text-main);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0.5rem;
        font-style: normal;
}

.testimonial-body {
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.65;
}

.testimonial-icon-wrap {
        color: var(--accent-light);
        margin-bottom: 1rem;
        opacity: 0.85;
}

.testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
}

.testimonial-avatar {
        width: 40px; height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--amber-glow-strong), var(--amber-glow));
        border: 1px solid var(--border-amber);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1rem;
        color: var(--amber);
        flex-shrink: 0;
}

.testimonial-name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--text-main);
}

.testimonial-role {
        font-size: 0.78rem;
        color: var(--text-dim);
}

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

/* ============================================
   ROI CALCULATOR (NEW)
   ============================================ */
.roi-section {
        padding: 7rem 0;
        position: relative;
        z-index: 1;
}

.roi-section h2 {
        font-size: 2.75rem;
        text-align: center;
        margin-bottom: 0.75rem;
}

.roi-calculator {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.75rem;
}

.roi-stepper-row {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 1rem 1.5rem;
        width: 100%;
        justify-content: center;
}

.roi-stepper-btn {
        width: 44px; height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--border-subtle);
        color: var(--text-muted);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
}

.roi-stepper-btn:hover {
        background: rgba(16, 185, 129, 0.1);
        border-color: var(--border-hover);
        color: var(--accent);
}

.roi-stepper-btn:active { transform: scale(0.95); }

.roi-count-wrap { text-align: center; }

.roi-count {
        display: block;
        font-family: var(--font-mono);
        font-size: 2.5rem;
        font-weight: 500;
        color: var(--text-main);
        letter-spacing: -0.03em;
        line-height: 1;
}

.roi-count-label {
        font-size: 0.8rem;
        color: var(--text-dim);
        font-weight: 500;
}

.roi-avg-note {
        font-size: 0.85rem;
        color: var(--text-dim);
        text-align: center;
}

/* ROI Result Box */
.roi-result {
        width: 100%;
        background: var(--amber-glow);
        border: 1px solid var(--border-amber);
        border-radius: 16px;
        padding: 2rem 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        box-shadow: var(--shadow-amber);
}

.roi-result-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
}

.roi-result-label {
        font-size: 0.9rem;
        color: var(--text-muted);
}

.roi-result-value {
        font-family: var(--font-mono);
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--amber);
}

.roi-result-divider {
        height: 1px;
        background: var(--border-amber);
        opacity: 0.5;
}

.roi-cta { width: 100%; justify-content: center; }

/* ============================================
   PRICING SECTION (NEW)
   ============================================ */
.pricing-section {
        padding: 7rem 0;
        position: relative;
        z-index: 1;
        background: rgba(255, 255, 255, 0.01);
        border-top: 1px solid var(--border-subtle);
}

.pricing-section h2 {
        font-size: 2.75rem;
        text-align: center;
        margin-bottom: 0.75rem;
}

.pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        align-items: stretch;
}

.pricing-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 20px;
        padding: 2.5rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        position: relative;
        transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-soft);
}

/* Pro: Featured */
.pricing-featured {
        border-color: var(--border-amber);
        box-shadow: var(--shadow-amber);
        background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--bg-card) 40%);
}

.pricing-featured:hover {
        box-shadow: var(--shadow-amber), 0 20px 40px -12px rgba(245,158,11,0.2);
}

.pricing-best-badge {
        position: absolute;
        top: -12px; left: 50%;
        transform: translateX(-50%);
        background: var(--amber);
        color: #1a0e00;
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        padding: 3px 12px;
        border-radius: 999px;
        white-space: nowrap;
}

.pricing-tier-name {
        font-family: var(--font-sans);
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.06em;
}

.pricing-price-wrap {
        display: flex;
        align-items: baseline;
        gap: 0.2rem;
}

.pricing-price {
        font-family: var(--font-heading);
        font-size: 3rem;
        font-weight: 700;
        color: var(--text-main);
        letter-spacing: -0.04em;
}

.pricing-period {
        font-size: 1rem;
        color: var(--text-muted);
}

.pricing-annual-note {
        font-size: 0.8rem;
        color: var(--text-dim);
        margin-top: -0.75rem;
}

.pricing-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
}

.pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.9rem;
        color: var(--text-muted);
}

.pricing-features li svg { color: var(--accent); flex-shrink: 0; }
.pricing-featured .pricing-features li svg { color: var(--amber); }

.pricing-cta.full-width {
        width: 100%;
        justify-content: center;
        margin-top: auto;
}

/* Amber CTA for Pro */
.amber-cta {
        background: linear-gradient(135deg, var(--amber) 0%, var(--amber-hover) 100%) !important;
        color: #1a0e00 !important;
        box-shadow: 0 4px 15px -3px rgba(245, 158, 11, 0.4) !important;
}

.amber-cta:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 25px -3px rgba(245, 158, 11, 0.5) !important;
}

.pricing-footnote {
        text-align: center;
        font-size: 0.85rem;
        color: var(--text-dim);
        margin-top: 2rem;
}

.pricing-footnote a { color: var(--accent); text-decoration: none; }
.pricing-footnote a:hover { color: var(--accent-light); text-decoration: underline; }

@media (max-width: 900px) {
        .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================
   SECURITY SECTION — "Your Data. Your Control."
   ============================================ */
.security {
        padding: 6rem 0;
        position: relative;
        z-index: 1;
}

.security-header-block {
        text-align: center;
        margin-bottom: 3.5rem;
}

.security-shield-icon {
        width: 64px; height: 64px;
        background: var(--amber-glow);
        border: 1px solid var(--border-amber);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
}

.security-shield-icon svg { color: var(--amber); width: 28px; height: 28px; }

.security h2 { font-size: 2.5rem; margin-bottom: 1rem; }

.security-sub {
        color: var(--text-muted);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto 1.25rem;
        font-style: italic;
}

.security-privacy-link {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        color: var(--accent);
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s;
}

.security-privacy-link:hover { color: var(--accent-light); }

.security-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
}

.security-card {
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 2rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-card:hover {
        border-color: var(--border-hover);
        transform: translateY(-4px);
        box-shadow: var(--shadow-glow);
}

.security-icon-wrap {
        width: 48px; height: 48px;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
        border: 1px solid rgba(16, 185, 129, 0.15);
}

.security-icon-wrap svg { width: 24px; height: 24px; color: var(--accent); }
.security-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-main); font-family: var(--font-sans); }
.security-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ============================================
   FINAL CTA — Honest Early-Adopter Framing
   ============================================ */
.final-cta {
        padding: 7rem 0;
        text-align: center;
        position: relative;
        z-index: 1;
}

.final-cta h2 { font-size: 2.75rem; margin-bottom: 1.25rem; }

.final-cta-sub {
        color: var(--text-muted);
        font-size: 1.05rem;
        max-width: 640px;
        margin: 0 auto 2rem;
        line-height: 1.7;
}

.final-cta-note {
        margin-top: 1rem;
        font-size: 0.85rem;
        color: var(--text-dim);
}

.final-trust-row {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        margin-top: 3rem;
        flex-wrap: wrap;
}

.final-trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: var(--text-dim);
}

.final-trust-item svg { color: var(--accent); flex-shrink: 0; }
.final-trust-item a { color: var(--accent); text-decoration: none; }
.final-trust-item a:hover { color: var(--accent-light); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
        padding: 4rem 0 2rem;
        border-top: 1px solid var(--border-subtle);
        position: relative;
        z-index: 1;
}

.footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
}

.footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
}

.footer-beta-badge {
        display: inline-block;
        background: var(--amber-glow);
        border: 1px solid var(--border-amber);
        color: var(--amber);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 2px 10px;
        border-radius: 999px;
        width: fit-content;
}

.footer-tagline { color: var(--text-dim); font-size: 0.9rem; max-width: 280px; line-height: 1.6; }

.footer-col h5 {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
        padding-top: 2rem;
        border-top: 1px solid var(--border-subtle);
        text-align: center;
}

.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }

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

/* ============================================
   MEGA MENU — Dark Theme (preserved from V8.2)
   ============================================ */
.nav-item { display: inline-block; position: relative; }

.nav-arrow { width: 16px; height: 16px; transition: transform 0.2s ease; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

.mega-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0;
        width: 900px;
        background: var(--bg-card-solid);
        border: 1px solid var(--border-subtle);
        border-radius: 1rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        padding: 2rem;
        margin-top: 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
}

.nav-item:hover .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        animation: fade-up 0.3s ease forwards;
}

@keyframes fade-up {
        from { opacity: 0; transform: translateY(10px); }
        to   { opacity: 1; transform: translateY(0); }
}

.nav-item::after {
        content: '';
        position: absolute;
        top: 100%; left: 0;
        width: 100%; height: 1rem;
}

.mega-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
}

.mega-title {
        font-family: var(--font-sans);
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--text-dim);
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 1rem;
}

.mega-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.mega-list a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.15s;
        display: flex;
        align-items: center;
        gap: 0.5rem;
}

.mega-list a:hover { color: var(--accent-light); }

.view-all { color: var(--accent) !important; font-weight: 600 !important; }

.mega-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: rgba(255,255,255,0.03);
        margin: -2rem -2rem -2rem -2rem;
        padding: 1.5rem 2rem;
        border-top: 1px solid var(--border-subtle);
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
        width: calc(100% + 4rem);
}

.mega-cta-content h3 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.25rem; }
.mega-cta-content p  { font-size: 0.85rem; color: var(--text-muted); }

.pricing-menu {
        width: 260px !important; left: 50% !important;
        transform: translateX(-50%) translateY(10px);
        display: none; opacity: 0;
        transition: all 0.2s ease;
}

.nav-item.has-dropdown:hover .pricing-menu {
        display: block; opacity: 1;
        transform: translateX(-50%) translateY(0);
}

.pricing-grid.mega-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
}

.badge-mini {
        background-color: rgba(16, 185, 129, 0.1);
        color: var(--accent);
        font-size: 0.7rem;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: auto;
        font-weight: 600;
}

.badge-mini.badge-amber {
        background-color: var(--amber-glow);
        color: var(--amber);
}

.pricing-grid.mega-grid .mega-list a {
        justify-content: space-between;
        width: 100%;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
}

.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }

/* ============================================
   MOBILE RESPONSIVE — Global
   ============================================ */
@media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .hero { padding: 4rem 0; }
        .how-it-works h2 { font-size: 2rem; }
        .security h2 { font-size: 2rem; }
        .final-cta h2 { font-size: 2rem; }
        .comparison-strip h2 { font-size: 2rem; }
        .roi-section h2 { font-size: 2rem; }
        .pricing-section h2 { font-size: 2rem; }
        .testimonials-section h2 { font-size: 2rem; }
        .industry-section h2 { font-size: 2rem; }
        .final-trust-row { flex-direction: column; align-items: center; gap: 1rem; }
}

/* Nav responsive */
@media (max-width: 1100px) {
        .nav-links { display: none; }
        .nav-actions .cta-button.secondary { display: none; }
        .nav-link-simple { display: none; }
}

@media (max-width: 768px) {
        .nav-actions { display: none; }
        body { overflow-x: hidden; }
}
