/* ================================================================
   ACBIZ GLOBAL WS — Homepage Stylesheet
   Font: Syne (headings) + DM Sans (body)
   Theme: Dark-navy enterprise with cyan-blue accent system
   ================================================================ */

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

:root {
    --navy:       #080E1D;
    --navy-2:     #0D1526;
    --navy-3:     #121D35;
    --navy-4:     #1A2845;
    --sky:        #0EA5E9;
    --sky-2:      #38BDF8;
    --blue:       #2563EB;
    --blue-2:     #3B82F6;
    --cyan:       #06B6D4;
    --white:      #FFFFFF;
    --white-80:   rgba(255,255,255,0.80);
    --white-50:   rgba(255,255,255,0.50);
    --white-20:   rgba(255,255,255,0.20);
    --white-08:   rgba(255,255,255,0.08);
    --white-04:   rgba(255,255,255,0.04);
    --border:     rgba(255,255,255,0.10);
    --border-2:   rgba(255,255,255,0.06);
    --radius-sm:  6px;
    --radius:     12px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --shadow-md:  0 4px 24px rgba(0,0,0,0.35);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.45);
    --font-head:  'Syne', sans-serif;
    --font-body:  'DM Sans', sans-serif;
    --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 32px;
    background: rgba(8,14,29,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(8,14,29,0.97);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-text {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
}
.logo-accent { color: var(--sky); }

/* Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-group {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white-80);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item:hover { color: var(--white); background: var(--white-08); }
.chev { font-size: 10px; opacity: 0.6; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--navy-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--white-80);
}
.dd-item:hover { background: var(--white-08); color: var(--white); }
.dd-icon { font-size: 20px; flex-shrink: 0; }
.dd-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.3; }
.dd-item em { display: block; font-size: 12px; font-style: normal; color: var(--white-50); margin-top: 2px; }

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.btn-header-ghost {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white-80);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-header-ghost:hover { color: var(--white); background: var(--white-08); }
.btn-header-outline {
    font-size: 14px;
    font-weight: 600;
    color: var(--sky);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(14,165,233,0.4);
    transition: var(--transition);
}
.btn-header-outline:hover { background: rgba(14,165,233,0.1); }
.btn-header-primary {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--blue);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-header-primary:hover { background: var(--blue-2); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white-80);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-2);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    transform: translateY(-8px);
    opacity: 0;
    transition: var(--transition);
}
.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-80);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-nav-cta {
    display: flex;
    gap: 10px;
    padding-top: 12px;
}
.mobile-nav-cta .btn-header-ghost,
.mobile-nav-cta .btn-header-primary {
    flex: 1;
    text-align: center;
    padding: 10px;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    padding: 140px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.hero-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.20) 0%, transparent 70%);
    top: 200px; right: 0;
    animation-delay: 4s;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    bottom: 100px; left: 40%;
    animation-delay: 8s;
}
@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,165,233,0.12);
    border: 1px solid rgba(14,165,233,0.30);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--sky-2);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--sky);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title-gradient {
    background: linear-gradient(135deg, var(--sky) 0%, var(--blue-2) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white-80);
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 52px;
    animation: fadeInUp 0.6s 0.3s ease both;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(37,99,235,0.45);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,99,235,0.55);
}
.btn-hero-ghost {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-80);
    padding: 14px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.btn-hero-ghost:hover {
    color: var(--white);
    border-color: var(--white-20);
    background: var(--white-04);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: fadeInUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-label { font-size: 13px; color: var(--white-50); margin-top: 4px; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* Dashboard Mock */
.dashboard-mock {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(37,99,235,0.15);
    animation: fadeInRight 0.8s 0.3s ease both;
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mock-bar {
    background: var(--navy-3);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--white-20);
}
.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FEBC2E; }
.mock-dots span:nth-child(3) { background: #28C840; }
.mock-url {
    flex: 1;
    background: var(--navy-4);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: var(--white-50);
    text-align: center;
}
.mock-body { display: flex; min-height: 360px; }
.mock-sidebar {
    width: 130px;
    background: var(--navy-3);
    border-right: 1px solid var(--border);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}
.ms-logo {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    color: var(--sky);
    padding: 0 8px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.ms-item {
    font-size: 11px;
    color: var(--white-50);
    padding: 7px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.ms-item.active { background: rgba(37,99,235,0.25); color: var(--sky-2); }
.ms-item:hover { background: var(--white-04); color: var(--white-80); }

.mock-main { flex: 1; padding: 16px; overflow: hidden; }
.mm-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.mm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.mm-card {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.mm-card.blue { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.30); }
.mm-card.green { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.30); }
.mm-card.purple { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.30); }
.mmc-label { font-size: 9px; color: var(--white-50); margin-bottom: 4px; }
.mmc-value { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--white); }

.mm-chart { margin-bottom: 12px; }
.chart-label { font-size: 9px; color: var(--white-50); margin-bottom: 8px; }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.chart-bar {
    flex: 1;
    background: rgba(37,99,235,0.35);
    border-radius: 3px 3px 0 0;
    transition: var(--transition);
}
.chart-bar.active { background: var(--sky); }

.mm-table { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.mt-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    padding: 6px 10px;
    font-size: 10px;
    border-bottom: 1px solid var(--border-2);
    align-items: center;
}
.mt-row:last-child { border-bottom: none; }
.mt-row.header { color: var(--white-50); font-weight: 600; background: var(--white-04); }
.badge-live {
    background: rgba(16,185,129,0.2);
    color: #34D399;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
}

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--navy-2);
    padding: 20px 32px;
}
.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-label {
    font-size: 13px;
    color: var(--white-50);
    flex-shrink: 0;
    font-style: italic;
}
.trust-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.trust-logos span {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--white-30);
    letter-spacing: 0.5px;
    opacity: 0.4;
    transition: var(--transition);
}
.trust-logos span:hover { opacity: 0.7; }

/* ─── SECTION COMMON ─────────────────────────────────────────── */
.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
}
.section-title span {
    background: linear-gradient(135deg, var(--sky) 0%, var(--blue-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--white-50);
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

/* ─── DIVISIONS ──────────────────────────────────────────────── */
.divisions-section { background: var(--navy); }
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.divisions-grid .division-card:nth-child(4) { grid-column: 1 / 2; }
.divisions-grid .division-card:nth-child(5) { grid-column: 2 / 4; }

.division-card {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.division-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}
.division-card:hover {
    border-color: rgba(14,165,233,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.division-card:hover::before { opacity: 1; }

.division-card.featured {
    border-color: rgba(37,99,235,0.40);
    background: linear-gradient(135deg, rgba(37,99,235,0.15) 0%, var(--navy-2) 60%);
}
.division-card.featured::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(37,99,235,0.8), transparent); }

.featured-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--blue);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.div-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.div-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.div-icon.cloud  { background: rgba(14,165,233,0.15); color: var(--sky); }
.div-icon.domain { background: rgba(6,182,212,0.15); color: var(--cyan); }
.div-icon.saas   { background: rgba(139,92,246,0.15); color: #A78BFA; }
.div-icon.enterprise { background: rgba(37,99,235,0.15); color: var(--blue-2); }
.div-icon.services   { background: rgba(245,158,11,0.15); color: #FCD34D; }

.div-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--white-50);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.division-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}
.division-card > p {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.6;
    margin-bottom: 20px;
}
.div-features {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.div-features li {
    font-size: 13px;
    color: var(--white-80);
    display: flex;
    align-items: center;
    gap: 8px;
}
.div-features li::before {
    content: '✓';
    color: var(--sky);
    font-weight: 700;
    flex-shrink: 0;
}
.div-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--sky);
    transition: var(--transition);
}
.div-link:hover { color: var(--sky-2); }

/* ─── WHY SECTION ────────────────────────────────────────────── */
.why-section {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
}
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.wf-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.wf-icon { font-size: 24px; flex-shrink: 0; line-height: 1.4; }
.wf-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.wf-item p { font-size: 14px; color: var(--white-50); line-height: 1.6; }

/* Tenant Diagram */
.tenant-diagram {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
}
.td-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.td-hub {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: 0.5px;
    box-shadow: 0 0 40px rgba(37,99,235,0.5);
    z-index: 2;
}
.td-ring { position: absolute; inset: 0; }
.td-node {
    position: absolute;
    top: 50%; left: 50%;
    width: 70px; height: 70px;
    margin-top: -35px; margin-left: -35px;
    transform: rotate(var(--a)) translateY(-140px) rotate(calc(-1 * var(--a)));
    background: var(--navy-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--white-80);
    gap: 4px;
    transition: var(--transition);
    cursor: default;
}
.td-node span { font-size: 18px; }
.td-node:hover {
    border-color: var(--sky);
    background: rgba(14,165,233,0.10);
    color: var(--white);
    box-shadow: 0 0 20px rgba(14,165,233,0.2);
}

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing-section { background: var(--navy); }
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}
.pt-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-50);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pt-label.active { color: var(--white); }
.save-badge {
    background: rgba(16,185,129,0.2);
    color: #34D399;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}
.pt-switch {
    width: 40px; height: 22px;
    background: var(--navy-4);
    border: 1px solid var(--border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.pt-switch.on { background: var(--blue); border-color: var(--blue); }
.pt-thumb {
    position: absolute;
    top: 2px; left: 2px;
    width: 16px; height: 16px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}
.pt-switch.on .pt-thumb { transform: translateX(18px); }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}
.plan-card {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.plan-card.popular {
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(37,99,235,0.15) 0%, var(--navy-2) 100%);
    transform: scale(1.02);
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.plan-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.plan-popular-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.plan-name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.plan-desc {
    font-size: 13px;
    color: var(--white-50);
    margin-bottom: 24px;
    line-height: 1.5;
}
.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 28px;
}
.price-curr { font-size: 20px; font-weight: 700; color: var(--white-80); margin-bottom: 6px; }
.price-num {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    transition: var(--transition);
}
.price-per { font-size: 14px; color: var(--white-50); margin-bottom: 8px; }
.enterprise-price {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 28px;
}
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    margin-bottom: 28px;
}
.plan-features li {
    font-size: 13px;
    color: var(--white-80);
}
.plan-features li.dim { color: var(--white-30); opacity: 0.4; }
.btn-plan {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-plan.primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.btn-plan.primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,99,235,0.5); }
.btn-plan.outline {
    border: 1px solid var(--border);
    color: var(--white-80);
}
.btn-plan.outline:hover { border-color: var(--sky); color: var(--sky); }

/* ─── FEATURES HIGHLIGHT ─────────────────────────────────────── */
.features-section {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.feat {
    background: var(--navy-2);
    padding: 36px 28px;
    transition: var(--transition);
}
.feat:hover { background: var(--navy-3); }
.feat-icon { font-size: 28px; margin-bottom: 14px; }
.feat h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.feat p { font-size: 13px; color: var(--white-50); line-height: 1.6; }

/* ─── CTA ────────────────────────────────────────────────────── */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 32px;
    background: var(--navy);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.20) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 17px;
    color: var(--white-50);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}
.btn-cta-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(37,99,235,0.45);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.55); }
.btn-cta-ghost {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-80);
    padding: 16px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.btn-cta-ghost:hover { color: var(--white); border-color: var(--white-20); }
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-trust span { font-size: 13px; color: var(--white-50); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px 48px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
}
.footer-tagline {
    font-style: italic;
    color: var(--white-50);
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 16px;
}
.footer-copy { font-size: 12px; color: var(--white-30); line-height: 1.7; opacity: 0.5; }
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.footer-col h5 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--white-50);
    margin-bottom: 8px;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-bottom span {
    font-size: 12px;
    color: var(--white-30);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.4;
}
.footer-bottom span:hover { opacity: 0.8; color: var(--sky); }

/* ─── SCROLL ANIMATION ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .divisions-grid .division-card:nth-child(4),
    .divisions-grid .division-card:nth-child(5) {
        grid-column: auto;
    }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-card.popular { transform: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .tenant-diagram { width: 300px; height: 300px; }
    .td-node { transform: rotate(var(--a)) translateY(-110px) rotate(calc(-1 * var(--a))); width: 60px; height: 60px; font-size: 9px; }
}

@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
        gap: 48px;
    }
    .hero-visual { order: -1; }
    .dashboard-mock { max-width: 520px; margin: 0 auto; }
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .header-cta { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 22px; }
    .divisions-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; }
    .section-wrap { padding: 60px 20px; }
    .trust-inner { gap: 16px; }
    .trust-logos { gap: 16px; }
}
