/* ===== SetuFlow Landing — Salesforce-inspired B2B (What is CRM style) ===== */
/* Reference: https://www.salesforce.com/crm/what-is-crm/ — clean hierarchy, stats, trust */

:root {
    --landing-bg: #ffffff;
    --landing-bg-alt: #f8fafc;
    --landing-text: #0f172a;
    --landing-text-muted: #64748b;
    --landing-primary: #0176d3;
    --landing-primary-hover: #014486;
    --landing-primary-light: rgba(1, 118, 211, 0.08);
    --landing-accent: #0ea5e9;
    --landing-border: #e2e8f0;
    --landing-section-label: #64748b;
    --landing-stat-value: #0f172a;
    --landing-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --landing-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --landing-radius: 12px;
    --landing-radius-lg: 16px;
}

.landing-page {
    min-height: 100vh;
    background: var(--landing-bg);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ----- Nav (sticky, blur, Salesforce-like) ----- */
.landing-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--landing-border);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.landing-nav.scrolled {
    box-shadow: var(--landing-shadow);
}

.landing-logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--landing-primary);
}

.landing-tagline {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    font-weight: 500;
}

.landing-nav-link {
    color: var(--landing-text);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.landing-nav-link:hover {
    color: var(--landing-primary);
}

.landing-cta-nav {
    font-weight: 600;
}

/* ----- Section label (eyebrow) — "What we'll cover" style ----- */
.landing-section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--landing-section-label);
    margin-bottom: 0.5rem;
}

/* ----- Main ----- */
.landing-main {
    flex: 1;
}

/* ----- Section spacing (generous like Salesforce) ----- */
.landing-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .landing-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.landing-section-alt {
    background: var(--landing-bg-alt);
}

/* ----- Hero (headline + sub + CTAs; bg image from images/hero-bridge.png) ----- */
.landing-hero {
    padding-top: 3rem;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.88) 50%, rgba(255, 255, 255, 0.94) 100%),
                      url('/images/hero-bridge.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .landing-hero {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }
}

.landing-hero-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--landing-text);
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero-sub {
    font-size: 1.125rem;
    color: var(--landing-text-muted);
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.landing-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.landing-hero-cta .btn-primary {
    background: var(--landing-primary);
    border-color: var(--landing-primary);
}

.landing-hero-cta .btn-primary:hover {
    background: var(--landing-primary-hover);
    border-color: var(--landing-primary-hover);
}

/* Hero image placeholder (add img with .landing-hero-img) */
.landing-hero-media {
    margin-top: 2.5rem;
    border-radius: var(--landing-radius-lg);
    overflow: hidden;
    box-shadow: var(--landing-shadow-lg);
    background: var(--landing-bg-alt);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text-muted);
    font-size: 0.875rem;
}

.landing-hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

.landing-trust-bar {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--landing-border);
    font-size: 0.875rem;
    color: var(--landing-text-muted);
}

.landing-logo-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
    margin-top: 1rem;
    opacity: 0.75;
}

/* ----- Stats bar (Salesforce-style +30% blocks) ----- */
.landing-stats {
    background: var(--landing-bg);
    padding: 2rem 0;
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.landing-stat-item {
    text-align: center;
    padding: 0.75rem;
}

.landing-stat-value {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--landing-primary);
    line-height: 1.2;
    display: block;
}

.landing-stat-label {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ----- Flow visual (abstract) ----- */
.landing-flow-visual {
    height: 100px;
    margin: 2rem auto;
    max-width: 360px;
    background: linear-gradient(90deg, var(--landing-primary) 0%, rgba(1, 118, 211, 0.25) 50%, var(--landing-accent) 100%);
    border-radius: 50px;
    opacity: 0.35;
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    animation: landing-flow-pulse 4s ease-in-out infinite;
}

@keyframes landing-flow-pulse {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.5; transform: scaleX(1.02); }
}

/* ----- Section headings (consistent hierarchy) ----- */
.landing-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--landing-text);
}

.landing-section .lead,
.landing-section .text-muted.mx-auto {
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* ----- Pillars / cards ----- */
.landing-pillar {
    border-radius: var(--landing-radius-lg);
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--landing-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.landing-pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow-lg);
    border-color: rgba(1, 118, 211, 0.2);
}

.landing-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--landing-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
    margin-bottom: 1rem;
}

.landing-pillar-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--landing-text);
}

.landing-pillar-desc {
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.55;
}

/* ----- Timeline / steps ----- */
.landing-step {
    text-align: center;
    padding: 1rem;
}

.landing-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--landing-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.landing-step-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--landing-text);
}

.landing-step-desc {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
    line-height: 1.5;
}

/* ----- Accordion ----- */
.landing-accordion .accordion-button {
    font-weight: 600;
    color: var(--landing-text);
    background: #fff;
    border: 1px solid var(--landing-border);
}

.landing-accordion .accordion-button:not(.collapsed) {
    background: var(--landing-primary-light);
    border-color: var(--landing-primary);
    color: var(--landing-primary);
}

.landing-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(1, 118, 211, 0.2);
}

.landing-accordion .accordion-body {
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
}

/* ----- Testimonials ----- */
.landing-testimonial {
    background: #fff;
    border-radius: var(--landing-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--landing-border);
    height: 100%;
    transition: box-shadow 0.25s ease;
}

.landing-testimonial:hover {
    box-shadow: var(--landing-shadow-lg);
}

.landing-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.landing-testimonial-quote {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--landing-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.landing-testimonial-author {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--landing-text);
}

.landing-testimonial-role {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
}

/* ----- FAQ ----- */
.landing-faq .accordion-button {
    font-size: 1rem;
    font-weight: 500;
}

/* ----- Final CTA ----- */
.landing-final-cta {
    background: linear-gradient(135deg, var(--landing-primary) 0%, #0ea5e9 100%);
    color: #fff;
    padding: 4rem 1.5rem;
    border-radius: var(--landing-radius-lg);
    text-align: center;
}

.landing-final-cta .form-control {
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--landing-radius);
}

.landing-final-cta .btn-light {
    border-radius: var(--landing-radius);
    font-weight: 600;
}

/* ----- Footer ----- */
.landing-footer {
    background: var(--landing-text);
    color: #94a3b8;
}

.landing-footer .landing-logo-text {
    color: #fff;
}

.landing-footer a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.landing-footer a:hover {
    color: #fff;
}

/* ----- Feature grid (Features page) ----- */
.landing-feature-card {
    border-radius: var(--landing-radius-lg);
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--landing-border);
    height: 100%;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-feature-card:hover {
    box-shadow: var(--landing-shadow-lg);
    border-color: var(--landing-primary);
}

.landing-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--landing-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
    margin-bottom: 1rem;
}

.landing-feature-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--landing-text);
}

.landing-feature-desc {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
    line-height: 1.5;
}

.landing-sticky-nav {
    position: sticky;
    top: 56px;
    background: #fff;
    border-bottom: 1px solid var(--landing-border);
    z-index: 10;
    padding: 0.5rem 0;
}

.landing-sticky-nav .nav-link {
    color: var(--landing-text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.landing-sticky-nav .nav-link:hover,
.landing-sticky-nav .nav-link.active {
    color: var(--landing-primary);
    background: var(--landing-primary-light);
}

/* ----- Image placeholders (for later assets) ----- */
.landing-img-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
    border-radius: var(--landing-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text-muted);
    font-size: 0.8125rem;
    text-align: center;
    padding: 2rem;
    min-height: 180px;
}

/* ----- Smooth scroll (when JS runs) ----- */
@media (prefers-reduced-motion: no-preference) {
    .landing-page {
        scroll-behavior: smooth;
    }
}

/* ============================================================
   LP2 — Proneck-inspired redesign (home / index page only).
   Scoped via .lp2- prefix so the rest of the landing pages
   (Features, Pricing, How It Works, Resources) keep their look.
   ============================================================ */

:root {
    --lp2-ink: #0e0e0e;
    --lp2-ink-soft: #2a2a2a;
    --lp2-muted: #5b5b5b;
    --lp2-line: #ececec;
    --lp2-stage: #ece7fb;
    --lp2-stage-soft: #f3f0fc;
    --lp2-peach: #fbd6cd;
    --lp2-peach-ink: #c8543c;
    --lp2-mint: #c7ecd9;
    --lp2-paper: #ffffff;
    --lp2-shadow-sm: 0 4px 16px rgba(15, 15, 30, 0.06);
    --lp2-shadow-md: 0 12px 40px rgba(20, 16, 60, 0.08);
    --lp2-shadow-lg: 0 24px 60px rgba(20, 16, 60, 0.12);
}

.lp2-hero {
    padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
    overflow: hidden;
}

.lp2-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .lp2-hero-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: clamp(2rem, 4vw, 4rem);
    }
}

.lp2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--lp2-line);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lp2-ink-soft);
    background: var(--lp2-paper);
    letter-spacing: 0.02em;
    text-transform: none;
}

.lp2-eyebrow .lp2-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}

.lp2-hero-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--lp2-ink);
    margin: 1rem 0 1.25rem;
}

.lp2-hero-title .lp2-underline {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.lp2-hero-title .lp2-underline::after {
    content: '';
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 0.05em;
    height: 0.42em;
    background: rgba(122, 92, 255, 0.22);
    border-radius: 3px;
    z-index: -1;
}

.lp2-hero-sub {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--lp2-muted);
    max-width: 38rem;
    margin-bottom: 1.75rem;
}

.lp2-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

.lp2-btn-dark {
    background: var(--lp2-ink);
    color: #fff;
    border: 1px solid var(--lp2-ink);
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.lp2-btn-dark:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--lp2-shadow-md);
}

.lp2-btn-ghost {
    background: transparent;
    color: var(--lp2-ink);
    border: 1px solid var(--lp2-line);
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.lp2-btn-ghost:hover {
    border-color: var(--lp2-ink);
    background: var(--lp2-stage-soft);
    color: var(--lp2-ink);
}

.lp2-btn-ghost .lp2-btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--lp2-ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.lp2-integrations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp2-integrations-label {
    font-size: 0.78rem;
    color: var(--lp2-muted);
    font-weight: 500;
}

.lp2-integration-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    color: var(--lp2-ink-soft);
    opacity: 0.85;
}

.lp2-integration-logo {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lp2-ink-soft);
}

/* ----- Hero mockup stage ----- */
.lp2-stage {
    position: relative;
    background: var(--lp2-stage);
    border-radius: 28px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp2-stage::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(122, 92, 255, 0.18);
    border-radius: 22px;
    pointer-events: none;
}

.lp2-mock-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--lp2-shadow-md);
    padding: 1.1rem 1.1rem 1.25rem;
    position: relative;
}

.lp2-mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.lp2-mock-title {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--lp2-ink);
}

.lp2-mock-avatars {
    display: inline-flex;
}

.lp2-mock-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(135deg, #c7ecd9, #7a5cff);
    margin-left: -6px;
    font-size: 0.62rem;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp2-mock-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}

.lp2-mock-col-head {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--lp2-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.lp2-mock-section {
    background: #faf9fd;
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    margin-bottom: 0.6rem;
}

.lp2-mock-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--lp2-ink);
    margin-bottom: 0.4rem;
}

.lp2-mock-bar {
    height: 6px;
    border-radius: 4px;
    background: #ececec;
    margin-bottom: 0.3rem;
}

.lp2-mock-bar.is-fill {
    background: linear-gradient(90deg, #7a5cff, #b9a6ff);
    width: 70%;
}

.lp2-mock-bar.is-half {
    width: 45%;
    background: #d6cdfb;
}

.lp2-mock-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    color: var(--lp2-muted);
    padding: 0.35rem 0;
    border-top: 1px solid #f1eef8;
}

.lp2-mock-row:first-child {
    border-top: 0;
}

.lp2-mock-row .lp2-mock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7a5cff;
    flex-shrink: 0;
}

.lp2-mock-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #efeafd;
    color: #4a3acc;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.66rem;
    font-weight: 600;
}

/* ----- Floating accent cards around mockup ----- */
.lp2-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    box-shadow: var(--lp2-shadow-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lp2-ink);
}

.lp2-float-tl {
    top: -10px;
    right: 18px;
    background: #7a5cff;
    color: #fff;
}

.lp2-float-tl .lp2-float-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.lp2-float-bl {
    bottom: 30px;
    left: -14px;
    background: var(--lp2-peach);
    color: var(--lp2-peach-ink);
}

.lp2-float-bl .lp2-float-icon {
    background: rgba(200, 84, 60, 0.14);
    color: var(--lp2-peach-ink);
}

.lp2-float-br {
    bottom: -10px;
    right: -8px;
    background: #fff;
}

.lp2-float-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--lp2-stage-soft);
    color: #4a3acc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .lp2-stage { min-height: 380px; padding: 1.25rem; }
    .lp2-float-tl { right: 8px; }
    .lp2-float-bl { left: 4px; bottom: 18px; }
    .lp2-float-br { right: 4px; }
}

/* ----- Section header (centered, Proneck style) ----- */
.lp2-sec-header {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.5rem;
}

.lp2-sec-title {
    font-weight: 700;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--lp2-ink);
}

.lp2-sec-sub {
    font-size: 1.0625rem;
    color: var(--lp2-muted);
    margin-top: 0.75rem;
}

/* ----- Feature cards ----- */
.lp2-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lp2-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lp2-feature-card {
    background: #fff;
    border: 1px solid var(--lp2-line);
    border-radius: 18px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp2-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp2-shadow-md);
    border-color: #d8d0f7;
}

.lp2-feature-card-head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.lp2-feature-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--lp2-ink);
    margin-bottom: 0.5rem;
}

.lp2-feature-card-desc {
    color: var(--lp2-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 32rem;
}

.lp2-feature-card-visual {
    background: var(--lp2-stage-soft);
    border-radius: 14px;
    padding: 1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp2-mini-cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 100%;
    max-width: 280px;
}

.lp2-mini-cal-cell {
    aspect-ratio: 1;
    background: #fff;
    border-radius: 4px;
    font-size: 0.6rem;
    color: var(--lp2-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.lp2-mini-cal-cell.is-active {
    background: #7a5cff;
    color: #fff;
}

.lp2-mini-cal-cell.is-pending {
    background: var(--lp2-peach);
    color: var(--lp2-peach-ink);
}

.lp2-mini-list {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 10px;
    padding: 0.75rem;
    box-shadow: var(--lp2-shadow-sm);
}

.lp2-mini-list-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0;
    font-size: 0.78rem;
    color: var(--lp2-ink-soft);
    border-top: 1px solid #f3f0fa;
}

.lp2-mini-list-item:first-child {
    border-top: 0;
}

.lp2-mini-list-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--lp2-stage-soft);
    color: #4a3acc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ============================================================
   SFH — SetuFlow Home (consumer-friendly redesign).
   Full pastel-gradient design system used by Index.razor only.
   Other landing pages keep the existing .landing-* styles.
   ============================================================ */

:root {
    --sfh-paper: #faf7f4;
    --sfh-paper-2: #f3eee8;
    --sfh-ink: #181818;
    --sfh-ink-soft: #2c2c2c;
    --sfh-muted: #6b6b6b;
    --sfh-line: #ececec;

    --sfh-coral: #ff8fa3;
    --sfh-coral-2: #ffb89a;
    --sfh-pink: #fbd6cd;
    --sfh-lavender: #a593ff;
    --sfh-lavender-2: #8c7bff;
    --sfh-purple-soft: #efeafd;
    --sfh-mint: #7ee3c0;
    --sfh-mint-2: #4fd1a8;
    --sfh-mint-soft: #d6f4e8;
    --sfh-yellow: #ffe08a;
    --sfh-yellow-soft: #fff5d4;

    --sfh-shadow-sm: 0 4px 14px rgba(20, 16, 60, 0.05);
    --sfh-shadow-md: 0 14px 40px rgba(20, 16, 60, 0.08);
    --sfh-shadow-lg: 0 30px 70px rgba(20, 16, 60, 0.14);
    --sfh-radius-sm: 14px;
    --sfh-radius-md: 22px;
    --sfh-radius-lg: 32px;
}

.sfh {
    background: var(--sfh-paper);
    color: var(--sfh-ink);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sfh-section {
    padding: clamp(3rem, 7vw, 6rem) 0;
    position: relative;
}

.sfh-section-tight {
    padding: clamp(2rem, 5vw, 4rem) 0;
}

/* Section headers */
.sfh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sfh-ink-soft);
    background: #fff;
    border: 1px solid var(--sfh-line);
    box-shadow: var(--sfh-shadow-sm);
}

.sfh-eyebrow .sfh-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sfh-coral);
    box-shadow: 0 0 0 3px rgba(255, 143, 163, 0.18);
}

.sfh-sec-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--sfh-ink);
    margin: 1rem 0 0.75rem;
}

.sfh-sec-title .sfh-mark {
    background: linear-gradient(120deg, transparent 0 5%, rgba(255, 143, 163, 0.35) 5% 95%, transparent 95% 100%);
    padding: 0 0.15em;
    border-radius: 4px;
}

.sfh-sec-sub {
    font-size: 1.0625rem;
    color: var(--sfh-muted);
    line-height: 1.6;
    max-width: 42rem;
}

.sfh-center {
    text-align: center;
    margin: 0 auto 3rem;
}

.sfh-center .sfh-sec-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Buttons ===== */
.sfh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 12px;
    padding: 0.95rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.sfh-btn-dark {
    background: var(--sfh-ink);
    color: #fff;
    border-color: var(--sfh-ink);
}

.sfh-btn-dark:hover {
    background: #2a2a2a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--sfh-shadow-md);
}

.sfh-btn-coral {
    background: linear-gradient(135deg, var(--sfh-coral) 0%, #ff7794 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 143, 163, 0.35);
}

.sfh-btn-coral:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(255, 143, 163, 0.45);
}

.sfh-btn-ghost {
    background: #fff;
    color: var(--sfh-ink);
    border: 1px solid var(--sfh-line);
}

.sfh-btn-ghost:hover {
    border-color: var(--sfh-ink);
    color: var(--sfh-ink);
    background: #fff;
}

.sfh-btn-ghost .sfh-btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--sfh-ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* ===== HERO ===== */
.sfh-hero {
    padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3.5rem, 8vw, 7rem);
    position: relative;
    overflow: hidden;
}

.sfh-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 143, 163, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.sfh-hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(165, 147, 255, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.sfh-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .sfh-hero-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: clamp(2rem, 4vw, 4rem);
    }
}

.sfh-hero-title {
    font-weight: 800;
    font-size: clamp(2.5rem, 5.6vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--sfh-ink);
    margin: 1.25rem 0 1.5rem;
}

.sfh-hero-title .sfh-grad {
    background: linear-gradient(135deg, #ff8fa3 0%, #a593ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sfh-hero-sub {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--sfh-muted);
    max-width: 38rem;
    margin-bottom: 2rem;
}

.sfh-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.sfh-hero-trust {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.85rem;
    color: var(--sfh-muted);
}

.sfh-avatar-stack {
    display: inline-flex;
}

.sfh-avatar-stack > * {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    background: linear-gradient(135deg, #ff8fa3, #a593ff);
    color: #fff;
    font-weight: 700;
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sfh-avatar-stack > *:first-child { margin-left: 0; }
.sfh-avatar-stack > *:nth-child(2) { background: linear-gradient(135deg, #ffe08a, #ff8fa3); }
.sfh-avatar-stack > *:nth-child(3) { background: linear-gradient(135deg, #7ee3c0, #4fd1a8); }
.sfh-avatar-stack > *:nth-child(4) { background: linear-gradient(135deg, #a593ff, #8c7bff); }

/* Hero phone-cluster mockup */
.sfh-hero-stage {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfh-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(2px);
    opacity: 0.85;
}

.sfh-blob-1 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at 30% 30%, #ffd2b8 0%, #ff8fa3 60%, transparent 80%);
    top: 6%;
    right: -10%;
}

.sfh-blob-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 60% 40%, #d2c5ff 0%, #a593ff 60%, transparent 80%);
    bottom: 4%;
    left: -10%;
}

.sfh-phone {
    position: relative;
    width: 280px;
    height: 540px;
    background: #fff;
    border-radius: 38px;
    box-shadow: var(--sfh-shadow-lg);
    border: 8px solid #1a1a1a;
    overflow: hidden;
    z-index: 2;
}

.sfh-phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.2rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sfh-ink);
}

.sfh-phone-greet {
    padding: 0.4rem 1.1rem 1rem;
    color: var(--sfh-muted);
    font-size: 0.78rem;
}

.sfh-phone-greet b {
    color: var(--sfh-ink);
    font-size: 1.1rem;
    display: block;
    margin-top: 2px;
}

.sfh-phone-card-coral {
    margin: 0 1rem;
    background: linear-gradient(135deg, #ffb6c1 0%, #ff8fa3 60%, #ffb89a 100%);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sfh-phone-card-coral::after {
    content: '';
    position: absolute;
    right: -16px;
    top: -16px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
    border-radius: 50%;
}

.sfh-phone-card-coral .sfh-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.95;
}

.sfh-phone-card-coral .sfh-card-headline {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0.35rem 0 0.6rem;
}

.sfh-phone-card-coral .sfh-card-cta {
    background: var(--sfh-ink);
    color: #fff;
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
}

.sfh-phone-section {
    padding: 0.9rem 1rem 0.4rem;
}

.sfh-phone-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sfh-ink);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sfh-phone-section-title small {
    font-weight: 500;
    color: var(--sfh-muted);
    font-size: 0.65rem;
}

.sfh-phone-row {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.sfh-phone-pill {
    flex: 1;
    background: #f4f1eb;
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--sfh-ink);
}

.sfh-phone-pill.is-coral { background: #ffe1e0; color: #c44060; }
.sfh-phone-pill.is-mint { background: var(--sfh-mint-soft); color: #1f7d59; }
.sfh-phone-pill.is-lav { background: var(--sfh-purple-soft); color: #5a48b5; }

.sfh-phone-thumb {
    background: var(--sfh-paper-2);
    border-radius: 12px;
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.45rem;
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.sfh-phone-thumb-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ffb89a, #ff8fa3);
}

.sfh-phone-thumb:nth-child(2) .sfh-phone-thumb-img { background: linear-gradient(135deg, #c5b8ff, #8c7bff); }

.sfh-phone-thumb-text {
    flex: 1;
    min-width: 0;
}

.sfh-phone-thumb-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sfh-ink);
    margin: 0;
}

.sfh-phone-thumb-meta {
    font-size: 0.6rem;
    color: var(--sfh-muted);
}

/* Floating cards around hero phone */
.sfh-float {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 0.8rem 1rem;
    box-shadow: var(--sfh-shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--sfh-ink);
}

.sfh-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.sfh-float-tl {
    top: 8%;
    left: 4%;
    background: #fff;
}

.sfh-float-tl .sfh-float-icon { background: var(--sfh-mint-soft); color: var(--sfh-mint-2); }

.sfh-float-tr {
    top: 18%;
    right: 0%;
    background: linear-gradient(135deg, var(--sfh-lavender) 0%, var(--sfh-lavender-2) 100%);
    color: #fff;
}

.sfh-float-tr .sfh-float-icon { background: rgba(255, 255, 255, 0.18); color: #fff; }

.sfh-float-br {
    bottom: 10%;
    right: 4%;
    background: #fff;
}

.sfh-float-br .sfh-float-icon { background: var(--sfh-yellow-soft); color: #b08400; }

.sfh-float-bl {
    bottom: 16%;
    left: 0%;
    background: linear-gradient(135deg, var(--sfh-coral) 0%, #ff7d97 100%);
    color: #fff;
}

.sfh-float-bl .sfh-float-icon { background: rgba(255, 255, 255, 0.22); color: #fff; }

@media (max-width: 575.98px) {
    .sfh-hero-stage { min-height: 480px; }
    .sfh-float-tl { top: 4%; left: 0; }
    .sfh-float-tr { top: 12%; right: 0; }
    .sfh-float-bl { bottom: 8%; left: 0; }
    .sfh-float-br { bottom: 4%; right: 0; }
}

/* ===== Trust strip ===== */
.sfh-trust {
    background: #fff;
    border-top: 1px solid var(--sfh-line);
    border-bottom: 1px solid var(--sfh-line);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.sfh-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2.25rem;
    color: var(--sfh-ink-soft);
    font-weight: 600;
    font-size: 0.9rem;
}

.sfh-trust-row .sfh-trust-label {
    color: var(--sfh-muted);
    font-weight: 500;
    font-size: 0.82rem;
}

.sfh-trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--sfh-ink-soft);
    opacity: 0.85;
}

/* ===== Stats cards (gradient) ===== */
.sfh-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .sfh-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.sfh-stat-card {
    border-radius: var(--sfh-radius-md);
    padding: 1.5rem 1.25rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--sfh-shadow-sm);
}

.sfh-stat-card.is-coral { background: linear-gradient(135deg, #ff8fa3 0%, #ff6f8e 100%); }
.sfh-stat-card.is-lav { background: linear-gradient(135deg, #a593ff 0%, #8c7bff 100%); }
.sfh-stat-card.is-mint { background: linear-gradient(135deg, #7ee3c0 0%, #4fd1a8 100%); color: #0e2d24; }
.sfh-stat-card.is-yellow { background: linear-gradient(135deg, #ffe08a 0%, #ffc54e 100%); color: #4d3700; }

.sfh-stat-card::after {
    content: '';
    position: absolute;
    right: -28px;
    top: -28px;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.32) 0%, transparent 70%);
    border-radius: 50%;
}

.sfh-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.22);
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.sfh-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-top: 0.4rem;
}

.sfh-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* ===== Feature cards (3-up, gradient backgrounds) ===== */
.sfh-feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .sfh-feat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.sfh-feat-card {
    border-radius: var(--sfh-radius-md);
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--sfh-line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sfh-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sfh-shadow-md);
}

.sfh-feat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--sfh-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sfh-feat-icon.is-coral { background: linear-gradient(135deg, #ffd2c8, #ff8fa3); color: #fff; }
.sfh-feat-icon.is-lav { background: linear-gradient(135deg, #d6cdfb, #a593ff); color: #fff; }
.sfh-feat-icon.is-mint { background: linear-gradient(135deg, #cdf3e3, #7ee3c0); color: #0e3b2c; }
.sfh-feat-icon.is-yellow { background: linear-gradient(135deg, #fff1c0, #ffd96a); color: #4d3700; }
.sfh-feat-icon.is-pink { background: linear-gradient(135deg, #ffe0e8, #ff8fa3); color: #b03960; }
.sfh-feat-icon.is-blue { background: linear-gradient(135deg, #d2dffc, #7e9bf2); color: #fff; }

.sfh-feat-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sfh-ink);
    margin-bottom: 0.5rem;
}

.sfh-feat-desc {
    color: var(--sfh-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.sfh-feat-link {
    color: var(--sfh-ink);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.sfh-feat-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.sfh-feat-link:hover {
    color: var(--sfh-coral);
}

.sfh-feat-link:hover::after {
    transform: translateX(4px);
}

/* ===== Steps row (4 cards, connected) ===== */
.sfh-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .sfh-steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sfh-step {
    background: #fff;
    border-radius: var(--sfh-radius-md);
    padding: 1.5rem;
    position: relative;
    border: 1px solid var(--sfh-line);
}

.sfh-step-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--sfh-ink);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sfh-step:nth-child(1) .sfh-step-num { background: linear-gradient(135deg, #ff8fa3, #ff6f8e); }
.sfh-step:nth-child(2) .sfh-step-num { background: linear-gradient(135deg, #a593ff, #8c7bff); }
.sfh-step:nth-child(3) .sfh-step-num { background: linear-gradient(135deg, #7ee3c0, #4fd1a8); color: #0e2d24; }
.sfh-step:nth-child(4) .sfh-step-num { background: linear-gradient(135deg, #ffe08a, #ffc54e); color: #4d3700; }

.sfh-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--sfh-ink);
}

.sfh-step-desc {
    color: var(--sfh-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== Showcase block (large pastel pad with mockup + callouts) ===== */
.sfh-showcase {
    background: linear-gradient(135deg, #fff1ec 0%, #f0e8ff 100%);
    border-radius: var(--sfh-radius-lg);
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

.sfh-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .sfh-showcase-grid {
        grid-template-columns: 1fr 1.05fr;
    }
}

.sfh-showcase-mock {
    background: #fff;
    border-radius: var(--sfh-radius-md);
    padding: 1.25rem;
    box-shadow: var(--sfh-shadow-md);
    position: relative;
}

.sfh-showcase-mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--sfh-line);
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
}

.sfh-showcase-mock-title {
    font-weight: 700;
    color: var(--sfh-ink);
    font-size: 0.95rem;
}

.sfh-mock-tabs {
    display: inline-flex;
    background: var(--sfh-paper-2);
    border-radius: 999px;
    padding: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

.sfh-mock-tab {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    color: var(--sfh-muted);
}

.sfh-mock-tab.is-active {
    background: var(--sfh-ink);
    color: #fff;
}

.sfh-mock-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.sfh-mock-col {
    background: var(--sfh-paper-2);
    border-radius: 12px;
    padding: 0.6rem;
    min-height: 220px;
}

.sfh-mock-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sfh-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.6rem;
    display: flex;
    justify-content: space-between;
}

.sfh-mock-col h4 .sfh-pill {
    background: #fff;
    color: var(--sfh-ink-soft);
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    font-size: 0.62rem;
}

.sfh-mock-task {
    background: #fff;
    border-radius: 10px;
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.45rem;
    box-shadow: var(--sfh-shadow-sm);
}

.sfh-mock-task-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sfh-ink);
    margin-bottom: 0.25rem;
}

.sfh-mock-task-meta {
    font-size: 0.6rem;
    color: var(--sfh-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sfh-mock-tag {
    display: inline-block;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sfh-mock-tag.is-coral { background: #ffe1e0; color: #c44060; }
.sfh-mock-tag.is-mint { background: var(--sfh-mint-soft); color: #1f7d59; }
.sfh-mock-tag.is-lav { background: var(--sfh-purple-soft); color: #5a48b5; }

.sfh-callouts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sfh-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--sfh-radius-sm);
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.sfh-callout-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sfh-callout h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--sfh-ink);
}

.sfh-callout p {
    color: var(--sfh-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== Pricing teaser (3 plan cards) ===== */
.sfh-plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .sfh-plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sfh-plan {
    background: #fff;
    border-radius: var(--sfh-radius-md);
    padding: 2rem 1.5rem;
    border: 1px solid var(--sfh-line);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sfh-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--sfh-shadow-md);
}

.sfh-plan.is-featured {
    background: linear-gradient(160deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    border-color: transparent;
    transform: scale(1.02);
}

.sfh-plan-name {
    font-weight: 700;
    font-size: 1rem;
    color: inherit;
}

.sfh-plan.is-featured .sfh-plan-name { color: #fff; }

.sfh-plan-badge {
    display: inline-block;
    background: var(--sfh-coral);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.sfh-plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0.75rem 0 0.25rem;
    color: inherit;
    letter-spacing: -0.02em;
}

.sfh-plan-price small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sfh-muted);
}

.sfh-plan.is-featured .sfh-plan-price small { color: rgba(255, 255, 255, 0.7); }

.sfh-plan-tag {
    color: var(--sfh-muted);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.sfh-plan.is-featured .sfh-plan-tag { color: rgba(255, 255, 255, 0.75); }

.sfh-plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.sfh-plan ul li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    color: var(--sfh-ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.sfh-plan.is-featured ul li { color: rgba(255, 255, 255, 0.92); }

.sfh-plan ul li::before {
    content: '✓';
    color: var(--sfh-mint-2);
    font-weight: 800;
    flex-shrink: 0;
}

.sfh-plan.is-featured ul li::before { color: var(--sfh-coral); }

/* ===== Testimonials cards ===== */
.sfh-testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .sfh-testi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sfh-testi {
    background: #fff;
    border-radius: var(--sfh-radius-md);
    padding: 1.5rem;
    border: 1px solid var(--sfh-line);
    display: flex;
    flex-direction: column;
}

.sfh-testi.is-coral {
    background: linear-gradient(160deg, #fff1ec 0%, #ffe1e0 100%);
    border-color: transparent;
}

.sfh-testi.is-lav {
    background: linear-gradient(160deg, #f3eefe 0%, #e3daff 100%);
    border-color: transparent;
}

.sfh-testi.is-mint {
    background: linear-gradient(160deg, #ebf9f3 0%, #d6f4e8 100%);
    border-color: transparent;
}

.sfh-testi-quote {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--sfh-ink);
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.sfh-testi-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.sfh-testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8fa3, #a593ff);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sfh-testi-name {
    font-weight: 700;
    color: var(--sfh-ink);
    font-size: 0.92rem;
    margin: 0;
}

.sfh-testi-role {
    font-size: 0.78rem;
    color: var(--sfh-muted);
}

/* ===== Companion product (Digital Card) ===== */
.sfh-companion {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: var(--sfh-radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sfh-companion::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 143, 163, 0.45) 0%, transparent 65%);
    border-radius: 50%;
}

.sfh-companion::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 30%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(165, 147, 255, 0.4) 0%, transparent 65%);
    border-radius: 50%;
}

.sfh-companion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .sfh-companion-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.sfh-companion-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sfh-companion h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 1rem 0 0.75rem;
}

.sfh-companion p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 36rem;
}

.sfh-companion-card {
    background: linear-gradient(135deg, #ff8fa3 0%, #ffb89a 50%, #ffe08a 100%);
    border-radius: var(--sfh-radius-md);
    padding: 1.5rem;
    color: #1a1a1a;
    box-shadow: var(--sfh-shadow-lg);
    position: relative;
}

.sfh-companion-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sfh-companion-card-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0.4rem 0 0.25rem;
}

.sfh-companion-card-role {
    color: #5a3300;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.sfh-companion-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.sfh-companion-card-cell {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
}

.sfh-companion-card-cell .sfh-cc-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #5a3300;
    opacity: 0.85;
}

.sfh-companion-card-cell .sfh-cc-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* ===== FAQ accordion ===== */
.sfh-faq {
    max-width: 48rem;
    margin: 0 auto;
}

.sfh-faq-item {
    background: #fff;
    border-radius: var(--sfh-radius-sm);
    border: 1px solid var(--sfh-line);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.sfh-faq-item.is-open {
    box-shadow: var(--sfh-shadow-md);
    border-color: var(--sfh-coral);
}

.sfh-faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 1.1rem 1.25rem;
    font-weight: 700;
    color: var(--sfh-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    cursor: pointer;
}

.sfh-faq-trigger .sfh-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--sfh-paper-2);
    color: var(--sfh-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sfh-faq-item.is-open .sfh-faq-icon {
    background: var(--sfh-coral);
    color: #fff;
    transform: rotate(45deg);
}

.sfh-faq-body {
    padding: 0 1.25rem 1.1rem;
    color: var(--sfh-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Final CTA ===== */
.sfh-finalcta {
    background: linear-gradient(135deg, #ff8fa3 0%, #a593ff 100%);
    border-radius: var(--sfh-radius-lg);
    padding: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sfh-finalcta::before,
.sfh-finalcta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.32) 0%, transparent 70%);
}

.sfh-finalcta::before { top: -100px; left: -60px; width: 320px; height: 320px; }
.sfh-finalcta::after { bottom: -120px; right: -80px; width: 360px; height: 360px; }

.sfh-finalcta h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    position: relative;
}

.sfh-finalcta p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.0625rem;
    margin: 0 auto 2rem;
    max-width: 42rem;
    position: relative;
}

.sfh-finalcta-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sfh-finalcta-form input {
    flex: 1 1 240px;
    max-width: 320px;
    padding: 0.95rem 1.1rem;
    border-radius: 12px;
    border: 0;
    background: #fff;
    font-size: 0.95rem;
    color: var(--sfh-ink);
    box-shadow: var(--sfh-shadow-md);
}

.sfh-finalcta-form input:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

.sfh-finalcta-form .sfh-btn-dark {
    box-shadow: var(--sfh-shadow-md);
}

.sfh-finalcta-fineprint {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-top: 1rem;
    position: relative;
}

/* ============================================================
   SFL — SetuFlow Login (split coral / white card on dark page).
   Mirrors the dribbble-style reference: dark frame, centered
   card, coral left panel with diagonal stripes and vertical
   tabs, white right panel with logo + form + social login.
   ============================================================ */

:root {
    --sfl-dark: #2a2c30;
    --sfl-coral: #f66c7e;
    --sfl-coral-2: #f8a3ad;
    --sfl-coral-soft: #fdd7dd;
    --sfl-coral-deep: #e85567;
    --sfl-text: #2a2a2a;
    --sfl-muted: #94a0ad;
    --sfl-line: #ececec;
    --sfl-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --sfl-shadow-card: 0 14px 40px rgba(20, 16, 60, 0.08);
}

.sfl-page {
    background: var(--sfl-dark);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sfl-card {
    width: 100%;
    max-width: 1080px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--sfl-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 620px;
}

@media (min-width: 768px) {
    .sfl-card {
        grid-template-columns: 360px 1fr;
    }
}

@media (min-width: 1100px) {
    .sfl-card {
        grid-template-columns: 420px 1fr;
    }
}

/* ----- Left coral panel ----- */
.sfl-side {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sfl-coral) 0%, var(--sfl-coral-deep) 100%);
    color: #fff;
    min-height: 220px;
    isolation: isolate;
}

@media (min-width: 768px) {
    .sfl-side { min-height: 100%; }
}

.sfl-side::before,
.sfl-side::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Diagonal stripe layers — light pink wedges sliding from top-left */
.sfl-side::before {
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.32) 22%, transparent 22%),
        linear-gradient(125deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.18) 38%, transparent 38%),
        linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 55%, transparent 55%);
    background-repeat: no-repeat;
    background-size: 140% 140%;
    background-position: -10% -10%;
    z-index: 0;
}

/* Subtle deep-coral diagonal accent from bottom-right */
.sfl-side::after {
    background: linear-gradient(305deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 30%, transparent 30%);
    z-index: 0;
}

/* The white concave bridge that bites into the coral panel from the right edge */
.sfl-bridge {
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 240px;
    background: #fff;
    border-radius: 60px 0 0 60px;
    z-index: 2;
    display: none;
    box-shadow: -8px 0 18px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .sfl-bridge { display: block; }
}

.sfl-tabs {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .sfl-tabs {
        position: absolute;
        right: 28px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 1.75rem;
        padding: 0;
        align-items: flex-end;
    }
}

.sfl-tab {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.sfl-tab:hover {
    color: #fff;
}

.sfl-tab.is-active {
    color: var(--sfl-coral-deep);
    background: #fff;
    border-radius: 999px 0 0 999px;
    padding: 0.6rem 1.6rem 0.6rem 1.2rem;
    z-index: 3;
}

@media (max-width: 767.98px) {
    .sfl-tab.is-active {
        color: #fff;
        background: rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        padding: 0.45rem 1rem;
    }
}

/* ----- Right white panel ----- */
.sfl-form {
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.sfl-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sfl-brand-mark {
    display: inline-block;
    width: 96px;
    height: 96px;
    margin-bottom: 0.5rem;
}

.sfl-brand-title {
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.32em;
    color: var(--sfl-coral);
    margin: 0;
}

.sfl-brand-sub {
    font-size: 0.85rem;
    color: var(--sfl-muted);
    margin-top: 0.35rem;
}

.sfl-error {
    background: #fef3c7;
    color: #92400e;
    border-radius: 10px;
    padding: 0.7rem 0.95rem;
    margin: 0 auto 1rem;
    max-width: 420px;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
}

.sfl-form-body {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
}

.sfl-field {
    position: relative;
    border-bottom: 2px solid var(--sfl-line);
    padding: 0.4rem 0 0.4rem 2.4rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s ease;
}

.sfl-field:focus-within {
    border-color: var(--sfl-coral);
}

.sfl-field-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sfl-muted);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.sfl-field input {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.55rem 0;
    font-size: 1rem;
    color: var(--sfl-text);
    outline: none;
}

.sfl-field input::placeholder {
    color: #b9c1ca;
}

.sfl-field .validation-message {
    position: absolute;
    left: 2.4rem;
    bottom: -1.25rem;
    color: var(--sfl-coral-deep);
    font-size: 0.78rem;
}

.sfl-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.sfl-forgot {
    color: var(--sfl-coral-deep);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.01em;
}

.sfl-forgot:hover {
    color: var(--sfl-coral);
    text-decoration: underline;
}

.sfl-submit {
    background: linear-gradient(135deg, var(--sfl-coral) 0%, var(--sfl-coral-deep) 100%);
    color: #fff;
    border: 0;
    padding: 0.85rem 2.25rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(246, 108, 126, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 46px;
}

.sfl-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(246, 108, 126, 0.45);
}

.sfl-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ----- Footer / social login ----- */
.sfl-footer {
    grid-column: 1 / -1;
    background: #f7f8fa;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--sfl-line);
}

@media (min-width: 768px) {
    .sfl-footer {
        justify-content: flex-end;
        padding-right: clamp(2rem, 5vw, 3.5rem);
    }
}

.sfl-footer-label {
    color: var(--sfl-muted);
    font-weight: 600;
    font-size: 0.92rem;
}

.sfl-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--sfl-line);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: #fff;
    color: var(--sfl-text);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.15s ease;
    cursor: pointer;
}

.sfl-social:hover {
    border-color: #cdd3da;
    color: var(--sfl-text);
    transform: translateY(-1px);
}

.sfl-social-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sfl-signup-hint {
    text-align: center;
    color: var(--sfl-muted);
    font-size: 0.9rem;
    margin: 1.5rem 0 0;
}

.sfl-signup-hint a {
    color: var(--sfl-coral-deep);
    font-weight: 700;
    text-decoration: none;
}

.sfl-signup-hint a:hover {
    text-decoration: underline;
}

/* ============================================================
   SFN — SetuFlow Nav (top floating pill nav, shared by all
   landing pages: home, features, pricing, how-it-works, etc).
   Matches the sfh- coral / lavender / dark CTA language.
   ============================================================ */

:root {
    --sfn-ink: #181818;
    --sfn-muted: #5b5b5b;
    --sfn-line: #ececec;
    --sfn-coral: #ff8fa3;
    --sfn-coral-deep: #ff6f8e;
    --sfn-paper: #faf7f4;
}

.sfn {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.85rem 0;
    background: rgba(250, 247, 244, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sfn.is-scrolled,
.sfn.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--sfn-line);
    box-shadow: 0 6px 24px rgba(20, 16, 60, 0.05);
}

.sfn-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.sfn-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--sfn-ink);
    flex-shrink: 0;
}

.sfn-brand:hover {
    color: var(--sfn-ink);
}

.sfn-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, #ff8fa3 0%, #a593ff 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 20px rgba(255, 143, 163, 0.3);
}

.sfn-brand-text {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--sfn-ink);
}

.sfn-brand-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--sfn-muted);
    margin-left: 0.35rem;
}

/* Centre links: floating pill */
.sfn-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--sfn-line);
    border-radius: 999px;
    padding: 0.3rem;
    box-shadow: 0 2px 8px rgba(20, 16, 60, 0.04);
}

@media (min-width: 992px) {
    .sfn-links { display: inline-flex; }
}

.sfn-link {
    color: var(--sfn-ink);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.sfn-link:hover {
    background: var(--sfn-paper);
    color: var(--sfn-ink);
}

.sfn-link.is-active {
    background: var(--sfn-ink);
    color: #fff;
}

.sfn-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sfn-btn-text {
    color: var(--sfn-ink);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    transition: background 0.2s ease;
    display: none;
}

@media (min-width: 768px) {
    .sfn-btn-text { display: inline-block; }
}

.sfn-btn-text:hover {
    background: var(--sfn-paper);
    color: var(--sfn-ink);
}

.sfn-btn-cta {
    background: var(--sfn-ink);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.6rem 1.15rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

.sfn-btn-cta:hover {
    background: #2a2a2a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.sfn-btn-cta::after {
    content: '→';
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.sfn-btn-cta:hover::after {
    transform: translateX(3px);
}

/* Mobile menu */
.sfn-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--sfn-line);
    background: #fff;
    color: var(--sfn-ink);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.sfn-toggle:hover { background: var(--sfn-paper); }

@media (min-width: 992px) {
    .sfn-toggle { display: none; }
}

.sfn-mobile {
    display: none;
    margin-top: 0.85rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--sfn-line);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(20, 16, 60, 0.08);
}

.sfn-mobile.is-open {
    display: block;
}

@media (min-width: 992px) {
    .sfn-mobile.is-open { display: none; }
}

.sfn-mobile a {
    display: block;
    padding: 0.7rem 0.85rem;
    color: var(--sfn-ink);
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.sfn-mobile a:hover {
    background: var(--sfn-paper);
}

.sfn-mobile hr {
    border: 0;
    border-top: 1px solid var(--sfn-line);
    margin: 0.5rem 0;
}

.sfn-mobile .sfn-btn-cta {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ============================================================
   SFF — SetuFlow Footer (matches the new pastel home aesthetic).
   Used by all landing pages via LandingLayout.
   ============================================================ */

.sff {
    background: linear-gradient(180deg, #faf7f4 0%, #f3eee8 100%);
    border-top: 1px solid var(--sfn-line);
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--sfn-ink);
    margin-top: auto;
}

.sff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .sff-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.sff-brand-block .sfn-brand {
    margin-bottom: 1rem;
}

.sff-tag {
    color: var(--sfn-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 28rem;
    margin: 0 0 1.25rem;
}

.sff-newsletter {
    display: flex;
    gap: 0.5rem;
    max-width: 360px;
}

.sff-newsletter input {
    flex: 1;
    border: 1px solid var(--sfn-line);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: var(--sfn-ink);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.sff-newsletter input:focus {
    border-color: var(--sfn-ink);
}

.sff-newsletter button {
    background: var(--sfn-ink);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.7rem 1.15rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.sff-newsletter button:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.sff-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sfn-ink);
    margin: 0 0 0.85rem;
}

.sff-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sff-col ul li {
    margin-bottom: 0.55rem;
}

.sff-col ul li a {
    color: var(--sfn-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.sff-col ul li a:hover {
    color: var(--sfn-ink);
}

.sff-col ul li a .sff-pill {
    font-size: 0.62rem;
    font-weight: 800;
    background: var(--sfn-coral);
    color: #fff;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sff-bottom {
    border-top: 1px solid var(--sfn-line);
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: var(--sfn-muted);
    font-size: 0.85rem;
}

.sff-bottom-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.sff-bottom-meta a {
    color: var(--sfn-muted);
    text-decoration: none;
}

.sff-bottom-meta a:hover {
    color: var(--sfn-ink);
}

.sff-socials {
    display: inline-flex;
    gap: 0.5rem;
}

.sff-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--sfn-line);
    color: var(--sfn-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.sff-social:hover {
    background: var(--sfn-ink);
    color: #fff;
    border-color: var(--sfn-ink);
    transform: translateY(-2px);
}

.sff-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    border: 1px solid var(--sfn-line);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sfn-ink);
}

.sff-guarantee i {
    color: #16a34a;
}

/* ============================================================
   SFP — page hero / shared inner-page helpers (Features,
   Pricing, How It Works, Resources, legal pages).
   Reuse the .sfh CSS variables so everything stays aligned.
   ============================================================ */

.sfh-page {
    background: var(--sfh-paper);
    color: var(--sfh-ink);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100%;
}

.sfh-page-hero {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sfh-page-hero::before {
    content: '';
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 540px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 143, 163, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.sfh-page-hero > * { position: relative; z-index: 1; }

.sfh-page-hero h1 {
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--sfh-ink);
    margin: 1rem auto 0.85rem;
    max-width: 22ch;
}

.sfh-page-hero .sfh-sec-sub {
    margin: 0 auto 1.5rem;
    max-width: 38rem;
}

.sfh-page-hero-cta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

/* Sticky tab nav for long pages (Features) */
.sfh-tabs-row {
    position: sticky;
    top: 64px;
    z-index: 30;
    background: rgba(250, 247, 244, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sfh-line);
    padding: 0.6rem 0;
    margin-bottom: 1rem;
}

.sfh-tabs-row nav {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sfh-tabs-row nav::-webkit-scrollbar { display: none; }

.sfh-tabs-row a {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--sfh-ink-soft);
    text-decoration: none;
    background: transparent;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.sfh-tabs-row a:hover {
    background: #fff;
    color: var(--sfh-ink);
}

.sfh-tabs-row a.is-active {
    background: var(--sfh-ink);
    color: #fff;
}

/* Pricing comparison table */
.sfh-compare {
    background: #fff;
    border-radius: var(--sfh-radius-md);
    border: 1px solid var(--sfh-line);
    overflow: hidden;
    box-shadow: var(--sfh-shadow-sm);
}

.sfh-compare-table {
    width: 100%;
    border-collapse: collapse;
}

.sfh-compare-table th,
.sfh-compare-table td {
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--sfh-line);
    font-size: 0.92rem;
    color: var(--sfh-ink-soft);
    vertical-align: middle;
}

.sfh-compare-table thead th {
    background: var(--sfh-paper-2);
    color: var(--sfh-ink);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.sfh-compare-table thead th:first-child { text-align: left; }

.sfh-compare-table tbody td:not(:first-child) {
    text-align: center;
}

.sfh-compare-table tbody tr:last-child td { border-bottom: 0; }

.sfh-compare-table tbody td .sfh-yes { color: #16a34a; font-weight: 800; }
.sfh-compare-table tbody td .sfh-no { color: #cdd3da; font-weight: 800; }

.sfh-compare-table tbody tr.sfh-row-group td {
    background: var(--sfh-paper-2);
    font-weight: 700;
    color: var(--sfh-ink);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-align: left;
}

@media (max-width: 767.98px) {
    .sfh-compare { overflow-x: auto; }
    .sfh-compare-table { min-width: 640px; }
}

/* HowItWorks: large numbered story rows */
.sfh-story-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .sfh-story-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .sfh-story-row.is-flip > :first-child { order: 2; }
}

.sfh-story-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff8fa3, #ff6f8e);
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(255, 143, 163, 0.3);
}

.sfh-story-row:nth-child(2) .sfh-story-num { background: linear-gradient(135deg, #a593ff, #8c7bff); box-shadow: 0 8px 20px rgba(165, 147, 255, 0.3); }
.sfh-story-row:nth-child(3) .sfh-story-num { background: linear-gradient(135deg, #7ee3c0, #4fd1a8); color: #0e2d24; box-shadow: 0 8px 20px rgba(126, 227, 192, 0.3); }
.sfh-story-row:nth-child(4) .sfh-story-num { background: linear-gradient(135deg, #ffe08a, #ffc54e); color: #4d3700; box-shadow: 0 8px 20px rgba(255, 197, 78, 0.3); }

.sfh-story-row h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.sfh-story-row p {
    color: var(--sfh-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.sfh-story-row ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.sfh-story-row ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--sfh-ink-soft);
    font-size: 0.95rem;
}

.sfh-story-row ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: var(--sfh-mint-2);
    font-weight: 800;
}

.sfh-story-visual {
    background: linear-gradient(135deg, #fff1ec 0%, #f0e8ff 100%);
    border-radius: var(--sfh-radius-md);
    padding: 1.5rem;
    box-shadow: var(--sfh-shadow-sm);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfh-story-row:nth-child(2) .sfh-story-visual { background: linear-gradient(135deg, #f3eefe 0%, #fff1ec 100%); }
.sfh-story-row:nth-child(3) .sfh-story-visual { background: linear-gradient(135deg, #ebf9f3 0%, #fff5d4 100%); }
.sfh-story-row:nth-child(4) .sfh-story-visual { background: linear-gradient(135deg, #fff5d4 0%, #f3eefe 100%); }

/* Resource cards */
.sfh-resource-card {
    background: #fff;
    border: 1px solid var(--sfh-line);
    border-radius: var(--sfh-radius-md);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sfh-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sfh-shadow-md);
    border-color: #d8d0f7;
}

.sfh-resource-cover {
    height: 140px;
    background: linear-gradient(135deg, #ffd2c8, #ff8fa3);
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}

.sfh-resource-card:nth-child(2) .sfh-resource-cover { background: linear-gradient(135deg, #d6cdfb, #a593ff); }
.sfh-resource-card:nth-child(3) .sfh-resource-cover { background: linear-gradient(135deg, #cdf3e3, #7ee3c0); color: #0e3b2c; }
.sfh-resource-card:nth-child(4) .sfh-resource-cover { background: linear-gradient(135deg, #fff1c0, #ffd96a); color: #4d3700; }
.sfh-resource-card:nth-child(5) .sfh-resource-cover { background: linear-gradient(135deg, #ffe0e8, #ff8fa3); color: #b03960; }
.sfh-resource-card:nth-child(6) .sfh-resource-cover { background: linear-gradient(135deg, #d2dffc, #7e9bf2); }

.sfh-resource-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sfh-resource-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sfh-coral);
    margin-bottom: 0.4rem;
}

.sfh-resource-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sfh-ink);
    margin: 0 0 0.45rem;
    line-height: 1.3;
}

.sfh-resource-desc {
    color: var(--sfh-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem;
    flex-grow: 1;
}

.sfh-resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--sfh-muted);
    font-size: 0.8rem;
}

/* Legal page typography (Privacy / Terms / Refunds) */
.sfh-legal {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--sfh-radius-md);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--sfh-shadow-sm);
    border: 1px solid var(--sfh-line);
}

.sfh-legal h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--sfh-ink);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.sfh-legal h2:first-child { margin-top: 0; }

.sfh-legal p,
.sfh-legal li {
    color: var(--sfh-ink-soft);
    line-height: 1.7;
    font-size: 0.98rem;
}

.sfh-legal ul, .sfh-legal ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.sfh-legal a {
    color: var(--sfh-coral);
    font-weight: 600;
    text-decoration: none;
}

.sfh-legal a:hover { text-decoration: underline; }

.sfh-legal-meta {
    color: var(--sfh-muted);
    font-size: 0.85rem;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sfh-line);
}

/* ============================================================
   SFI — SetuFlow Inbox (authenticated lead-list page).
   Aligns the post-login dashboard with the marketing aesthetic
   — modern card list, avatars, channel pills, KPI strip.
   ============================================================ */

:root {
    --sfi-paper: #faf7f4;
    --sfi-card: #ffffff;
    --sfi-ink: #181818;
    --sfi-ink-soft: #2c2c2c;
    --sfi-muted: #6b6b6b;
    --sfi-line: #ececec;
    --sfi-coral: #ff8fa3;
    --sfi-coral-deep: #ff6f8e;
    --sfi-lavender: #a593ff;
    --sfi-mint: #4fd1a8;
    --sfi-yellow: #ffc54e;
    --sfi-blue: #7e9bf2;
    --sfi-shadow-sm: 0 4px 14px rgba(20, 16, 60, 0.05);
    --sfi-shadow-md: 0 14px 40px rgba(20, 16, 60, 0.08);
    --sfi-radius: 16px;
}

.sfi {
    background: var(--sfi-paper);
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Page header (Inbox title + Add Lead) ===== */
.sfi-header {
    background: #fff;
    border: 1px solid var(--sfi-line);
    border-radius: var(--sfi-radius);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--sfi-shadow-sm);
    margin-bottom: 1rem;
}

.sfi-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.sfi-title-block h1 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: var(--sfi-ink);
    letter-spacing: -0.015em;
}

.sfi-title-block p {
    margin: 0.1rem 0 0;
    color: var(--sfi-muted);
    font-size: 0.85rem;
}

.sfi-cta {
    background: var(--sfi-ink);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 0.65rem 1.1rem;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sfi-cta:hover { background: #2a2a2a; color: #fff; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,0,0,0.22); }

/* ===== KPI strip (4 gradient cards) ===== */
.sfi-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .sfi-kpis { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.sfi-kpi {
    background: #fff;
    border: 1px solid var(--sfi-line);
    border-radius: var(--sfi-radius);
    padding: 1rem 1.1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.sfi-kpi:hover { transform: translateY(-2px); box-shadow: var(--sfi-shadow-md); }

.sfi-kpi-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.sfi-kpi.is-coral .sfi-kpi-icon { background: linear-gradient(135deg, #ff8fa3, #ff6f8e); }
.sfi-kpi.is-lav .sfi-kpi-icon { background: linear-gradient(135deg, #a593ff, #8c7bff); }
.sfi-kpi.is-mint .sfi-kpi-icon { background: linear-gradient(135deg, #7ee3c0, #4fd1a8); color:#0e2d24; }
.sfi-kpi.is-yellow .sfi-kpi-icon { background: linear-gradient(135deg, #ffe08a, #ffc54e); color:#4d3700; }

.sfi-kpi-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--sfi-ink);
    line-height: 1;
    letter-spacing: -0.02em;
}

.sfi-kpi-label {
    font-size: 0.78rem;
    color: var(--sfi-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ===== Search bar + scope + chips ===== */
.sfi-search {
    position: relative;
    flex: 1 1 240px;
    min-width: 220px;
}

.sfi-search input {
    width: 100%;
    border: 1px solid var(--sfi-line);
    border-radius: 999px;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    font-size: 0.9rem;
    background: #fff;
    color: var(--sfi-ink);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sfi-search input:focus { border-color: var(--sfi-ink); box-shadow: 0 0 0 4px rgba(24,24,24,0.06); }

.sfi-search i {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sfi-muted);
}

.sfi-scope {
    display: inline-flex;
    background: var(--sfi-paper);
    border: 1px solid var(--sfi-line);
    border-radius: 999px;
    padding: 3px;
    font-size: 0.82rem;
    font-weight: 600;
}

.sfi-scope button {
    border: 0;
    background: transparent;
    color: var(--sfi-ink-soft);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.sfi-scope button.is-active { background: var(--sfi-ink); color: #fff; }

.sfi-stage-rail {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 0;
    margin: 0 -0.25rem;
}

.sfi-stage-rail::-webkit-scrollbar { display: none; }

.sfi-stage-pill {
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--sfi-line);
    background: #fff;
    color: var(--sfi-ink-soft);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.sfi-stage-pill:hover { background: var(--sfi-paper); }
.sfi-stage-pill.is-active { background: var(--sfi-ink); color: #fff; border-color: var(--sfi-ink); }

.sfi-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--sfi-line);
    background: #fff;
    color: var(--sfi-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease;
    flex-shrink: 0;
}

.sfi-icon-btn:hover { background: var(--sfi-paper); }

/* ===== Lead list (cards) ===== */
.sfi-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.sfi-day-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sfi-muted);
    padding: 0.85rem 0.25rem 0.45rem;
}

.sfi-lead {
    background: #fff;
    border: 1px solid var(--sfi-line);
    border-radius: var(--sfi-radius);
    padding: 0.85rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: flex-start;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
    min-width: 0;
}

.sfi-lead:hover {
    border-color: #d8d0f7;
    box-shadow: var(--sfi-shadow-sm);
    transform: translateY(-1px);
}

.sfi-lead.is-selected {
    border-color: var(--sfi-coral);
    background: #fff5f6;
}

.sfi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, #ff8fa3, #a593ff);
}

.sfi-avatar[data-channel="WhatsApp"] { background: linear-gradient(135deg, #4fd1a8, #1f7d59); }
.sfi-avatar[data-channel="IndiaMART"] { background: linear-gradient(135deg, #ff8fa3, #ff6f8e); }
.sfi-avatar[data-channel="Form"] { background: linear-gradient(135deg, #a593ff, #8c7bff); }
.sfi-avatar[data-channel="Email"] { background: linear-gradient(135deg, #7e9bf2, #4a6df0); }
.sfi-avatar[data-channel="Google"] { background: linear-gradient(135deg, #ffc54e, #ff7a59); color:#4d3700; }
.sfi-avatar[data-channel="Instagram"] { background: linear-gradient(135deg, #ff8fa3, #ffc54e); }
.sfi-avatar[data-channel="Facebook"] { background: linear-gradient(135deg, #7e9bf2, #4f46e5); }
.sfi-avatar[data-channel="Manual"] { background: linear-gradient(135deg, #94a3b8, #475569); }

.sfi-avatar-channel {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.sfi-lead-body { min-width: 0; }

.sfi-lead-row1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.sfi-lead-name {
    margin: 0;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--sfi-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.sfi-pill {
    font-size: 0.66rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

.sfi-pill.is-channel-WhatsApp { background:#d6f4e8; color:#1f7d59; }
.sfi-pill.is-channel-IndiaMART { background:#ffe1e0; color:#c44060; }
.sfi-pill.is-channel-Form { background:#efeafd; color:#5a48b5; }
.sfi-pill.is-channel-Email { background:#dfe6fb; color:#1d3a92; }
.sfi-pill.is-channel-Google { background:#fff1c0; color:#7d5d00; }
.sfi-pill.is-channel-Instagram { background:#ffe0e8; color:#b03960; }
.sfi-pill.is-channel-Facebook { background:#dfe6fb; color:#1d3a92; }
.sfi-pill.is-channel-Manual { background:#e7eaee; color:#475569; }
.sfi-pill.is-product { background:#d6f4e8; color:#1f7d59; }
.sfi-pill.is-tag { background:var(--sfi-paper); color:var(--sfi-ink-soft); border:1px solid var(--sfi-line); }
.sfi-pill.is-assignee { background:#e7eaee; color:#3a4250; max-width: 140px; overflow:hidden; text-overflow:ellipsis; }

.sfi-lead-msg {
    margin: 0 0 0.4rem;
    color: var(--sfi-muted);
    font-size: 0.86rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.sfi-lead-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.sfi-stage-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23181818' d='M5 6L0 0h10z'/></svg>") no-repeat right 0.65rem center;
    border: 1px solid var(--sfi-line);
    border-radius: 999px;
    padding: 0.25rem 1.5rem 0.25rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--sfi-ink);
    cursor: pointer;
    max-width: 160px;
}

.sfi-stage-select:focus { outline: 2px solid var(--sfi-ink); outline-offset: 1px; }

.sfi-lead-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
    min-width: 0;
}

.sfi-time {
    color: var(--sfi-muted);
    font-size: 0.72rem;
    white-space: nowrap;
}

.sfi-quick-actions {
    display: inline-flex;
    gap: 0.25rem;
}

.sfi-quick-actions a,
.sfi-quick-actions button {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid var(--sfi-line);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sfi-ink-soft);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.sfi-quick-actions a:hover,
.sfi-quick-actions button:hover {
    transform: translateY(-1px);
}

.sfi-quick-actions .is-wa:hover { background: #d6f4e8; color: #1f7d59; border-color: #c5edd8; }
.sfi-quick-actions .is-call:hover { background: #efeafd; color: #5a48b5; border-color: #ddd2fa; }
.sfi-quick-actions .is-assign:hover { background: var(--sfi-paper); }

.sfi-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    accent-color: var(--sfi-coral-deep);
    cursor: pointer;
}

/* ===== Bulk action toolbar ===== */
.sfi-bulkbar {
    background: var(--sfi-ink);
    color: #fff;
    border-radius: var(--sfi-radius);
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
    box-shadow: var(--sfi-shadow-md);
}

.sfi-bulkbar .sfi-bulk-actions {
    display: inline-flex;
    gap: 0.4rem;
}

.sfi-bulkbar button {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.sfi-bulkbar button:hover { background: rgba(255,255,255,0.18); }

/* ===== Empty / loading states ===== */
.sfi-empty {
    background: #fff;
    border: 1px dashed var(--sfi-line);
    border-radius: var(--sfi-radius);
    padding: 3rem 1.5rem;
    text-align: center;
}

.sfi-empty-art {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #fff1ec 0%, #f3eefe 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--sfi-coral-deep);
}

.sfi-empty h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0.5rem 0 0.4rem;
    color: var(--sfi-ink);
}

.sfi-empty p {
    color: var(--sfi-muted);
    margin: 0 auto 1.25rem;
    max-width: 36ch;
    font-size: 0.92rem;
    line-height: 1.55;
}

.sfi-skeleton {
    background: linear-gradient(90deg, #f4f1eb 25%, #ece7e0 37%, #f4f1eb 63%);
    background-size: 400% 100%;
    border-radius: 8px;
    animation: sfi-shimmer 1.4s ease infinite;
    height: 12px;
}

@keyframes sfi-shimmer {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

.sfi-lead-skeleton {
    background:#fff;
    border: 1px solid var(--sfi-line);
    border-radius: var(--sfi-radius);
    padding: 0.95rem;
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sfi-lead-skeleton-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(90deg, #f4f1eb 25%, #ece7e0 37%, #f4f1eb 63%);
    background-size: 400% 100%;
    animation: sfi-shimmer 1.4s ease infinite;
    flex-shrink: 0;
}

.sfi-lead-skeleton-body { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }

/* ===== Responsive (tighten mobile) ===== */
@media (max-width: 575.98px) {
    .sfi-lead { padding: 0.75rem; gap: 0.6rem; grid-template-columns: 38px 1fr auto; }
    .sfi-avatar { width: 38px; height: 38px; font-size: 0.85rem; }
    .sfi-lead-name { font-size: 0.93rem; }
    .sfi-stage-select { max-width: 130px; font-size: 0.7rem; }
    .sfi-quick-actions a,
    .sfi-quick-actions button { width: 32px; height: 32px; }
    .sfi-pill.is-assignee { display: none; }
}


