/* ==========================================================================
   Tiknetafrica Master Brand Design System & Components (V2 Light Tech)
   Light, Fresh, Credible, Modern, African, Purpose-Driven
   ========================================================================== */

:root,
[data-theme="light"] {
    --mb-bg: #F8FAFC;
    --mb-bg-surface: #FFFFFF;
    --mb-bg-card: #FFFFFF;
    --mb-bg-card-hover: #F1F5F9;
    --mb-border: #E2E8F0;
    --mb-border-hover: #CBD5E1;
    
    --mb-forest-green: #043927;
    --mb-gold: #D49A1F;
    --mb-green: #059669;
    --mb-green-light: #10B981;
    --mb-green-glow: rgba(5, 150, 105, 0.15);
    --mb-cyan: #0284C7;
    
    --mb-text-title: #0F172A;
    --mb-text-body: #334155;
    --mb-text-subtle: #64748B;
    
    --mb-header-bg: rgba(255, 255, 255, 0.94);
    --mb-hero-bg: radial-gradient(circle at 50% 0%, rgba(226, 247, 203, 0.45) 0%, rgba(248, 250, 252, 1) 75%);
    --mb-tag-bg: rgba(4, 57, 39, 0.08);
    --mb-tag-border: rgba(4, 57, 39, 0.15);
    
    --mb-font-head: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --mb-font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    
    --mb-radius-sm: 8px;
    --mb-radius-md: 14px;
    --mb-radius-lg: 22px;
    --mb-radius-xl: 32px;
    
    --mb-shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    --mb-shadow-hover: 0 16px 32px -4px rgba(15, 23, 42, 0.1), 0 6px 12px -2px rgba(15, 23, 42, 0.04);
    --mb-shadow-glow: 0 0 35px var(--mb-green-glow);
}

[data-theme="dark"] {
    --mb-bg: #0B0F19;
    --mb-bg-surface: #111827;
    --mb-bg-card: #141D2E;
    --mb-bg-card-hover: #1A263C;
    --mb-border: rgba(255, 255, 255, 0.08);
    --mb-border-hover: rgba(255, 255, 255, 0.18);
    
    --mb-forest-green: #34D399;
    --mb-gold: #F59E0B;
    --mb-green: #10B981;
    --mb-green-light: #34D399;
    --mb-green-glow: rgba(16, 185, 129, 0.25);
    --mb-cyan: #38BDF8;
    
    --mb-text-title: #F8FAFC;
    --mb-text-body: #94A3B8;
    --mb-text-subtle: #64748B;
    
    --mb-header-bg: rgba(11, 15, 25, 0.88);
    --mb-hero-bg: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.10) 0%, rgba(11, 15, 25, 1) 75%);
    --mb-tag-bg: rgba(16, 185, 129, 0.12);
    --mb-tag-border: rgba(16, 185, 129, 0.25);
    
    --mb-shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
    --mb-shadow-hover: 0 16px 32px -4px rgba(0, 0, 0, 0.7);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: 999px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    color: var(--mb-text-title);
}

.theme-toggle-btn:hover {
    background: var(--mb-bg-card-hover);
    border-color: var(--mb-forest-green);
    transform: scale(1.05);
}

/* Reset & Global Canvas */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body.master-brand-body {
    background-color: var(--mb-bg);
    color: var(--mb-text-body);
    font-family: var(--mb-font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--mb-text-title);
    font-family: var(--mb-font-head);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
.gradient-text-green {
    background: linear-gradient(135deg, #043927 0%, #059669 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #D49A1F 0%, #B45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(4, 57, 39, 0.08);
    border: 1px solid rgba(4, 57, 39, 0.15);
    color: var(--mb-forest-green);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--mb-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--mb-green);
}

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--mb-text-title);
}

.section-head p {
    font-size: 1.15rem;
    color: var(--mb-text-body);
}

/* Return Platform Breadcrumb Navigation */
.return-platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mb-forest-green);
    background: rgba(4, 57, 39, 0.06);
    border: 1px solid rgba(4, 57, 39, 0.18);
    padding: 6px 14px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.return-platform-pill:hover {
    background: rgba(4, 57, 39, 0.12);
    color: var(--mb-forest-green);
    transform: translateX(-2px);
}

/* Master Header & Navigation */
.mb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--mb-header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mb-border);
    padding: 14px 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

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

.mb-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.mb-logo-link:hover {
    transform: scale(1.02);
}

.mb-site-logo {
    height: 54px;
    width: 54px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(4, 57, 39, 0.18);
    object-fit: contain;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mb-logo-link:hover .mb-site-logo {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(4, 57, 39, 0.30);
}

.mb-brand-name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--mb-text-title);
    letter-spacing: -0.4px;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

.mb-brand-gold {
    font-size: 0.95rem;
    color: var(--mb-gold);
    letter-spacing: 2px;
    font-weight: 900;
    text-transform: uppercase;
}

.mb-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.mb-nav-item {
    position: relative;
}

.mb-nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--mb-text-body);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
}

.mb-nav-link:hover {
    color: var(--mb-forest-green);
}

.mb-nav-item.has-dropdown:hover .mb-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mb-dropdown {
    position: absolute;
    top: 100%;
    left: -16px;
    width: 290px;
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-md);
    padding: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
    z-index: 1010;
}

.mb-dropdown-link {
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    border-radius: var(--mb-radius-sm);
    transition: background 0.2s ease;
}

.mb-dropdown-link:hover {
    background: var(--mb-bg);
}

.mb-dropdown-title {
    font-weight: 700;
    color: var(--mb-text-title);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mb-dropdown-sub {
    font-size: 0.8rem;
    color: var(--mb-text-subtle);
    margin-top: 2px;
}

.mb-badge-pill {
    font-size: 0.65rem;
    padding: 2px 7px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-emerging {
    background: rgba(2, 132, 199, 0.1);
    color: #0284C7;
    border: 1px solid rgba(2, 132, 199, 0.25);
}

.mb-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-signin-text {
    background: transparent;
    border: none;
    color: var(--mb-text-body);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--mb-radius-sm);
    transition: color 0.2s ease;
}

.btn-signin-text:hover {
    color: var(--mb-forest-green);
}

.btn-signup-action {
    background: transparent;
    border: 1.5px solid var(--mb-forest-green);
    color: var(--mb-forest-green);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 7px 16px;
    border-radius: var(--mb-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

[data-theme="dark"] .btn-signup-action {
    border-color: #34D399;
    color: #34D399;
}

.btn-signup-action:hover {
    background: var(--mb-forest-green);
    color: #FFFFFF !important;
}

[data-theme="dark"] .btn-signup-action:hover {
    background: #34D399;
    color: #0B0F19 !important;
}

.btn-family-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mb-text-title);
    padding: 8px 14px;
    border-radius: var(--mb-radius-sm);
    background: #F1F5F9;
    border: 1px solid var(--mb-border);
}

.btn-family-link:hover {
    background: #E2E8F0;
}

.btn-partner-action {
    background: linear-gradient(135deg, #043927 0%, #059669 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 18px;
    border-radius: var(--mb-radius-sm);
    box-shadow: 0 4px 14px rgba(4, 57, 39, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-partner-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(4, 57, 39, 0.35);
}

/* Language Switcher */
.mb-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F1F5F9;
    border: 1px solid var(--mb-border);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--mb-text-subtle);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.lang-btn:hover {
    color: var(--mb-forest-green);
}

.lang-btn.active {
    color: #FFFFFF;
    background: var(--mb-forest-green);
}

.lang-divider {
    color: #CBD5E1;
    font-size: 0.75rem;
}

/* Mobile Toggle */
.mb-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1020;
}

.mb-mobile-toggle .bar {
    width: 24px;
    height: 2.5px;
    background: var(--mb-text-title);
    border-radius: 2px;
    transition: 0.3s;
}

.mb-mobile-drawer {
    display: none;
}

/* ==========================================================================
   SECTION 01: HERO
   ========================================================================== */
.mb-hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--mb-hero-bg);
    text-align: center;
    overflow: hidden;
}

.mb-hero-bg-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 154, 31, 0.1) 0%, rgba(4, 57, 39, 0.06) 50%, transparent 80%);
    pointer-events: none;
    filter: blur(60px);
}

.mb-hero-content {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

/* HERO SLOGAN: Guaranteed Single Line on Desktop */
.mb-hero h1 {
    font-size: clamp(1.85rem, 3.6vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--mb-text-title);
}

@media (min-width: 992px) {
    .mb-hero h1 {
        white-space: nowrap;
    }
}

.mb-hero-subtitle {
    font-size: 1.25rem;
    color: var(--mb-text-body);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.mb-hero-ctas,
.mb-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #043927 0%, #059669 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: var(--mb-radius-sm);
    box-shadow: 0 4px 18px rgba(4, 57, 39, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 57, 39, 0.35);
}

.btn-hero-secondary {
    background: var(--mb-bg-card);
    color: var(--mb-forest-green) !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: var(--mb-radius-sm);
    border: 1px solid var(--mb-border);
    box-shadow: var(--mb-shadow-card);
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    background: #F1F5F9;
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.mb-hero-signin-note {
    font-size: 0.95rem;
    color: var(--mb-text-subtle);
}

.mb-hero-signin-note button {
    background: none;
    border: none;
    color: var(--mb-forest-green);
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    font-size: inherit;
}

/* ==========================================================================
   SECTION 02: AUDIENCE ROUTER CARDS
   ========================================================================== */
.mb-router-section {
    padding: 80px 0;
    background: var(--mb-bg-card);
}

.mb-router-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mb-router-card {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--mb-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mb-router-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mb-shadow-hover);
    border-color: #CBD5E1;
}

.mb-router-card.card-highlight {
    border-color: rgba(5, 150, 105, 0.4);
    background: #FAFCFB;
}

.card-badge-top {
    position: absolute;
    top: 18px;
    right: 20px;
}

.card-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--mb-radius-md);
    background: rgba(4, 57, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mb-forest-green);
    margin-bottom: 20px;
}

.card-audience-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mb-forest-green);
    margin-bottom: 8px;
}

.mb-router-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--mb-text-title);
}

.mb-router-card p {
    font-size: 0.95rem;
    color: var(--mb-text-body);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.mb-card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--mb-forest-green);
    transition: gap 0.2s ease;
}

.mb-router-card:hover .mb-card-action {
    gap: 10px;
}

/* ==========================================================================
   SECTION 03: PRINCIPLES
   ========================================================================== */
.mb-principles-section {
    padding: 90px 0;
    background: var(--mb-bg);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.principle-card {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--mb-shadow-card);
}

.principle-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--mb-gold);
    margin-bottom: 14px;
}

.principle-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--mb-forest-green);
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--mb-text-body);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 04: THE TIKNET ECOSYSTEM
   ========================================================================== */
.mb-ecosystem-section {
    padding: 90px 0;
    background: var(--mb-bg-card);
    border-top: 1px solid var(--mb-border);
}

.ecosystem-diagram-container {
    max-width: 900px;
    margin: 40px auto 0;
    background: var(--mb-bg);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-xl);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--mb-shadow-card);
    position: relative;
}

.ecosystem-platform-node {
    display: inline-block;
    background: var(--mb-bg-card);
    border: 2px solid var(--mb-forest-green);
    border-radius: var(--mb-radius-lg);
    padding: 18px 36px;
    box-shadow: 0 8px 24px rgba(4, 57, 39, 0.12);
    position: relative;
    z-index: 2;
}

.ecosystem-platform-node h3 {
    font-size: 1.5rem;
    color: var(--mb-forest-green);
    margin: 0;
}

.ecosystem-platform-node p {
    font-size: 0.85rem;
    color: var(--mb-gold);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 4px 0 0;
}

.ecosystem-trunk-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--mb-forest-green) 0%, #CBD5E1 100%);
    margin: 0 auto;
}

.ecosystem-branches-line {
    height: 2px;
    max-width: 650px;
    margin: 0 auto;
    background: #CBD5E1;
    position: relative;
}

.ecosystem-branches-line::before,
.ecosystem-branches-line::after {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 25px;
    background: #CBD5E1;
}

.ecosystem-branches-line::before { left: 0; }
.ecosystem-branches-line::after { right: 0; }

.ecosystem-center-drop {
    width: 2px;
    height: 25px;
    background: #CBD5E1;
    margin: 0 auto;
}

.ecosystem-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
}

.eco-product-leaf {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-md);
    padding: 20px 18px;
    box-shadow: var(--mb-shadow-card);
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.eco-product-leaf:hover {
    transform: translateY(-2px);
}

.eco-leaf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.eco-leaf-family .eco-leaf-icon { background: rgba(52, 211, 153, 0.15); }
.eco-leaf-partner .eco-leaf-icon { background: rgba(16, 185, 129, 0.15); }
.eco-leaf-campus .eco-leaf-icon { background: rgba(34, 211, 238, 0.15); }

.eco-leaf-body h4 {
    font-size: 1.05rem;
    margin: 0 0 4px;
    font-weight: 800;
}

.eco-leaf-body p {
    font-size: 0.82rem;
    color: var(--mb-text-subtle);
    margin: 0;
    line-height: 1.4;
}

.ecosystem-tagline-note {
    margin-top: 36px;
    font-size: 0.95rem;
    color: var(--mb-text-subtle);
    font-weight: 500;
}

/* ==========================================================================
   SECTIONS 05 & 06: SPOTLIGHTS
   ========================================================================== */
.mb-spotlight-section {
    padding: 90px 0;
    background: var(--mb-bg);
}

.spotlight-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.spotlight-split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
    direction: rtl;
}

.spotlight-split.reverse > * {
    direction: ltr;
}

.spotlight-content h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
    line-height: 1.25;
}

.spotlight-content p {
    font-size: 1.05rem;
    color: var(--mb-text-body);
    line-height: 1.65;
    margin-bottom: 28px;
}

.spotlight-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
    list-style: none;
}

.spotlight-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--mb-text-title);
    font-weight: 600;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(4, 57, 39, 0.1);
    color: var(--mb-forest-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
}

.spotlight-visual-card {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-xl);
    padding: 32px;
    box-shadow: var(--mb-shadow-card);
    text-align: center;
    position: relative;
}

.spotlight-logo-badge {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.spotlight-main-img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 36px;
    border: 8px solid #1E293B;
    box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.4);
    display: block;
    overflow: hidden;
    background: #000;
}

.partner-benefit-triplet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.benefit-sub-card {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-sm);
    padding: 16px 14px;
    box-shadow: var(--mb-shadow-card);
}

.benefit-sub-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--mb-forest-green);
}

.benefit-sub-card p {
    font-size: 0.82rem;
    color: var(--mb-text-subtle);
    margin-bottom: 0;
    line-height: 1.4;
}

.spotlight-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.spotlight-actions .btn-hero-primary,
.spotlight-actions .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    width: auto;
    text-align: center;
    white-space: nowrap;
}

/* ==========================================================================
   SECTION 07: HOW IT WORKS
   ========================================================================== */
.mb-howitworks-section {
    padding: 90px 0;
    background: var(--mb-bg-card);
}

.steps-triplet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-item {
    background: var(--mb-bg);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--mb-shadow-card);
}

.step-num-pill {
    display: inline-block;
    background: rgba(4, 57, 39, 0.08);
    border: 1px solid rgba(4, 57, 39, 0.18);
    color: var(--mb-forest-green);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--mb-text-title);
}

.step-item p {
    font-size: 0.95rem;
    color: var(--mb-text-body);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 09: REAL WORLD EVIDENCE
   ========================================================================== */
.mb-realworld-section {
    padding: 90px 0;
    background: var(--mb-bg);
}

.realworld-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.realworld-card {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-md);
    overflow: hidden;
    box-shadow: var(--mb-shadow-card);
}

.realworld-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.realworld-card-caption {
    padding: 18px;
}

.realworld-card-caption h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--mb-forest-green);
}

.realworld-card-caption p {
    font-size: 0.85rem;
    color: var(--mb-text-subtle);
    line-height: 1.45;
}

/* ==========================================================================
   SECTION 10: PILLARS
   ========================================================================== */
.mb-pillars-section {
    padding: 90px 0;
    background: var(--mb-bg-card);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--mb-bg);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-md);
    padding: 30px 22px;
    box-shadow: var(--mb-shadow-card);
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--mb-forest-green);
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--mb-text-body);
    line-height: 1.55;
}

/* ==========================================================================
   SECTION 11: FUTURE
   ========================================================================== */
.mb-future-section {
    padding: 80px 0;
    background: var(--mb-bg);
    text-align: center;
}

.roadmap-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.roadmap-step {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mb-text-body);
    box-shadow: var(--mb-shadow-card);
}

.roadmap-step.active {
    border-color: var(--mb-forest-green);
    color: var(--mb-forest-green);
    background: rgba(4, 57, 39, 0.05);
}

.roadmap-arrow {
    color: #CBD5E1;
    font-weight: 900;
}

/* ==========================================================================
   SECTION 12: FINAL CALL TO ACTION
   ========================================================================== */
.mb-finalcta-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--mb-bg) 0%, rgba(226, 247, 203, 0.35) 100%);
}

.finalcta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.finalcta-card {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--mb-shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.finalcta-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.finalcta-card p {
    font-size: 0.95rem;
    color: var(--mb-text-body);
    line-height: 1.6;
    margin-bottom: 24px;
}

.finalcta-card.card-featured {
    background: #0D1E18 !important;
    border: 2px solid #10B981 !important;
    box-shadow: 0 12px 36px rgba(4, 57, 39, 0.35) !important;
}

.finalcta-card.card-featured h3 {
    color: #FFFFFF !important;
}

.finalcta-card.card-featured p {
    color: #CBD5E1 !important;
}

.btn-cta-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border-radius: var(--mb-radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-cta-outline {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    color: var(--mb-forest-green);
}

.btn-cta-outline:hover {
    background: #F1F5F9;
}

.btn-cta-green {
    background: linear-gradient(135deg, #043927 0%, #059669 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(4, 57, 39, 0.25);
}

.btn-cta-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(4, 57, 39, 0.35);
}

/* ==========================================================================
   MASTER FOOTER
   ========================================================================== */
.mb-footer {
    background: #042419;
    color: #E2E8F0;
    padding: 70px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-col p {
    color: #CBD5E1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 14px;
}

.footer-col h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-social-wrapper {
    margin-top: 20px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #FFFFFF;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
    background: #059669;
    border-color: var(--mb-gold);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.footer-social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

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

/* ==========================================================================
   SIGN-IN MODAL
   ========================================================================== */
.mb-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
}

.mb-modal-backdrop.active {
    display: flex;
}

.mb-modal-window {
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-lg);
    max-width: 440px;
    width: 100%;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    position: relative;
    color: var(--mb-text-title);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--mb-text-subtle);
    cursor: pointer;
}

.modal-portal-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.portal-option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--mb-bg);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-md);
    padding: 16px;
    transition: all 0.2s ease;
}

.portal-option-btn:hover {
    border-color: var(--mb-forest-green);
    background: #F1F5F9;
    transform: translateY(-2px);
}

.portal-opt-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(4, 57, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mb-forest-green);
}

.portal-opt-title {
    font-weight: 700;
    color: var(--mb-text-title);
    font-size: 1.05rem;
}

.portal-opt-sub {
    font-size: 0.85rem;
    color: var(--mb-text-subtle);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE UX OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .mb-hero h1 { font-size: 2.5rem; }
    .mb-router-grid, .principles-grid, .steps-triplet, .finalcta-grid {
        grid-template-columns: 1fr;
    }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .spotlight-split, .spotlight-split.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .mb-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .mb-header {
        padding: 10px 0;
    }
    .mb-header-inner {
        padding: 0 16px;
    }
    .mb-site-logo {
        height: 38px !important;
        width: 38px !important;
        border-radius: 9px;
    }
    .mb-logo-link {
        gap: 8px;
        min-width: 0;
        flex-shrink: 1;
    }
    .mb-brand-name {
        font-size: 1.15rem !important;
        white-space: nowrap;
        letter-spacing: -0.3px;
    }
    .mb-brand-gold {
        font-size: 0.8rem !important;
        letter-spacing: 1.5px;
    }
    .mb-nav {
        display: none !important;
    }
    .mb-header-actions {
        display: flex;
        align-items: center;
        gap: 6px !important;
        flex-shrink: 0;
    }
    .mb-header-actions .btn-family-link,
    .mb-header-actions .btn-partner-action,
    .mb-header-actions .btn-talk-action,
    .mb-header-actions .btn-signin-text,
    .mb-header-actions .btn-signup-action,
    .mb-header-actions .btn-hero-primary,
    .mb-header-actions a[class*="btn-"] {
        display: none !important;
    }
    .theme-toggle-btn {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        padding: 0;
        border-radius: 8px;
    }
    .mb-lang-switcher {
        padding: 3px 6px;
        gap: 3px;
        border-radius: 8px;
    }
    .lang-btn {
        font-size: 0.72rem;
        padding: 2px 4px;
        border-radius: 4px;
    }
    .mb-mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 7px;
        background: rgba(4, 57, 39, 0.07);
        border-radius: 8px;
        border: 1px solid var(--mb-border);
    }
    [data-theme="dark"] .mb-mobile-toggle {
        background: rgba(255, 255, 255, 0.08);
    }
    .mb-mobile-toggle .bar {
        width: 20px;
        height: 2px;
    }

    /* Mobile Drawer */
    .mb-mobile-drawer {
        position: fixed;
        top: 59px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--mb-bg-card);
        padding: 20px 20px 32px;
        display: none;
        flex-direction: column;
        gap: 16px;
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1px solid var(--mb-border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    .mb-mobile-drawer.active {
        display: flex;
        animation: mbSlideDrawer 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes mbSlideDrawer {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .mb-mobile-drawer-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
        list-style: none;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--mb-border);
    }
    .mb-mobile-drawer-links a {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--mb-text-title);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        border-radius: 10px;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .mb-mobile-drawer-links a:hover,
    .mb-mobile-drawer-links a:active {
        background: rgba(4, 57, 39, 0.08);
        color: var(--mb-forest-green);
    }
    [data-theme="dark"] .mb-mobile-drawer-links a:hover,
    [data-theme="dark"] .mb-mobile-drawer-links a:active {
        background: rgba(255, 255, 255, 0.08);
    }

    /* Mobile Section Spacing & Tight Layout */
    .mb-hero {
        padding: 36px 0 28px !important;
    }
    .mb-router-section,
    .mb-principles-section,
    .mb-ecosystem-section,
    .mb-spotlight-section,
    .mb-howitworks-section,
    .mb-pillars-section,
    .mb-future-section,
    .mb-finalcta-section,
    .partner-hardware-section,
    .app-showcase-section,
    .partner-benefits-section,
    .partner-venues-section {
        padding: 42px 0 !important;
    }
    .section-header,
    .section-head,
    .hw-centered-header {
        margin-bottom: 22px !important;
    }
    .section-title,
    .section-head h2,
    .hw-centered-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.22;
        letter-spacing: -0.4px;
        margin-bottom: 8px !important;
    }
    .section-desc,
    .section-head p,
    .hw-centered-header p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .mb-hero h1 {
        font-size: 1.95rem !important;
        line-height: 1.22;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
        word-break: break-word;
    }
    .mb-hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.55;
        margin-bottom: 22px;
        padding: 0 4px;
    }
    .mb-hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 18px;
        max-width: 95%;
        text-align: center;
    }
    .mb-hero-actions,
    .mb-hero-ctas {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 18px !important;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 13px 20px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }
    .hero-auth-helper {
        font-size: 0.85rem;
    }

    /* Grids & Cards */
    .mb-router-card {
        padding: 24px 18px;
    }
    .principles-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .steps-triplet {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .principle-card {
        padding: 22px 18px;
    }
    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .realworld-gallery {
        grid-template-columns: 1fr;
    }
    .spotlight-card {
        padding: 22px 18px;
    }
    .spotlight-title {
        font-size: 1.5rem !important;
        line-height: 1.25;
    }
    .spotlight-desc {
        font-size: 0.9rem !important;
        line-height: 1.55;
    }
    .spotlight-features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .partner-benefit-triplet {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .spotlight-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .spotlight-actions .btn-hero-primary,
    .spotlight-actions .btn-hero-secondary {
        width: 100% !important;
        text-align: center;
        flex: none;
        padding: 13px 18px;
        font-size: 0.95rem;
    }

    /* ==========================================
       Ecosystem Section on Mobile (Diagram Structure)
       ========================================== */
    .ecosystem-diagram-container {
        padding: 22px 14px !important;
        text-align: center;
        border-radius: 18px !important;
    }
    .ecosystem-platform-node {
        display: block !important;
        max-width: 100% !important;
        padding: 12px 16px !important;
        border-radius: 14px !important;
        margin: 0 auto !important;
    }
    .ecosystem-platform-node h3 {
        font-size: 1.2rem !important;
    }
    .ecosystem-platform-node p {
        font-size: 0.76rem !important;
    }
    .ecosystem-trunk-line {
        display: block !important;
        width: 2px !important;
        height: 24px !important;
        background: linear-gradient(180deg, #10B981 0%, #059669 100%) !important;
        margin: 0 auto !important;
    }
    .ecosystem-branches-line, .ecosystem-center-drop {
        display: none !important;
    }
    .ecosystem-products-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        position: relative !important;
        padding-left: 28px !important;
        max-width: 100% !important;
        margin-top: 0 !important;
    }
    .ecosystem-products-grid::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 24px;
        left: 8px;
        width: 2px;
        background: linear-gradient(180deg, #10B981 0%, #059669 50%, #06B6D4 100%);
    }
    .eco-product-leaf {
        position: relative !important;
        padding: 12px 14px !important;
        border-radius: 12px !important;
        background: var(--mb-bg) !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        text-align: left !important;
    }
    .eco-product-leaf::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        width: 20px;
        height: 2px;
        background: #10B981;
    }
    .eco-product-leaf::after {
        content: '';
        position: absolute;
        left: -24px;
        top: calc(50% - 4px);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #10B981;
        box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
    }
    .eco-leaf-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.15rem !important;
        border-radius: 10px !important;
    }
    .eco-leaf-body h4 {
        font-size: 0.95rem !important;
    }
    .eco-leaf-body p {
        font-size: 0.78rem !important;
    }
    .ecosystem-tagline-note {
        margin-top: 20px !important;
        font-size: 0.82rem !important;
        line-height: 1.4;
    }

    /* Final CTA */
    .finalcta-card {
        padding: 32px 18px;
    }
    .finalcta-title {
        font-size: 1.6rem !important;
        line-height: 1.25;
    }

    /* Hardware Spotlight Image Badge on Mobile (Prevents Overlap) */
    .hw-spotlight-visual {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 22px !important;
        overflow: visible !important;
    }
    .hw-spotlight-visual .hw-spotlight-img {
        border-radius: 18px !important;
    }
    .hw-floating-badge {
        position: static !important;
        margin: 12px auto 0 auto !important;
        font-size: 0.74rem !important;
        padding: 6px 14px !important;
        gap: 6px !important;
        background: rgba(15, 23, 42, 0.9) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        border-radius: 999px !important;
        max-width: 95% !important;
        text-align: center !important;
        display: inline-flex !important;
    }

    /* Sleek Phone Bezel on Mobile */
    .phone-frame-container {
        max-width: 220px !important;
    }
    .phone-frame {
        padding: 3px !important;
        border-radius: 26px !important;
        background: #090D16 !important;
        box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
    }
    .phone-screen-img {
        border-radius: 23px !important;
    }
    .phone-notch {
        width: 44px !important;
        height: 9px !important;
        top: 6px !important;
        border-radius: 7px !important;
    }

    /* Mobile Form Inputs & Touch Targets */
    input, select, textarea {
        font-size: 16px !important;
    }

    button, .btn-hero-primary, .btn-hero-secondary, .btn-cta-block, .portal-option-btn, .footer-social-btn {
        -webkit-tap-highlight-color: transparent;
    }
    button:active, .btn-hero-primary:active, .btn-hero-secondary:active, .btn-cta-block:active {
        transform: scale(0.98);
    }

    /* 2-Column Hero Collapse */
    .hero-container-2col {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .hero-container-2col .hero-left-col {
        text-align: center !important;
    }
    .hero-container-2col .hero-left-col h1 {
        text-align: center !important;
    }
    .hero-container-2col .mb-hero-subtitle {
        text-align: center !important;
    }
    .hero-container-2col .mb-hero-ctas {
        justify-content: center !important;
    }

    /* Master Footer on Mobile */
    .mb-footer {
        padding: 40px 0 20px;
        padding-bottom: max(20px, env(safe-area-inset-bottom));
        text-align: left !important;
    }
    .mb-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 20px !important;
        margin-bottom: 28px;
        text-align: left !important;
    }
    .footer-brand-col {
        grid-column: span 2;
        max-width: 100%;
        text-align: left !important;
    }
    .footer-brand-col .mb-site-logo {
        height: 42px !important;
        width: 42px !important;
    }
    .footer-col {
        text-align: left !important;
    }
    .footer-col h5 {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
        text-align: left !important;
    }
    .footer-links {
        text-align: left !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .footer-links li, .footer-links a {
        text-align: left !important;
        display: block !important;
    }
    .footer-social-wrapper {
        margin-top: 18px;
    }
    .footer-social-links {
        display: flex !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
    .footer-social-btn {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
    }
    .mb-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-top: 18px;
    }
}

@media (max-width: 360px) {
    .mb-footer-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .mb-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 20px !important;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
}

/* ==========================================================================
   PARTNER 2-COLUMN HERO & SHOWCASE
   ========================================================================== */
.hero-container-2col {
    display: grid !important;
    grid-template-columns: 1.05fr 0.95fr !important;
    gap: 48px !important;
    align-items: center !important;
}

.hero-container-2col .mb-hero-content,
.hero-container-2col .hero-left-col {
    max-width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
}

.hero-container-2col .hero-left-col h1 {
    text-align: left !important;
}

.hero-container-2col .mb-hero-subtitle {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-container-2col .mb-hero-ctas {
    justify-content: flex-start !important;
}

.hero-left-col {
    max-width: 100%;
    text-align: left;
    margin: 0;
}

.hero-left-col h1 {
    font-size: 2.5rem; line-height: 1.18;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 16px 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame-container {
    position: relative;
    max-width: 250px;
    width: 100%;
}

.phone-frame {
    width: 100%;
    background: #090D16;
    border-radius: 32px;
    padding: 3.5px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 12px;
    background: #000;
    border-radius: 10px;
    z-index: 10;
}

.phone-screen-img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
    aspect-ratio: 470 / 1024;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    z-index: 20;
    animation: floatBadge 3.5s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

.floating-badge.badge-top-right {
    top: 30px;
    right: -10px;
}

.floating-badge.badge-bottom-left {
    bottom: 40px;
    left: -10px;
    animation-delay: -1.75s;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.badge-icon.green { background: rgba(16, 185, 129, 0.2); }
.badge-icon.blue { background: rgba(59, 130, 246, 0.2); }

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info .title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #FFFFFF;
}

.badge-info .sub {
    font-size: 0.7rem;
    color: #94A3B8;
}

/* Trust Metrics */
.trust-metrics {
    display: flex;
    align-items: center;
    gap: 18px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-family: var(--mb-font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--mb-text-title);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--mb-text-subtle);
}

.metric-divider {
    width: 1px;
    height: 30px;
    background: var(--mb-border);
}

/* Opportunity Section Improvements */
.opportunity-box {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.8) 0%, rgba(248, 250, 252, 1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--mb-radius-xl);
    padding: 44px 36px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(5, 150, 105, 0.08);
}

.opportunity-box h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
    color: var(--mb-forest-green);
}

.opportunity-box p {
    font-size: 1.15rem;
    color: #334155 !important;
    max-width: 820px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.opportunity-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
    text-align: left;
}

.opp-pill-card {
    background: #FFFFFF;
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-md);
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.opp-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.opp-pill-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--mb-forest-green);
}

.opp-pill-card p {
    font-size: 0.9rem !important;
    color: #64748B !important;
    line-height: 1.5;
    margin: 0 !important;
}

/* Interactive App Showcase Section */
.app-showcase-section {
    padding: 80px 0;
    background: var(--mb-bg-card);
    border-top: 1px solid var(--mb-border);
    border-bottom: 1px solid var(--mb-border);
}

.showcase-tabs-wrapper {
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    min-width: max-content;
    padding: 0 10px;
}

.tab-btn {
    padding: 10px 20px;
    background: #F1F5F9;
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-pill);
    color: #64748B;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tab-btn:hover, .tab-btn.active {
    background: #10B981;
    color: #FFFFFF;
    border-color: #10B981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.showcase-display {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--mb-bg);
    padding: 44px;
    border-radius: var(--mb-radius-xl);
    border: 1px solid var(--mb-border);
    box-shadow: var(--mb-shadow-card);
}

.showcase-phone-container {
    display: flex;
    justify-content: center;
}

.showcase-phone-container .phone-frame {
    max-width: 290px !important;
    width: 100% !important;
}

.detail-card { 
    display: none !important; 
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.detail-card.active {
    display: block !important;
    animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 5px 14px;
    border-radius: var(--mb-radius-pill);
    margin-bottom: 16px;
}

.detail-card h3 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--mb-forest-green);
}

.detail-card p {
    color: #475569;
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.detail-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--mb-text-title);
    font-size: 0.95rem;
    line-height: 1.5;
}

.detail-features span { 
    color: #10B981; 
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 900px) {
    .hero-container-2col {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        text-align: center !important;
    }
    .hero-container-2col .mb-hero-content,
    .hero-container-2col .hero-left-col {
        text-align: center !important;
        margin: 0 auto !important;
    }
    .hero-container-2col .hero-left-col h1 {
        font-size: 2.2rem !important;
        text-align: center !important;
    }
    .hero-container-2col .mb-hero-subtitle {
        text-align: center !important;
        margin: 0 auto 24px !important;
    }
    .hero-container-2col .mb-hero-ctas {
        justify-content: center !important;
    }
    .trust-metrics {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 16px 24px !important;
        margin: 16px auto 24px !important;
    }
    .metric-divider {
        display: none !important;
    }
    .metric-item {
        text-align: center !important;
        align-items: center !important;
    }
    .metric-number {
        font-size: 1.25rem !important;
        white-space: nowrap !important;
    }
    .metric-label {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }
    .showcase-display {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        padding: 24px 16px !important;
    }
    .opportunity-pill-grid {
        grid-template-columns: 1fr !important;
    }
    .floating-badge {
        display: none !important;
    }
}

/* ==========================================================================
   PWA TRUST BADGE & INSTALLATION MODAL
   ========================================================================== */
.pwa-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #047857;
    margin-top: 14px;
    margin-bottom: 24px;
}

[data-theme="dark"] .pwa-trust-badge {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34D399;
}

.pwa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: pwaFadeIn 0.25s ease-out;
}

@keyframes pwaFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pwa-modal-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    animation: pwaPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .pwa-modal-container {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.12);
    color: #F8FAFC;
}

@keyframes pwaPop {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.pwa-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: #F1F5F9;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

[data-theme="dark"] .pwa-modal-close {
    background: #1F2937;
    color: #94A3B8;
}

.pwa-modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.pwa-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.pwa-modal-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.25;
}

[data-theme="dark"] .pwa-modal-header h2 {
    color: #FFFFFF;
}

.pwa-modal-header p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 20px;
}

[data-theme="dark"] .pwa-modal-header p {
    color: #94A3B8;
}

.pwa-platform-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #F8FAFC;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
}

[data-theme="dark"] .pwa-platform-tabs {
    background: #1F2937;
    border-color: rgba(255, 255, 255, 0.08);
}

.pwa-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 9px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s;
}

[data-theme="dark"] .pwa-tab-btn {
    color: #94A3B8;
}

.pwa-tab-btn.active {
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .pwa-tab-btn.active {
    background: #111827;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pwa-guide-content {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pwa-guide-content.active {
    display: flex;
}

.pwa-step-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 16px;
}

[data-theme="dark"] .pwa-step-card {
    background: #1F2937;
    border-color: rgba(255, 255, 255, 0.06);
}

.pwa-step-num {
    width: 28px;
    height: 28px;
    background: #10B981;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pwa-step-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
}

[data-theme="dark"] .pwa-step-body h4 {
    color: #FFFFFF;
}

.pwa-step-body p {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
}

[data-theme="dark"] .pwa-step-body p {
    color: #94A3B8;
}

.pwa-modal-footer {
    display: flex;
}

.btn-pwa-launch {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    transition: all 0.25s;
}

.btn-pwa-launch:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}

/* ==========================================================================
   HARDWARE + SOFTWARE DUO SHOWCASE
   ========================================================================== */
.hardware-duo-section, .partner-hardware-section {
    padding: 90px 0;
    background: var(--mb-bg-card, #FFFFFF);
    border-top: 1px solid var(--mb-border, #E2E8F0);
    border-bottom: 1px solid var(--mb-border, #E2E8F0);
}

[data-theme="dark"] .hardware-duo-section,
[data-theme="dark"] .partner-hardware-section {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.08);
}

.hardware-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.hardware-duo-grid.reverse {
    grid-template-columns: 1.05fr 1fr;
}

.hardware-duo-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 16px 0;
    color: var(--mb-forest-green, #043927);
}

[data-theme="dark"] .hardware-duo-content h2 {
    color: #F9FAFB;
}

.hardware-duo-content .section-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
}

[data-theme="dark"] .hardware-duo-content .section-desc {
    color: #9CA3AF;
}

.hw-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hw-feat-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #F8FAFC;
    border: 1px solid var(--mb-border, #E2E8F0);
    border-radius: 16px;
    padding: 18px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

[data-theme="dark"] .hw-feat-card {
    background: #1F2937;
    border-color: rgba(255, 255, 255, 0.08);
}

.hw-feat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.06);
}

.hw-feat-icon {
    font-size: 1.6rem;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hw-feat-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mb-forest-green, #043927);
    margin-bottom: 4px;
}

[data-theme="dark"] .hw-feat-card h4 {
    color: #F3F4F6;
}

.hw-feat-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

[data-theme="dark"] .hw-feat-card p {
    color: #9CA3AF;
}

.hw-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--mb-border, rgba(255, 255, 255, 0.15));
}

.hw-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hw-image-frame:hover .hw-showcase-img {
    transform: scale(1.02);
}

.hw-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hw-badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
}

@media (max-width: 900px) {
    .hardware-duo-grid, .hardware-duo-grid.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hardware-duo-grid.reverse .hardware-duo-visual {
        order: 2;
    }
    .hardware-duo-grid.reverse .hardware-duo-content {
        order: 1;
    }
}

/* ==========================================================================
   HARDWARE SPOTLIGHT & 3-PILLAR GRID (REVISED ARRANGEMENT)
   ========================================================================== */
.partner-hardware-section {
    padding: 90px 0 !important;
    background: #FFFFFF !important;
    border-top: 1px solid #E2E8F0 !important;
    border-bottom: 1px solid #E2E8F0 !important;
}

[data-theme="dark"] .partner-hardware-section {
    background: #0F172A !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.partner-hardware-section .hw-centered-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px auto;
}

.partner-hardware-section .hw-centered-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #043927;
    margin: 14px 0;
}

[data-theme="dark"] .partner-hardware-section .hw-centered-header h2 {
    color: #FFFFFF;
}

.partner-hardware-section .hw-centered-header p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

[data-theme="dark"] .partner-hardware-section .hw-centered-header p {
    color: #94A3B8;
}

.partner-hardware-section .hw-spotlight-visual {
    max-width: 980px;
    margin: 0 auto 36px auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

[data-theme="dark"] .partner-hardware-section .hw-spotlight-visual {
    border-color: rgba(255, 255, 255, 0.12);
}

.partner-hardware-section .hw-spotlight-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.partner-hardware-section .hw-3pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto;
}

.partner-hardware-section .hw-pillar-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 24px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .partner-hardware-section .hw-pillar-card {
    background: #1E293B;
    border-color: rgba(255, 255, 255, 0.08);
}

.partner-hardware-section .hw-pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.08);
}

.partner-hardware-section .hw-pillar-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.partner-hardware-section .hw-pillar-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #043927;
    margin-bottom: 8px;
}

[data-theme="dark"] .partner-hardware-section .hw-pillar-card h4 {
    color: #F8FAFC;
}

.partner-hardware-section .hw-pillar-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

[data-theme="dark"] .partner-hardware-section .hw-pillar-card p {
    color: #94A3B8;
}

@media (max-width: 900px) {
    .partner-hardware-section .hw-3pillar-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   PARTNER & GENERAL SUBSCRIPTION PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 80px 0;
    background: var(--mb-bg);
}

.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 6px;
    border-radius: 999px;
    margin: 24px auto 0;
    border: 1px solid var(--mb-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .pricing-toggle-wrapper {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.1);
}

.billing-toggle-btn {
    background: transparent;
    border: none;
    padding: 8px 18px;
    border-radius: 999px;
    font-family: var(--mb-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mb-text-subtle);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.billing-toggle-btn.active {
    background: var(--mb-forest-green);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(4, 57, 39, 0.25);
}

[data-theme="dark"] .billing-toggle-btn.active {
    background: #059669;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.billing-discount-badge {
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.billing-toggle-btn.active .billing-discount-badge {
    background: #FFFFFF;
    color: #047857;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 36px auto 0;
    align-items: stretch;
}

.pricing-card {
    padding: 34px 28px;
    background: var(--mb-bg-card);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: var(--mb-shadow-card);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mb-shadow-hover);
    border-color: var(--mb-green-light);
}

.pricing-card.featured {
    background: linear-gradient(165deg, rgba(226, 247, 203, 0.35) 0%, var(--mb-bg-card) 60%);
    border: 2px solid var(--mb-green-light);
    box-shadow: 0 12px 36px -4px rgba(5, 150, 105, 0.15);
}

[data-theme="dark"] .pricing-card.featured {
    background: linear-gradient(165deg, rgba(16, 185, 129, 0.12) 0%, #141D2E 60%);
    border-color: #10B981;
    box-shadow: 0 12px 36px -4px rgba(0, 0, 0, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 28px;
    background: linear-gradient(135deg, #043927 0%, #059669 100%);
    color: #FFF;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(4, 57, 39, 0.3);
}

[data-theme="dark"] .pricing-badge {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

.plan-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--mb-forest-green);
    margin-bottom: 12px;
}

[data-theme="dark"] .plan-pill {
    color: #34D399;
    background: rgba(16, 185, 129, 0.2);
}

.plan-pill.popular-pill {
    background: rgba(16, 185, 129, 0.22);
    color: #047857;
    font-weight: 800;
}

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

.plan-pill.sovereign-pill {
    background: rgba(99, 102, 241, 0.12);
    color: #4F46E5;
}

[data-theme="dark"] .plan-pill.sovereign-pill {
    background: rgba(99, 102, 241, 0.25);
    color: #A5B4FC;
}

.pricing-header h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--mb-text-title);
    margin-bottom: 6px;
}

.pricing-header p {
    font-size: 0.88rem;
    color: var(--mb-text-subtle);
    line-height: 1.5;
    margin-bottom: 14px;
}

.pricing-card .price {
    font-family: var(--mb-font-head);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 12px 0 4px;
    color: var(--mb-text-title);
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.pricing-card .price-period {
    font-size: 0.95rem;
    color: var(--mb-text-subtle);
    font-weight: 600;
    font-family: var(--mb-font-body);
}

.savings {
    font-size: 0.82rem;
    color: var(--mb-green);
    font-weight: 700;
    display: block;
    min-height: 18px;
    margin-bottom: 16px;
}

[data-theme="dark"] .savings {
    color: #34D399;
}

.pricing-features {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--mb-text-body);
    line-height: 1.45;
    align-items: flex-start;
}

.pricing-features span:first-child {
    color: var(--mb-green);
    font-weight: 800;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0 !important;
    }
}

