/* Fixme Business landing page — sell page brand palette */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&display=swap');

:root {
    --biz-primary: #9c0c9b;
    --biz-primary-dark: #7d0b7c;
    --biz-foreground: #320031;
    --biz-background: #ffffff;
    --biz-muted: #fafafa;
    --biz-muted-fg: #666666;
    --biz-accent: #f5e8f4;
    --biz-accent-fg: #7d0b7c;
    --biz-success: #2a9d6e;
    --biz-destructive: #d64545;
    --biz-border: #e8e4e8;
    --biz-gradient: linear-gradient(147deg, #9c0c9b 0%, #320031 100%);
    --biz-radius: 14px;
    --biz-radius-lg: 24px;
    --biz-radius-xl: 32px;
    --biz-shadow: 0 2px 8px rgba(50, 0, 49, 0.08);
    --biz-shadow-lg: 0 4px 16px rgba(50, 0, 49, 0.1);
    --biz-shadow-hover: 0 8px 24px rgba(50, 0, 49, 0.12);
    --biz-font-heading: 'Bricolage Grotesque', latoregular, sans-serif;
    --biz-font-body: latoregular, 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.biz-page {
    font-family: var(--biz-font-body);
    color: var(--biz-foreground);
    background: var(--biz-background);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.biz-page h1,
.biz-page h2,
.biz-page h3,
.biz-page h4,
.biz-page .biz-heading {
    font-family: var(--biz-font-heading);
}

.biz-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .biz-container { padding: 0 24px; }
}

@media (min-width: 1024px) {
    .biz-container { padding: 0 32px; }
}

/* ---- Header ---- */
.biz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.biz-header.scrolled {
    border-bottom-color: rgba(232, 228, 232, 0.7);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.biz-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 640px) {
    .biz-header-inner { padding: 0 24px; }
}

@media (min-width: 1024px) {
    .biz-header-inner { padding: 0 32px; }
}

.biz-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.biz-logo-suffix {
    font-family: var(--biz-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--biz-primary);
    line-height: 1;
}

/* Match index page logo sizing (homepage-redesign.css .home-nav-logo) */
.biz-header .home-nav-logo,
.biz-footer-brand .home-nav-logo {
    height: 40px;
    width: auto;
    max-height: none;
    max-width: none;
    display: block;
}

.biz-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .biz-nav { display: flex; }
}

.biz-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--biz-muted-fg);
    text-decoration: none;
    transition: all 0.2s ease;
}

.biz-nav a:hover {
    color: var(--biz-foreground);
    background: rgba(250, 250, 250, 0.8);
}

.biz-header-ctas {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .biz-header-ctas { display: flex; }
}

.biz-menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--biz-foreground);
    border-radius: 999px;
    cursor: pointer;
    font-size: 20px;
}

@media (min-width: 1024px) {
    .biz-menu-toggle { display: none; }
}

.biz-mobile-nav {
    display: none;
    border-top: 1px solid var(--biz-border);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px;
}

.biz-mobile-nav.open {
    display: block;
}

.biz-mobile-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--biz-muted-fg);
    text-decoration: none;
}

.biz-mobile-nav a:hover {
    background: var(--biz-muted);
    color: var(--biz-foreground);
}

.biz-mobile-nav .biz-btn-row {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ---- Buttons ---- */
.biz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--biz-font-body);
    white-space: nowrap;
}

.biz-btn-primary {
    background: var(--biz-primary);
    color: #fff;
    box-shadow: var(--biz-shadow);
}

.biz-btn-primary:hover {
    background: var(--biz-primary-dark);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--biz-shadow-hover);
    transform: translateY(-2px);
}

.biz-btn-outline {
    background: transparent;
    color: var(--biz-foreground);
    border: 1px solid var(--biz-border);
}

.biz-btn-outline:hover {
    background: rgba(250, 250, 250, 0.8);
    color: var(--biz-foreground);
    text-decoration: none;
}

.biz-btn-ghost {
    background: transparent;
    color: var(--biz-foreground);
}

.biz-btn-ghost:hover {
    background: rgba(250, 250, 250, 0.8);
    color: var(--biz-foreground);
    text-decoration: none;
}

.biz-btn-white {
    background: #fafafa;
    color: var(--biz-foreground);
}

.biz-btn-white:hover {
    background: #ededed;
    color: var(--biz-foreground);
    text-decoration: none;
    transform: translateY(-2px);
}

.biz-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.biz-btn-block {
    width: 100%;
}

/* ---- Badges ---- */
.biz-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    font-size: 12px;
    font-weight: 600;
    color: var(--biz-muted-fg);
    box-shadow: var(--biz-shadow);
}

.biz-badge-primary {
    border-color: rgba(156, 12, 155, 0.2);
    background: rgba(156, 12, 155, 0.05);
    color: var(--biz-primary);
}

.biz-badge-destructive {
    border-color: rgba(214, 69, 69, 0.2);
    background: rgba(214, 69, 69, 0.05);
    color: var(--biz-destructive);
}

.biz-badge-dark {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.biz-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.biz-badge-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--biz-success);
    animation: biz-pulse 2s infinite;
}

@keyframes biz-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ---- Section spacing ---- */
.biz-section {
    margin-top: 96px;
}

@media (min-width: 1024px) {
    .biz-section { margin-top: 128px; }
}

.biz-section-header {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.biz-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 24px 0 0;
    color: var(--biz-foreground);
}

@media (min-width: 640px) {
    .biz-section-header h2 { font-size: 48px; }
}

@media (min-width: 1024px) {
    .biz-section-header h2 { font-size: 56px; }
}

.biz-section-header p {
    margin: 24px auto 0;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--biz-muted-fg);
}

/* ---- Hero ---- */
.biz-hero {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 128px;
    padding-bottom: 48px;
}

@media (min-width: 1024px) {
    .biz-hero { padding-top: 160px; }
}

.biz-hero-bg {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.biz-hero-bg::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 820px;
    height: 480px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--biz-accent);
    filter: blur(80px);
    opacity: 0.6;
}

.biz-hero-bg::after {
    content: '';
    position: absolute;
    right: 8%;
    top: 160px;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    background: rgba(156, 12, 155, 0.05);
    filter: blur(80px);
}

.biz-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .biz-hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.biz-hero-copy {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .biz-hero-copy {
        text-align: left;
        margin: 0;
        max-width: none;
    }
}

.biz-hero-copy h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 24px 0 0;
    color: var(--biz-foreground);
}

@media (min-width: 640px) {
    .biz-hero-copy h1 { font-size: 56px; }
}

@media (min-width: 1024px) {
    .biz-hero-copy h1 { font-size: 72px; }
}

.biz-hero-copy > p {
    margin: 20px auto 0;
    max-width: 576px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--biz-muted-fg);
}

@media (min-width: 1024px) {
    .biz-hero-copy > p {
        margin-left: 0;
        font-size: 18px;
    }
}

.biz-hero-ctas {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 640px) {
    .biz-hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .biz-hero-ctas {
        justify-content: flex-start;
    }
}

.biz-hero-ctas .biz-btn {
    width: 100%;
}

@media (min-width: 640px) {
    .biz-hero-ctas .biz-btn { width: auto; }
}

.biz-trust-list {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

@media (min-width: 1024px) {
    .biz-trust-list { justify-content: flex-start; }
}

.biz-trust-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--biz-muted-fg);
}

.biz-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(42, 157, 110, 0.2);
    color: var(--biz-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ---- Phone mockup ---- */
.biz-hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 400px;
}

.biz-hero-showcase-inner {
    position: relative;
    overflow: visible;
}

.biz-phone {
    width: 280px;
    border-radius: 40px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    box-shadow: 0 25px 50px rgba(50, 0, 49, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.biz-phone-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px 0;
    font-size: 10px;
    font-weight: 500;
    color: var(--biz-muted-fg);
}

.biz-phone-notch {
    width: 64px;
    height: 6px;
    border-radius: 999px;
    background: var(--biz-muted);
}

.biz-phone-header {
    padding: 16px 20px 12px;
}

.biz-phone-shop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.biz-phone-shop-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.biz-phone-avatar {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: var(--biz-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.biz-phone-shop-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.biz-phone-shop-meta {
    font-size: 10px;
    color: var(--biz-muted-fg);
    margin: 0;
}

.biz-phone-search {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--biz-muted);
    font-size: 11px;
    color: var(--biz-muted-fg);
}

.biz-phone-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 16px 80px;
}

.biz-phone-product {
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    overflow: hidden;
}

.biz-phone-product-img {
    position: relative;
    aspect-ratio: 1;
    background: var(--biz-muted);
}

.biz-phone-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.biz-phone-product-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--biz-primary);
    color: #fff;
    font-size: 8px;
    font-weight: 600;
}

.biz-phone-product-info {
    padding: 8px;
}

.biz-phone-product-info p {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.biz-phone-product-info .price {
    font-weight: 600;
}

.biz-phone-checkout {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 16px;
    background: var(--biz-foreground);
    color: #fff;
    font-size: 12px;
}

.biz-float-card {
    position: absolute;
    z-index: 2;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--biz-shadow-lg);
    backdrop-filter: blur(8px);
    display: none;
}

@media (min-width: 576px) {
    .biz-float-card { display: block; }
}

.biz-float-card-1 {
    left: -24px;
    top: 40px;
    width: 224px;
}

.biz-float-card-2 {
    right: -16px;
    top: 176px;
    width: 208px;
}

.biz-float-card-3 {
    left: -32px;
    bottom: 12px;
    width: 208px;
    z-index: 3;
    display: none;
}

@media (min-width: 768px) {
    .biz-float-card-3 { display: block; }
}

.biz-float-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.biz-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.biz-float-icon-success {
    background: rgba(42, 157, 110, 0.15);
    color: var(--biz-success);
}

.biz-float-icon-primary {
    background: rgba(156, 12, 155, 0.12);
    color: var(--biz-primary);
}

.biz-float-title {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.biz-float-sub {
    font-size: 11px;
    color: var(--biz-muted-fg);
    margin: 0;
}

.biz-mini-chart {
    margin-top: 8px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 28px;
}

.biz-mini-chart span {
    flex: 1;
    border-radius: 2px;
    background: rgba(156, 12, 155, 0.25);
}

.biz-delta-badge {
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(42, 157, 110, 0.15);
    color: var(--biz-success);
    font-size: 10px;
    font-weight: 600;
}

/* ---- Social proof ---- */
.biz-social-proof p {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--biz-muted-fg);
    margin: 0;
}

.biz-stats-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    border: 1px solid rgba(232, 228, 232, 0.5);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.3), rgba(250, 250, 250, 0.1));
}

@media (min-width: 640px) {
    .biz-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.biz-stat {
    padding: 32px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(232, 228, 232, 0.3);
    border-bottom: 1px solid rgba(232, 228, 232, 0.3);
    transition: all 0.2s ease;
}

.biz-stat:hover {
    background: var(--biz-background);
    box-shadow: var(--biz-shadow-lg);
}

.biz-stat-value {
    font-family: var(--biz-font-heading);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--biz-foreground);
}

@media (min-width: 640px) {
    .biz-stat-value { font-size: 36px; }
}

.biz-stat-label {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--biz-muted-fg);
}

/* ---- Problems ---- */
.biz-problems-grid {
    margin-top: 64px;
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .biz-problems-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .biz-problems-grid { grid-template-columns: repeat(3, 1fr); }
}

.biz-problem-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    transition: all 0.2s ease;
}

.biz-problem-card:hover {
    border-color: rgba(214, 69, 69, 0.3);
    background: rgba(214, 69, 69, 0.05);
    box-shadow: var(--biz-shadow-lg);
}

.biz-problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(214, 69, 69, 0.1);
    color: var(--biz-destructive);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: all 0.2s ease;
}

.biz-problem-card:hover .biz-problem-icon {
    background: var(--biz-destructive);
    color: #fff;
    transform: scale(1.1);
}

.biz-problem-card span {
    font-size: 16px;
    font-weight: 700;
}

.biz-resolution-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--biz-foreground);
    color: #fff;
}

.biz-resolution-card span {
    font-size: 14px;
    font-weight: 600;
}

/* ---- How it works ---- */
.biz-muted-section {
    background: rgba(250, 250, 250, 0.5);
    padding: 96px 0;
    margin-top: 96px;
}

@media (min-width: 1024px) {
    .biz-muted-section {
        padding: 128px 0;
        margin-top: 128px;
    }
}

.biz-steps-grid {
    margin-top: 64px;
    display: grid;
    gap: 24px;
}

@media (min-width: 1024px) {
    .biz-steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.biz-step-card {
    position: relative;
    height: 100%;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    transition: all 0.2s ease;
}

.biz-step-card:hover {
    box-shadow: var(--biz-shadow-lg);
}

.biz-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.biz-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(156, 12, 155, 0.12);
    color: var(--biz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.2s ease;
}

.biz-step-card:hover .biz-step-icon {
    background: var(--biz-primary);
    color: #fff;
    transform: scale(1.1);
}

.biz-step-num {
    font-family: var(--biz-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: rgba(232, 228, 232, 0.8);
}

.biz-step-card h3 {
    margin: 20px 0 0;
    font-size: 20px;
    font-weight: 600;
}

.biz-step-card p {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--biz-muted-fg);
}

.biz-shop-link-card {
    margin: 40px auto 0;
    max-width: 576px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    text-align: center;
    box-shadow: var(--biz-shadow);
}

@media (min-width: 640px) {
    .biz-shop-link-card {
        flex-direction: row;
        text-align: left;
    }
}

.biz-shop-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(42, 157, 110, 0.12);
    color: var(--biz-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.biz-shop-link-card .mono {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--biz-primary);
    margin: 4px 0 0;
}

/* ---- Features ---- */
.biz-features-grid {
    margin-top: 64px;
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .biz-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .biz-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.biz-feature-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    transition: all 0.2s ease;
}

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

.biz-feature-card.span-2 {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .biz-feature-card.span-2 { grid-column: span 2; }
}

.biz-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(156, 12, 155, 0.12);
    color: var(--biz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.2s ease;
}

.biz-feature-card:hover .biz-feature-icon {
    background: var(--biz-primary);
    color: #fff;
    transform: scale(1.1);
}

.biz-feature-card h3 {
    margin: 24px 0 0;
    font-size: 20px;
    font-weight: 700;
}

.biz-feature-card p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--biz-muted-fg);
    max-width: 448px;
}

/* ---- Delivery (dark section) ---- */
.biz-dark-section {
    background: var(--biz-foreground);
    color: #fff;
    padding: 96px 0;
    margin-top: 96px;
}

@media (min-width: 1024px) {
    .biz-dark-section {
        padding: 128px 0;
        margin-top: 128px;
    }
}

.biz-dark-grid {
    display: grid;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .biz-dark-grid { grid-template-columns: 1fr 1fr; }
}

.biz-dark-section h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin: 24px 0 0;
    color: #fff;
}

@media (min-width: 640px) {
    .biz-dark-section h2 { font-size: 48px; }
}

@media (min-width: 1024px) {
    .biz-dark-section h2 { font-size: 56px; }
}

.biz-dark-section > .biz-container > .biz-dark-grid > div > p {
    margin: 24px 0 0;
    max-width: 448px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.biz-auto-list {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .biz-auto-list { grid-template-columns: 1fr 1fr; }
}

.biz-auto-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.biz-auto-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.biz-auto-list li:hover .biz-auto-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.biz-auto-list li span {
    font-size: 16px;
    font-weight: 700;
}

.biz-timeline-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    backdrop-filter: blur(8px);
}

.biz-timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.biz-timeline-header p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.biz-timeline-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.biz-timeline {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.biz-timeline li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.biz-timeline-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.biz-timeline-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.biz-timeline-dot.done {
    background: var(--biz-success);
    color: #fff;
}

.biz-timeline-dot.pending {
    background: rgba(255, 255, 255, 0.15);
}

.biz-timeline-dot.pending::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.biz-timeline-line {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    margin: 4px 0;
}

.biz-timeline-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.biz-timeline-content .time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

/* ---- Marketplace ---- */
.biz-marketplace-wrap {
    border-radius: 24px;
    border: 1px solid var(--biz-border);
    background: rgba(245, 232, 244, 0.5);
    box-shadow: var(--biz-shadow-lg);
    overflow: hidden;
}

.biz-marketplace-inner {
    display: grid;
    gap: 48px;
    padding: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .biz-marketplace-inner {
        grid-template-columns: 1fr 1fr;
        padding: 64px;
    }
}

.biz-marketplace-inner h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin: 24px 0 0;
}

@media (min-width: 640px) {
    .biz-marketplace-inner h2 { font-size: 48px; }
}

@media (min-width: 1024px) {
    .biz-marketplace-inner h2 { font-size: 56px; }
}

.biz-marketplace-inner > div > p {
    margin: 24px 0 0;
    max-width: 448px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--biz-muted-fg);
    font-weight: 500;
}

.biz-channel-tags {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.biz-channel-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--biz-shadow);
}

.biz-channel-tag i {
    color: var(--biz-primary);
}

.biz-marketplace-tagline {
    margin-top: 28px;
    font-family: var(--biz-font-heading);
    font-size: 24px;
    font-weight: 700;
}

.biz-upload-visual {
    max-width: 384px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.biz-upload-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    box-shadow: var(--biz-shadow);
}

.biz-upload-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--biz-muted);
    flex-shrink: 0;
}

.biz-upload-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.biz-upload-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--biz-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.biz-upload-arrow {
    color: var(--biz-muted-fg);
    font-size: 16px;
    transform: rotate(90deg);
}

.biz-channel-cards {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.biz-channel-card {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    box-shadow: var(--biz-shadow);
}

.biz-channel-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(42, 157, 110, 0.12);
    color: var(--biz-success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-channel-card h4 {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.biz-channel-card p {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--biz-muted-fg);
}

/* ---- Analytics dashboard ---- */
.biz-dashboard {
    margin-top: 64px;
    border-radius: 24px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    box-shadow: var(--biz-shadow-lg);
    overflow: hidden;
}

.biz-dashboard-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--biz-border);
    background: rgba(250, 250, 250, 0.6);
}

.biz-dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.biz-dashboard-dot.red { background: rgba(214, 69, 69, 0.5); }
.biz-dashboard-dot.green { background: rgba(42, 157, 110, 0.5); }
.biz-dashboard-dot.purple { background: rgba(156, 12, 155, 0.5); }

.biz-dashboard-title {
    margin-left: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--biz-muted-fg);
}

.biz-dashboard-body {
    padding: 24px;
}

@media (min-width: 1024px) {
    .biz-dashboard-body { padding: 32px; }
}

.biz-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (min-width: 1024px) {
    .biz-kpi-grid { grid-template-columns: repeat(4, 1fr); }
}

.biz-kpi-card {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    transition: all 0.2s ease;
}

.biz-kpi-card:hover {
    box-shadow: var(--biz-shadow-lg);
}

.biz-kpi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.biz-kpi-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(156, 12, 155, 0.12);
    color: var(--biz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-kpi-value {
    margin: 16px 0 0;
    font-family: var(--biz-font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.biz-kpi-label {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--biz-muted-fg);
}

.biz-charts-row {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

@media (min-width: 1024px) {
    .biz-charts-row { grid-template-columns: 3fr 2fr; }
}

.biz-chart-card {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
}

.biz-chart-card h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.biz-chart-card .sub {
    font-size: 12px;
    color: var(--biz-muted-fg);
}

.biz-chart-area {
    margin-top: 16px;
    height: 220px;
}

.biz-funnel-row {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

@media (min-width: 1024px) {
    .biz-funnel-row { grid-template-columns: 3fr 2fr; }
}

.biz-funnel-item {
    margin-bottom: 12px;
}

.biz-funnel-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.biz-funnel-labels span:first-child {
    font-weight: 500;
}

.biz-funnel-labels span:last-child {
    color: var(--biz-muted-fg);
}

.biz-progress {
    height: 10px;
    border-radius: 999px;
    background: var(--biz-muted);
    overflow: hidden;
}

.biz-progress-bar {
    height: 100%;
    border-radius: 999px;
    background: var(--biz-primary);
}

.biz-progress-bar.green {
    background: var(--biz-success);
}

.biz-traffic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.biz-traffic-item .label {
    width: 96px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 500;
}

.biz-traffic-item .pct {
    width: 36px;
    flex-shrink: 0;
    text-align: right;
    font-size: 12px;
    color: var(--biz-muted-fg);
}

/* ---- Pricing ---- */
.biz-pricing-section {
    background: rgba(250, 250, 250, 0.5);
    padding: 96px 0;
    margin-top: 96px;
}

@media (min-width: 1024px) {
    .biz-pricing-section {
        padding: 128px 0;
        margin-top: 128px;
    }
}

.biz-pricing-grid {
    margin-top: 64px;
    display: grid;
    gap: 32px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .biz-pricing-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }
}

.biz-included-card {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    transition: all 0.2s ease;
}

.biz-included-card:hover {
    box-shadow: var(--biz-shadow-lg);
}

.biz-included-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.biz-included-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .biz-included-list { grid-template-columns: 1fr 1fr; }
}

.biz-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.biz-fee-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(156, 12, 155, 0.4);
    background: var(--biz-gradient);
    color: #fff;
    box-shadow: var(--biz-shadow-lg);
    transition: all 0.2s ease;
}

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

.biz-fee-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.biz-fee-amount {
    margin-top: 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.biz-fee-amount .num {
    font-family: var(--biz-font-heading);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.biz-fee-amount .unit {
    font-size: 16px;
    opacity: 0.85;
}

.biz-fee-card > p {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

.biz-fee-highlight {
    margin-top: 28px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    font-weight: 700;
}

.biz-fee-card .biz-btn {
    margin-top: 24px;
}

/* ---- FAQ ---- */
.biz-faq-wrap {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.biz-faq-list {
    margin-top: 48px;
}

.biz-faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid var(--biz-border);
    background: var(--biz-background);
    overflow: hidden;
    transition: all 0.2s ease;
}

.biz-faq-item:hover {
    box-shadow: var(--biz-shadow);
}

.biz-faq-question {
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--biz-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--biz-font-body);
}

.biz-faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--biz-muted-fg);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.biz-faq-item.open .biz-faq-question::after {
    content: '−';
}

.biz-faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--biz-muted-fg);
}

.biz-faq-item.open .biz-faq-answer {
    display: block;
}

/* ---- Final CTA ---- */
.biz-final-cta {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--biz-gradient);
    padding: 80px 24px;
    text-align: center;
    color: #fff;
    box-shadow: var(--biz-shadow-lg);
}

@media (min-width: 1024px) {
    .biz-final-cta { padding: 112px 48px; }
}

.biz-final-cta::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 520px;
    height: 520px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(156, 12, 155, 0.25);
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.biz-final-cta-inner {
    position: relative;
    max-width: 768px;
    margin: 0 auto;
}

.biz-final-cta h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    color: #fff;
}

@media (min-width: 640px) {
    .biz-final-cta h2 { font-size: 56px; }
}

@media (min-width: 1024px) {
    .biz-final-cta h2 { font-size: 72px; }
}

.biz-final-cta > .biz-final-cta-inner > p {
    margin: 28px auto 0;
    max-width: 640px;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.biz-final-cta .biz-btn-row {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.biz-final-points {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
}

.biz-final-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.biz-final-points .biz-check-icon {
    width: 24px;
    height: 24px;
    background: rgba(42, 157, 110, 0.3);
    font-size: 12px;
}

/* ---- Footer ---- */
.biz-footer {
    margin-top: 96px;
    border-top: 1px solid rgba(232, 228, 232, 0.5);
    background: rgba(250, 250, 250, 0.5);
    padding: 64px 0;
}

@media (min-width: 1024px) {
    .biz-footer { margin-top: 128px; }
}

.biz-footer-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 1024px) {
    .biz-footer-grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
    }
}

.biz-footer-brand p {
    margin: 20px 0 0;
    max-width: 288px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--biz-muted-fg);
    font-weight: 500;
}

.biz-footer-col h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.biz-footer-col ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.biz-footer-col ul li {
    margin-bottom: 16px;
}

.biz-footer-col ul a {
    font-size: 16px;
    color: var(--biz-muted-fg);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.biz-footer-col ul a:hover {
    color: var(--biz-foreground);
}

.biz-footer-bottom {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(232, 228, 232, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

@media (min-width: 640px) {
    .biz-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.biz-footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--biz-muted-fg);
    font-weight: 500;
}

.biz-footer-legal {
    display: flex;
    gap: 32px;
}

.biz-footer-legal a {
    font-size: 14px;
    color: var(--biz-muted-fg);
    text-decoration: none;
    font-weight: 500;
}

.biz-footer-legal a:hover {
    color: var(--biz-foreground);
}

/* Hide default site chrome on business page */
.biz-page .navbar,
.biz-page .fixed-top:not(.biz-header) {
    display: none !important;
}
