/**
 * Sultify EduSuite AI — Ultra-Modern 2026 SaaS Design System & Landing Stylesheet
 * Complete visual overhaul: Glassmorphism 3.0, Neon Aurora Glows, Section Dividers,
 * 3D Interactive Cockpit, and Fluid Transitions.
 */

:root {
    /* Color Palette - Cyber Dark (Default) */
    --landing-bg: #030712;
    --landing-bg-rgb: 3, 7, 18;
    --landing-surface: #0a0f1d;
    --landing-surface-rgb: 10, 15, 29;
    --landing-surface-2: #0f172a;
    --landing-card: rgba(15, 23, 42, 0.72);
    --landing-card-hover: rgba(22, 33, 62, 0.85);
    --landing-card-border: rgba(255, 255, 255, 0.08);
    --landing-card-border-glow: rgba(99, 102, 241, 0.4);
    
    /* Brand Accents */
    --primary: #6366f1;
    --primary-rgb: 99, 102, 241;
    --primary-light: #818cf8;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    --accent-pink: #ec4899;

    /* Typography & Contrast */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Gradients */
    --brand-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 45%, #ec4899 100%);
    --cyan-emerald-gradient: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --amber-sunset-gradient: linear-gradient(135deg, #f59e0b 0%, #f43f5e 100%);
    --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* Atmospheric Glows */
    --hero-glow-1: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.28) 0%, transparent 50%);
    --hero-glow-2: radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.22) 0%, transparent 45%);
    --hero-glow-3: radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
}

[data-theme="light"] {
    --landing-bg: #f8fafc;
    --landing-bg-rgb: 248, 250, 252;
    --landing-surface: rgba(255, 255, 255, 0.9);
    --landing-surface-rgb: 255, 255, 255;
    --landing-surface-2: #f1f5f9;
    --landing-card: rgba(255, 255, 255, 0.88);
    --landing-card-hover: rgba(255, 255, 255, 0.98);
    --landing-card-border: rgba(226, 232, 240, 0.88);
    --landing-card-border-glow: rgba(99, 102, 241, 0.4);

    /* Ultra-crisp high-contrast text for light theme */
    --text-primary: #090d16;
    --text-secondary: #334155;
    --text-muted: #64748b;

    --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.88) 100%);
    --hero-glow-1: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.18) 0%, transparent 50%);
    --hero-glow-2: radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.14) 0%, transparent 45%);
    --hero-glow-3: radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.16) 0%, transparent 50%);
}

/* Base Reset & Smooth Scroll */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--landing-bg);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1.25;
}

code, .font-mono {
    font-family: 'JetBrains Mono', monospace;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

[data-theme="light"] .nav-link {
    color: var(--text-secondary);
}

[data-theme="light"] .nav-link:hover {
    color: var(--primary);
}

/* Ambient Canvas & Particle System */
.hero-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Atmospheric Glow Meshes */
.ambient-glow-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.65;
    animation: floatSlow 18s ease-in-out infinite alternate;
}

.ambient-orb-1 {
    top: -10%;
    left: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
}

.ambient-orb-2 {
    top: 20%;
    right: -10%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, transparent 70%);
    animation-delay: -6s;
}

.ambient-orb-3 {
    bottom: 5%;
    left: 20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, transparent 70%);
    animation-delay: -12s;
}

/* Subtle Cyber Grid Matrix */
.ambient-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    pointer-events: none;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
}

[data-theme="light"] .ambient-orb {
    opacity: 0.85;
    filter: blur(120px);
}

[data-theme="light"] .ambient-orb-1 {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
}

[data-theme="light"] .ambient-orb-2 {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.14) 0%, rgba(244, 63, 94, 0.06) 50%, transparent 70%);
}

[data-theme="light"] .ambient-orb-3 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, rgba(16, 185, 129, 0.06) 50%, transparent 70%);
}

[data-theme="light"] .ambient-grid {
    background-image: radial-gradient(rgba(99, 102, 241, 0.14) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, black 40%, transparent 96%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 96%);
    opacity: 0.75;
}

/* Global Container */
.page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.75rem;
    position: relative;
    z-index: 2;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION TRANSITION DIVIDERS
   ───────────────────────────────────────────────────────────────── */
.section-transition-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.section-transition-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.divider-glow-line {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-cyan), transparent);
    opacity: 0.5;
    box-shadow: 0 0 15px var(--primary);
}

/* ─────────────────────────────────────────────────────────────────
   SITE HEADER & REDESIGNED 3-SEGMENT DYNAMIC COMMAND RIBBON
   ───────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 1rem;
    z-index: 1000;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(8, 12, 26, 0.82);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    box-shadow: 
        0 20px 50px -15px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(99, 102, 241, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.header-inner.scrolled {
    background: rgba(6, 10, 22, 0.96);
    box-shadow: 
        0 25px 60px -12px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(99, 102, 241, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
    border-color: rgba(99, 102, 241, 0.45);
    padding: 0.55rem 1.15rem;
}

[data-theme="light"] .header-inner {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 
        0 15px 35px -5px rgba(0, 0, 0, 0.08),
        0 0 25px rgba(99, 102, 241, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Segment 1: Brand Capsule */
.header-brand-capsule {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.6);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(45deg);
    animation: shimmer 5s infinite;
}

.brand-title {
    font-weight: 900;
    font-size: 1.12rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
}

[data-theme="light"] .brand-title {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Segment 2: Centered Floating Navigation Island */
.header-nav-island {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

[data-theme="light"] .nav-menu {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.nav-pill i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.nav-pill:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav-pill:hover i {
    opacity: 1;
    transform: scale(1.15);
}

[data-theme="light"] .nav-pill:hover {
    background: rgba(0, 0, 0, 0.06);
}

/* Segment 3: Command & Action Desk */
.header-action-desk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.live-telemetry-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-emerald);
    letter-spacing: 0.04em;
    cursor: default;
}

.status-dot-radar {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    box-shadow: 0 0 10px var(--accent-emerald);
    animation: radarPulse 2s infinite;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--landing-card-border);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(99, 102, 241, 0.4);
    transform: rotate(30deg) scale(1.05);
}

.btn-header-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--landing-card-border);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-header-login:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

[data-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

[data-theme="light"] .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

[data-theme="light"] .btn-header-login {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

[data-theme="light"] .btn-header-login:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.35);
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.52rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 
        0 4px 18px -2px rgba(99, 102, 241, 0.55),
        0 0 12px rgba(217, 70, 239, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.btn-header-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px -2px rgba(99, 102, 241, 0.75),
        0 0 22px rgba(217, 70, 239, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-header-cta:hover::before {
    left: 140%;
}

.btn-header-cta:active {
    transform: translateY(0) scale(0.98);
}

.btn-header-cta i {
    color: #fef08a; /* Soft golden bolt */
    font-size: 0.88rem;
    filter: drop-shadow(0 0 6px rgba(254, 240, 138, 0.7));
    transition: transform 0.25s ease;
}

.btn-header-cta:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Mobile Menu Trigger */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--landing-card-border);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

[data-theme="light"] .mobile-menu-btn {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

[data-theme="light"] .mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* Responsive Brand Titles */
.brand-title-full {
    display: inline;
}
.brand-title-short {
    display: none;
}

.header-cta-desktop {
    display: inline-flex;
}

/* Mobile Drawer Backdrop */
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 18, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Luxury Mobile Drawer */
.mobile-drawer {
    display: block;
    position: fixed;
    top: 4.8rem;
    left: 1rem;
    right: 1rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    background: rgba(10, 15, 29, 0.95);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 1.25rem;
    z-index: 1001;
    box-shadow: 
        0 30px 70px -15px rgba(0, 0, 0, 0.85),
        0 0 40px rgba(99, 102, 241, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-16px) scale(0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.mobile-drawer.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

[data-theme="light"] .mobile-drawer {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(226, 232, 240, 0.9);
    box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.15), inset 0 1px 1px #ffffff;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid var(--landing-card-border);
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.drawer-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.drawer-subtitle {
    font-size: 0.68rem;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.drawer-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--landing-card-border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.mobile-drawer-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-nav .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--primary-light);
    transition: transform 0.2s ease;
}

.mobile-drawer-nav .nav-link:hover,
.mobile-drawer-nav .nav-link:active {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
    transform: translateX(4px);
}

[data-theme="light"] .mobile-drawer-nav .nav-link:hover {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary);
}

.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--landing-card-border);
}

.btn-drawer-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.72rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--landing-card-border);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-drawer-login:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ─────────────────────────────────────────────────────────────────
   BUTTON STYLES & GLOW BORDER BEAM
   ───────────────────────────────────────────────────────────────── */
.btn-glow-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.72rem 1.6rem;
    border-radius: 999px;
    background: var(--brand-gradient);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glow-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.7), 0 0 20px rgba(236, 72, 153, 0.4);
}

.btn-glow-primary:active {
    transform: translateY(0);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.72rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid var(--landing-card-border);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────
   HERO SECTION 2.0 (HIGH IMPACT SPLIT)
   ───────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 5rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.hero-badge-tag {
    background: var(--brand-gradient);
    color: #ffffff;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 800;
}

.hero-title {
    font-size: clamp(2.1rem, 4.4vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    min-height: 3.45em; /* locks headline height so rotating phrases never bounce the page */
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typewriter-text {
    color: var(--accent-cyan);
    position: relative;
    display: inline-block;
    min-height: 1.25em;
    vertical-align: bottom;
    text-shadow: 0 0 24px rgba(6, 182, 212, 0.45);
}

.typewriter-cursor {
    display: inline-block;
    color: var(--accent-cyan);
    animation: blinkCursor 0.9s infinite;
    font-weight: 300;
    margin-left: 2px;
}

.hero-subtitle {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 2.25rem;
    max-width: 600px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

/* Trust Counters Strip */
.hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--landing-card-border);
}

.trust-card {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.25rem;
    transition: transform 0.3s ease;
}

.trust-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* ─────────────────────────────────────────────────────────────────
   INTERACTIVE 3D CAMPUS OS COCKPIT (HERO RIGHT)
   ───────────────────────────────────────────────────────────────── */
.cockpit-wrapper {
    position: relative;
    perspective: 1200px;
}

.cockpit-window {
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: 
        0 30px 70px -15px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(99, 102, 241, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cockpit-window:hover {
    transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
    border-color: rgba(99, 102, 241, 0.4);
}

.cockpit-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--landing-card-border);
    margin-bottom: 1.25rem;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.cockpit-title-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-family: 'JetBrains Mono', monospace;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Biometric Scanner Card inside Cockpit */
.biometric-scanner-box {
    background: rgba(4, 8, 20, 0.85);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.biometric-grid {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.scanner-avatar-frame {
    width: 86px;
    height: 86px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(99, 102, 241, 0.2) 100%);
    border: 2px dashed rgba(6, 182, 212, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.scanner-avatar-frame i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
}

.scan-laser-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #06b6d4, #10b981, transparent);
    box-shadow: 0 0 12px #06b6d4;
    animation: scanLaser 2.4s ease-in-out infinite alternate;
}

.scanner-info {
    flex: 1;
}

.scanner-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--accent-emerald);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.scanner-student-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.scanner-meta {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Floating Cockpit Micro Badges */
.floating-cockpit-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 1.15rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--landing-card-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.85rem;
    transition: transform 0.3s ease;
}

.floating-cockpit-badge:hover {
    transform: translateX(4px);
    border-color: rgba(99, 102, 241, 0.4);
}

.badge-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.badge-icon-meezan {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-icon-wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.badge-content h4 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.badge-content p {
    margin: 2px 0 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 3: MISSION CONTROL LIVE TELEMETRY DASHBOARD
   ───────────────────────────────────────────────────────────────── */
.live-dash-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.live-dash-card {
    background: rgba(13, 20, 36, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--landing-card-border);
    border-radius: 28px;
    padding: 2.25rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--landing-card-border);
    margin-bottom: 2rem;
}

.dash-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--accent-emerald);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.dash-time-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.live-clock-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--landing-card-border);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.telemetry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.telemetry-tile {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--landing-card-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.telemetry-tile:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-3px);
}

.telemetry-tile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.tile-val {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}

.tile-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 4: INTERACTIVE CAMPUS ROI & FEE CALCULATOR (NEW)
   ───────────────────────────────────────────────────────────────── */
.roi-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.roi-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 15, 29, 0.95) 100%);
    backdrop-filter: blur(28px);
    border: 1px solid var(--landing-card-border);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.roi-slider-group {
    margin: 2.25rem 0 1.5rem;
}

.roi-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.roi-slider-header label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.roi-slider-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

/* Custom Styled Range Slider */
.custom-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.2s ease;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-gradient);
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary);
    transition: transform 0.15s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.roi-metrics-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.roi-metric-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--landing-card-border);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.roi-metric-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.roi-metric-num {
    font-size: 1.85rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.roi-metric-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 5: 5-STEP WORKFLOW JOURNEY
   ───────────────────────────────────────────────────────────────── */
.workflow-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.section-subtext {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.workflow-steps-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
}

.workflow-step {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--landing-card-border);
    border-radius: 22px;
    padding: 1.75rem 1.25rem;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.workflow-step.workflow-visible {
    opacity: 1;
    transform: translateY(0);
}

.workflow-step:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.3);
}

.step-num-pill {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.workflow-step h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.workflow-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 6: APPLE / LINEAR STYLE FEATURE BENTO GRID 2.0
   ───────────────────────────────────────────────────────────────── */
.bento-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 1.5rem;
}

.bento-card {
    background: rgba(13, 20, 36, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--landing-card-border);
    border-radius: 28px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(99, 102, 241, 0.15);
}

.bento-card-span-2 {
    grid-column: span 2;
}

.bento-icon-tag {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}

.bento-card p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Bento Visual Previews */
.bento-preview-box {
    margin-top: 1.75rem;
    background: rgba(4, 8, 20, 0.6);
    border: 1px solid var(--landing-card-border);
    border-radius: 18px;
    padding: 1.25rem;
    overflow: hidden;
}

/* WhatsApp Speech Bubble Mockup inside Bento */
.wa-speech-bubble {
    background: #005c4b;
    color: #e9edef;
    padding: 0.75rem 1rem;
    border-radius: 14px 14px 2px 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
}

.wa-speech-bubble-en {
    background: #1f2c34;
    color: #e9edef;
    padding: 0.75rem 1rem;
    border-radius: 14px 14px 14px 2px;
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 7: DEEP-DIVE PRODUCT SHOWCASE TABS
   ───────────────────────────────────────────────────────────────── */
.showcase-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.showcase-window {
    background: rgba(13, 20, 36, 0.8);
    backdrop-filter: blur(28px);
    border: 1px solid var(--landing-card-border);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.8);
}

.showcase-tabs-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(4, 8, 20, 0.65);
    border-bottom: 1px solid var(--landing-card-border);
    overflow-x: auto;
    scrollbar-width: none;
}

.showcase-tabs-nav::-webkit-scrollbar {
    display: none;
}

.showcase-tab {
    flex: 1;
    padding: 0.9rem 1.35rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 14px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.showcase-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.showcase-tab.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.28) 0%, rgba(139, 92, 246, 0.22) 100%);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.25);
}

.tab-progress-track {
    height: 2px;
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
}

.tab-progress-bar {
    height: 100%;
    background: var(--brand-gradient);
    width: 0%;
    border-radius: 999px;
}

.tab-panel {
    display: none;
    padding: 2.75rem 3rem;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.35s ease;
}

.showcase-panel-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.showcase-info-col {
    display: flex;
    flex-direction: column;
}

.showcase-module-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.85rem;
}

.cyan-badge {
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent-cyan);
}

.emerald-badge {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent-emerald);
}

.indigo-badge {
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-light);
}

.amber-badge {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-amber);
}

.rose-badge {
    background: rgba(244, 63, 94, 0.12);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: var(--accent-rose);
}

.showcase-panel-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.showcase-panel-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0 0 1.5rem;
}

.showcase-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.showcase-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.94rem;
    color: var(--text-primary);
    font-weight: 500;
}

.showcase-feature-list li i {
    color: var(--accent-emerald);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Showcase Preview Card Terminal / Glass Console */
.showcase-preview-card {
    background: rgba(8, 14, 28, 0.82);
    border: 1px solid var(--landing-card-border);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.showcase-card-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--landing-card-border);
    margin-bottom: 1rem;
}

.showcase-topbar-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Kiosk Log Rows */
.kiosk-logs-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
}

.kiosk-log-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.log-time {
    color: var(--text-muted);
}

.log-tag {
    color: var(--text-secondary);
    font-weight: 600;
}

.log-cand {
    color: var(--text-primary);
    font-weight: 700;
    margin-right: auto;
}

.status-pill-emerald {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-pill-amber {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Challan Voucher Box */
.challan-voucher-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.86rem;
}

.voucher-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.voucher-row .v-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.voucher-row .v-val {
    color: var(--text-primary);
    font-weight: 700;
}

.voucher-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--accent-emerald);
    font-weight: 800;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 4px;
}

/* Gradebook Table */
.showcase-grade-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.showcase-grade-table th {
    text-align: left;
    padding: 8px 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--landing-card-border);
}

.showcase-grade-table td {
    padding: 10px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.showcase-grade-table tr:last-child td {
    border-bottom: none;
}

/* Admission Stack */
.admission-status-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admission-check-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admission-check-tile strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.admission-check-tile p {
    margin: 0;
    font-size: 0.76rem;
    color: var(--text-muted);
}

.check-icon-emerald { color: var(--accent-emerald); font-size: 1.25rem; }
.check-icon-cyan { color: var(--accent-cyan); font-size: 1.25rem; }
.check-icon-indigo { color: var(--primary-light); font-size: 1.25rem; }

/* Offline Key Box */
.offline-key-preview-box {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.key-header-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
}

.key-string-badge {
    padding: 10px 12px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    color: var(--accent-emerald);
    font-size: 0.82rem;
    word-break: break-all;
    font-weight: 700;
}

.key-lock-info {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 8: LIVE ACTIVITY FEED (CAMPUS RADAR)
   ───────────────────────────────────────────────────────────────── */
.live-feed-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feed-column {
    background: rgba(13, 20, 36, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--landing-card-border);
    border-radius: 24px;
    padding: 1.75rem;
}

.feed-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--landing-card-border);
}

.feed-col-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feed-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feed-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--landing-card-border);
    border-radius: 14px;
    font-size: 0.84rem;
}

.feed-row-body {
    flex: 1;
    min-width: 0;
}

.feed-name {
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-meta {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.feed-right {
    text-align: right;
    flex-shrink: 0;
}

.feed-status {
    font-weight: 700;
    font-size: 0.78rem;
    display: block;
}

.feed-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 9: DYNAMIC PRICING MATRIX 2.0
   ───────────────────────────────────────────────────────────────── */
.pricing-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 2rem 0 1.25rem;
}

.billing-switch-container {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--landing-card-border);
    border-radius: 999px;
    padding: 4px;
}

.billing-opt-btn {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-opt-btn.active {
    background: var(--brand-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.save-discount-pill {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

/* Pricing Trust Guarantees Strip */
.pricing-trust-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto 3.5rem;
}

.trust-guarantee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--landing-card-border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.trust-guarantee-item i {
    color: var(--accent-emerald);
    font-size: 0.85rem;
}

.trust-guarantee-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.plan-card {
    background: rgba(13, 20, 36, 0.75);
    backdrop-filter: blur(24px);
    border: 1px solid var(--landing-card-border);
    border-radius: 28px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(99, 102, 241, 0.2);
}

.plan-card.popular {
    background: linear-gradient(180deg, rgba(20, 29, 58, 0.9) 0%, rgba(13, 20, 36, 0.85) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 30px 70px -15px rgba(99, 102, 241, 0.3);
    transform: scale(1.03);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
    white-space: nowrap;
}

/* Plan Tier Header & Badges */
.plan-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.plan-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-tier-badge.tier-trial {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.plan-tier-badge.tier-popular {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.plan-tier-badge.tier-enterprise {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.plan-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--landing-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.plan-card:hover .plan-badge-icon,
.plan-card.popular .plan-badge-icon {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    color: #818cf8;
}

.plan-header {
    margin-bottom: 1.25rem;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.plan-desc {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Quota Pill */
.plan-quota-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #c7d2fe;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.85rem;
    margin-bottom: 0.25rem;
}

.plan-quota-pill i {
    color: #818cf8;
}

.plan-quota-pill strong {
    color: #ffffff;
    font-weight: 800;
}

/* Price Block & Subtext */
.plan-price-wrap {
    margin: 1.5rem 0 0.4rem;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.plan-amount {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.plan-cycle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.plan-billing-subtext {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.plan-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.25rem 0 1.5rem;
}

/* Features List */
.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features-list i {
    color: var(--accent-emerald);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.plan-features-list li.feat-highlight {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 8px 12px;
    border-radius: 10px;
    color: #f1f5f9;
    font-weight: 600;
}

.plan-features-list li.feat-highlight i {
    color: #10b981;
}

.plan-features-list li.feat-highlight strong {
    color: #34d399;
}

/* Card Action & Footer Note */
.plan-card-action {
    margin-top: 1.5rem;
    padding-top: 0.5rem;
}

.plan-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    border-radius: 14px;
}

.plan-cta-btn i {
    transition: transform 0.2s ease;
}

.plan-cta-btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}

.plan-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

.plan-footer-note i {
    color: var(--accent-emerald);
    font-size: 0.78rem;
}

/* Multi-Campus Custom Callout Banner */
.pricing-custom-banner {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2.25rem 3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(30, 27, 75, 0.75) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-custom-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.custom-banner-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.custom-banner-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(99, 102, 241, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #818cf8;
    flex-shrink: 0;
}

.custom-banner-left h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.custom-banner-left p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 620px;
}

.custom-banner-right {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn-wa-consult {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-wa-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.btn-wa-consult i {
    font-size: 1.2rem;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 10: TRUST TICKER & FAQ ACCORDION
   ───────────────────────────────────────────────────────────────── */
.ticker-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--landing-card-border);
    border-bottom: 1px solid var(--landing-card-border);
    background: rgba(255, 255, 255, 0.01);
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
}

.faq-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(13, 20, 36, 0.7);
    border: 1px solid var(--landing-card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION 11: 3-STEP CLOUD PROVISIONING MODAL 2.0
   ───────────────────────────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-window {
    background: rgba(13, 20, 36, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    max-width: 620px;
    width: 100%;
    box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
    animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-steps-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--landing-card-border);
    background: rgba(255, 255, 255, 0.02);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.step-indicator.active {
    color: var(--primary-light);
}

.step-indicator.done {
    color: var(--accent-emerald);
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.step-indicator.active .step-circle {
    background: var(--primary);
    color: #ffffff;
}

.step-indicator.done .step-circle {
    background: var(--accent-emerald);
    color: #ffffff;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--landing-card-border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.pw-meter-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin-top: 6px;
    overflow: hidden;
}

.pw-meter-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────────
   SITE FOOTER
   ───────────────────────────────────────────────────────────────── */
.site-footer {
    padding: 5rem 0 2rem;
    background: rgba(5, 8, 18, 0.95);
    border-top: 1px solid var(--landing-card-border);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--landing-card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   KEYFRAME ANIMATIONS
   ───────────────────────────────────────────────────────────────── */
@keyframes floatSlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, -30px) rotate(8deg); }
}

@keyframes scanLaser {
    0% { top: 0%; opacity: 0.8; }
    50% { opacity: 1; }
    100% { top: 97%; opacity: 0.8; }
}

@keyframes radarPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─────────────────────────────────────────────────────────────────
   LIGHT THEME COMPONENT & TEXT CONTRAST OVERRIDES
   Ensures 100% readability, crisp typography, and sleek modern borders
   ───────────────────────────────────────────────────────────────── */
[data-theme="light"] {
    color-scheme: light;
}

[data-theme="light"] body {
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 15% 15%, rgba(99, 102, 241, 0.07) 0px, transparent 55%),
        radial-gradient(at 85% 25%, rgba(236, 72, 153, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 85%, rgba(6, 182, 212, 0.06) 0px, transparent 55%);
    color: var(--text-primary);
}

[data-theme="light"] .ambient-glow-orbs {
    opacity: 0.85;
}

[data-theme="light"] .section-transition-divider svg path {
    fill: rgba(241, 245, 249, 0.85) !important;
}

[data-theme="light"] .divider-glow-line {
    opacity: 0.65;
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.45);
}

/* ── Header & Command Ribbon in Light Mode ─────────────────────── */
[data-theme="light"] .site-header .header-inner {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 
        0 12px 35px -6px rgba(15, 23, 42, 0.07),
        0 0 25px rgba(99, 102, 241, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .site-header .header-inner.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 
        0 20px 45px -8px rgba(15, 23, 42, 0.12),
        0 0 30px rgba(99, 102, 241, 0.12),
        inset 0 1px 1px #ffffff;
}

[data-theme="light"] .brand-title {
    background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

[data-theme="light"] .brand-subtitle {
    color: #64748b;
}

[data-theme="light"] .nav-menu {
    background: rgba(241, 245, 249, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .nav-pill {
    color: #475569;
    font-weight: 600;
}

[data-theme="light"] .nav-pill:hover {
    color: #4338ca;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .live-telemetry-pill {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #047857;
    font-weight: 700;
}

[data-theme="light"] .theme-toggle-btn {
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.9);
    color: #4338ca;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .theme-toggle-btn:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.4);
    color: #312e81;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.15);
    transform: rotate(20deg) scale(1.06);
}

[data-theme="light"] .btn-header-login {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.9);
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    font-weight: 700;
}

[data-theme="light"] .btn-header-login:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.4);
    color: #4338ca;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.15);
}

[data-theme="light"] .mobile-menu-btn {
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.9);
    color: #0f172a;
}

[data-theme="light"] .mobile-drawer {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.15), inset 0 1px 1px #ffffff;
}

/* ── Hero Section in Light Mode ───────────────────────────────── */
[data-theme="light"] .hero-badge {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #4338ca;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .hero-title {
    color: #090d16;
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 40%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .typewriter-text {
    color: #0284c7;
}

[data-theme="light"] .typewriter-cursor {
    color: #0284c7;
}

[data-theme="light"] .hero-subtitle {
    color: #334155;
}

[data-theme="light"] .hero-subtitle strong {
    color: #090d16;
    font-weight: 800;
}

[data-theme="light"] .btn-glass {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(203, 213, 225, 0.9);
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .btn-glass:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.45);
    color: #4338ca;
    box-shadow: 0 8px 22px -4px rgba(99, 102, 241, 0.18), inset 0 1px 1px #ffffff;
    transform: translateY(-2px);
}

[data-theme="light"] .hero-trust-bar {
    border-top-color: rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .trust-num {
    color: #090d16;
    font-weight: 900;
}

[data-theme="light"] .trust-label {
    color: #64748b;
    font-weight: 600;
}

/* ── 3D Interactive Cockpit in Light Mode ─────────────────────── */
[data-theme="light"] .cockpit-window {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 
        0 30px 70px -15px rgba(15, 23, 42, 0.1),
        0 0 40px rgba(99, 102, 241, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.95),
        inset 0 -1px 1px rgba(226, 232, 240, 0.5);
}

[data-theme="light"] .cockpit-window:hover {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 
        0 35px 80px -15px rgba(99, 102, 241, 0.16),
        0 0 50px rgba(99, 102, 241, 0.12),
        inset 0 1px 1px #ffffff;
}

[data-theme="light"] .cockpit-top-bar {
    border-bottom-color: rgba(226, 232, 240, 0.85);
}

[data-theme="light"] .cockpit-title-pill {
    background: rgba(241, 245, 249, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #334155;
    font-weight: 600;
}

[data-theme="light"] .biometric-scanner-box {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.85) 100%);
    border: 1px solid rgba(6, 182, 212, 0.35);
    box-shadow: 
        0 8px 24px -4px rgba(6, 182, 212, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .scanner-avatar-frame {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: #0284c7;
}

[data-theme="light"] .scan-laser-line {
    background: linear-gradient(90deg, transparent, #06b6d4, #6366f1, transparent);
    box-shadow: 0 0 14px rgba(6, 182, 212, 0.65);
}

[data-theme="light"] .scanner-status-tag {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #047857;
    font-weight: 700;
}

[data-theme="light"] .scanner-student-name {
    color: #090d16;
    font-weight: 800;
}

[data-theme="light"] .scanner-meta {
    color: #475569;
    font-weight: 500;
}

[data-theme="light"] .floating-cockpit-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 
        0 12px 30px -6px rgba(15, 23, 42, 0.07),
        inset 0 1px 1px #ffffff;
}

[data-theme="light"] .floating-cockpit-badge:hover {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 
        0 18px 38px -8px rgba(99, 102, 241, 0.16),
        inset 0 1px 1px #ffffff;
}

[data-theme="light"] .badge-content h4 {
    color: #090d16;
    font-weight: 700;
}

[data-theme="light"] .badge-content p {
    color: #475569;
}

/* ── Mission Control Live Telemetry Dashboard in Light Mode ──── */
[data-theme="light"] .live-dash-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.88) 100%);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 
        0 30px 70px -15px rgba(15, 23, 42, 0.08),
        0 0 35px rgba(99, 102, 241, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .dash-header {
    border-bottom-color: rgba(226, 232, 240, 0.85);
}

[data-theme="light"] .dash-pulse-badge {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #4338ca;
    font-weight: 700;
}

[data-theme="light"] .dash-time-wrap {
    color: #475569;
    font-weight: 500;
}

[data-theme="light"] .live-clock-badge {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #4338ca;
    font-weight: 700;
}

[data-theme="light"] .telemetry-tile {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 
        0 6px 22px -3px rgba(15, 23, 42, 0.04),
        inset 0 1px 1px #ffffff;
}

[data-theme="light"] .telemetry-tile:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 
        0 14px 34px -6px rgba(99, 102, 241, 0.16),
        inset 0 1px 1px #ffffff;
    transform: translateY(-3px);
}

[data-theme="light"] .tile-label {
    color: #475569;
    font-weight: 600;
}

[data-theme="light"] .tile-value {
    color: #090d16;
    font-weight: 800;
}

/* ── Interactive ROI Calculator in Light Mode ─────────────────── */
[data-theme="light"] .roi-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 
        0 30px 70px -15px rgba(15, 23, 42, 0.08),
        0 0 35px rgba(99, 102, 241, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .custom-range-slider {
    background: rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .roi-metric-tile {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 
        0 6px 20px -3px rgba(15, 23, 42, 0.04),
        inset 0 1px 1px #ffffff;
}

[data-theme="light"] .roi-metric-num {
    color: #090d16;
    font-weight: 900;
}

[data-theme="light"] .roi-metric-desc {
    color: #475569;
}

/* ── 5-Step Workflow Journey in Light Mode ────────────────────── */
[data-theme="light"] .workflow-step {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 
        0 8px 25px -4px rgba(15, 23, 42, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .workflow-step:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 
        0 20px 45px -8px rgba(99, 102, 241, 0.16),
        inset 0 1px 1px #ffffff;
    transform: translateY(-4px);
}

[data-theme="light"] .workflow-step-num {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.12));
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #4338ca;
    font-weight: 800;
}

[data-theme="light"] .workflow-step h3 {
    color: #090d16;
    font-weight: 800;
}

[data-theme="light"] .workflow-step p {
    color: #334155;
}

/* ── Feature Bento Grid in Light Mode ─────────────────────────── */
[data-theme="light"] .bento-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 
        0 10px 30px -5px rgba(15, 23, 42, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .bento-card:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 
        0 22px 50px -10px rgba(99, 102, 241, 0.16),
        inset 0 1px 1px #ffffff;
    transform: translateY(-4px);
}

[data-theme="light"] .bento-card h3 {
    color: #090d16;
    font-weight: 800;
}

[data-theme="light"] .bento-card p {
    color: #334155;
}

[data-theme="light"] .bento-preview-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(226, 232, 240, 0.85);
}

[data-theme="light"] .wa-speech-bubble {
    background: #dcf8c6;
    color: #111b21;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .wa-speech-bubble-en {
    background: #ffffff;
    color: #111b21;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

/* ── Product Showcase in Light Mode ───────────────────────────── */
[data-theme="light"] .showcase-window {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 
        0 25px 65px -12px rgba(15, 23, 42, 0.08),
        0 0 35px rgba(99, 102, 241, 0.05),
        inset 0 1px 1px #ffffff;
}

[data-theme="light"] .showcase-tabs-nav {
    background: #eef2f6;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

[data-theme="light"] .showcase-tab {
    color: #475569;
    font-weight: 600;
}

[data-theme="light"] .showcase-tab:hover {
    color: #090d16;
    background: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .showcase-tab.active {
    color: #312e81;
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.35);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .tab-progress-track {
    background: rgba(226, 232, 240, 0.6);
}

[data-theme="light"] .showcase-panel-title {
    color: #090d16;
}

[data-theme="light"] .showcase-panel-desc {
    color: #334155;
}

[data-theme="light"] .showcase-feature-list li {
    color: #0f172a;
}

[data-theme="light"] .showcase-preview-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.07);
}

[data-theme="light"] .showcase-card-topbar {
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .showcase-topbar-title {
    color: #64748b;
}

[data-theme="light"] .kiosk-log-item {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .log-time {
    color: #64748b;
}

[data-theme="light"] .log-tag {
    color: #334155;
}

[data-theme="light"] .log-cand {
    color: #090d16;
}

[data-theme="light"] .status-pill-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="light"] .status-pill-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.3);
}

[data-theme="light"] .voucher-row {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

[data-theme="light"] .voucher-row .v-label {
    color: #475569;
}

[data-theme="light"] .voucher-row .v-val {
    color: #090d16;
}

[data-theme="light"] .voucher-footer {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="light"] .showcase-grade-table th {
    color: #64748b;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

[data-theme="light"] .showcase-grade-table td {
    color: #090d16;
    border-bottom: 1px solid rgba(241, 245, 249, 0.9);
}

[data-theme="light"] .admission-check-tile {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .admission-check-tile strong {
    color: #090d16;
}

[data-theme="light"] .admission-check-tile p {
    color: #475569;
}

[data-theme="light"] .key-header-meta {
    color: #64748b;
}

[data-theme="light"] .key-string-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="light"] .key-lock-info {
    color: #334155;
}

/* ── Activity Feeds in Light Mode ─────────────────────────────── */
[data-theme="light"] .feed-column {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 
        0 10px 30px -5px rgba(15, 23, 42, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .feed-col-header {
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

[data-theme="light"] .feed-col-header h3 {
    color: #090d16;
    font-weight: 800;
}

[data-theme="light"] .feed-row {
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.75);
}

[data-theme="light"] .feed-row:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .feed-name {
    color: #090d16;
    font-weight: 700;
}

[data-theme="light"] .feed-meta {
    color: #64748b;
}

/* ── Pricing Section in Light Mode ────────────────────────────── */
[data-theme="light"] .billing-switch-container {
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: inset 0 2px 6px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .billing-opt-btn {
    color: #475569;
    font-weight: 600;
}

[data-theme="light"] .billing-opt-btn.active {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

[data-theme="light"] .save-discount-pill {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

/* Trust Guarantees in Light Mode */
[data-theme="light"] .trust-guarantee-item {
    background: rgba(241, 245, 249, 0.85);
    border: 1px solid rgba(203, 213, 225, 0.85);
    color: #334155;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .trust-guarantee-item:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.4);
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .trust-guarantee-item i {
    color: #059669;
}

/* Plan Cards in Light Mode */
[data-theme="light"] .plan-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 
        0 12px 35px -5px rgba(15, 23, 42, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .plan-card:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 
        0 22px 50px -10px rgba(99, 102, 241, 0.16),
        inset 0 1px 1px #ffffff;
    transform: translateY(-5px);
}

[data-theme="light"] .plan-card.popular {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 243, 255, 0.92) 100%);
    border: 2px solid #6366f1;
    box-shadow: 
        0 25px 60px -10px rgba(99, 102, 241, 0.28),
        0 0 35px rgba(99, 102, 241, 0.15),
        inset 0 1px 1px #ffffff;
}

/* Plan Badges & Icons in Light Mode */
[data-theme="light"] .plan-tier-badge.tier-trial {
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

[data-theme="light"] .plan-tier-badge.tier-popular {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

[data-theme="light"] .plan-tier-badge.tier-enterprise {
    background: rgba(147, 51, 234, 0.12);
    color: #7e22ce;
    border: 1px solid rgba(147, 51, 234, 0.25);
}

[data-theme="light"] .plan-badge-icon {
    background: rgba(241, 245, 249, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #475569;
}

[data-theme="light"] .plan-card:hover .plan-badge-icon,
[data-theme="light"] .plan-card.popular .plan-badge-icon {
    background: #eeebff;
    border-color: rgba(99, 102, 241, 0.4);
    color: #4f46e5;
}

[data-theme="light"] .plan-name {
    color: #090d16;
    font-weight: 800;
}

[data-theme="light"] .plan-desc {
    color: #475569;
}

/* Quota Pill & Pricing Details in Light Mode */
[data-theme="light"] .plan-quota-pill {
    background: rgba(238, 242, 255, 0.95);
    border: 1px solid rgba(199, 210, 254, 0.85);
    color: #3730a3;
}

[data-theme="light"] .plan-quota-pill i {
    color: #4f46e5;
}

[data-theme="light"] .plan-quota-pill strong {
    color: #1e1b4b;
}

[data-theme="light"] .plan-currency {
    color: #475569;
    font-weight: 700;
}

[data-theme="light"] .plan-amount {
    color: #090d16;
    font-weight: 900;
}

[data-theme="light"] .plan-cycle {
    color: #64748b;
}

[data-theme="light"] .plan-billing-subtext {
    color: #64748b;
}

[data-theme="light"] .plan-divider {
    background: rgba(226, 232, 240, 0.9);
}

/* Feature List in Light Mode */
[data-theme="light"] .plan-features-list {
    color: #334155;
}

[data-theme="light"] .plan-features-list li.feat-highlight {
    background: rgba(236, 253, 245, 0.95);
    border: 1px solid rgba(167, 243, 208, 0.9);
    color: #065f46;
}

[data-theme="light"] .plan-features-list li.feat-highlight i {
    color: #059669;
}

[data-theme="light"] .plan-features-list li.feat-highlight strong {
    color: #047857;
}

[data-theme="light"] .plan-footer-note {
    color: #64748b;
}

[data-theme="light"] .plan-footer-note i {
    color: #059669;
}

/* Multi-Campus Callout Banner in Light Mode */
[data-theme="light"] .pricing-custom-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
    border: 1px solid rgba(199, 210, 254, 0.9);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.12), inset 0 1px 0 #ffffff;
}

[data-theme="light"] .pricing-custom-banner::before {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

[data-theme="light"] .custom-banner-icon {
    background: #e0e7ff;
    border: 1px solid #c7d2fe;
    color: #4338ca;
}

[data-theme="light"] .custom-banner-left h4 {
    color: #090d16;
}

[data-theme="light"] .custom-banner-left p {
    color: #475569;
}

/* ── FAQ Accordion in Light Mode ──────────────────────────────── */
[data-theme="light"] .faq-item {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 
        0 4px 18px rgba(15, 23, 42, 0.04),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .faq-item:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}

[data-theme="light"] .faq-question {
    color: #090d16;
    font-weight: 700;
}

[data-theme="light"] .faq-question i {
    color: #4338ca;
}

[data-theme="light"] .faq-answer-inner {
    color: #334155;
}

/* ── Modal Window & Form Inputs in Light Mode ─────────────────── */
[data-theme="light"] .modal-overlay {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

[data-theme="light"] .modal-window {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 
        0 35px 80px -15px rgba(15, 23, 42, 0.22),
        inset 0 1px 1px #ffffff;
}

[data-theme="light"] .modal-steps-bar {
    background: #f8fafc;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .step-indicator {
    color: #64748b;
}

[data-theme="light"] .step-indicator.active {
    color: #4338ca;
    font-weight: 700;
}

[data-theme="light"] .step-circle {
    background: #e2e8f0;
    color: #475569;
}

[data-theme="light"] .step-indicator.active .step-circle {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
}

[data-theme="light"] .form-control-custom {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    color: #090d16;
}

[data-theme="light"] .form-control-custom:focus {
    background: #ffffff;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    color: #090d16;
}

[data-theme="light"] .pw-meter-track {
    background: rgba(226, 232, 240, 0.9);
}

/* ── Ticker & Footer in Light Mode ────────────────────────────── */
[data-theme="light"] .ticker-section {
    background: rgba(241, 245, 249, 0.7);
    border-color: rgba(226, 232, 240, 0.9);
}

[data-theme="light"] .ticker-item {
    color: #475569;
    font-weight: 600;
}

[data-theme="light"] .site-footer {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    color: #334155;
}

[data-theme="light"] .footer-brand-title {
    color: #090d16;
}

[data-theme="light"] .footer-link {
    color: #475569;
}

[data-theme="light"] .footer-link:hover {
    color: #4338ca;
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    color: #64748b;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE MEDIA QUERIES (DESKTOP, TABLET, MOBILE, NARROW PHONES)
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }
    .header-nav-island {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .telemetry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .workflow-steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card-span-2 {
        grid-column: span 1;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .plan-card.popular {
        transform: none;
    }
    .pricing-custom-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.75rem;
        padding: 2rem 1.5rem;
    }
    .custom-banner-left {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .custom-banner-left p {
        max-width: 100%;
    }
    .feed-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0 0.75rem;
        top: 0.6rem;
    }
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0.85rem;
    }
    .live-telemetry-pill, 
    .btn-header-login,
    .header-cta-desktop {
        display: none !important;
    }
    .brand-title-full {
        display: none !important;
    }
    .brand-title-short {
        display: inline !important;
    }
    .brand-title {
        font-size: 1.05rem;
        white-space: nowrap;
    }
    .brand-subtitle {
        font-size: 0.66rem;
    }
    .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }
    .mobile-menu-btn {
        display: flex;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
    }
    .mobile-menu-btn.active {
        background: rgba(99, 102, 241, 0.2);
        border-color: rgba(99, 102, 241, 0.5);
        color: #ffffff;
    }
    .hero-section {
        padding: 2.5rem 0 3.5rem;
        min-height: auto;
    }
    .hero-title {
        font-size: clamp(1.75rem, 5.8vw, 2.35rem);
        min-height: 3.55em;
        line-height: 1.18;
    }
    .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.5rem;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .hero-cta-group .btn-glow-primary,
    .hero-cta-group .btn-glass {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.25rem;
    }
    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
        padding-top: 1.5rem !important;
    }
    .trust-card {
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid var(--landing-card-border);
        border-radius: 16px;
        padding: 0.9rem 0.75rem;
        text-align: center;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .trust-num {
        font-size: 1.45rem;
    }
    .trust-label {
        font-size: 0.72rem;
    }
    [data-tilt] {
        transform: none !important;
        transition: none !important;
    }
    .cockpit-wrapper {
        perspective: none !important;
        margin-top: 1.5rem;
    }
    .cockpit-window {
        padding: 1.15rem 1rem;
        transform: none !important;
        border-radius: 20px;
    }
    .cockpit-window:hover {
        transform: none !important;
    }
    .biometric-scanner-box {
        padding: 0.95rem;
    }
    .scanner-avatar-frame {
        width: 68px;
        height: 68px;
    }
    .scanner-avatar-frame i {
        font-size: 1.9rem;
    }
    .scanner-student-name {
        font-size: 0.98rem;
    }
    .floating-cockpit-badge {
        padding: 0.75rem 0.85rem;
        font-size: 0.82rem;
    }
    .floating-cockpit-badge:hover {
        transform: none;
    }
    .live-dash-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }
    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .dash-time-wrap {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .telemetry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .telemetry-tile {
        padding: 1.25rem;
    }
    .tile-val {
        font-size: 1.85rem;
    }
    .roi-card {
        padding: 1.75rem 1.25rem;
        border-radius: 22px;
    }
    .roi-grid {
        gap: 2rem;
    }
    .roi-metrics-column {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .roi-metric-tile {
        padding: 1rem 0.75rem;
    }
    .roi-metric-num {
        font-size: 1.4rem;
    }
    .section-heading {
        font-size: 2rem;
    }
    .workflow-steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .workflow-step {
        padding: 1.25rem;
    }
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .bento-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }
    .showcase-window {
        border-radius: 20px;
    }
    .showcase-tabs-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.35rem;
        padding: 0.4rem;
    }
    .showcase-tabs-nav::-webkit-scrollbar {
        display: none;
    }
    .showcase-tab {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.75rem 1.1rem;
        font-size: 0.84rem;
        border-radius: 12px;
    }
    .tab-panel {
        padding: 1.5rem 1rem;
    }
    .showcase-panel-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .showcase-panel-title {
        font-size: 1.65rem;
    }
    .feed-column {
        padding: 1.25rem;
        border-radius: 20px;
    }
    .pricing-toggle-wrap {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0 1rem;
    }
    .billing-opt-btn {
        padding: 6px 14px;
        font-size: 0.82rem;
    }
    .pricing-trust-guarantees {
        gap: 0.6rem;
        margin-bottom: 2.5rem;
    }
    .trust-guarantee-item {
        font-size: 0.76rem;
        padding: 5px 11px;
    }
    .pricing-grid {
        max-width: 100%;
        gap: 1.5rem;
    }
    .plan-card {
        padding: 1.75rem 1.25rem;
        border-radius: 22px;
    }
    .plan-amount {
        font-size: 2.4rem;
    }
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 0.98rem;
    }
    .faq-answer-inner {
        padding: 0 1rem 1.25rem;
        font-size: 0.9rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0 1rem;
    }
    .site-header {
        padding: 0 0.5rem;
    }
    .header-inner {
        padding: 0.45rem 0.65rem;
    }
    .btn-header-cta {
        display: none !important;
    }
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    .hero-trust-bar {
        grid-template-columns: 1fr 1fr;
    }
    .roi-metrics-column {
        grid-template-columns: 1fr;
    }
    .section-heading {
        font-size: 1.7rem;
    }
    .pricing-trust-guarantees {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .trust-guarantee-item {
        justify-content: center;
        font-size: 0.72rem;
        padding: 6px 8px;
        text-align: center;
    }
    .btn-wa-consult {
        width: 100%;
        justify-content: center;
        font-size: 0.88rem;
        padding: 12px 18px;
    }
    .plan-cta-btn {
        font-size: 0.88rem;
        padding: 12px 14px;
    }
    .modal-window {
        margin: 0.5rem;
        border-radius: 20px;
    }
    .modal-steps-bar {
        padding: 1rem;
    }
    .modal-step {
        padding: 0;
    }
}

@media (max-width: 360px) {
    .page-container {
        padding: 0 0.75rem;
    }
    .hero-title {
        font-size: clamp(1.5rem, 5.2vw, 1.85rem);
        min-height: 3.65em;
        line-height: 1.18;
    }
    .hero-subtitle {
        font-size: 0.88rem;
    }
    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
    }
    .trust-card {
        padding: 0.75rem 0.5rem;
    }
    .trust-num {
        font-size: 1.3rem;
    }
    .trust-label {
        font-size: 0.68rem;
    }
    .section-heading {
        font-size: 1.5rem;
    }
    .section-lead {
        font-size: 0.85rem;
    }
    .pricing-trust-guarantees {
        grid-template-columns: 1fr;
    }
    .custom-banner-left h4 {
        font-size: 1.1rem;
    }
    .plan-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .plan-card {
        padding: 1.25rem 1rem;
    }
    .plan-amount {
        font-size: 2rem;
    }
    .telemetry-tile {
        padding: 1rem;
    }
    .tile-val {
        font-size: 1.5rem;
    }
    .cockpit-window {
        padding: 1rem;
    }
    .scanner-avatar-frame {
        width: 58px;
        height: 58px;
    }
    .brand-title {
        font-size: 0.92rem;
    }
}

/* ─────────────────────────────────────────────────────────────────
   HEADER COMMAND RIBBON ELASTICITY (992px - 1340px Displays)
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 992px) and (max-width: 1340px) {
    .live-telemetry-pill {
        display: none !important;
    }
    .header-inner {
        gap: 0.75rem;
        padding: 0.52rem 0.95rem;
    }
    .nav-pill {
        padding: 5px 8px;
        font-size: 0.82rem;
        gap: 4px;
    }
    .btn-header-login {
        padding: 0.48rem 0.85rem;
        font-size: 0.82rem;
    }
    .btn-header-cta {
        padding: 0.48rem 1rem;
        font-size: 0.82rem;
    }
}

/* ─────────────────────────────────────────────────────────────────
   FLOATING BOTTOM ACTION DOCK (CONVERSION ENGINE 2.0)
   ───────────────────────────────────────────────────────────────── */
.floating-trial-dock {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 995;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 12, 26, 0.9);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(99, 102, 241, 0.45);
    border-radius: 999px;
    padding: 6px 8px 6px 6px;
    box-shadow: 
        0 15px 40px -8px rgba(0, 0, 0, 0.8),
        0 0 35px rgba(99, 102, 241, 0.35),
        0 0 15px rgba(217, 70, 239, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: dockFloatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dockFloatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.92);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-trial-dock:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.65);
    box-shadow: 
        0 20px 50px -10px rgba(0, 0, 0, 0.9),
        0 0 45px rgba(99, 102, 241, 0.5),
        0 0 25px rgba(217, 70, 239, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.floating-trial-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    padding: 4px 10px 4px 4px;
    outline: none;
}

.floating-icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fef08a;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.6);
    flex-shrink: 0;
    position: relative;
}

.floating-icon-bubble::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(254, 240, 138, 0.5);
    animation: boltRadar 2.2s infinite ease-out;
}

@keyframes boltRadar {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.floating-text-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.floating-headline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-title {
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: -0.015em;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    white-space: nowrap;
}

.floating-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 7px;
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

.floating-subtitle {
    font-size: 0.73rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.floating-subtitle .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #6366f1;
}

.floating-arrow-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c7d2fe;
    font-size: 0.82rem;
    margin-left: 4px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.floating-trial-dock:hover .floating-arrow-bubble {
    background: #6366f1;
    color: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
}

.floating-dismiss-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-right: 2px;
}

.floating-dismiss-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.35);
}

/* Minimized Floating State */
.floating-trial-dock.minimized {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.floating-trial-dock.minimized .floating-text-block,
.floating-trial-dock.minimized .floating-arrow-bubble,
.floating-trial-dock.minimized .floating-dismiss-btn {
    display: none !important;
}

.floating-trial-dock.minimized .floating-trial-btn {
    padding: 0;
}

.floating-trial-dock.minimized .floating-icon-bubble {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    box-shadow: 
        0 10px 25px -4px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(99, 102, 241, 0.8);
    cursor: pointer;
}

.floating-trial-dock.minimized:hover {
    transform: translateY(-4px) scale(1.08);
}

/* Responsive Floating Dock */
@media (max-width: 768px) {
    .floating-trial-dock {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        border-radius: 16px;
        justify-content: space-between;
        padding: 8px 12px;
    }
    .floating-subtitle {
        display: none;
    }
    .floating-headline {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .floating-title {
        font-size: 0.85rem;
    }
    .floating-icon-bubble {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .floating-arrow-bubble {
        display: none;
    }
    .floating-trial-dock.minimized {
        left: auto !important;
        right: 1rem !important;
        bottom: 1rem !important;
        width: auto !important;
    }
}

