/* ===========================
   Variables & Reset
   =========================== */
:root {
    /* Primary Colors - Same as original */
    --primary-color: #5E17EB;
    --primary-dark: #4405c6;
    --primary-light: #8559F0;
    --secondary-color: #00D4FF;
    --secondary-dark: #00B0D4;
    --secondary-light: #62EBFF;
    --accent-color: #FF1F8A;
    --accent-light: #FF6EB3;
    
    /* Neutral Colors */
    --dark-color: #0F0B1C;
    --gray-900: #1A1735;
    --gray-800: #2D2855;
    --gray-700: #403B6B;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;
    
    /* Status Colors */
    --success-color: #00D0A0;
    --warning-color: #FFB800;
    --danger-color: #FF2D55;
    --info-color: #0080FF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #5E17EB 0%, #8559F0 100%);
    --gradient-secondary: linear-gradient(135deg, #00D4FF 0%, #62EBFF 100%);
    --gradient-dark: linear-gradient(135deg, #0F0B1C 0%, #1A1735 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(265, 88%, 50%, 0.3) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.2) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(334, 100%, 60%, 0.2) 0px, transparent 50%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 40px -10px rgb(0 0 0 / 0.15);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(94, 23, 235, 0.3);
    
    /* Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Empêcher le débordement horizontal global */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
}

.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, li, a {
    margin-bottom: 0;
}

ol, ul {
    padding-left: 0;
}

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Compenser la navbar fixed */
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(94, 23, 235, 0.08);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(94, 23, 235, 0.12);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(94, 23, 235, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 300px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 2rem;
    width: 12px;
    height: 12px;
    background: white;
    border: 1px solid rgba(94, 23, 235, 0.1);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    border: none;
    background: none;
}

.dropdown-item:hover, .dropdown-item:focus {
    background: rgba(94, 23, 235, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-item.active {
    background: rgba(94, 23, 235, 0.12);
    color: var(--primary-color);
    font-weight: 600;
}

/* Module Icons in Dropdown */
.dropdown-item .module-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.dropdown-item[href*="collaboration"] .module-icon {
    background: linear-gradient(135deg, #667EEA, #764BA2);
}

.dropdown-item[href*="rh"] .module-icon {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.dropdown-item[href*="erp"] .module-icon {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.dropdown-item[href*="marketing"] .module-icon {
    background: linear-gradient(135deg, #667EEA, #764BA2);
}

.dropdown-item .module-description {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.125rem;
}

/* CTA Button */
.nav-cta {
    margin-left: 1rem;
    padding: 0.625rem 1.5rem !important;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(94, 23, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    z-index: 10;
}

/* ===========================
   Mobile Menu Button
   =========================== */
.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.mobile-menu-btn .menu-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-btn .menu-bar:nth-child(1) {
    top: 14px;
}

.mobile-menu-btn .menu-bar:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.mobile-menu-btn .menu-bar:nth-child(3) {
    bottom: 14px;
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: translateX(-50%) translateY(9px) rotate(45deg);
    top: 14px;
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: translateX(-50%) translateY(-9px) rotate(-45deg);
    bottom: 14px;
}

/* ===========================
   Mobile Fullscreen Menu
   =========================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(94, 23, 235, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gray-900);
}

.mobile-menu-logo img {
    width: 36px;
    height: 36px;
}

.mobile-menu-logo span {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(94, 23, 235, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.4s forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: white;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--gray-800);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(94, 23, 235, 0.25);
}

.mobile-nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(94, 23, 235, 0.25);
}

.mobile-nav-link:hover .nav-number,
.mobile-nav-link.active .nav-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    color: white;
}

.nav-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(94, 23, 235, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--transition);
}

.nav-text {
    flex: 1;
    margin: 0 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.mobile-nav-link i {
    color: var(--gray-400);
    font-size: 1.25rem;
    transition: var(--transition);
}

/* Mobile Modules Grid */
.mobile-modules-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
    padding: 0;
    background: rgba(94, 23, 235, 0.03);
    border-radius: 1rem;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-nav-item.has-modules.expanded .mobile-modules-grid {
    display: grid;
    opacity: 1;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
}

.mobile-nav-item.has-modules.expanded .mobile-nav-link i {
    transform: rotate(180deg);
}

.mobile-module-card {
    padding: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    text-align: center;
    text-decoration: none;
    color: var(--gray-800);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.mobile-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.module-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.mobile-module-card h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.mobile-module-card p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Mobile Menu CTA */
.mobile-menu-cta {
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.05) 0%, rgba(133, 89, 240, 0.05) 100%);
    border-radius: 1rem;
}

.mobile-menu-cta .btn {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(94, 23, 235, 0.3);
}

.mobile-menu-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 23, 235, 0.4);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(94, 23, 235, 0.1);
    text-align: center;
}

.mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-menu-socials a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 1.25rem;
    transition: var(--transition);
}

.mobile-menu-socials a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(94, 23, 235, 0.3);
}

.mobile-menu-contact {
    color: var(--gray-600);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

/* Mobile specific responsive adjustments */
@media (max-width: 991px) {
    body {
        padding-top: 70px; /* Réduire le padding sur mobile */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar-toggler {
        display: none;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    /* Assurer que la navbar reste visible */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .mobile-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-nav-link {
        padding: 1rem;
    }
    
    .nav-text {
        font-size: 1rem;
    }
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(94, 23, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 23, 235, 0.35);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-light:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 23, 235, 0.35);
}

.btn-warning {
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.25);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 50px 0 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 50%, #f0f4ff 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(94, 23, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

.hero-feature i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    box-shadow: var(--shadow-sm);
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-count {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.trust-rating {
    color: var(--warning-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.dashboard-header {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.dashboard-dots span:first-child { background: #FF5F56; }
.dashboard-dots span:nth-child(2) { background: #FFBD2E; }
.dashboard-dots span:nth-child(3) { background: #27C93F; }

.dashboard-title {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.dashboard-content {
    padding: 1.5rem;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.dashboard-chart {
    height: 150px;
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
}

#heroChart {
    width: 100%;
    height: 100%;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.float-card i {
    font-size: 1.25rem;
}

.float-card-1 {
    top: -10px;
    left: -50px;
    animation: float-slow 8s ease-in-out infinite;
}

.float-card-1 i { color: var(--primary-color); }

.float-card-2 {
    top: 100px;
    right: -30px;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.float-card-2 i { color: var(--success-color); }

.float-card-3 {
    bottom: 50px;
    left: -40px;
    animation: float-slow 7s ease-in-out infinite;
}

.float-card-3 i { color: var(--info-color); }

.float-card-4 {
    bottom: -10px;
    right: -20px;
    animation: float-slow 9s ease-in-out infinite reverse;
}

.float-card-4 i { color: var(--warning-color); }

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* ===========================
   Problem Solution Section - Redesigned
   =========================== */
.problem-solution {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 31, 138, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.problem-solution::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 160, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    background: rgba(94, 23, 235, 0.1);
    color: var(--primary-color);
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge.success {
    background: rgba(0, 208, 160, 0.1);
    color: var(--success-color);
}

.section-badge.premium {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 160, 0, 0.1) 100%);
    color: var(--warning-color);
}

.problem-box, .solution-box {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: var(--transition);
}

.problem-box:hover, .solution-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.box-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.box-header.problem {
    background: linear-gradient(135deg, #FF2D55 0%, #FF6B88 100%);
    color: white;
}

.box-header.solution {
    background: linear-gradient(135deg, #00D0A0 0%, #00F0B5 100%);
    color: white;
}

.box-header i {
    font-size: 1.75rem;
}

.problem-list, .solution-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.problem-item, .solution-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    transition: var(--transition);
    position: relative;
}

.problem-item:hover, .solution-item:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: var(--shadow);
}

.problem-icon, .solution-icon {
    width: 45px;
    height: 45px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-icon {
    background: rgba(255, 45, 85, 0.1);
    color: var(--danger-color);
}

.solution-icon {
    background: rgba(0, 208, 160, 0.1);
    color: var(--success-color);
}

.cost-badge, .time-badge, .risk-badge, .save-badge, .gain-badge, .ai-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.cost-badge, .time-badge, .risk-badge {
    background: rgba(255, 45, 85, 0.1);
    color: var(--danger-color);
}

.save-badge, .gain-badge {
    background: rgba(0, 208, 160, 0.1);
    color: var(--success-color);
}

.ai-badge {
    background: var(--gradient-primary);
    color: white;
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

.transformation-arrow i {
    font-size: 3rem;
    color: var(--primary-light);
}

/* ===========================
   AI Assistant Section
   =========================== */
.ai-assistant {
    padding: 80px 0;
    background: white;
    position: relative;
}

.ai-chat-demo {
    position: relative;
}

.chat-window {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 100%;
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-header strong {
    display: block;
    margin-bottom: 0.25rem;
}

.chat-header span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.chat-messages {
    padding: 1.5rem;
    background: var(--gray-50);
    max-height: 500px;
    overflow-y: auto;
}

.message {
    margin-bottom: 1.5rem;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    text-align: right;
}

.message.user span {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem 1rem 0 1rem;
    max-width: 80%;
    text-align: left;
}

.message.ai span {
    display: inline-block;
    background: white;
    color: var(--gray-800);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem 1rem 1rem 0;
    max-width: 90%;
    box-shadow: var(--shadow-sm);
}

.ai-card {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.ai-item {
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-item strong {
    color: var(--gray-900);
}

.badge-danger {
    background: rgba(255, 45, 85, 0.1);
    color: var(--danger-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-warning {
    background: rgba(255, 184, 0, 0.1);
    color: var(--warning-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.ai-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.ai-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.ai-calendar {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.time-slot {
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.time-slot.available {
    background: rgba(0, 208, 160, 0.1);
    color: var(--success-color);
    border-radius: 0.25rem;
    font-weight: 600;
}

.ai-content {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.ai-meta {
    display: block;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.75rem;
}

.chat-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 0.75rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

.chat-input button {
    padding: 0.75rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    transform: scale(1.05);
}

.ai-capabilities h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.capability {
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.capability:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.capability i {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.capability strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.capability p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.ai-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    color: white;
}

.ai-stat {
    text-align: center;
}

.ai-stat .stat-value {
    display: block;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ai-stat .stat-label {
    font-size: 0.875rem;
    color: white;
    opacity: 0.9;
}

/* ===========================
   Features Grid
   =========================== */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-icon.collaboration {
    background: var(--gradient-primary);
}

.feature-icon.rh {
    background: linear-gradient(135deg, #00D0A0 0%, #00B890 100%);
}

.feature-icon.erp {
    background: linear-gradient(135deg, #0080FF 0%, #0060BA 100%);
}

.feature-icon.marketing {
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
}

.feature-tagline {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.feature-stats {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.feature-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-stats .stat i {
    color: var(--success-color);
    font-size: 1rem;
}

/* ===========================
   AI Studio Section
   =========================== */
.ai-studio {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
}

.studio-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.studio-feature {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    transition: var(--transition);
}

.studio-feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.studio-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.studio-demo {
    position: relative;
}

.code-window {
    background: #1e1e1e;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.code-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-header span:first-child,
.code-header span:nth-child(2),
.code-header span:nth-child(3) {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.code-header span:first-child { background: #ff5f56; }
.code-header span:nth-child(2) { background: #ffbd2e; }
.code-header span:nth-child(3) { background: #27c93f; }

.code-title {
    margin-left: auto;
    color: #999;
    font-size: 0.875rem;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    color: #d4d4d4;
    line-height: 1.6;
}

.code-content .comment { color: #6a9955; }
.code-content .keyword { color: #569cd6; }
.code-content .variable { color: #9cdcfe; }
.code-content .property { color: #9cdcfe; margin-left: 20px; }
.code-content .string { color: #ce9178; }

.typing-animation {
    animation: typing 3s steps(40, end);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.studio-sectors {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.sector-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.sector-pill:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

/* ===========================
   Pricing Section
   =========================== */
.pricing {
    padding: 80px 0;
    background: var(--gray-50);
}

/* Billing Toggle for Homepage */
.pricing .billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing .billing-label {
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing .save-badge {
    background: linear-gradient(135deg, #00D0A0 0%, #00B890 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    margin-top: 0;
}

/* Switch Toggle for Homepage */
.pricing .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.pricing .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-400);
    transition: 0.4s;
    border-radius: 30px;
}

.pricing .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing input:checked + .slider {
    background: var(--gradient-primary);
}

.pricing input:checked + .slider:before {
    transform: translateX(30px);
}

/* Price transitions for homepage */
.pricing .price {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.pricing .price.monthly.hidden,
.pricing .price.annual.hidden {
    opacity: 0;
    transform: scale(0.95);
}

.pricing .price.monthly.visible,
.pricing .price.annual.visible {
    opacity: 1;
    transform: scale(1);
}

.pricing-cards {
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-price {
    margin: 1rem 0;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray-600);
}

.pricing-price .custom {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-users {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.pricing-features li.highlight {
    font-weight: 600;
}

.pricing-features li.highlight i {
    color: var(--warning-color);
}

.pricing-savings {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.pricing-savings strong {
    color: var(--success-color);
}

.special-offer {
    margin-top: 3rem;
}

.offer-content {
    background: linear-gradient(135deg, #fff4e6 0%, #ffffff 100%);
    border: 2px solid var(--warning-color);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.offer-icon {
    font-size: 3rem;
    color: var(--warning-color);
}

.offer-text {
    flex: 1;
}

.offer-text h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

/* Freelancer Offer */
.freelancer-offer {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 1rem;
    position: relative;
    transition: var(--transition);
}

.freelancer-offer:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.freelancer-offer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.freelancer-offer:hover::before {
    opacity: 0.1;
}

.freelancer-content h3 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.freelancer-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.freelancer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.freelancer-badge i {
    font-size: 1rem;
}

.freelancer-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 0;
}

.freelancer-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
}

.freelancer-features li i {
    color: var(--success-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.freelancer-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pricing-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.pricing-option {
    text-align: center;
}

.pricing-option .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-option .currency {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

.pricing-option .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pricing-option .period {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pricing-option .billing-type {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-separator {
    color: var(--gray-500);
    font-weight: 600;
    font-size: 1rem;
    padding: 0 0.5rem;
    position: relative;
}

.pricing-separator::before,
.pricing-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gray-300);
}

.pricing-separator::before {
    left: -25px;
}

.pricing-separator::after {
    right: -25px;
}

/* Pricing Highlights */
.pricing-highlights {
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    height: 100%;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.highlight-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================
   ROI Calculator Section
   =========================== */
.roi-calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.roi-calculator-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calculator-input label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.calculator-input label i {
    color: var(--primary-color);
}

.form-range {
    --bs-form-range-track-bg: var(--gray-300);
    --bs-form-range-thumb-bg: var(--primary-color);
    --bs-form-range-thumb-active-bg: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.range-value {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.roi-calculator {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.roi-stat {
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.roi-stat.highlight {
    background: rgba(94, 23, 235, 0.05);
    border: 1px solid var(--primary-color);
}

.roi-stat.success {
    background: rgba(0, 208, 160, 0.05);
    border: 1px solid var(--success-color);
}

.roi-stat.primary {
    background: var(--gradient-primary);
    color: white;
}

.roi-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.roi-stat.primary .roi-label {
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.roi-value.large {
    font-size: 2rem;
}

.roi-stat.primary .roi-value {
    color: white;
}

.roi-payback {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 160, 0, 0.1) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.roi-payback i {
    font-size: 2rem;
    color: var(--warning-color);
}

/* ROI Benefits */
.roi-benefits {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.roi-benefits h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.benefit-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.benefit-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.125rem;
}

.benefit-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.benefit-stat {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(94, 23, 235, 0.1);
    color: var(--primary-color);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Legacy ROI styles for backward compatibility */
.roi-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.roi-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.roi-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.roi-section .container {
    position: relative;
    z-index: 1;
}

.roi-breakdown {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
}

.roi-items {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.roi-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.roi-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.roi-guarantee {
    background: linear-gradient(135deg, rgba(0, 208, 160, 0.1) 0%, rgba(0, 184, 144, 0.1) 100%);
    border: 1px solid var(--success-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.roi-guarantee i {
    font-size: 2rem;
    color: var(--success-color);
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
    padding: 80px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    flex-wrap: wrap;
}

.testimonial-stats .stat {
    text-align: center;
}

.testimonial-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.cta-feature i {
    color: #00D0A0;
    font-size: 1.25rem;
}

.cta-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.cta-form h3 {
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(94, 23, 235, 0.1);
    outline: none;
}

.form-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--success-color);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 20px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.footer h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
    
    /* Hero Section adjustments from 991px */
    .hero {
        padding: 100px 0 50px; /* Increase top padding */
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Trust rating improvements from 991px */
    .hero-trust {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .trust-text {
        text-align: center;
    }
    
    .trust-rating {
        justify-content: center;
    }
    
    /* Dashboard improvements from 991px */
    .dashboard-content {
        padding: 1.25rem;
    }
    
    .stat-cards {
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 0.75rem 0.5rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
    }
    
    .dashboard-chart {
        height: 120px;
    }
    
    /* Transformation arrow from 991px */
    .transformation-arrow {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }
    
    .transformation-arrow i {
        transform: rotate(90deg);
        font-size: 3rem;
    }
    
    /* Section spacing improvements from 991px */
    .ai-assistant .row {
        gap: 2.5rem;
    }
    
    .ai-capabilities {
        margin-top: 2.5rem;
    }
    
    .ai-studio .row {
        gap: 2.5rem;
    }
    
    .studio-demo {
        margin-top: 2.5rem;
    }
    
    .pricing-cards {
        gap: 2.5rem;
    }
    
    .pricing-cards > div {
        margin-bottom: 2.5rem;
    }
    
    /* Freelancer pricing horizontal from 991px */
    .pricing-options {
        flex-direction: row !important; /* Force horizontal */
        align-items: center;
        justify-content: space-around;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .pricing-separator {
        transform: none !important; /* No rotation */
    }
    
    .pricing-separator::before,
    .pricing-separator::after {
        display: none; /* Remove decorative lines for cleaner look */
    }
    
    /* ROI section spacing from 991px */
    .roi-benefits {
        margin-bottom: 3.5rem;
    }
    
    .roi-calculator-section .row {
        gap: 3.5rem;
    }
    
    /* Additional improvements from 991px */
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .message.user span,
    .message.ai span {
        font-size: 0.95rem;
    }
    
    .testimonial-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stat-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-results {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-content {
        text-align: center;
    }
    
    .offer-icon {
        margin: 0 auto;
    }
    
    /* Freelancer offer mobile styles */
    .freelancer-offer {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .freelancer-content h3 {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .freelancer-content p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .freelancer-badge {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .freelancer-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-options {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .pricing-separator {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .pricing-separator::before,
    .pricing-separator::after {
        top: 50%;
        width: 15px;
    }
    
    .pricing-separator::before {
        left: -20px;
    }
    
    .pricing-separator::after {
        right: -20px;
    }
}

/* ===========================
   Extra Small Screens (360px and below) - Mobile First Responsive
   =========================== */
@media (max-width: 400px) {
    /* Correction globale pour éviter l'overflow X */
    * {
        box-sizing: border-box;
    }
    
    .container, .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* 1. Hero Section - Fix content overlapping navbar and text cutoff */
    .hero {
        padding: 120px 0 50px; /* Increase top padding to avoid navbar overlap */
        min-height: auto;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 0 1rem; /* Add horizontal padding */
        width: 100%;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem; /* Smaller badge text */
        padding: 0.375rem 0.75rem;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem; /* Smaller title */
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem; /* Smaller description */
        text-align: center;
    }
    
    /* 2. Fix trust rating overflow on X axis */
    .hero-trust {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .trust-text {
        text-align: center;
        max-width: 100%;
    }
    
    .trust-rating {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 0.875rem;
    }
    
    .trust-rating span {
        white-space: nowrap;
    }
    
    /* 3. Simplify dashboard preview - reduce stat-card height */
    .dashboard-content {
        padding: 1rem;
    }
    
    .stat-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-card {
        padding: 0.5rem 0.25rem;
        text-align: center;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-value {
        font-size: 1.125rem;
        margin-bottom: 0.125rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
        line-height: 1.2;
    }
    
    .dashboard-chart {
        height: 100px; /* Reduce chart height */
    }
    
    /* 4. Fix transformation arrow - point down and add spacing */
    .transformation-arrow {
        margin: 2rem 0; /* Add vertical spacing */
        padding: 1rem 0;
    }
    
    .transformation-arrow i {
        transform: rotate(90deg); /* Point arrow down */
        font-size: 2.5rem;
    }
    
    /* 5. Add spacing between AI chat and capabilities section */
    .ai-assistant .row {
        gap: 2rem;
    }
    
    .ai-capabilities {
        margin-top: 2rem; /* Add top margin */
    }
    
    /* 6. Add spacing between Studio section and AI generation */
    .ai-studio .row {
        gap: 2rem;
    }
    
    .studio-demo {
        margin-top: 2rem; /* Add spacing */
    }
    
    /* 7. Add spacing between pricing cards */
    .pricing-cards {
        gap: 2rem;
    }
    
    .pricing-cards > div {
        margin-bottom: 2rem; /* Add bottom margin to each card */
    }
    
    /* 8. Fix freelancer pricing - display horizontally */
    .freelancer-pricing {
        width: 100%;
        align-items: stretch;
    }
    
    .pricing-options {
        flex-direction: row; /* Keep horizontal */
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0.75rem;
        width: 100%;
        gap: 0.75rem;
    }
    
    .pricing-option {
        flex: 1;
        min-width: 0;
    }
    
    .pricing-option .amount {
        font-size: 1.5rem;
    }
    
    .pricing-separator {
        transform: none; /* Reset rotation */
        margin: 0;
        flex-shrink: 0;
    }
    
    .pricing-separator::before,
    .pricing-separator::after {
        display: none; /* Remove decorative lines */
    }
    
    /* 9. Add spacing between benefits and ROI calculator */
    .roi-benefits {
        margin-bottom: 3rem; /* Add bottom margin */
    }
    
    .roi-calculator-section .row {
        gap: 3rem;
    }
    
    /* Additional mobile improvements */
    .hero-features {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-actions {
        align-items: center;
    }
    
    .trust-avatars {
        justify-content: center;
    }
    
    /* Chat messages responsive improvements */
    .message.user span,
    .message.ai span {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        max-width: 95%;
    }
    
    .ai-card {
        padding: 0.75rem;
    }
    
    .ai-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Capability grid improvements */
    .capability-grid {
        grid-template-columns: 1fr;
    }
    
    .capability {
        padding: 1rem;
        text-align: center;
    }
    
    /* Studio sectors improvements */
    .sectors-grid {
        justify-content: center;
    }
    
    .sector-pill {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    /* Testimonial improvements */
    .testimonial-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .testimonial-stats .stat {
        padding: 1rem;
    }
    
    /* Form improvements */
    .cta-features {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Footer improvements */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

/* Enterprise Offer */
.enterprise-offer {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f3ff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    position: relative;
    transition: var(--transition);
}

.enterprise-offer:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.enterprise-offer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.enterprise-offer:hover::before {
    opacity: 0.1;
}

.enterprise-content h3 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.enterprise-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.enterprise-badge i {
    font-size: 1rem;
}

.enterprise-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 0;
}

.enterprise-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
}

.enterprise-features li i {
    color: var(--success-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.enterprise-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pricing-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.custom-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.custom-label {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.custom-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.custom-description {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
    max-width: 200px;
    text-align: center;
}

/* ===========================
   Animations
   =========================== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 1rem;
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.modal-body {
    padding: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

.surplus .feature-name {
    flex-direction: row;
    align-items: center;
}


@media (max-width: 400px) {
    #home {
        padding-bottom: 0;
    }

    #dashboard {
        padding-bottom: 50px;
    }

    .hero-visual {
        margin-top: 1rem;
    }

   .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .problem-solution {
        padding-bottom: 30px;
    }

    #solution {
        padding-bottom: 50px;
    }

    #features .container, .module-benefits .container, .marketing-automation .container, .studio-features .container,.pricing-main .container, .faq-section .container {
        overflow-y: hidden;
    }

    .features {
        padding-top: 0px;
    }

    .ai-studio {
        padding-bottom: 0;
    }

    #pricing {
        padding-top: 30px;
    }

    .social-links {
        margin-bottom: 20px;
    }

    .footer hr {
        margin: 10px 0 20px;
    }

    .hero-visual {
        padding: 20px !important;
        padding-bottom: 80px !important;
    }

    .module-features {
        padding: 80px 0 !important;
    }

    .integration-visual {
        padding-bottom: 70px !important;
    }

    .module-integration {
        padding-bottom: 30px !important;
    }

    .rh-workflow {
        padding: 80px 0 !important;
        padding-bottom: 50px !important;
    }

    .workflow-timeline {
        margin-bottom: 0 !important;
    }

    .module-benefits {
        padding: 80px 0 !important;
    }

    .module-cta {
        padding: 80px 0 !important;
    }

    .cta-content {
        margin-bottom: 0 !important;
    }

    .dashboard-kpis {
        overflow: clip;
        overflow-clip-margin: content-box
    }

    .erp-ai-section {
        padding: 80px 0 !important;
        padding-bottom: 30px !important;
    }

    #dashboardai, #ai-optimization {
        padding-bottom: 50px !important;
    }

    .workflow-branches {
        margin-top: 20px;
    }

    .marketing-automation, .marketing-ai {
        padding: 80px 0 !important;
        padding-bottom: 30px !important;
    }

    .module-benefits {
        padding-top: 0px !important;
    }

    .studio-visual {
        padding-bottom: 60px !important;
    }

    .studio-hero {
        padding-bottom: 50px !important;
    }

    .studio-process,.studio-sectors,.studio-features,.studio-demo {
        padding: 80px 0 !important;
    }

    .process-step {
        margin-bottom: 2rem !important;
    }

    .studio-demo {
        margin-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .demo-benefits .benefit {
        margin-bottom: 0px !important;
    }

    .demo-benefits {
        margin-bottom: 50px;
    }

    #ctaform {
        padding-bottom: 80px;
    }

    .pricing-main {
        padding-top: 0px !important;
    }

    .comparison-plans {
        zoom: 0.7;
    }

    .featured-badge {
        top: -15px !important;
    }

    .comparison-feature-name {
        padding: 5px !important;
    }
}