:root {
    --fh-primary: #10B981;
    /* blue-600 */
    --fh-primary-600: #10B981;
    /* blue-700 */
    --fh-primary-700: #10B981;
    /* blue-800 */
    --fh-primary-50: #eaf6f2;
    /* blue-50 */
    --fh-primary-100: #dbfef3;
    /* blue-100 */
    --fh-ink: #2a2d34;
    /* near-black */
    --fh-ink-2: #1E293B;
    --fh-muted: #64748B;
    --fh-line: #E5E7EB;
    --fh-bg: #F8FAFC;
    --fh-white: #FFFFFF;
    --fh-accent-green: #10B981;
    --fh-accent-orange: #F59E0B;
    --fh-accent-purple: #8B5CF6;
    --fh-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    --fh-shadow-lg: 0 30px 70px rgba(15, 23, 42, 0.10);
    --fh-radius: 18px;
    --fh-radius-sm: 12px;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Premium type system
       — Inter: headings + body (clean, modern, highly readable)
       — Plus Jakarta Sans: eyebrows, subheadings, labels, chips, badges (personality) */
:root {
    --fh-font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --fh-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

body {
    font-family: var(--fh-font-sans);
    color: var(--fh-ink);
    background: var(--fh-white);
    line-height: 1.6;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fh-font-sans);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--fh-ink);
    font-feature-settings: 'cv11', 'ss01';
}

h1 {
    letter-spacing: -0.04em;
}

h2 {
    letter-spacing: -0.035em;
}

h3,
h4 {
    letter-spacing: -0.03em;
}

h5,
h6 {
    letter-spacing: -0.02em;
}

p {
    color: var(--fh-muted);
}

/* Plus Jakarta Sans — for personality-bearing accents */
.eyebrow,
.section-eyebrow,
.eyebrow-modern,
.kpi-card .label,
.form-label,
.form-check-label,
.trust-chip,
.save-badge,
.badge-recommend,
.preview-chip .name,
.preview-chip .meta,
.navbar-brand,
.navbar .nav-link,
.btn,
.nav-tabs .nav-link,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: var(--fh-font-display);
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    letter-spacing: -0.04em;
    font-weight: 800;
}

.text-muted-2 {
    color: var(--fh-muted) !important;
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 10px;
    padding: .7rem 1.25rem;
    transition: all .2s ease;
}

.btn-primary {
    background-color: var(--fh-primary);
    border-color: var(--fh-primary);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--fh-primary-600);
    border-color: var(--fh-primary-600);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.32);
}

.btn-outline-light {
    color: var(--fh-ink);
    background: var(--fh-white);
    border: 1px solid var(--fh-line);
}

.btn-outline-light:hover {
    background: var(--fh-bg);
    color: #5a5959;
    border-color: var(--fh-bg);
    transform: translateY(-1px);
}

.btn-outline-dark {
    border-color: var(--fh-line);
    color: var(--fh-ink);
    background: var(--fh-white);
}

.btn-outline-dark:hover {
    background: var(--fh-ink);
    color: #fff;
    border-color: var(--fh-ink);
    transform: translateY(-1px);
}

.btn-light-2 {
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    border: 1px solid var(--fh-primary-100);
}

.btn-light-2:hover {
    background: var(--fh-primary-100);
    color: var(--fh-primary-700);
}

/* Navbar */
.navbar {
    backdrop-filter: saturate(180%) blur(14px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--fh-line);
    transition: box-shadow .2s ease;
}

.navbar.scrolled {
    box-shadow: 0 6px 20px rgba(15, 23, 42, .06);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--fh-ink);
    display: flex;
    align-items: center;
    gap: .55rem;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--fh-primary) 0%, var(--fh-primary-700) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 6px 16px rgba(16, 185, 129, .35);
}

.navbar .nav-link {
    color: var(--fh-ink-2);
    font-weight: 600;
    padding: .5rem 1rem !important;
    border-radius: 8px;
    margin-right: 5px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--fh-primary-700);
    background: var(--fh-primary-50);
}

/* Hero */
.hero {
    position: relative;
    padding: 7rem 0 5rem;
    background:
        radial-gradient(1200px 480px at 100% -10%, rgba(16, 185, 129, 0.12), transparent 60%),
        radial-gradient(900px 360px at -10% 30%, rgba(16, 185, 129, 0.08), transparent 60%),
        var(--fh-white);
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.4vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
}

.hero .lead {
    font-size: 1.125rem;
    color: var(--fh-muted);
    max-width: 560px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    border: 1px solid var(--fh-primary-100);
    padding: .35rem .75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 1.25rem;
}

.hero-stats {
    display: flex;
    gap: 2.25rem;
    margin-top: 2.25rem;
    flex-wrap: wrap;
}

.hero-stats .stat strong {
    font-size: 1.5rem;
    color: var(--fh-ink);
}

.hero-stats .stat span {
    color: var(--fh-muted);
    font-size: .9rem;
    display: block;
}

/* Dashboard mockup */
.dash-mock {
    position: relative;
    background: #fff;
    border: 1px solid var(--fh-line);
    border-radius: 18px;
    box-shadow: var(--fh-shadow-lg);
    overflow: hidden;
}

.dash-mock .top-bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--fh-line);
    background: #FAFBFC;
}

.dash-mock .top-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E2E8F0;
}

.dash-mock .top-bar .dot.r {
    background: #FCA5A5;
}

.dash-mock .top-bar .dot.y {
    background: #FCD34D;
}

.dash-mock .top-bar .dot.g {
    background: #6EE7B7;
}

.dash-mock .body {
    padding: 1.25rem;
}

.kpi-card {
    border: 1px solid var(--fh-line);
    border-radius: 12px;
    padding: 1rem;
    background: #fff;
}

.kpi-card .label {
    color: var(--fh-muted);
    font-size: .8rem;
    font-weight: 500;
}

.kpi-card .value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fh-ink);
}

.kpi-card .delta {
    font-size: .8rem;
    font-weight: 600;
}

.delta.up {
    color: var(--fh-primary-700);
}

.delta.down {
    color: #DC2626;
}

.chart-card {
    border: 1px solid var(--fh-line);
    border-radius: 14px;
    padding: 1.1rem;
    background: #fff;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 130px;
    padding-top: 8px;
}

.bars .bar {
    flex: 1;
    background: var(--fh-primary-100);
    border-radius: 6px 6px 2px 2px;
    position: relative;
    transition: transform .2s ease;
}

.bars .bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fh-primary);
    border-radius: 6px 6px 2px 2px;
    height: var(--h, 50%);
}

.bars .bar:hover {
    transform: translateY(-3px);
}

.tx-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    border-bottom: 1px dashed var(--fh-line);
}

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

.tx-meta {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.tx-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tx-amount.pos {
    color: var(--fh-primary-700);
    font-weight: 600;
}

.tx-amount.neg {
    color: #DC2626;
    font-weight: 600;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-eyebrow {
    display: inline-block;
    color: var(--fh-primary-700);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.section-sub {
    color: var(--fh-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* Features */
.feature-card {
    background: #fff;
    border: 1px solid var(--fh-line);
    border-radius: var(--fh-radius);
    padding: 1.75rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fh-shadow);
    border-color: var(--fh-primary-100);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.feature-card p {
    font-size: .95rem;
    margin-bottom: 0;
}

/* Dashboard preview */
.preview-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #ECFDF5 0%, #FFFFFF 100%);
    padding: 2rem;
    border: 1px solid var(--fh-line);
}

.preview-wrap img {
    border-radius: 14px;
    box-shadow: var(--fh-shadow-lg);
    width: 100%;
    height: auto;
    display: block;
}

.preview-bullets li {
    display: flex;
    gap: .75rem;
    padding: .55rem 0;
    align-items: flex-start;
}

.preview-bullets .bi {
    color: var(--fh-primary-700);
    background: var(--fh-primary-50);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Steps */
.step-card {
    background: #fff;
    border: 1px solid var(--fh-line);
    border-radius: var(--fh-radius);
    padding: 2rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--fh-ink);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card.featured .step-num {
    background: var(--fh-primary);
}

/* Pricing */
.price-card {
    background: #fff;
    border: 1px solid var(--fh-line);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fh-shadow);
    border-color: var(--fh-primary-100);
}

.price-card.popular {
    background: linear-gradient(180deg, #ffffff 0%, #F0FDF4 100%);
    border-color: var(--fh-primary);
    box-shadow: 0 24px 50px rgba(16, 185, 129, .15);
    transform: translateY(-6px);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: .35rem;
}

.price-tag .amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--fh-ink);
    letter-spacing: -.02em;
}

.price-tag .per {
    color: var(--fh-muted);
    font-size: .95rem;
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feat-list li {
    padding: .4rem 0;
    color: var(--fh-ink-2);
    display: flex;
    align-items: center;
    gap: .55rem;
}

.feat-list .bi-check2-circle {
    color: var(--fh-primary-700);
}

.badge-recommend {
    background: var(--fh-primary);
    color: #fff;
    border-radius: 999px;
    padding: .3rem .75rem;
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Testimonials */
.quote-card {
    background: #fff;
    border: 1px solid var(--fh-line);
    border-radius: var(--fh-radius);
    padding: 1.75rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.quote-card .stars {
    color: #F59E0B;
    font-size: .95rem;
    margin-bottom: .75rem;
}

.quote-card p {
    color: var(--fh-ink-2);
    font-size: 1rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-top: 1.25rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--fh-primary-100);
    color: var(--fh-primary-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.quote-author .name {
    font-weight: 600;
    color: var(--fh-ink);
}

.quote-author .role {
    color: var(--fh-muted);
    font-size: .85rem;
}

/* CTA */
#cta {
    background: var(--fh-bg);
}
.cta-band {
    background: transparent;
    border-radius: 24px;
    padding: 2rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
}

.cta-band h2 {
    color: #363535;
}

.cta-band p {
    color: rgba(119, 117, 117, 0.85)!important;
}

.cta-band .btn-light {
    background: #fff;
    color: var(--fh-primary-700);
    font-weight: 700;
    border: none;
}

.cta-band .btn-light:hover {
    background: #ECFDF5;
    transform: translateY(-1px);
}

.cta-band .btn-outline-light:hover {
    background: rgba(255, 255, 255, .12);
}

/* Footer — intentionally dark in both light & dark themes */
footer {
    background: #0F172A;
    color: #CBD5E1;
    padding: 4rem 0 2rem;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: .02em;
}

footer a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color .2s ease;
}

footer a:hover {
    color: #fff;
}

footer .social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    margin-right: .5rem;
    transition: background .2s ease, transform .2s ease;
}

footer .social a:hover {
    background: var(--fh-primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    color: #94A3B8;
    font-size: .9rem;
}


/* Modern hero additions */
.eyebrow-modern {
    background: var(--fh-primary-50);
    color: var(--fh-primary);
    border-color: var(--fh-primary-100);
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 700;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .5rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem 1rem;
    border: 1px solid var(--fh-line);
    border-radius: 999px;
    background: #fff;
    font-size: .85rem;
    font-weight: 500;
    color: var(--fh-ink-2);
}

.workspace-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--fh-primary-50);
    color: var(--fh-primary);
    border-radius: 8px;
    padding: .3rem .65rem;
    font-size: .78rem;
    font-weight: 600;
}

.top-bar {
    justify-content: flex-start;
}

.kpi-card .label {
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .7rem;
}

.kpi-card {
    background: #F8FAFC;
    border-color: transparent;
    border-radius: 14px;
}

.goal-card {
    background: var(--fh-bg);
    border: 1px solid var(--fh-line);
    border-radius: 14px;
    padding: 1rem 1.1rem;
}

.goal-bar {
    height: 8px;
    background: var(--fh-line);
    border-radius: 999px;
    overflow: hidden;
}

.goal-bar>span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--fh-primary), #60A5FA);
    border-radius: 999px;
}

.exp-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .55rem 0;
}

.exp-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.exp-body {
    flex: 1;
    min-width: 0;
}

.exp-top {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    font-weight: 500;
    color: var(--fh-ink-2);
    margin-bottom: 4px;
}

.exp-top strong {
    color: var(--fh-ink);
    font-weight: 700;
}

.exp-bar {
    height: 6px;
    background: var(--fh-line);
    border-radius: 999px;
    overflow: hidden;
}

.exp-bar>span {
    display: block;
    height: 100%;
    border-radius: 999px;
}

/* Pricing toggle */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    background: var(--fh-white);
    border: 1px solid var(--fh-line);
    padding: .35rem;
    border-radius: 999px;
    box-shadow: var(--fh-shadow);
    margin-bottom: 2.5rem;
}

.billing-toggle button {
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: .9rem;
    color: var(--fh-muted);
    padding: .55rem 1.25rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.billing-toggle button.active {
    background: var(--fh-primary);
    color: #fff;
}

.save-badge {
    background: #D1FAE5;
    color: #047857;
    font-size: .7rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 999px;
}

.billing-toggle button.active .save-badge {
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

/* ============== DARK MODE ============== */
[data-theme="dark"] {
    --fh-ink: #F1F5F9;
    --fh-ink-2: #E2E8F0;
    --fh-muted: #94A3B8;
    --fh-line: #1F2937;
    --fh-bg: #0B1220;
    --fh-white: #0F172A;
    --fh-primary-50: rgba(16, 185, 129, 0.10);
    --fh-primary-100: rgba(16, 185, 129, 0.20);
    --fh-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    --fh-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] body {
    background: #0B1220;
    color: var(--fh-ink);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--fh-ink);
}

[data-theme="dark"] p {
    color: var(--fh-muted);
}

[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.85);
    border-bottom-color: #1F2937;
}

[data-theme="dark"] .navbar-brand {
    color: var(--fh-ink);
}

[data-theme="dark"] .navbar .nav-link {
    color: var(--fh-ink-2);
}

[data-theme="dark"] .navbar .nav-link:hover,
[data-theme="dark"] .navbar .nav-link.active {
    background: rgba(16, 185, 129, 0.12);
    color: #6EE7B7;
}

[data-theme="dark"] .btn-outline-dark {
    background: transparent;
    color: var(--fh-ink);
    border-color: #334155;
}

[data-theme="dark"] .btn-outline-dark:hover {
    background: #fff;
    color: #0F172A;
    border-color: #fff;
}

[data-theme="dark"] .hero {
    background:
        radial-gradient(1200px 480px at 100% -10%, rgba(16, 185, 129, 0.18), transparent 60%),
        radial-gradient(900px 360px at -10% 30%, rgba(16, 185, 129, 0.10), transparent 60%),
        #0B1220;
}

[data-theme="dark"] .eyebrow {
    background: rgba(16, 185, 129, 0.12);
    color: #6EE7B7;
    border-color: rgba(16, 185, 129, 0.25);
}

[data-theme="dark"] .hero-stats .stat strong {
    color: var(--fh-ink);
}

[data-theme="dark"] .dash-mock,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .quote-card,
[data-theme="dark"] .kpi-card,
[data-theme="dark"] .chart-card,
[data-theme="dark"] .accordion-item {
    background: #111827;
    border-color: #1F2937;
}

[data-theme="dark"] .dash-mock .top-bar {
    background: #0F172A;
    border-bottom-color: #1F2937;
}

[data-theme="dark"] .feature-icon,
[data-theme="dark"] .tx-icon,
[data-theme="dark"] .preview-bullets .bi {
    background: rgba(16, 185, 129, 0.15);
    color: #6EE7B7;
}

[data-theme="dark"] .step-num {
    background: #0F172A;
}

[data-theme="dark"] .step-card.featured .step-num {
    background: var(--fh-primary);
}

[data-theme="dark"] .price-card.popular {
    background: linear-gradient(180deg, #0F172A 0%, rgba(16, 185, 129, 0.08) 100%);
    border-color: var(--fh-primary);
}

[data-theme="dark"] .price-tag .amount {
    color: var(--fh-ink);
}

[data-theme="dark"] .feat-list li {
    color: var(--fh-ink-2);
}

[data-theme="dark"] .preview-wrap {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.10) 0%, #0B1220 100%);
    border-color: #1F2937;
}

[data-theme="dark"] .avatar {
    background: rgba(16, 185, 129, 0.15);
    color: #6EE7B7;
}

[data-theme="dark"] .quote-card p {
    color: var(--fh-ink-2);
}

[data-theme="dark"] .btn-light-2 {
    background: rgba(16, 185, 129, 0.12);
    color: #6EE7B7;
    border-color: rgba(16, 185, 129, 0.25);
}

[data-theme="dark"] .btn-light-2:hover {
    background: rgba(16, 185, 129, 0.20);
    color: #A7F3D0;
}

[data-theme="dark"] .bars .bar {
    background: rgba(16, 185, 129, 0.20);
}

[data-theme="dark"] .tx-amount.neg {
    color: #F87171;
}

/* Dark fixes — goal card, billing toggle, signin button */
[data-theme="dark"] .goal-card {
    background: #0F172A;
    border-color: #1F2937;
}

[data-theme="dark"] .goal-bar,
[data-theme="dark"] .exp-bar {
    background: #1F2937;
}

[data-theme="dark"] .billing-toggle {
    background: #111827;
    border-color: #1F2937;
}

[data-theme="dark"] .billing-toggle button {
    color: var(--fh-muted);
}

[data-theme="dark"] .billing-toggle button.active {
    background: var(--fh-primary);
    color: #fff;
}

[data-theme="dark"] .btn-cse.signin {
    color: var(--fh-ink);
    border-color: #334155;
    background: transparent;
}

[data-theme="dark"] .btn-cse.signin:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--fh-ink);
    border-color: #475569;
}

/* FAQ */
.accordion-item {
    border: 1px solid var(--fh-line) !important;
    border-radius: 14px !important;
    margin-bottom: .85rem;
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    font-weight: 600;
    color: var(--fh-ink);
    background: #fff;
    padding: 1.1rem 1.25rem;
    border-radius: 14px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--fh-primary-700);
    background: var(--fh-primary-50);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310B981'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--fh-muted);
    padding: 0 1.25rem 1.25rem;
}

[data-theme="dark"] .accordion-button {
    background: #111827;
    color: var(--fh-ink);
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    background: rgba(16, 185, 129, 0.10);
    color: #6EE7B7;
}

[data-theme="dark"] .accordion-body {
    color: var(--fh-muted);
}

/* Theme toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px transparent var(--fh-line);
    background: var(--fh-white);
    color: var(--fh-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    cursor: pointer;
}

.theme-toggle:hover {
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    border-color: var(--fh-primary-100);
    transform: translateY(-1px);
}

[data-theme="dark"] .theme-toggle {
    background: #111827;
    border-color: #1F2937;
    color: var(--fh-ink);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(16, 185, 129, 0.12);
    color: #6EE7B7;
}

.theme-toggle .bi-sun-fill {
    display: none;
}

[data-theme="dark"] .theme-toggle .bi-moon-stars-fill {
    display: none;
}

[data-theme="dark"] .theme-toggle .bi-sun-fill {
    display: inline-block;
}

/* Counter */
.stat strong {
    display: inline-block;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .hero {
        padding: 5.5rem 0 3rem;
    }

    section {
        padding: 4.5rem 0;
    }

    .price-card.popular {
        transform: none;
    }

    .cta-band {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        gap: 1.25rem;
    }

    .dash-mock .body {
        padding: 1rem;
    }
}


/* login css */



/* Form panel */
.form-panel {
    background: var(--fh-bg);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.25rem;
    margin-top: 30px;
}

.form-panel .topbar {
    display: flex;
    justify-content: flex-end;
    gap: .75rem
}

.form-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem
}

.form-card {
    width: 100%;
    max-width: 440px
}

.form-card .eyebrow {
    display: inline-block;
    color: var(--fh-primary-700);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .75rem;
    margin-bottom: .75rem
}

.form-card h1 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    margin-bottom: .5rem
}

.form-card .sub {
    color: var(--fh-muted);
    margin-bottom: 1.75rem
}

/* Inputs */
.form-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--fh-ink);
    margin-bottom: .4rem
}

.input-group-text {
    background: var(--fh-white);
    border-color: var(--fh-line);
    color: var(--fh-muted)
}

.form-control {
    border-color: var(--fh-line);
    background: var(--fh-white);
    color: var(--fh-ink);
    padding: .7rem .9rem;
    border-radius: 10px;
    font-size: .95rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.form-control::placeholder {
    color: #94A3B8
}

.form-control:focus {
    border-color: var(--fh-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
    background: var(--fh-white);
    color: var(--fh-ink)
}

.input-icon {
    position: relative
}

.input-icon .bi {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fh-muted);
    pointer-events: none
}

.input-icon .form-control {
    padding-left: 42px
}

.input-icon .toggle-pass {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: var(--fh-muted);
    padding: .25rem .5rem;
    border-radius: 8px;
    cursor: pointer
}

.input-icon .toggle-pass:hover {
    color: var(--fh-primary-700);
    background: var(--fh-primary-50)
}

.form-check-input:checked {
    background-color: var(--fh-primary);
    border-color: var(--fh-primary)
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
    border-color: var(--fh-primary)
}

.form-check-label {
    color: var(--fh-ink-2);
    font-size: .9rem
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 10px;
    padding: .75rem 1.25rem;
    transition: all .2s ease
}

.btn-primary {
    background: var(--fh-primary);
    border-color: var(--fh-primary);
    box-shadow: 0 6px 16px rgba(16, 185, 129, .25)
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--fh-primary-600);
    border-color: var(--fh-primary-600);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(16, 185, 129, .32)
}

.btn-social {
    background: var(--fh-white);
    border: 1px solid var(--fh-line);
    color: var(--fh-ink);
    font-weight: 600
}

.btn-social:hover {
    background: var(--fh-primary-50);
    border-color: var(--fh-primary-100);
    color: var(--fh-ink);
    transform: translateY(-1px)
}

[data-theme="dark"] .btn-social {
    background: #111827;
    border-color: #1F2937;
    color: var(--fh-ink)
}

[data-theme="dark"] .btn-social:hover {
    background: rgba(16, 185, 129, .10);
    border-color: rgba(16, 185, 129, .25)
}

.divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--fh-muted);
    font-size: .8rem;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: .08em
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--fh-line)
}

/* Dark mode inputs */
[data-theme="dark"] body,
[data-theme="dark"] .form-panel {
    background: #0B1220
}

[data-theme="dark"] .form-control {
    background: #111827;
    border-color: #1F2937;
    color: var(--fh-ink)
}

[data-theme="dark"] .form-control:focus {
    background: #111827
}

[data-theme="dark"] .input-group-text {
    background: #111827;
    border-color: #1F2937;
    color: var(--fh-muted)
}

/* Theme toggle / back link */
.pill-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--fh-line);
    background: var(--fh-white);
    color: var(--fh-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    cursor: pointer;
    text-decoration: none;
}

.pill-btn:hover {
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    border-color: var(--fh-primary-100);
    transform: translateY(-1px)
}

[data-theme="dark"] .pill-btn {
    background: #111827;
    border-color: #1F2937;
    color: var(--fh-ink)
}

[data-theme="dark"] .pill-btn:hover {
    background: rgba(16, 185, 129, .12);
    color: #6EE7B7
}

.theme-toggle .bi-sun-fill {
    display: none
}

[data-theme="dark"] .theme-toggle .bi-moon-stars-fill {
    display: none
}

[data-theme="dark"] .theme-toggle .bi-sun-fill {
    display: inline-block
}

.foot {
    color: var(--fh-muted);
    font-size: .85rem;
    text-align: center;
    padding: 1rem
}

.alert-soft {
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    border: 1px solid var(--fh-primary-100);
    border-radius: 10px;
    padding: .65rem .85rem;
    font-size: .85rem;
    display: none;
    align-items: center;
    gap: .5rem
}

/* Password strength */
.pw-meter {
    display: flex;
    gap: 6px;
    margin-top: .55rem
}

.pw-meter span {
    flex: 1;
    height: 5px;
    border-radius: 4px;
    background: var(--fh-line);
    transition: background .2s ease
}

.pw-meter.s1 span:nth-child(-n+1) {
    background: #EF4444
}

.pw-meter.s2 span:nth-child(-n+2) {
    background: #F59E0B
}

.pw-meter.s3 span:nth-child(-n+3) {
    background: #10B981
}

.pw-meter.s4 span {
    background: #059669
}

.pw-hint {
    color: var(--fh-muted);
    font-size: .8rem;
    margin-top: .35rem
}


/* setup workspace css */


.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem
}
.filogo{
    height: 32px; width: auto; object-fit: contain;
}
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--fh-ink);
    letter-spacing: -.02em;
    text-decoration: none
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--fh-primary) 0%, var(--fh-primary-700) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 16px rgba(16, 185, 129, .35)
}

.actions {
    display: flex;
    gap: .75rem
}

.pill-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--fh-line);
    background: var(--fh-white);
    color: var(--fh-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    cursor: pointer;
    text-decoration: none
}

.pill-btn:hover {
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    border-color: var(--fh-primary-100);
    transform: translateY(-1px)
}

[data-theme="dark"] .pill-btn {
    background: #111827;
    border-color: #1F2937;
    color: var(--fh-ink)
}

[data-theme="dark"] .pill-btn:hover {
    background: rgba(16, 185, 129, .12);
    color: #6EE7B7
}

.theme-toggle .bi-sun-fill {
    display: none
}

[data-theme="dark"] .theme-toggle .bi-moon-stars-fill {
    display: none
}

[data-theme="dark"] .theme-toggle .bi-sun-fill {
    display: inline-block
}

.wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem
}

.card-box {
    width: 100%;
    max-width: 560px;
    background: var(--fh-white);
    border: 1px solid var(--fh-line);
    border-radius: 18px;
    box-shadow: var(--fh-shadow-lg);
    padding: 2.5rem;
}

[data-theme="dark"] .card-box {
    background: #111827;
    border-color: #1F2937
}



/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.75rem
}

.stepper .step {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--fh-muted);
    font-size: .85rem;
    font-weight: 500
}

.stepper .dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fh-line);
    color: var(--fh-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700
}

.stepper .step.done .dot {
    background: var(--fh-primary);
    color: #fff
}

.stepper .step.done {
    color: var(--fh-primary-700)
}

.stepper .step.active .dot {
    background: var(--fh-ink);
    color: #fff
}

.stepper .step.active {
    color: var(--fh-ink);
    font-weight: 600
}

.stepper .bar {
    flex: 1;
    height: 2px;
    background: var(--fh-line);
    border-radius: 2px
}

.stepper .bar.fill {
    background: var(--fh-primary)
}

.icon-bubble {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-box h1 {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    margin-bottom: .4rem
}

.card-box .sub {
    color: var(--fh-muted);
    margin-bottom: 1.75rem
}

.form-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--fh-ink);
    margin-bottom: .4rem
}

.form-hint {
    color: var(--fh-muted);
    font-size: .8rem;
    margin-top: .35rem
}

.form-control,
.form-select {
    border-color: var(--fh-line);
    background-color: var(--fh-white);
    color: var(--fh-ink);
    padding: .7rem .9rem;
    border-radius: 10px;
    font-size: .95rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.form-control::placeholder {
    color: #94A3B8
}

.form-control:focus,
.form-select:focus {
    border-color: var(--fh-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
    background-color: var(--fh-white);
    color: var(--fh-ink)
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: #0F172A;
    border-color: #1F2937;
    color: var(--fh-ink)
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: #0F172A
}

[data-theme="dark"] .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394A3B8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.input-icon {
    position: relative
}

.input-icon .bi {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fh-muted);
    pointer-events: none
}

.input-icon .form-control {
    padding-left: 42px
}

.input-prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fh-muted);
    font-weight: 600;
    font-size: .95rem;
    pointer-events: none;
}

.input-prefix-wrap .form-control {
    padding-left: 80px
}

.btn {
    font-weight: 600;
    border-radius: 10px;
    padding: .75rem 1.25rem;
    transition: all .2s ease
}

.btn-primary {
    background: var(--fh-primary);
    border-color: var(--fh-primary);
    box-shadow: 0 6px 16px rgba(16, 185, 129, .25)
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--fh-primary-600);
    border-color: var(--fh-primary-600);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(16, 185, 129, .32)
}

.btn-ghost {
    background: transparent;
    color: var(--fh-muted);
    border: 1px solid var(--fh-line)
}

.btn-ghost:hover {
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    border-color: var(--fh-primary-100)
}

[data-theme="dark"] .btn-ghost {
    border-color: #1F2937;
    color: var(--fh-muted)
}

[data-theme="dark"] .btn-ghost:hover {
    background: rgba(16, 185, 129, .10);
    color: #6EE7B7;
    border-color: rgba(16, 185, 129, .25)
}

/* Preview chip */
.preview-chip {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1rem;
    border: 1px dashed var(--fh-line);
    border-radius: 12px;
    background: var(--fh-primary-50);
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .preview-chip {
    background: rgba(16, 185, 129, .08);
    border-color: rgba(16, 185, 129, .25)
}

.ws-avatar {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--fh-primary) 0%, var(--fh-primary-700) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1rem;
    letter-spacing: -.01em
}

.preview-chip .meta {
    font-size: .8rem;
    color: var(--fh-muted)
}

.preview-chip .name {
    font-weight: 700;
    color: var(--fh-ink);
    font-size: .95rem
}

/* Success */
.success-panel {
    display: none;
    text-align: center
}

.success-panel.visible {
    display: block
}

.form-state.hidden {
    display: none
}

.ok-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Email verification notice page */
.verify-card {
    text-align: center
}

.verify-card .alert-soft {
    display: flex
}

.verify-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin: 0 auto 1.25rem;
    background: var(--fh-primary-50);
    color: var(--fh-primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 18px rgba(16, 185, 129, .18);
}

[data-theme="dark"] .verify-icon {
    background: rgba(16, 185, 129, .12);
    color: #6EE7B7
}

.verify-steps {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
    text-align: left;
    border: 1px solid var(--fh-line);
    border-radius: 12px;
    overflow: hidden;
}

.verify-steps li {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem .9rem;
    font-size: .9rem;
    color: var(--fh-ink);
    border-bottom: 1px solid var(--fh-line);
}

.verify-steps li:last-child {
    border-bottom: 0
}

.verify-steps li i {
    color: var(--fh-primary);
    font-size: 1.15rem
}

[data-theme="dark"] .verify-steps {
    border-color: #1F2937
}

[data-theme="dark"] .verify-steps li {
    border-color: #1F2937
}

.verify-hint {
    display: flex !important;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 1.25rem;
}

.verify-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    font-size: .85rem;
    gap: .5rem;
    flex-wrap: wrap;
}

.verify-actions a {
    text-decoration: none
}

.verify-actions a:hover {
    text-decoration: underline
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background: var(--fh-primary);
    border-color: var(--fh-primary);
    box-shadow: 0 6px 16px rgba(16, 185, 129, .25);
}

.btn-cs {
    padding: 7px 14px !important;
}

.btn-cse {
    padding: 10px 14px !important;
    font-size: 13px;
}

.btn-cse.signin {
    color: var(--fh-ink);
    background: transparent;
    border: 1px solid var(--fh-line);
}

.btn-cse.signin:hover {
    background-color: var(--fh-bg);
    color: var(--fh-ink);
    border-color: var(--fh-line);
    transform: translateY(-1px);
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.alink {
    color: var(--fh-primary-700);
    text-decoration: none;
    transition: color .2s ease;
}

.alink:hover {
    color: var(--fh-primary-700);
    text-decoration: underline;
}

/* ============== TOAST (lightweight, premium) ============== */
#fh-toast-container {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.fh-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--fh-white);
    color: var(--fh-ink);
    border: 1px solid var(--fh-line);
    border-left: 4px solid var(--fh-muted);
    border-radius: 12px;
    padding: 13px 18px;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
    font-family: var(--fh-font-display);
    font-size: .9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: auto;
}

.fh-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.fh-toast i {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.fh-toast-success { border-left-color: var(--fh-primary); }
.fh-toast-success i { color: var(--fh-primary); }

.fh-toast-error { border-left-color: #EF4444; }
.fh-toast-error i { color: #EF4444; }

.fh-toast-info { border-left-color: #3B82F6; }
.fh-toast-info i { color: #3B82F6; }

[data-theme="dark"] .fh-toast {
    background: #111827;
    border-color: #1F2937;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.w-30{
    width: 30% !important;
}
