/* ==========================================================================
   FAMECLOCK BUSINESS - CREATORS ALIGNED MARBLE / GLASS UI
   ========================================================================== */

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

:root {
    --b2b-accent: #60a5fa !important;
    --b2b-accent-strong: #3b82f6;
    --b2b-accent-glow: rgba(96, 165, 250, 0.18);
    --b2b-gold: #d97706;
    --b2b-danger: #e11d48;
    --text-main: #1e293b !important;
    --text-muted: #64748b !important;

    --glass-bg: rgba(255, 255, 255, 0.52);
    --glass-border: rgba(255, 255, 255, 0.88);
    --glass-shadow: 0 18px 36px rgba(96, 165, 250, 0.10), inset 0 0 16px rgba(255, 255, 255, 0.62);
}

body.business-page {
    background: linear-gradient(-45deg, #ffffff, #eef3f7, #ffffff, #e0eaef, #ffffff);
    background-size: 400% 400%;
    animation: MarbleFlow 15s ease infinite;
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

body.business-page::before,
body.business-page::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    filter: blur(10px);
}

body.business-page::before {
    top: 88px;
    left: -150px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, rgba(96, 165, 250, 0) 72%);
}

body.business-page::after {
    right: -120px;
    bottom: 80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, rgba(217, 119, 6, 0) 72%);
}

@keyframes MarbleFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body.business-page .cyber-grid,
body.business-page .soft-vignette,
body.business-page #sciFiBg,
body.business-page .b2b-bg-fx {
    display: none !important;
}

.b2b-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(6px);
}

.b2b-orb--one {
    width: 220px;
    height: 220px;
    top: 150px;
    right: 6%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.18) 0%,rgba(96, 165, 250, 0) 72%);
}

.b2b-orb--two {
    width: 180px;
    height: 180px;
    left: 7%;
    bottom: 16%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.14) 0%, rgba(217, 119, 6, 0) 72%);
}

.b2b-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 132px 0 80px;
    position: relative;
    z-index: 1;
}

.b2b-panel,
.b2b-section-shell,
.b2b-comp-card,
.b2b-card,
.b2b-case,
.wf-item {
    background: var(--glass-bg);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.b2b-hero,
.b2b-section-shell {
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.b2b-hero::before,
.b2b-section-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.54), rgba(255,255,255,0.08));
    pointer-events: none;
}

.b2b-hero {
    padding: 42px 36px;
    text-align: center;
    margin-bottom: 24px;
}

.b2b-badge,
.b2b-subheadline,
.b2b-btn-primary,
.comp-label,
.comp-row p,
.b2b-card p,
.b2b-case p,
.wf-item p {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.b2b-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(96, 165, 250, 0.18);
    color: var(--b2b-accent);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(96, 165, 250, 0.08);
}

.b2b-badge i {
    font-size: 0.8rem;
}

.b2b-headline,
.b2b-section-title,
.comp-header h3,
.b2b-card h3,
.b2b-case h4 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.b2b-headline {
    font-size: clamp(2.1rem, 4.8vw, 3.3rem);
    font-weight: 900;
    line-height: 1.06;
    margin: 18px auto 16px;
    max-width: 920px;
    color: var(--text-main);
    text-shadow: 0 8px 22px rgba(255, 255, 255, 0.35);
}

.b2b-subheadline {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.72;
}

.b2b-hero-actions {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.b2b-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.98) 0%, rgba(59, 130, 246, 1) 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(96, 165, 250, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.b2b-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(96, 165, 250, 0.28);
    filter: brightness(1.04);
}

.b2b-btn-primary i {
    font-size: 0.9rem;
}

.b2b-section {
    margin-top: 24px;
}

.b2b-section-shell {
    padding: 30px 26px 28px;
}

.b2b-section-title {
    text-align: center;
    font-size: 1.14rem;
    font-weight: 900;
    margin: 0 0 24px;
    color: var(--text-main);
}

.b2b-section-title::after {
    content: "";
    display: block;
    width: 84px;
    height: 3px;
    border-radius: 999px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, rgba(191, 219, 254, 0.85), rgba(96, 165, 250, 0.98), rgba(217, 119, 6, 0.28));
}

.b2b-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.b2b-comp-card {
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.b2b-comp-card:hover,
.b2b-card:hover,
.b2b-case:hover,
.wf-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px rgba(96, 165, 250, 0.14), inset 0 0 16px rgba(255,255,255,0.62);
}

.b2b-comp-card.old-way {
    background: rgba(248, 250, 252, 0.82);
    border-color: rgba(148, 163, 184, 0.22);
}

.b2b-comp-card.new-way {
    background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(240, 249, 255, 0.92) 100%);
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: 0 22px 38px rgba(96, 165, 250, 0.12), inset 0 0 18px rgba(255,255,255,0.7);
}

.comp-header {
    padding: 26px 22px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.82);
    position: relative;
}

.comp-header::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.65), rgba(148, 163, 184, 0.15));
}

.b2b-comp-card.new-way .comp-header::before {
    background: linear-gradient(90deg, rgba(191, 219, 254, 0.9), rgba(96, 165, 250, 0.98), rgba(96, 165, 250, 0.7));
}

.comp-header i {
    font-size: 2rem;
    margin-bottom: 14px;
}

.old-way .comp-header i,
.old-way .comp-header h3 {
    color: #64748b;
}

.new-way .comp-header i {
    color: var(--b2b-accent);
}

.new-way .comp-header h3 {
    color: var(--text-main);
}

.comp-header h3 {
    font-size: 1rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.5;
}

.comp-body {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.comp-row {
    border-radius: 18px;
    padding: 18px 18px 17px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.b2b-comp-card.new-way .comp-row {
    border-color: rgba(96, 165, 250, 0.12);
}

.comp-row:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.08);
}

.comp-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.3;
}

.comp-row p {
    margin: 0;
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.72;
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.b2b-card {
    border-radius: 22px;
    padding: 24px 22px 22px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.b2b-card::before,
.b2b-case::before,
.wf-item::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #bfdbfe, rgba(96, 165, 250, 0.95));
}

.b2b-card:nth-child(2)::before,
.b2b-case:nth-child(2)::before,
.wf-item--accent::before {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.92), rgba(217, 119, 6, 0.14));
}

.b2b-card:nth-child(4)::before,
.b2b-case:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.95), rgba(96, 165, 250, 0.18));
}

.b2b-icon {
    width: 62px;
    height: 62px;
    margin: 0 0 18px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(96, 165, 250, 0.14);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.09);
}

.b2b-icon i {
    font-size: 1.45rem;
    color: var(--b2b-accent);
}

.b2b-card:nth-child(2) .b2b-icon i,
.b2b-card:nth-child(4) .b2b-icon i {
    color: var(--b2b-gold);
}

.b2b-card h3 {
    font-size: 0.94rem;
    margin: 0 0 12px;
    color: var(--text-main);
    line-height: 1.55;
}

.b2b-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.81rem;
    font-weight: 700;
    line-height: 1.75;
}

.b2b-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.b2b-case {
    border-radius: 22px;
    padding: 24px 20px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.b2b-case > i {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(96, 165, 250, 0.14);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.09);
    font-size: 1.4rem;
    color: var(--b2b-accent);
}

.b2b-case:nth-child(2) > i {
    color: var(--b2b-gold);
}

.b2b-case h4 {
    margin: 0 0 10px;
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.55;
}

.b2b-case p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.72;
}

.b2b-workflow-wrap {
    padding-bottom: 30px;
}

.b2b-workflow-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.wf-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 22px;
    padding: 20px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wf-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.88rem;
    font-weight: 900;
    color: #ffffff;
    background: var(--b2b-accent);
    box-shadow: 0 10px 18px rgba(96, 165, 250, 0.2);
    flex: 0 0 auto;
}

.wf-num--accent {
    background: var(--b2b-gold);
    box-shadow: 0 10px 18px rgba(217, 119, 6, 0.18);
}

.wf-item p {
    margin: 0;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.72;
}

.wf-item--accent p {
    color: var(--b2b-gold);
}

.b2b-badge--soft {
    background: rgba(255,255,255,0.74);
    border-color: rgba(96, 165, 250, 0.14);
    box-shadow: 0 8px 18px rgba(96, 165, 250, 0.08);
}

.b2b-discovery-shell {
    padding-top: 34px;
}

.b2b-discovery-head {
    text-align: center;
    position: relative;
    z-index: 1;
}

.b2b-discovery-head .b2b-badge {
    margin-bottom: 16px;
}

.b2b-discovery-intro {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: -4px auto 0;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.72;
}

.b2b-discovery-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.b2b-discovery-card {
    border-radius: 22px;
    padding: 24px 22px 22px;
    min-height: 100%;
    background: rgba(255,255,255,0.58);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1.5px solid rgba(255,255,255,0.88);
    box-shadow: var(--glass-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.b2b-discovery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px rgba(96, 165, 250, 0.14), inset 0 0 16px rgba(255,255,255,0.62);
}

.b2b-discovery-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(96, 165, 250, 0.14);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.09);
    color: var(--b2b-accent);
    font-size: 1.15rem;
}

.b2b-discovery-card h3 {
    margin: 0;
    color: var(--text-main);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.92rem;
    line-height: 1.5;
}

.b2b-discovery-card p {
    margin: 0;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.72;
}

.b2b-discovery-links {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

.b2b-discovery-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(96, 165, 250, 0.10);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.b2b-discovery-link:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.22);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.07);
}

.b2b-discovery-link span {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1.2;
}

.b2b-discovery-link i {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 1100px) {
    .b2b-grid,
    .b2b-discovery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .b2b-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .b2b-comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .b2b-container {
        width: min(100%, calc(100% - 22px));
        padding: 116px 0 64px;
    }

    .b2b-hero,
    .b2b-section-shell {
        border-radius: 24px;
    }

    .b2b-hero {
        padding: 34px 20px;
    }

    .b2b-section-shell {
        padding: 26px 18px;
    }

    .b2b-grid {
        grid-template-columns: 1fr;
    }

    .b2b-headline {
        font-size: clamp(1.72rem, 8vw, 2.35rem);
    }

    .b2b-subheadline,
    .comp-row p,
    .b2b-card p,
    .b2b-case p,
    .wf-item p {
        font-size: 0.78rem;
    }

    .b2b-section-title {
        font-size: 1rem;
    }

    .wf-item {
        align-items: flex-start;
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .b2b-btn-primary {
        width: 100%;
        padding: 0 18px;
    }

    .b2b-orb {
        display: none;
    }

    .wf-item {
        gap: 12px;
    }

    .wf-num {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   BUSINESS EXECUTIVE WOW PASS
   Premium enterprise / flagship authority alignment
   ========================================================================== */

:root {
    --b2b-premium-shadow: 0 30px 70px rgba(15, 23, 42, 0.10), 0 10px 24px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255,255,255,0.92), inset 0 0 0 1px rgba(15, 23, 42, 0.04);
    --b2b-premium-shadow-hover: 0 38px 88px rgba(15, 23, 42, 0.14), 0 16px 34px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255,255,255,0.96), inset 0 0 0 1px rgba(15, 23, 42, 0.05);
    --b2b-copy: #475569;
    --b2b-copy-strong: #334155;
    --b2b-focus-ring: 0 0 0 3px rgba(96, 165, 250, 0.22);
}

body.business-page {
    background:
        radial-gradient(circle at 50% -8%, rgba(96, 165, 250, 0.12), rgba(96, 165, 250, 0) 28%),
        radial-gradient(circle at 100% 100%, rgba(217, 119, 6, 0.08), rgba(217, 119, 6, 0) 24%),
        linear-gradient(180deg, #f8fbfd 0%, #eef4f7 44%, #ffffff 100%) !important;
    background-size: auto !important;
    animation: none !important;
    line-height: 1.65;
}

body.business-page::before {
    top: 110px;
    left: -120px;
    width: 320px;
    height: 320px;
    filter: blur(18px);
    background: radial-gradient(circle, rgba(96, 165, 250, 0.10) 0%, rgba(96, 165, 250, 0) 72%);
}

body.business-page::after {
    right: -110px;
    bottom: 80px;
    width: 300px;
    height: 300px;
    filter: blur(18px);
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, rgba(217, 119, 6, 0) 72%);
}

.b2b-orb {
    opacity: 0.72;
    filter: blur(14px);
}

.b2b-container {
    width: min(1240px, calc(100% - 40px));
    padding: 148px 0 88px;
}

.b2b-panel,
.b2b-section-shell,
.b2b-comp-card,
.b2b-card,
.b2b-case,
.wf-item,
.b2b-discovery-card {
    border: 1px solid rgba(255, 255, 255, 0.94) !important;
    box-shadow: var(--b2b-premium-shadow) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.b2b-hero,
.b2b-section-shell {
    border-radius: 30px;
}

.b2b-hero {
    position: relative;
    padding: 52px 52px 54px;
    margin-bottom: 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.16), rgba(96, 165, 250, 0) 42%),
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78)) !important;
    box-shadow: var(--b2b-premium-shadow-hover) !important;
}

.b2b-hero::before,
.b2b-section-shell::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.12));
}

.b2b-hero::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 0;
    height: 2px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(96,165,250,0.40), rgba(255,255,255,0));
    pointer-events: none;
}

.b2b-badge {
    padding: 12px 20px;
    border-color: rgba(96, 165, 250, 0.24);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.86));
    box-shadow: 0 14px 30px rgba(96, 165, 250, 0.12);
}

.b2b-badge i {
    font-size: 0.9rem;
}

.b2b-headline,
.b2b-section-title,
.comp-header h3,
.b2b-card h3,
.b2b-case h4,
.b2b-discovery-card h3 {
    text-wrap: balance;
}

.b2b-headline {
    max-width: 12ch;
    margin: 24px auto 16px;
    font-size: clamp(2.45rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 0 rgba(255,255,255,0.92);
}

.b2b-subheadline,
.comp-row p,
.b2b-card p,
.b2b-case p,
.wf-item p,
.b2b-discovery-intro,
.b2b-discovery-card p {
    font-family: 'Inter', 'Roboto', sans-serif;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--b2b-copy);
}

.b2b-subheadline,
.comp-row p,
.b2b-card p,
.b2b-case p,
.wf-item p,
.b2b-discovery-intro {
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.72;
}

.b2b-subheadline {
    max-width: 820px;
    color: var(--b2b-copy-strong);
}

.b2b-btn-primary {
    min-height: 56px;
    padding: 0 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.34);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease;
}

.b2b-btn-primary:hover,
.b2b-btn-primary:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.18);
    filter: brightness(1.03);
}

.b2b-btn-primary span,
.b2b-badge span,
.comp-label,
.b2b-discovery-link span {
    letter-spacing: 0.12em;
}

.b2b-section {
    margin-top: 28px;
}

.b2b-section-shell {
    padding: 34px 30px 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.70)) !important;
}

.b2b-section-title {
    font-size: 1.18rem;
    margin: 0 0 28px;
}

.b2b-section-title::after {
    margin-top: 16px;
}

.b2b-comparison-grid,
.b2b-grid,
.b2b-cases-grid,
.b2b-discovery-grid {
    gap: 20px;
}

.b2b-comp-card {
    border-radius: 24px;
    overflow: hidden;
}

.b2b-comp-card.old-way {
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,250,252,0.78));
    border-color: rgba(148, 163, 184, 0.18);
}

.b2b-comp-card.new-way {
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(239,246,255,0.86));
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: var(--b2b-premium-shadow-hover) !important;
}

.comp-header {
    padding: 28px 24px 22px;
}

.comp-header::before {
    height: 3px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.54), rgba(148, 163, 184, 0.12));
}

.b2b-comp-card.new-way .comp-header::before {
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(59,130,246,0.88), rgba(255,255,255,0));
}

.comp-header i {
    font-size: 2.1rem;
    margin-bottom: 16px;
}

.comp-header h3 {
    font-size: 1.02rem;
    line-height: 1.45;
}

.comp-body {
    padding: 20px;
    gap: 14px;
}

.comp-row {
    border-radius: 18px;
    padding: 18px 18px 17px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.86));
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.comp-row:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
}

.comp-label {
    margin-bottom: 8px;
    font-size: 0.72rem;
}

.b2b-card {
    border-radius: 24px;
    padding: 28px 24px 24px;
    min-height: 230px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.82));
}

.b2b-card::before,
.b2b-case::before,
.wf-item::before {
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(59,130,246,0.82), rgba(255,255,255,0));
}

.b2b-card:nth-child(2)::before,
.b2b-case:nth-child(2)::before,
.wf-item--accent::before {
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(217,119,6,0.76), rgba(255,255,255,0));
}

.b2b-card:nth-child(4)::before,
.b2b-case:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(96,165,250,0.74), rgba(255,255,255,0));
}

.b2b-card:hover,
.b2b-case:hover,
.wf-item:hover,
.b2b-discovery-card:hover,
.b2b-comp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--b2b-premium-shadow-hover) !important;
}

.b2b-icon,
.b2b-case > i,
.b2b-discovery-icon {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,249,0.88));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.b2b-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
}

.b2b-case > i {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.b2b-card h3 {
    font-size: 0.98rem;
    line-height: 1.5;
}

.b2b-card p {
    font-size: 0.92rem;
}

.b2b-case {
    border-radius: 24px;
    padding: 28px 22px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.82));
}

.b2b-case h4 {
    font-size: 0.92rem;
    line-height: 1.5;
}

.b2b-case p {
    font-size: 0.9rem;
}

.b2b-workflow-wrap {
    padding-bottom: 34px;
}

.b2b-workflow-list {
    gap: 16px;
    max-width: 980px;
}

.wf-item {
    border-radius: 24px;
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.82));
}

.wf-num {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.14);
}

.wf-item p {
    color: var(--b2b-copy-strong);
}

.wf-item--accent p {
    color: #9a6700;
}

.b2b-discovery-shell {
    padding-top: 38px;
}

.b2b-discovery-head .b2b-badge {
    margin-bottom: 18px;
}

.b2b-discovery-intro {
    max-width: 820px;
    margin-top: 2px;
}

.b2b-discovery-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 26px 24px 24px;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.88));
}

.b2b-discovery-card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 2px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(148,163,184,0.48), rgba(255,255,255,0));
    pointer-events: none;
}

.b2b-discovery-card:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(217,119,6,0.62), rgba(255,255,255,0));
}

.b2b-discovery-card:nth-child(2)::before,
.b2b-discovery-card:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(59,130,246,0.62), rgba(255,255,255,0));
}

.b2b-discovery-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    font-size: 1.15rem;
}

.b2b-discovery-card h3 {
    font-size: 0.94rem;
    line-height: 1.5;
}

.b2b-discovery-card p {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.68;
}

.b2b-discovery-links {
    gap: 10px;
}

.b2b-discovery-link {
    min-height: 50px;
    padding: 13px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.90));
    border-color: rgba(148, 163, 184, 0.16);
}

.b2b-discovery-link:hover,
.b2b-discovery-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.24);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.b2b-discovery-link i {
    font-size: 0.78rem;
}

.b2b-btn-primary:focus-visible,
.b2b-discovery-link:focus-visible,
.fc-ui-strip-v2--business .fc-ui-strip-v2__cta:focus-visible,
.fc-ui-strip-v2--business .fc-ui-strip-v2__card:focus-visible {
    outline: none;
    border-color: rgba(59, 130, 246, 0.42) !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.92), var(--b2b-focus-ring), 0 18px 34px rgba(15, 23, 42, 0.10) !important;
}

.fc-ui-strip-v2--business {
    margin-top: 28px;
}

.fc-ui-strip-v2--business .fc-ui-strip-v2__shell {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,250,252,0.74));
    border: 1px solid rgba(255,255,255,0.90);
    box-shadow: var(--b2b-premium-shadow);
}

.fc-ui-strip-v2--business .fc-ui-strip-v2__card,
.fc-ui-strip-v2--business .fc-ui-strip-v2__cta {
    border-radius: 18px;
}

@media (prefers-reduced-motion: reduce) {
    body.business-page {
        animation: none !important;
    }

    body.business-page::before,
    body.business-page::after,
    .b2b-orb {
        display: none !important;
    }

    .b2b-btn-primary,
    .b2b-comp-card,
    .b2b-card,
    .b2b-case,
    .wf-item,
    .b2b-discovery-card,
    .b2b-discovery-link,
    .fc-ui-strip-v2--business .fc-ui-strip-v2__cta,
    .fc-ui-strip-v2--business .fc-ui-strip-v2__card {
        transition: none !important;
    }
}

@media (max-width: 1100px) {
    .b2b-container {
        width: min(100% - 28px, 100%);
    }
}

@media (max-width: 760px) {
    .b2b-container {
        width: min(100% - 20px, 100%);
        padding: 116px 0 64px;
    }

    .b2b-hero,
    .b2b-section-shell {
        border-radius: 24px;
    }

    .b2b-hero {
        padding: 30px 18px 32px;
    }

    .b2b-section-shell {
        padding: 24px 18px;
    }

    .b2b-headline {
        font-size: clamp(1.84rem, 8vw, 2.6rem);
    }

    .b2b-subheadline,
    .comp-row p,
    .b2b-card p,
    .b2b-case p,
    .wf-item p,
    .b2b-discovery-intro,
    .b2b-discovery-card p {
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .b2b-comp-card,
    .b2b-card,
    .b2b-case,
    .wf-item,
    .b2b-discovery-card {
        border-radius: 22px;
    }

    .wf-item {
        align-items: flex-start;
        padding: 18px 16px;
    }

    .fc-ui-strip-v2--business .fc-ui-strip-v2__shell {
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .b2b-btn-primary {
        width: 100%;
        padding: 0 18px;
    }

    .wf-num {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   FC_BUSINESS_D9_DESKTOP_POLISH_START
   Business page desktop education polish. >=1025px only.
   ========================================================================== */
@media (min-width: 1025px) {
    body.business-page .b2b-container {
        width: min(calc(100% - 48px), 1220px) !important;
        max-width: 1220px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.business-page .b2b-hero,
    body.business-page .b2b-card,
    body.business-page .b2b-case,
    body.business-page .b2b-comp-card,
    body.business-page .b2b-discovery-card {
        border-radius: 30px !important;
        box-shadow:
            0 24px 70px rgba(15,23,42,0.08),
            0 1px 0 rgba(255,255,255,0.90) inset !important;
    }

    body.business-page .b2b-headline {
        font-size: clamp(2.85rem, 4.4vw, 5.2rem) !important;
        line-height: 0.96 !important;
        letter-spacing: -0.06em !important;
        overflow-wrap: anywhere !important;
    }

    body.business-page .b2b-subtitle,
    body.business-page .b2b-card,
    body.business-page .b2b-case,
    body.business-page .b2b-discovery-intro {
        line-height: 1.62 !important;
        overflow-wrap: anywhere !important;
    }

    body.business-page .b2b-grid,
    body.business-page .b2b-discovery-grid,
    body.business-page .b2b-cases-grid,
    body.business-page .b2b-comparison-grid {
        gap: 18px !important;
    }

    body.business-page .b2b-btn-primary,
    body.business-page .b2b-discovery-link {
        min-height: 46px !important;
        border-radius: 16px !important;
        justify-content: center !important;
    }
}
/* ==========================================================================
   FC_BUSINESS_D9_DESKTOP_POLISH_END
   ========================================================================== */
