/* ============================================
   NosoniFit Landing Page Styles
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --nf-primary: #009ef7;
    --nf-primary-light: #e1f3ff;
    --nf-primary-dark: #0078c8;
    --nf-secondary: #50cd89;
    --nf-secondary-light: #e8fff3;
    --nf-accent: #ffc700;
    --nf-dark: #181c32;
    --nf-gray-900: #1e2132;
    --nf-gray-800: #2b2f4c;
    --nf-gray-700: #3f4254;
    --nf-gray-600: #5e6278;
    --nf-gray-500: #a1a5b7;
    --nf-gray-400: #b5b5c3;
    --nf-gray-300: #e4e6ef;
    --nf-gray-200: #eff2f5;
    --nf-gray-100: #f5f8fa;
    --nf-white: #ffffff;
    --nf-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --nf-gradient-primary: linear-gradient(135deg, #009ef7 0%, #0078c8 100%);
    --nf-gradient-success: linear-gradient(135deg, #50cd89 0%, #3cb371 100%);
    --nf-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --nf-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --nf-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --nf-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --nf-radius-sm: 8px;
    --nf-radius: 12px;
    --nf-radius-lg: 20px;
    --nf-radius-xl: 30px;
    --nf-transition: all 0.3s ease;
    --nf-transition-fast: all 0.15s ease;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--nf-gray-700);
    background-color: var(--nf-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--nf-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--nf-transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Utility Classes
   ============================================ */
.gradient-text {
    background: var(--nf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-primary-text {
    background: var(--nf-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Landing Header (Custom Navbar)
   ============================================ */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-logo {
    display: flex;
    align-items: center;
}

.landing-logo img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
    text-decoration: none;
    display: inline-block;
}

.landing-header.scrolled .landing-nav-link {
    color: #3f4254;
}

.landing-nav-link:hover {
    color: #ffc700;
    background: rgba(255,255,255,0.15);
    text-decoration: none;
}

.landing-header.scrolled .landing-nav-link:hover {
    color: #009ef7;
    background: #f5f8fa;
}

.landing-cta-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    margin-left: 8px;
    border-radius: 10px;
    background: #ffffff;
    color: #009ef7;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.landing-cta-btn:hover {
    background: #ffc700;
    color: #181c32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

.landing-header.scrolled .landing-cta-btn {
    background: #009ef7;
    color: #ffffff;
}

.landing-header.scrolled .landing-cta-btn:hover {
    background: #0078c8;
    color: #ffffff;
}

/* Mobile Menu Toggle */
.landing-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.landing-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.landing-header.scrolled .landing-menu-toggle span {
    background: #3f4254;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(24, 28, 50, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6b5b95 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--nf-white);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--nf-accent);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--nf-secondary);
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--nf-radius-xl);
    color: var(--nf-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--nf-accent);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--nf-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg, #ffc700, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--nf-white);
    color: var(--nf-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--nf-radius);
    border: none;
    box-shadow: var(--nf-shadow-lg);
    transition: var(--nf-transition);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-hero-primary:hover {
    color: var(--nf-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--nf-shadow-xl);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 158, 247, 0.3);
    }
    50% {
        box-shadow: 0 10px 60px rgba(0, 158, 247, 0.5);
    }
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--nf-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--nf-radius);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--nf-transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--nf-white);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-mockup {
    position: relative;
    max-width: 100%;
}

.hero-mockup-img {
    border-radius: var(--nf-radius-lg);
    box-shadow: var(--nf-shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--nf-transition);
}

.hero-mockup-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Dashboard Preview Placeholder */
.dashboard-preview {
    background: var(--nf-white);
    border-radius: var(--nf-radius-lg);
    box-shadow: var(--nf-shadow-xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--nf-transition);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-preview-header {
    background: var(--nf-gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.dashboard-preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-preview-dot.red { background: #ff5f57; }
.dashboard-preview-dot.yellow { background: #febc2e; }
.dashboard-preview-dot.green { background: #28c840; }

.dashboard-preview-content {
    padding: 1.5rem;
    min-height: 300px;
    background: linear-gradient(135deg, var(--nf-gray-100) 0%, var(--nf-white) 100%);
}

.dashboard-preview-sidebar {
    width: 60px;
    background: var(--nf-dark);
    border-radius: var(--nf-radius-sm);
    padding: 1rem 0.5rem;
    float: left;
    margin-right: 1rem;
    min-height: 250px;
}

.dashboard-preview-sidebar-item {
    width: 100%;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.dashboard-preview-main {
    overflow: hidden;
}

.dashboard-preview-card {
    background: var(--nf-white);
    border-radius: var(--nf-radius-sm);
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--nf-shadow-sm);
}

.dashboard-preview-stat {
    display: inline-block;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 1rem;
}

.dashboard-preview-stat:nth-child(even) {
    margin-right: 0;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nf-dark);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--nf-gray-500);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nf-white);
    display: block;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--nf-gray-100);
}

.section-dark {
    background: var(--nf-dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--nf-primary-light);
    color: var(--nf-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--nf-radius-xl);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--nf-gray-600);
    line-height: 1.7;
}

/* ============================================
   Features Section
   ============================================ */
.feature-card {
    background: var(--nf-white);
    border-radius: var(--nf-radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--nf-shadow);
    transition: var(--nf-transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nf-shadow-lg);
    border-color: var(--nf-primary-light);
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--nf-radius);
    margin-bottom: 1.5rem;
    font-size: 36px;
}

.feature-icon i.ki-duotone {
    font-size: 36px !important;
}

.feature-icon.blue {
    background: var(--nf-primary-light);
    color: var(--nf-primary);
}

.feature-icon.green {
    background: var(--nf-secondary-light);
    color: var(--nf-secondary);
}

.feature-icon.purple {
    background: #f3e8ff;
    color: #8b5cf6;
}

.feature-icon.orange {
    background: #fff7e6;
    color: #f59e0b;
}

.feature-icon.red {
    background: #fef2f2;
    color: #ef4444;
}

.feature-icon.teal {
    background: #e6fffa;
    color: #14b8a6;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--nf-gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--nf-gray-600);
    margin-bottom: 0.5rem;
}

.feature-list li i {
    color: var(--nf-secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================
   How It Works Section
   ============================================ */
.steps-container {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: var(--nf-gray-300);
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--nf-white);
    border: 3px solid var(--nf-primary);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nf-primary);
    box-shadow: var(--nf-shadow);
    transition: var(--nf-transition);
}

.step-card:hover .step-number {
    background: var(--nf-primary);
    color: var(--nf-white);
    transform: scale(1.1);
}

.step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--nf-gradient);
    border-radius: 50%;
    color: var(--nf-white);
    font-size: 36px;
    box-shadow: var(--nf-shadow-lg);
    transition: var(--nf-transition);
}

.step-icon i.ki-duotone {
    font-size: 36px !important;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--nf-gray-600);
    font-size: 0.95rem;
}

/* ============================================
   Multi-Tenant Section
   ============================================ */
.tenant-section {
    background: linear-gradient(135deg, var(--nf-dark) 0%, var(--nf-gray-900) 100%);
    position: relative;
    overflow: hidden;
}

.tenant-section .section-title,
.tenant-section .section-subtitle,
.tenant-section .section-badge {
    color: var(--nf-white);
}

.tenant-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
}

.tenant-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--nf-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--nf-transition);
}

.tenant-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.tenant-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--nf-gradient-primary);
    border-radius: var(--nf-radius);
    color: var(--nf-white);
    font-size: 36px;
}

.tenant-icon i.ki-duotone {
    font-size: 36px !important;
}

.tenant-card h4 {
    color: var(--nf-white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tenant-card p {
    color: var(--nf-gray-400);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Screenshots Section
   ============================================ */
.screenshots-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.screenshot-tab {
    padding: 0.75rem 1.5rem;
    background: var(--nf-white);
    border: 2px solid var(--nf-gray-300);
    border-radius: var(--nf-radius-xl);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--nf-gray-600);
    cursor: pointer;
    transition: var(--nf-transition);
}

.screenshot-tab:hover,
.screenshot-tab.active {
    background: var(--nf-primary);
    border-color: var(--nf-primary);
    color: var(--nf-white);
}

.screenshot-display {
    position: relative;
    background: var(--nf-white);
    border-radius: var(--nf-radius-lg);
    box-shadow: var(--nf-shadow-xl);
    overflow: hidden;
}

.screenshot-browser-bar {
    background: var(--nf-gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #febc2e; }
.browser-dot.green { background: #28c840; }

.browser-url {
    flex: 1;
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--nf-white);
    border-radius: var(--nf-radius-sm);
    font-size: 0.8rem;
    color: var(--nf-gray-500);
}

.screenshot-content {
    min-height: 400px;
    background: linear-gradient(135deg, var(--nf-gray-100) 0%, var(--nf-gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screenshot-content-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-content-item.active {
    opacity: 1;
}

.screenshot-placeholder {
    text-align: center;
    color: var(--nf-gray-600);
    padding: 2rem;
}

.screenshot-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.screenshot-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--nf-dark);
}

.screenshot-placeholder p {
    font-size: 1rem;
    color: var(--nf-gray-600);
    max-width: 400px;
    margin: 0 auto;
}

/* Preview Mockup Styles */
.preview-mockup {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: var(--nf-white);
    border-radius: 0 0 var(--nf-radius) var(--nf-radius);
    overflow: hidden;
}

.preview-sidebar {
    width: 60px;
    background: var(--nf-dark);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: var(--nf-transition-fast);
}

.sidebar-item.active {
    background: var(--nf-primary);
}

.preview-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-title-bar {
    width: 120px;
    height: 24px;
    background: var(--nf-gray-300);
    border-radius: 4px;
}

.preview-avatar {
    width: 36px;
    height: 36px;
    background: var(--nf-primary);
    border-radius: 50%;
}

.preview-search {
    width: 200px;
    height: 36px;
    background: var(--nf-gray-200);
    border-radius: 8px;
}

.preview-btn {
    width: 100px;
    height: 36px;
    background: var(--nf-primary);
    border-radius: 8px;
}

.preview-date-range {
    width: 150px;
    height: 36px;
    background: var(--nf-gray-200);
    border-radius: 8px;
}

/* Stats Grid */
.preview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.preview-stat-card {
    padding: 1rem;
    border-radius: var(--nf-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.preview-stat-card.blue { background: var(--nf-primary-light); }
.preview-stat-card.green { background: var(--nf-secondary-light); }
.preview-stat-card.purple { background: #f3e8ff; }
.preview-stat-card.orange { background: #fff7e6; }

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nf-dark);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--nf-gray-600);
}

/* Chart */
.preview-chart {
    flex: 1;
    background: var(--nf-gray-100);
    border-radius: var(--nf-radius-sm);
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--nf-primary) 0%, #667eea 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

/* Table */
.preview-table {
    flex: 1;
    background: var(--nf-gray-100);
    border-radius: var(--nf-radius-sm);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0.75rem 1rem;
    background: var(--nf-gray-200);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nf-gray-600);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0.75rem 1rem;
    align-items: center;
    border-bottom: 1px solid var(--nf-gray-200);
    font-size: 0.85rem;
    color: var(--nf-gray-700);
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.user-avatar.blue { background: var(--nf-primary); }
.user-avatar.green { background: var(--nf-secondary); }
.user-avatar.purple { background: #8b5cf6; }
.user-avatar.orange { background: #f59e0b; }

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-badge.green { background: var(--nf-secondary-light); color: var(--nf-secondary); }
.status-badge.orange { background: #fff7e6; color: #f59e0b; }

/* Program Cards */
.preview-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.program-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--nf-gray-100);
    border-radius: var(--nf-radius-sm);
    align-items: center;
}

.program-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.program-img.blue { background: linear-gradient(135deg, var(--nf-primary) 0%, #667eea 100%); }
.program-img.green { background: linear-gradient(135deg, var(--nf-secondary) 0%, #3cb371 100%); }
.program-img.purple { background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%); }

.program-info {
    flex: 1;
}

.program-title {
    width: 60%;
    height: 16px;
    background: var(--nf-gray-300);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.program-meta {
    font-size: 0.75rem;
    color: var(--nf-gray-500);
}

/* Finance */
.preview-finance {
    flex: 1;
    display: flex;
    gap: 1.5rem;
}

.finance-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.finance-card {
    padding: 1rem;
    border-radius: var(--nf-radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.finance-card.income { background: var(--nf-secondary-light); }
.finance-card.expense { background: #fef2f2; }
.finance-card.profit { background: var(--nf-primary-light); }

.finance-label {
    font-size: 0.85rem;
    color: var(--nf-gray-600);
}

.finance-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nf-dark);
}

.finance-chart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nf-gray-100);
    border-radius: var(--nf-radius-sm);
}

.pie-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        var(--nf-primary) 0deg 120deg,
        var(--nf-secondary) 120deg 200deg,
        #8b5cf6 200deg 280deg,
        #f59e0b 280deg 360deg
    );
    position: relative;
}

.pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--nf-gray-100);
    border-radius: 50%;
}

/* Mobile Preview */
.preview-mobile {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.phone-frame {
    width: 220px;
    height: 380px;
    background: var(--nf-dark);
    border-radius: 30px;
    padding: 8px;
    position: relative;
    box-shadow: var(--nf-shadow-xl);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--nf-dark);
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--nf-gray-100);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    background: var(--nf-primary);
    padding: 2rem 1rem 1rem;
}

.mobile-logo {
    width: 80px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.mobile-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: var(--nf-white);
    margin: -0.5rem 0.75rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-stat {
    text-align: center;
}

.m-stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nf-primary);
}

.m-stat-label {
    font-size: 0.65rem;
    color: var(--nf-gray-500);
}

.mobile-card {
    margin: 0.5rem 0.75rem;
    height: 50px;
    background: var(--nf-white);
    border-radius: 8px;
}

.mobile-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 0.75rem;
    background: var(--nf-white);
}

.nav-item {
    width: 32px;
    height: 32px;
    background: var(--nf-gray-200);
    border-radius: 8px;
}

.nav-item.active {
    background: var(--nf-primary);
}

/* Responsive for mockups */
@media (max-width: 767.98px) {
    .preview-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-finance {
        flex-direction: column;
    }

    .phone-frame {
        width: 180px;
        height: 320px;
    }
}

/* Swiper Styles */
.swiper-screenshots {
    padding-bottom: 3rem;
}

.swiper-screenshots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--nf-gray-400);
}

.swiper-screenshots .swiper-pagination-bullet-active {
    background: var(--nf-primary);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonial-card {
    background: var(--nf-white);
    border-radius: var(--nf-radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--nf-shadow);
    transition: var(--nf-transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nf-shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--nf-primary-light);
    line-height: 1;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--nf-gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--nf-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nf-white);
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--nf-gray-500);
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: var(--nf-accent);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-accordion .accordion-item {
    background: var(--nf-white);
    border: none;
    border-radius: var(--nf-radius) !important;
    margin-bottom: 1rem;
    box-shadow: var(--nf-shadow-sm);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--nf-dark);
    padding: 1.25rem 1.5rem;
    background: var(--nf-white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--nf-primary-light);
    color: var(--nf-primary);
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
}

.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--nf-gray-600);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--nf-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nf-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--nf-white);
    color: #667eea;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--nf-radius);
    border: none;
    box-shadow: var(--nf-shadow-lg);
    transition: var(--nf-transition);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--nf-shadow-xl);
    color: #764ba2;
}

.cta-email {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cta-email a {
    color: var(--nf-white);
    font-weight: 600;
    text-decoration: underline;
}

.cta-email a:hover {
    color: var(--nf-accent);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--nf-dark);
    padding: 80px 0 0;
    color: var(--nf-gray-400);
}

.footer-logo img {
    height: 45px;
}

.footer-desc {
    color: var(--nf-gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--nf-gray-400);
    transition: var(--nf-transition);
}

.social-link:hover {
    background: var(--nf-primary);
    color: var(--nf-white);
}

.footer-title {
    color: var(--nf-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links span {
    color: var(--nf-gray-500);
    font-size: 0.95rem;
    transition: var(--nf-transition-fast);
}

.footer-links a:hover {
    color: var(--nf-primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--nf-primary);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright,
.made-with {
    font-size: 0.9rem;
    color: var(--nf-gray-500);
    margin: 0;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nf-primary);
    color: var(--nf-white);
    border-radius: 50%;
    box-shadow: var(--nf-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--nf-transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--nf-primary-dark);
    color: var(--nf-white);
    transform: translateY(-5px);
}

/* ============================================
   Legal Pages Styles
   ============================================ */
.legal-content {
    background: var(--nf-white);
    padding: 2.5rem;
    border-radius: var(--nf-radius-lg);
    box-shadow: var(--nf-shadow);
}

.legal-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nf-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--nf-primary-light);
}

.legal-content h4:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--nf-gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: var(--nf-gray-700);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--nf-primary);
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--nf-primary-dark);
    text-decoration: underline;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-line {
        display: none;
    }

    /* Mobile Header */
    .landing-menu-toggle {
        display: flex;
    }

    .landing-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1rem;
        margin: 0.5rem 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        flex-direction: column;
        gap: 4px;
    }

    .landing-nav.active {
        display: flex;
    }

    .landing-nav .landing-nav-link {
        color: #3f4254;
        padding: 12px 16px;
        display: block;
        width: 100%;
    }

    .landing-nav .landing-nav-link:hover {
        color: #009ef7;
        background: #f5f8fa;
    }

    .landing-nav .landing-cta-btn {
        width: 100%;
        justify-content: center;
        margin: 8px 0 0 0;
        background: #009ef7;
        color: #ffffff;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-stat {
        flex: 0 0 45%;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-6:last-child {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .screenshots-tabs {
        gap: 0.5rem;
    }

    .screenshot-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   Animation Delays for AOS
   ============================================ */
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }
[data-aos-delay="600"] { transition-delay: 600ms; }

/* ============================================
   METRONIC OVERRIDE SECTION
   These styles override Metronic plugins.bundle.css
   ============================================ */

/* Reset all Metronic menu/nav styles for landing page */
#mainNavbar,
#mainNavbar *,
header.landing-header,
header.landing-header * {
    all: revert;
}

/* Re-apply landing header styles with maximum specificity */
html body header#mainNavbar.landing-header {
    all: unset !important;
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    padding: 15px 0 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

html body header#mainNavbar.landing-header.scrolled {
    padding: 10px 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

html body header#mainNavbar.landing-header .container {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
}

html body header#mainNavbar.landing-header .landing-header-inner {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Logo */
html body header#mainNavbar.landing-header a.landing-logo {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

html body header#mainNavbar.landing-header a.landing-logo img {
    all: unset !important;
    display: block !important;
    height: 40px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
}

/* Navigation */
html body header#mainNavbar.landing-header nav.landing-nav {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
}

/* Nav Links */
html body header#mainNavbar.landing-header nav.landing-nav a.landing-nav-link {
    all: unset !important;
    display: inline-block !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    box-sizing: border-box !important;
    line-height: 1.5 !important;
}

html body header#mainNavbar.landing-header.scrolled nav.landing-nav a.landing-nav-link {
    color: #3f4254 !important;
}

html body header#mainNavbar.landing-header nav.landing-nav a.landing-nav-link:hover {
    color: #ffc700 !important;
    background: rgba(255,255,255,0.15) !important;
    text-decoration: none !important;
}

html body header#mainNavbar.landing-header.scrolled nav.landing-nav a.landing-nav-link:hover {
    color: #009ef7 !important;
    background: #f5f8fa !important;
}

/* CTA Button */
html body header#mainNavbar.landing-header nav.landing-nav a.landing-cta-btn {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 10px 24px !important;
    margin-left: 8px !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #009ef7 !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    line-height: 1.5 !important;
}

html body header#mainNavbar.landing-header nav.landing-nav a.landing-cta-btn:hover {
    background: #ffc700 !important;
    color: #181c32 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    text-decoration: none !important;
}

html body header#mainNavbar.landing-header.scrolled nav.landing-nav a.landing-cta-btn {
    background: #009ef7 !important;
    color: #ffffff !important;
}

html body header#mainNavbar.landing-header.scrolled nav.landing-nav a.landing-cta-btn:hover {
    background: #0078c8 !important;
    color: #ffffff !important;
}

/* Mobile Menu Toggle */
html body header#mainNavbar.landing-header button.landing-menu-toggle {
    all: unset !important;
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    gap: 5px !important;
    box-sizing: border-box !important;
}

html body header#mainNavbar.landing-header button.landing-menu-toggle span {
    all: unset !important;
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

html body header#mainNavbar.landing-header.scrolled button.landing-menu-toggle span {
    background: #3f4254 !important;
}

/* Footer Logo Override */
html body footer.footer a.footer-logo {
    all: unset !important;
    display: inline-block !important;
    cursor: pointer !important;
}

html body footer.footer a.footer-logo img {
    all: unset !important;
    display: block !important;
    height: 45px !important;
    width: auto !important;
}

/* Mobile Responsive Overrides */
@media (max-width: 991.98px) {
    html body header#mainNavbar.landing-header button.landing-menu-toggle {
        display: flex !important;
    }

    html body header#mainNavbar.landing-header nav.landing-nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        padding: 1rem !important;
        margin: 0.5rem 1rem !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    html body header#mainNavbar.landing-header nav.landing-nav.active {
        display: flex !important;
    }

    html body header#mainNavbar.landing-header nav.landing-nav a.landing-nav-link {
        color: #3f4254 !important;
        padding: 12px 16px !important;
        display: block !important;
        width: 100% !important;
    }

    html body header#mainNavbar.landing-header nav.landing-nav a.landing-nav-link:hover {
        color: #009ef7 !important;
        background: #f5f8fa !important;
    }

    html body header#mainNavbar.landing-header nav.landing-nav a.landing-cta-btn {
        width: 100% !important;
        justify-content: center !important;
        margin: 8px 0 0 0 !important;
        background: #009ef7 !important;
        color: #ffffff !important;
    }
}
