/* ============================================
   SmartBiashara ERP - TOP-NOTCH Landing Page
   Professional, Robust, Conversion-Optimized
   ============================================ */

/* ============ DESIGN SYSTEM ============ */
:root {
    /* Brand Palette - Professional Teal */
    --sb-primary: #0F766E;
    --sb-primary-light: #14B8A6;
    --sb-primary-dark: #0D5F58;
    --sb-primary-50: #F0FDFA;
    --sb-primary-100: #CCFBF1;
    --sb-primary-200: #99F6E4;
    --sb-primary-500: #14B8A6;
    --sb-primary-600: #0D9488;
    --sb-primary-700: #0F766E;
    --sb-primary-800: #115E59;
    --sb-primary-900: #134E4A;
    
    /* Accent - Warm CTA */
    --sb-accent: #F59E0B;
    --sb-accent-dark: #D97706;
    --sb-accent-light: #FCD34D;
    
    /* Neutrals - Slate */
    --sb-text: #0F172A;
    --sb-text-secondary: #334155;
    --sb-text-muted: #64748B;
    --sb-text-light: #94A3B8;
    
    /* Surfaces */
    --sb-bg: #FFFFFF;
    --sb-bg-alt: #F8FAFC;
    --sb-bg-soft: #F1F5F9;
    --sb-bg-dark: #0F172A;
    --sb-bg-darker: #020617;
    
    /* Borders */
    --sb-border: #E2E8F0;
    --sb-border-light: #F1F5F9;
    --sb-border-dark: #1E293B;
    
    /* Shadows */
    --sb-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --sb-shadow: 0 4px 6px rgba(15, 23, 42, 0.07), 0 2px 4px rgba(15, 23, 42, 0.05);
    --sb-shadow-md: 0 10px 15px rgba(15, 23, 42, 0.08), 0 4px 6px rgba(15, 23, 42, 0.04);
    --sb-shadow-lg: 0 20px 25px rgba(15, 23, 42, 0.1), 0 10px 10px rgba(15, 23, 42, 0.04);
    --sb-shadow-xl: 0 25px 50px rgba(15, 23, 42, 0.15);
    
    /* Typography */
    --sb-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Radius */
    --sb-radius-sm: 6px;
    --sb-radius: 10px;
    --sb-radius-md: 14px;
    --sb-radius-lg: 20px;
    --sb-radius-xl: 28px;
    --sb-radius-full: 9999px;
}

/* ============================================
   SB-WRAP (global container — added 2026-06-26)
   Previously defined inline in welcome.blade.php.
   Moved to global CSS so /pricing, /login, /register also get
   the same 1200px max-width centered container for the nav.
   ============================================ */
.sb-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ============ GLOBAL RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: var(--sb-font);
    color: var(--sb-text);
    background: var(--sb-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* ============ HEADER / NAVIGATION ============ */
.sb-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--sb-border);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.sb-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--sb-primary-800);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.sb-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.sb-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.sb-nav a {
    color: var(--sb-text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.sb-nav a:hover {
    color: var(--sb-primary-700);
}

.sb-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sb-primary-600);
    transition: width 0.3s ease;
}

.sb-nav a:hover::after {
    width: 100%;
}

.sb-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--sb-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.sb-btn-primary {
    background: linear-gradient(135deg, var(--sb-primary-600) 0%, var(--sb-primary-700) 100%);
    color: #fff;
    box-shadow: var(--sb-shadow);
}

.sb-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--sb-shadow-md);
    color: #fff;
}

.sb-btn-secondary {
    background: var(--sb-bg);
    color: var(--sb-text);
    border-color: var(--sb-border);
}

.sb-btn-secondary:hover {
    border-color: var(--sb-primary-600);
    color: var(--sb-primary-700);
}

.sb-btn-ghost {
    background: transparent;
    color: var(--sb-text-secondary);
}

.sb-btn-ghost:hover {
    color: var(--sb-primary-700);
}

.sb-btn-accent {
    background: linear-gradient(135deg, var(--sb-accent) 0%, var(--sb-accent-dark) 100%);
    color: #fff;
    box-shadow: var(--sb-shadow);
}

.sb-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--sb-radius-md);
}

.sb-btn-xl {
    padding: 18px 36px;
    font-size: 17px;
    border-radius: var(--sb-radius-md);
}

/* ============ HERO SECTION ============ */
.ld-hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--sb-primary-50) 0%, #fff 100%);
    overflow: hidden;
}

.ld-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ld-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.ld-hero-content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.ld-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.2);
    border-radius: var(--sb-radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--sb-primary-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.ld-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sb-primary-600);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
}

.ld-h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--sb-text);
    margin-bottom: 24px;
}

.ld-h1 .accent {
    background: linear-gradient(135deg, var(--sb-primary-600) 0%, var(--sb-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ld-sub {
    font-size: 20px;
    line-height: 1.6;
    color: var(--sb-text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
}

.ld-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.ld-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--sb-text-muted);
    font-size: 14px;
}

.ld-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ld-trust-item svg {
    color: var(--sb-primary-600);
    flex-shrink: 0;
}

/* ============ SECTIONS ============ */
.ld-section {
    padding: 100px 0;
}

.ld-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.ld-section-head h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--sb-text);
    margin: 16px 0 20px;
}

.ld-section-head p {
    font-size: 18px;
    color: var(--sb-text-muted);
    line-height: 1.6;
}

/* ============ FEATURES GRID ============ */
.ld-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.ld-feature {
    background: var(--sb-bg);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius-md);
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.ld-feature:hover {
    border-color: var(--sb-primary-200);
    box-shadow: var(--sb-shadow-md);
    transform: translateY(-2px);
}

.ld-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--sb-radius);
    background: var(--sb-primary-50);
    color: var(--sb-primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ld-feature h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--sb-text);
    margin-bottom: 8px;
}

.ld-feature p {
    color: var(--sb-text-muted);
    font-size: 15px;
    line-height: 1.55;
}

/* ============ PRICING ============ */
.ld-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.ld-plan {
    background: var(--sb-bg);
    border: 2px solid var(--sb-border);
    border-radius: var(--sb-radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.ld-plan:hover {
    border-color: var(--sb-primary-200);
    box-shadow: var(--sb-shadow-lg);
}

.ld-plan.featured {
    border-color: var(--sb-primary-600);
    box-shadow: var(--sb-shadow-lg);
    transform: scale(1.02);
}

.ld-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sb-accent) 0%, var(--sb-accent-dark) 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: var(--sb-radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ld-plan-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sb-text-muted);
    margin-bottom: 12px;
}

.ld-plan-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--sb-text);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.ld-plan-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--sb-text-muted);
}

.ld-plan-features {
    list-style: none;
    margin: 24px 0 32px;
    padding: 0;
}

.ld-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--sb-text-secondary);
    font-size: 15px;
}

.ld-plan-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sb-primary-100);
    color: var(--sb-primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============ FINAL CTA SECTION ============ */
.ld-final-cta {
    background: linear-gradient(135deg, var(--sb-primary-800) 0%, var(--sb-primary-900) 100%);
    color: #fff;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ld-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ld-final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: #fff;
}

.ld-final-cta p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
}

.ld-final-cta .sb-btn-primary {
    background: linear-gradient(135deg, var(--sb-accent) 0%, var(--sb-accent-dark) 100%);
    color: #fff;
}

.ld-final-cta .sb-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.ld-final-cta .sb-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.ld-final-cta-meta {
    margin-top: 28px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.ld-final-cta-meta a {
    color: var(--sb-accent-light);
    text-decoration: none;
    font-weight: 600;
}

/* ============ FOOTER (TOP-NOTCH) ============ */
.sb-footer {
    background: var(--sb-bg-darker);
    color: #94A3B8;
    padding: 80px 0 32px;
    position: relative;
}

.sb-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-primary-700), transparent);
}

.sb-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
}

.sb-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sb-footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.sb-footer-brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.sb-footer-desc {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 340px;
}

.sb-footer-social {
    display: flex;
    gap: 10px;
}

.sb-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

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

.sb-footer h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sb-footer a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    font-size: 15px;
    line-height: 2.1;
    transition: color 0.2s;
}

.sb-footer a:hover {
    color: var(--sb-primary-300);
}

.sb-footer-contact {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.sb-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #64748B;
    font-size: 14px;
}

.sb-footer-bottom strong {
    color: #CBD5E1;
}

.sb-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(15, 118, 110, 0.15);
    border: 1px solid rgba(15, 118, 110, 0.3);
    border-radius: var(--sb-radius-full);
    color: var(--sb-primary-300);
    font-size: 12px;
    font-weight: 600;
}

/* ============ AUTH PAGES (Login/Register) ============ */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sb-primary-900) 0%, var(--sb-primary-800) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 50%);
}

.auth-card {
    background: var(--sb-bg);
    border-radius: var(--sb-radius-lg);
    padding: 48px 40px;
    box-shadow: var(--sb-shadow-xl);
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.auth-logo img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

.auth-logo-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--sb-text);
    letter-spacing: -0.02em;
}

.auth-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--sb-text);
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--sb-text-muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sb-text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--sb-border);
    border-radius: var(--sb-radius);
    font-size: 15px;
    font-family: var(--sb-font);
    color: var(--sb-text);
    background: var(--sb-bg);
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--sb-primary-600);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-input::placeholder {
    color: var(--sb-text-light);
}

.form-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--sb-primary-600) 0%, var(--sb-primary-700) 100%);
    color: #fff;
    border: none;
    border-radius: var(--sb-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--sb-shadow);
}

.form-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--sb-shadow-md);
}

.auth-divider {
    text-align: center;
    color: var(--sb-text-muted);
    font-size: 13px;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--sb-border);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--sb-text-muted);
    font-size: 14px;
}

.auth-footer a {
    color: var(--sb-primary-700);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .ld-h1 { font-size: 52px; }
    .ld-section-head h2 { font-size: 36px; }
    .sb-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .sb-header-inner { padding: 0 16px; gap: 16px; }
    .sb-nav { display: none; }
    .ld-hero { padding: 60px 0 80px; }
    .ld-h1 { font-size: 40px; }
    .ld-sub { font-size: 17px; }
    .ld-section { padding: 70px 0; }
    .ld-section-head h2 { font-size: 30px; }
    .ld-final-cta h2 { font-size: 32px; }
    .ld-final-cta { padding: 70px 20px; }
    .sb-footer { padding: 60px 0 24px; }
    .sb-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .sb-footer-bottom { flex-direction: column; text-align: center; }
    .auth-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
    .ld-h1 { font-size: 32px; letter-spacing: -0.02em; }
    .ld-sub { font-size: 16px; }
    .ld-section-head h2 { font-size: 26px; }
    .ld-btn-lg, .ld-btn-xl { padding: 12px 22px; font-size: 15px; }
}
/* ============ TOP-NOTCH NAVIGATION (sb-nav from layout) ============ */
.sb-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--sb-border, #E2E8F0);
    padding: 14px 0;
}

.sb-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sb-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--sb-text, #0F172A);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.sb-nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.sb-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sb-nav-links a {
    color: var(--sb-text-secondary, #334155);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.sb-nav-links a:hover {
    color: var(--sb-primary-700, #0F766E);
}

.sb-nav-links a.sb-active {
    color: var(--sb-primary-700, #0F766E);
    font-weight: 600;
}

.sb-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sb-primary-600, #0D9488);
    transition: width 0.3s ease;
}

.sb-nav-links a:hover::after,
.sb-nav-links a.sb-active::after {
    width: 100%;
}

.sb-nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sb-nav-cta .sb-btn {
    padding: 9px 18px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sb-nav-cta .sb-btn-ghost {
    background: transparent;
    color: var(--sb-text-secondary, #334155);
}

.sb-nav-cta .sb-btn-ghost:hover {
    color: var(--sb-primary-700, #0F766E);
}

.sb-nav-cta .sb-btn-primary {
    background: linear-gradient(135deg, var(--sb-primary-600, #0D9488) 0%, var(--sb-primary-700, #0F766E) 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(15, 118, 110, 0.25);
}

.sb-nav-cta .sb-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
    color: #fff;
}

.sb-nav-cta .sb-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sb-nav-inner { flex-wrap: wrap; gap: 16px; }
    .sb-nav-links { gap: 18px; flex-wrap: wrap; }
    .sb-nav-brand span { display: none; }
}

/* Body background for public pages */
.sb-public-bg {
    background: #fff;
    color: var(--sb-text, #0F172A);
}

/* ============ TOP-NOTCH FAQ SECTION ============ */
.sb-faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sb-faq-item {
    background: #fff;
    border: 1.5px solid var(--sb-border, #E2E8F0);
    border-radius: var(--sb-radius-md, 14px);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.sb-faq-item:hover {
    border-color: var(--sb-primary-200, #99F6E4);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.sb-faq-item[open] {
    border-color: var(--sb-primary-600, #0D9488);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.1);
    background: linear-gradient(180deg, var(--sb-primary-50, #F0FDFA) 0%, #fff 60%);
}

.sb-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    font-size: 17px;
    font-weight: 600;
    color: var(--sb-text, #0F172A);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    user-select: none;
    transition: color 0.2s;
}

.sb-faq-item summary::-webkit-details-marker {
    display: none;
}

.sb-faq-item summary::after {
    content: '+';
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--sb-primary-50, #F0FDFA);
    color: var(--sb-primary-700, #0F766E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sb-faq-item summary:hover {
    color: var(--sb-primary-700, #0F766E);
}

.sb-faq-item summary:hover::after {
    background: var(--sb-primary-100, #CCFBF1);
    transform: scale(1.05);
}

.sb-faq-item[open] summary::after {
    content: '−';
    background: linear-gradient(135deg, var(--sb-primary-600, #0D9488) 0%, var(--sb-primary-700, #0F766E) 100%);
    color: #fff;
    transform: rotate(180deg);
}

.sb-faq-answer {
    padding: 0 28px 24px;
    color: var(--sb-text-secondary, #475569);
    font-size: 16px;
    line-height: 1.7;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============ TOP-NOTCH BILLING TOGGLE PILL (PROPER) ============ */
.sb-billing-toggle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 56px;
}

.sb-billing-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--sb-bg-soft, #F1F5F9);
    border: 1.5px solid var(--sb-border, #E2E8F0);
    border-radius: var(--sb-radius-full, 9999px);
    padding: 6px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.04);
    min-width: 380px;
}

.sb-billing-toggle button {
    flex: 1;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sb-text-muted, #64748B);
    cursor: pointer;
    border-radius: var(--sb-radius-full, 9999px);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    white-space: nowrap;
}

.sb-billing-toggle button.is-active {
    color: #fff;
}

.sb-billing-toggle button:not(.is-active):hover {
    color: var(--sb-text, #0F172A);
}

/* Sliding indicator */
.sb-billing-toggle::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: linear-gradient(135deg, var(--sb-primary-600, #0D9488) 0%, var(--sb-primary-700, #0F766E) 100%);
    border-radius: var(--sb-radius-full, 9999px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
    z-index: 1;
}

.sb-billing-toggle.is-yearly::before {
    transform: translateX(100%);
}

.sb-billing-save {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: rgba(245, 158, 11, 0.18);
    color: #B45309;
    border-radius: var(--sb-radius-full, 9999px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.sb-billing-caption {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sb-primary-700, #0F766E);
    font-size: 15px;
    font-weight: 600;
}

.sb-billing-caption svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .sb-billing-toggle {
        min-width: auto;
        width: 100%;
        max-width: 340px;
    }
    .sb-billing-toggle button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* ============ TOP-NOTCH PRICING CARDS (PROPER) ============ */
.ld-pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8px;
}

@media (min-width: 768px) {
    .ld-pricing-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .ld-pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
        gap: 24px;
    }
}

.sb-plan-cell {
    background: #fff;
    border: 2px solid var(--sb-border, #E2E8F0);
    border-radius: var(--sb-radius-lg, 24px);
    padding: 40px 36px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    overflow: visible;
}

.sb-plan-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    border-color: var(--sb-primary-200, #99F6E4);
}

/* Featured/Popular plan */
.sb-plan-cell .sb-plan--featured {
    background: linear-gradient(180deg, var(--sb-primary-50, #F0FDFA) 0%, #fff 60%);
    border-color: var(--sb-primary-600, #0D9488);
}

.sb-plan {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* NINO 2026-06-29: anchor position:absolute badges to the card itself,
       not the nearest positioned ancestor up the DOM tree. Without this,
       the badges anchored to the wrong parent and overlapped the card body. */
    position: relative !important;
    /* Reserve space at the top so the absolute-positioned badge has room
       to render above the price row without clipping into it. */
    padding-top: 28px !important;
}

.sb-plan--featured {
    background: linear-gradient(180deg, var(--sb-primary-50, #F0FDFA) 0%, #fff 60%) !important;
    border: 2px solid var(--sb-primary-600, #0D9488) !important;
    border-radius: var(--sb-radius-lg, 24px) !important;
    padding: 56px 36px 40px !important;
    box-shadow: 0 20px 50px rgba(15, 118, 110, 0.18) !important;
    transform: scale(1.04);
    position: relative;
}

.sb-plan--featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 118, 110, 0.22) !important;
}

.sb-plan-badge {
    position: absolute;
    /* NINO 2026-06-29: sit cleanly above the card. Combined with the card's
       padding-top:28px, this places the badge in the reserved top space,
       centered horizontally, never overlapping the price/title row. */
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--sb-radius-full, 9999px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    z-index: 5;
}

.sb-plan-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Plan Head */
.sb-plan-head {
    margin-bottom: 24px;
    text-align: center;
}

.sb-plan-name {
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sb-text-muted, #64748B) !important;
    margin: 0 0 8px !important;
}

.sb-plan--featured .sb-plan-name {
    color: var(--sb-primary-700, #0F766E) !important;
}

.sb-plan-desc {
    color: var(--sb-text-muted, #64748B) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    min-height: 46px;
}

/* Price Row - CENTERED */
.sb-plan-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    text-align: center;
}

.sb-plan-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--sb-text-secondary, #475569);
    align-self: flex-start;
    margin-top: 8px;
}

.sb-plan-price {
    font-size: 52px !important;
    font-weight: 800 !important;
    color: var(--sb-text, #0F172A) !important;
    letter-spacing: -0.03em !important;
    line-height: 1 !important;
}

.sb-plan--featured .sb-plan-price {
    color: var(--sb-primary-800, #115E59) !important;
}

.sb-plan-price--free {
    color: var(--sb-primary-700, #0F766E) !important;
}

.sb-plan-interval {
    font-size: 16px;
    color: var(--sb-text-muted, #64748B);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 6px;
}

.sb-plan-equivalent {
    text-align: center;
    color: var(--sb-text-muted, #64748B);
    font-size: 13px;
    margin-bottom: 24px;
    min-height: 20px;
}

/* Features - UNIFORM STYLE */
.sb-plan-features {
    list-style: none !important;
    padding: 24px 0 0 !important;
    margin: 24px 0 0 !important;
    border-top: 1px solid var(--sb-border, #E2E8F0) !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.sb-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--sb-text-secondary, #475569);
    font-size: 16px !important;
    line-height: 1.5;
    padding: 0 !important;
}

.sb-plan-features li strong {
    font-weight: 800;
    color: var(--sb-text, #0F172A);
}

.sb-check {
    width: 22px !important;
    height: 22px !important;
    padding: 4px;
    border-radius: 50%;
    background: var(--sb-primary-100, #CCFBF1);
    color: var(--sb-primary-700, #0F766E);
    flex-shrink: 0;
    margin-top: 1px;
    box-sizing: border-box;
}

.sb-plan--featured .sb-check {
    background: linear-gradient(135deg, var(--sb-primary-600, #0D9488) 0%, var(--sb-primary-700, #0F766E) 100%);
    color: #fff;
}

/* CTA - UNIFORM SIZE FOR ALL CARDS */
.sb-plan-cta {
    margin-top: 28px;
    text-align: center;
}

.sb-plan-cta .sb-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px !important;
    border-radius: var(--sb-radius, 12px) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    font-family: inherit;
    cursor: pointer;
    min-height: 54px;
    box-sizing: border-box;
}

.sb-plan-cta .sb-btn-outline {
    background: #fff !important;
    color: var(--sb-primary-700, #0F766E) !important;
    border-color: var(--sb-border, #E2E8F0) !important;
}

.sb-plan-cta .sb-btn-outline:hover {
    background: var(--sb-primary-50, #F0FDFA) !important;
    border-color: var(--sb-primary-600, #0D9488) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.15);
}

.sb-plan-cta .sb-btn-primary {
    background: linear-gradient(135deg, var(--sb-primary-600, #0D9488) 0%, var(--sb-primary-700, #0F766E) 100%) !important;
    color: #fff !important;
    border-color: var(--sb-primary-700, #0F766E) !important;
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.4) !important;
}

.sb-plan-cta .sb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.5) !important;
    color: #fff !important;
}

.sb-plan-cta .sb-btn-block {
    display: flex !important;
    width: 100%;
}
.sb-plan-price-row {
    white-space: nowrap !important;
}

.sb-plan-price {
    white-space: nowrap !important;
    display: inline-block !important;
}

.sb-plan-cell {
    overflow: hidden !important;
}

/* ============================================
   PRICING PAGE GRID — added 2026-06-26 (v9.x)
   The /pricing page uses .sb-pricing-grid while landing uses .ld-pricing-cards.
   Both need 3-column grid layout. This makes pricing page cards sit side-by-side.
   ============================================ */
.sb-pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    align-items: stretch !important;
}
@media (min-width: 768px) {
    .sb-pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px) {
    .sb-pricing-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ============================================
   PRICING PAGE — ROBUST SELLING TOOLKIT
   Strong trust signals, money-back guarantee, "since 2018", 
   stacked avatars, different testimonials from subscription page.
   ============================================ */
.prc-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 56px auto 0;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .prc-trust-bar { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.prc-trust-item {
    text-align: center;
    background: #fff;
    border: 1.5px solid var(--sb-border, #E2E8F0);
    border-radius: var(--sb-radius, 14px);
    padding: 20px 14px;
    transition: all 0.25s ease;
}
.prc-trust-item:hover {
    border-color: var(--sb-primary-200, #99F6E4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.08);
}
.prc-trust-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sb-primary-50, #F0FDFA);
    color: var(--sb-primary-600, #0D9488);
    border-radius: 12px;
}
.prc-trust-icon svg {
    width: 22px;
    height: 22px;
}
.prc-trust-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--sb-text, #0F1F1D);
    margin: 0 0 4px;
    line-height: 1.3;
}
.prc-trust-desc {
    font-size: 12px;
    color: var(--sb-text-muted, #5A6B69);
    margin: 0;
    line-height: 1.4;
}

.prc-since-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--sb-primary-700, #0F766E);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.prc-since-badge svg { width: 14px; height: 14px; }

/* Social proof avatars */
.prc-social-proof {
    text-align: center;
    margin: 32px auto 0;
    max-width: 720px;
    padding: 0 16px;
}
.prc-avatar-stack {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}
.prc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(15, 31, 29, 0.08);
}
.prc-avatar:first-child { margin-left: 0; }
.prc-avatar-1 { background: linear-gradient(135deg, #2A9288 0%, #1F7269 100%); }
.prc-avatar-2 { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
.prc-avatar-3 { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.prc-avatar-4 { background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%); }
.prc-avatar-5 {
    background: var(--sb-primary-50, #F0FDFA);
    color: var(--sb-primary-700, #0F766E);
    font-weight: 800;
}
.prc-social-proof-text {
    font-size: 13px;
    color: var(--sb-text-muted, #5A6B69);
    margin: 0;
    line-height: 1.5;
}
.prc-social-proof-text strong {
    color: var(--sb-text, #0F1F1D);
    font-weight: 700;
}

/* Money-back guarantee banner */
.prc-guarantee {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 880px;
    margin: 64px auto 0;
    padding: 22px 26px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid #10B981;
    border-radius: 16px;
}
.prc-guarantee-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.18);
}
.prc-guarantee-icon svg { width: 28px; height: 28px; }
.prc-guarantee-text {
    flex: 1;
    color: #064E3B;
    font-size: 14px;
    line-height: 1.55;
}
.prc-guarantee-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #065F46;
    margin-bottom: 4px;
}
@media (max-width: 600px) {
    .prc-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Pricing testimonials — DIFFERENT from subscription page */
.prc-testimonials {
    max-width: 1100px;
    margin: 96px auto 0;
    padding: 0 16px;
}
.prc-testimonials-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--sb-text, #0F1F1D);
    margin: 0 0 12px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.prc-testimonials-sub {
    text-align: center;
    color: var(--sb-text-muted, #5A6B69);
    font-size: 17px;
    margin: 0 auto 40px;
    max-width: 580px;
    line-height: 1.5;
}
.prc-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .prc-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .prc-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.prc-testimonial {
    background: #fff;
    border: 1.5px solid var(--sb-border, #E2E8F0);
    border-radius: 18px;
    padding: 24px 22px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}
.prc-testimonial:hover {
    transform: translateY(-3px);
    border-color: var(--sb-primary-200, #99F6E4);
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.1);
}
.prc-testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.prc-testimonial-quote {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--sb-text, #0F1F1D);
    margin: 0 0 18px;
    flex: 1;
}
.prc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--sb-border, #E2E8F0);
}
.prc-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sb-primary, #2A9288) 0%, var(--sb-primary-700, #0F766E) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.prc-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--sb-text, #0F1F1D);
    margin: 0 0 2px;
    line-height: 1.3;
}
.prc-testimonial-role {
    font-size: 12px;
    color: var(--sb-text-muted, #5A6B69);
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .prc-testimonials-title { font-size: 26px; }
    .prc-testimonials-sub { font-size: 15px; }
}

/* Compact CTA styling for pricing page cards */
.prc-final-cta-wrap {
    background: linear-gradient(160deg, #1F7269 0%, #2A9288 50%, #3DA89E 100%);
    color: #fff;
    text-align: center;
    padding: 80px 24px;
    margin: 96px 0 0;
}
