/* ============================================================
   VIGORBOOKS — Features Page (features.css)
   Complements styles.css. All new classes are prefixed ft-
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   HERO — split layout
   ──────────────────────────────────────────────────────────── */
.ft-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Ambient background orbs */
.ft-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ft-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ft-hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,95,199,0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.ft-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

/* Two-column layout */
.ft-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left column */
.ft-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ft-hero-text .hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-align: left;
    margin-top: 16px;
}

.ft-hero-text .hero-description {
    text-align: left;
    max-width: 500px;
}

.ft-hero-text .hero-buttons {
    justify-content: flex-start;
}

/* Trust signals row */
.ft-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ft-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ft-trust-item svg {
    color: var(--color-success, #10B981);
    flex-shrink: 0;
}

.ft-trust-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border-color);
}

/* ────────────────────────────────────────────────────────────
   BROWSER MOCKUP
   ──────────────────────────────────────────────────────────── */
.ft-hero-visual {
    position: relative;
}

.ft-browser-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 20px 60px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.06);
    background: var(--bg-card);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transform-origin: center center;
    transition: transform 0.6s ease;
}

.ft-hero-visual:hover .ft-browser-frame {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.ft-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-section, #f1f5f9);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .ft-browser-bar {
    background: #1e293b;
}

.ft-browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.ft-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.ft-browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 4px 10px;
    max-width: 240px;
    margin: 0 auto;
}

.ft-browser-content {
    line-height: 0;
    overflow: hidden;
    max-height: 360px;
}

.ft-browser-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* ────────────────────────────────────────────────────────────
   FLOATING BADGES
   ──────────────────────────────────────────────────────────── */
.ft-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    white-space: nowrap;
    animation: ft-badge-float 4s ease-in-out infinite;
}

.ft-float-badge--1 {
    bottom: -20px;
    left: -28px;
    animation-delay: 0s;
}

.ft-float-badge--2 {
    top: 40px;
    right: -28px;
    animation-delay: -2s;
}

@keyframes ft-badge-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.ft-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.ft-float-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.ft-float-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 1px;
}

/* ────────────────────────────────────────────────────────────
   STICKY PAGE NAV
   ──────────────────────────────────────────────────────────── */
.ft-sticky-nav {
    position: sticky;
    top: 70px; /* sits just below the main site header */
    z-index: 90;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.ft-sticky-nav.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ft-snav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    gap: 24px;
}

.ft-snav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ft-snav-links::-webkit-scrollbar { display: none; }

.ft-snav-link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.ft-snav-link:hover {
    color: var(--text-primary);
    background: var(--bg-section);
}

.ft-snav-link.is-active {
    color: var(--color-primary);
    background: rgba(91,95,199,0.08);
    font-weight: 600;
}

.ft-snav-cta {
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   STATS STRIP
   ──────────────────────────────────────────────────────────── */
.ft-stats-strip {
    padding: 48px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ft-stats-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.ft-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 48px;
    text-align: center;
}

.ft-strip-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ft-strip-lbl {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ft-strip-sep {
    width: 1px;
    height: 48px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   CORE MODULES GRID
   ──────────────────────────────────────────────────────────── */
.ft-modules {
    padding: var(--section-padding) 0;
}

.ft-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ft-module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ft-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.ft-module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.ft-module-card:hover::before {
    transform: scaleX(1);
}

.ft-module-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ft-module-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.ft-module-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.ft-module-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ft-module-highlights {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.ft-module-highlights li {
    position: relative;
    padding-left: 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.5;
}

.ft-module-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.6;
}

.ft-module-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
    transition: gap var(--transition-normal);
}

.ft-module-card:hover .ft-module-link {
    gap: 10px;
}

.ft-module-link svg {
    transition: transform var(--transition-normal);
}

.ft-module-card:hover .ft-module-link svg {
    transform: translateX(2px);
}

.ft-coming-soon {
    color: var(--text-muted);
    font-style: italic;
    font-weight: 500;
}

/* ────────────────────────────────────────────────────────────
   TAX & COMPLIANCE SECTION
   ──────────────────────────────────────────────────────────── */
.ft-compliance {
    padding: var(--section-padding) 0;
    background: var(--bg-section);
}

.ft-compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ft-compliance-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

.ft-compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.ft-compliance-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ft-compliance-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.ft-compliance-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.ft-compliance-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ────────────────────────────────────────────────────────────
   SHOWCASE ROWS (Phase 2 — Core Modules)
   ──────────────────────────────────────────────────────────── */
.ft-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 72px 0;
    border-bottom: 1px solid var(--border-color);
}

.ft-showcase-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Reverse: visual left, content right */
.ft-showcase-row--reverse .ft-showcase-content {
    order: 2;
}

.ft-showcase-row--reverse .ft-showcase-visual {
    order: 1;
}

/* ── Content column ── */
.ft-showcase-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ft-showcase-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--border-color);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    display: block;
    user-select: none;
}

[data-theme="dark"] .ft-showcase-num {
    color: rgba(255,255,255,0.06);
}

.ft-showcase-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.ft-showcase-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.ft-showcase-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ft-showcase-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.ft-showcase-desc {
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.ft-showcase-bullets {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
}

.ft-showcase-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.ft-showcase-bullets li svg {
    width: 16px;
    height: 16px;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 2px;
}

.ft-showcase-bullets li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.ft-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent, var(--color-primary));
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: gap var(--transition-normal), border-color var(--transition-fast);
}

.ft-showcase-link:hover {
    gap: 12px;
    border-color: var(--accent, var(--color-primary));
}

.ft-showcase-link svg {
    transition: transform var(--transition-normal);
}

.ft-showcase-link:hover svg {
    transform: translateX(3px);
}

/* ── Visual column ── */
.ft-showcase-visual {
    position: relative;
    padding-bottom: 20px; /* room for the badge */
}

.ft-showcase-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 20px 60px rgba(0,0,0,0.14),
        0 0 0 1px rgba(0,0,0,0.06);
    background: var(--bg-card);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.ft-showcase-frame:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 10px rgba(0,0,0,0.06),
        0 32px 80px rgba(0,0,0,0.18),
        0 0 0 1px rgba(0,0,0,0.06);
}

.ft-showcase-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ft-showcase-badge {
    position: absolute;
    bottom: 4px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    white-space: nowrap;
}

.ft-showcase-badge svg {
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   MOBILE PHONE MOCKUP (section 06 — Cloud Accounting)
   ──────────────────────────────────────────────────────────── */
.ft-showcase-visual--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}

.ft-phone-scene {
    position: relative;
    width: 280px;
    margin: 40px auto;
}

/* Ambient teal glow behind phone */
.ft-phone-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,184,166,0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Phone outer shell */
.ft-phone-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    background: var(--bg-card);
    border-radius: 48px;
    padding: 14px 10px 20px;
    box-shadow:
        0 0 0 2px rgba(20,184,166,0.25),
        0 0 0 10px var(--bg-card),
        0 0 0 12px rgba(20,184,166,0.12),
        0 32px 80px rgba(0,0,0,0.28),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}

[data-theme="dark"] .ft-phone-frame {
    background: #1e293b;
    box-shadow:
        0 0 0 2px rgba(20,184,166,0.35),
        0 0 0 10px #1e293b,
        0 0 0 12px rgba(20,184,166,0.15),
        0 32px 80px rgba(0,0,0,0.5),
        inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* Status bar (time + camera pill) */
.ft-phone-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 10px;
}

.ft-phone-cam {
    width: 80px;
    height: 26px;
    background: #0f172a;
    border-radius: 50px;
    position: relative;
    margin: 0 auto;
}

[data-theme="dark"] .ft-phone-cam {
    background: #020617;
}

.ft-phone-cam::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #1e293b;
    border-radius: 50%;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    box-shadow: 0 0 0 2px rgba(20,184,166,0.3);
}

[data-theme="dark"] .ft-phone-cam::after {
    background: #0f172a;
}

.ft-phone-time {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Screen area */
.ft-phone-screen {
    border-radius: 36px;
    overflow: hidden;
    background: #0b1628;
    line-height: normal;
}

.ft-phone-screen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Home indicator bar */
.ft-phone-home-bar {
    width: 100px;
    height: 5px;
    background: var(--border-color);
    border-radius: 50px;
    margin: 14px auto 0;
}

/* Floating notification badge — top right of scene */
.ft-phone-notif {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    white-space: nowrap;
    animation: ft-badge-float 4s ease-in-out infinite;
    z-index: 10;
}

.ft-phone-notif--tr {
    top: 40px;
    right: -60px;
    animation-delay: -1s;
}

.ft-phone-notif-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg,#14B8A6,#0D9488);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(20,184,166,0.5);
}

.ft-phone-notif-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.ft-phone-notif-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1px;
}

/* ── CSS-only phone UI ── */
.ft-phone-ui {
    background: #0b1628;
    display: flex;
    flex-direction: column;
    padding: 14px 12px 12px;
    gap: 10px;
    font-family: var(--font-body);
    min-height: 460px;
}

.ft-pui-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-pui-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14B8A6, #0D9488);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.ft-pui-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    flex: 1;
    letter-spacing: 0.02em;
}

.ft-pui-bell {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    position: relative;
    flex-shrink: 0;
}

.ft-pui-bell-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #14B8A6;
    border-radius: 50%;
    top: 4px;
    right: 4px;
    box-shadow: 0 0 6px rgba(20,184,166,0.7);
}

/* Balance card */
.ft-pui-balance {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 60%, #0891B2 100%);
    border-radius: 14px;
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.ft-pui-balance::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    top: -20px;
    right: -10px;
}

.ft-pui-balance::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -15px;
    right: 30px;
}

.ft-pui-balance-label {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.ft-pui-balance-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ft-pui-balance-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 2px 9px;
    font-size: 0.58rem;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Quick stats */
.ft-pui-stats {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px 12px;
}

.ft-pui-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.ft-pui-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.ft-pui-stat-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.ft-pui-stat-icon--in  { background: rgba(20,184,166,0.2);  color: #14B8A6; }
.ft-pui-stat-icon--out { background: rgba(239,68,68,0.15);  color: #EF4444; }

.ft-pui-stat-val {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.ft-pui-stat-lbl {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}

/* Bar chart */
.ft-pui-chart {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px 10px 8px;
}

.ft-pui-chart-label {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.ft-pui-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 48px;
}

.ft-pui-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    height: 100%;
    justify-content: flex-end;
}

.ft-pui-bar-wrap span {
    font-size: 0.45rem;
    color: rgba(255,255,255,0.25);
    font-weight: 500;
}

.ft-pui-bar {
    width: 100%;
    height: var(--h);
    background: rgba(20,184,166,0.18);
    border-radius: 3px 3px 2px 2px;
}

.ft-pui-bar--active {
    background: linear-gradient(to top, #0D9488, #2DD4BF);
    box-shadow: 0 3px 10px rgba(20,184,166,0.4);
}

/* Transactions */
.ft-pui-txns {
    flex: 1;
}

.ft-pui-txns-title {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.ft-pui-txn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ft-pui-txn:last-child { border-bottom: none; }

.ft-pui-txn-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ft-pui-txn-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.ft-pui-txn-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ft-pui-txn-date {
    font-size: 0.52rem;
    color: rgba(255,255,255,0.3);
}

.ft-pui-txn-amt {
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ft-pui-txn-amt--pos { color: #2DD4BF; }
.ft-pui-txn-amt--neg { color: #F87171; }

/* App store pill badges — bottom left */
.ft-phone-stores {
    position: absolute;
    bottom: 0px;
    left: -70px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: ft-badge-float 4s ease-in-out infinite;
    animation-delay: -2.5s;
    z-index: 10;
}

.ft-phone-store-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    white-space: nowrap;
}

.ft-phone-store-pill svg {
    flex-shrink: 0;
    color: var(--text-secondary);
}

/* ────────────────────────────────────────────────────────────
   COMPLIANCE SHOWCASE CARDS (Phase 2 — Tax & Compliance)
   ──────────────────────────────────────────────────────────── */
.ft-compliance-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.ft-comp-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.ft-comp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(91,95,199,0.3);
}

.ft-comp-card-img {
    width: 100%;
    overflow: hidden;
    max-height: 200px;
    background: var(--bg-section);
    position: relative;
}

.ft-comp-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
    pointer-events: none;
}

.ft-comp-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.ft-comp-card:hover .ft-comp-card-img img {
    transform: scale(1.03);
}

/* Coming soon card — no image */
.ft-comp-card--soon .ft-comp-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(220,38,38,0.02));
}

.ft-comp-card--soon-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.ft-comp-card--soon-placeholder svg {
    opacity: 0.35;
}

.ft-comp-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ft-comp-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.ft-comp-card-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.ft-comp-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ft-comp-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.ft-comp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap var(--transition-fast);
}

.ft-comp-card:hover .ft-comp-card-link {
    gap: 10px;
}

.ft-comp-card-link svg {
    transition: transform var(--transition-fast);
}

.ft-comp-card:hover .ft-comp-card-link svg {
    transform: translateX(2px);
}

.ft-comp-card-coming {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    font-style: italic;
}

/* ────────────────────────────────────────────────────────────
   WHY VBOOKS SECTION
   ──────────────────────────────────────────────────────────── */
.ft-why {
    padding: var(--section-padding) 0;
}

.ft-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ft-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all var(--transition-normal);
    text-align: center;
}

.ft-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.ft-why-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(91, 95, 199, 0.25);
}

.ft-why-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.ft-why-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.ft-why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ft-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ft-hero-text .hero-title,
    .ft-hero-text .hero-description {
        text-align: center;
    }

    .ft-hero-text {
        align-items: center;
    }

    .ft-hero-text .hero-buttons {
        justify-content: center;
    }

    .ft-hero-trust {
        justify-content: center;
    }

    .ft-browser-frame {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .ft-hero-visual:hover .ft-browser-frame {
        transform: none;
    }

    .ft-float-badge--1 {
        left: 0;
        bottom: -16px;
    }

    .ft-float-badge--2 {
        right: 0;
        top: 20px;
    }

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

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

    .ft-strip-item {
        padding: 0 28px;
    }

    .ft-showcase-row {
        gap: 48px;
        padding: 56px 0;
    }
}

@media (max-width: 768px) {
    .ft-hero {
        padding: 120px 0 60px;
    }

    .ft-modules-grid,
    .ft-compliance-grid,
    .ft-compliance-cards,
    .ft-why-grid {
        grid-template-columns: 1fr;
    }

    .ft-showcase-row {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0;
    }

    .ft-showcase-row--reverse .ft-showcase-content {
        order: 0;
    }

    .ft-showcase-row--reverse .ft-showcase-visual {
        order: 0;
    }

    .ft-showcase-num {
        font-size: 2.5rem;
    }

    .ft-showcase-visual {
        padding-bottom: 32px;
    }

    /* Phone mockup: tuck badges in on mobile */
    .ft-phone-notif--tr {
        right: -20px;
        top: 20px;
    }

    .ft-phone-stores {
        left: -20px;
        bottom: -10px;
    }

    .ft-phone-scene {
        width: 240px;
    }

    .ft-snav-cta {
        display: none;
    }

    .ft-stats-strip-grid {
        gap: 24px 0;
    }

    .ft-strip-item {
        padding: 0 20px;
        min-width: 40%;
    }

    .ft-strip-sep {
        display: none;
    }

    .ft-compliance-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ft-float-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .ft-strip-item {
        min-width: 100%;
    }
}
