/* ===== MODERN HEADER STYLES ===== */

/* Top Info Bar */
.top-info-bar {
    background: linear-gradient(135deg, #374151 0%, #4B5563 100%);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.social-icon {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-right: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #0EA5E9;
    transform: translateY(-2px);
}

.language-selector select {
    color: white !important;
    font-size: 0.85rem;
}

.language-selector select option {
    background: #374151;
    color: white;
}

/* Main Navigation */
.modern-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

/* Make the entire header sticky so nav stays at top while top bar can collapse */
.modern-login-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
}

.main-navigation {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Enhanced Brand Logo */
.brand-enhanced {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-enhanced:hover {
    transform: scale(1.05);
}

/* Logo styling for new SVG logos */
.brand-enhanced .logo-main {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

/* Horizontal logo for homepage header */
.brand-enhanced .logo-horizontal {
    max-height: 50px;
    width: auto;
    max-width: 280px;
}

/* Larger horizontal logo */
.brand-enhanced .logo-horizontal.logo-large {
    max-height: 60px;
    max-width: 340px;
}

/* Responsive adjustments for horizontal logo */
@media (max-width: 992px) {
    .brand-enhanced .logo-horizontal {
        max-height: 40px;
        max-width: 220px;
    }
    
    .brand-enhanced .logo-horizontal.logo-large {
        max-height: 50px;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .brand-enhanced .logo-horizontal {
        max-height: 35px;
        max-width: 180px;
    }
    
    .brand-enhanced .logo-horizontal.logo-large {
        max-height: 40px;
        max-width: 200px;
    }
}

.brand-enhanced:hover .logo-main {
    transform: scale(1.05);
}

/* Legacy brand styles (if needed for fallback) */
.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0EA5E9, #374151);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #374151;
    line-height: 1;
    margin-bottom: 2px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom Mobile Toggle */
.custom-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
}

.navbar-toggler-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.custom-toggler:focus .navbar-toggler-line,
.custom-toggler:hover .navbar-toggler-line {
    background: #0EA5E9;
}

/* Enhanced Navigation Links */
.nav-enhanced {
    color: #374151 !important;
    font-weight: 500;
    padding: 12px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 2px;
}

.nav-enhanced::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0EA5E9, #374151);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-enhanced:hover {
    color: #0EA5E9 !important;
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.nav-enhanced:hover::before {
    width: 80%;
}

.nav-enhanced.active {
    color: #0EA5E9 !important;
    background: rgba(14, 165, 233, 0.15);
}

.nav-enhanced.active::before {
    width: 80%;
}

/* Modern Dropdown */
.modern-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 8px;
    background: white;
}

.modern-dropdown .dropdown-item {
    padding: 12px 20px;
    color: #374151;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 10px;
}

.modern-dropdown .dropdown-item:hover {
    background: rgba(14, 165, 233, 0.1);
    color: #0EA5E9;
    transform: translateX(5px);
}

.modern-dropdown .dropdown-item i {
    color: #6B7280;
    transition: all 0.3s ease;
}

.modern-dropdown .dropdown-item:hover i {
    color: #0EA5E9;
}

/* Header Actions */
.header-actions {
    gap: 12px;
}

/* Enhanced Buttons */
.btn-enhanced {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-enhanced::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: all 0.6s ease;
}

.btn-enhanced:hover::before {
    left: 100%;
}

.btn-outline-light {
    color: #374151 !important;
    border-color: #374151 !important;
    background: transparent;
}

.btn-outline-light:hover {
    background: #374151 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55, 65, 81, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, #0EA5E9 0%, #374151 100%);
    border: none;
    color: white !important;
    position: relative;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #374151 0%, #0EA5E9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    color: white !important;
}

/* ===== MODERN FOOTER STYLES ===== */

.modern-footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand {
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand-icon-footer {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0EA5E9, #374151);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.3);
}

.brand-text-footer {
    flex: 1;
}

.brand-title-footer {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.brand-subtitle-footer {
    color: #9CA3AF;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-footer {
    background: rgba(14, 165, 233, 0.2);
    color: #0EA5E9;
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Social Section */
.social-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.social-links-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link-modern {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
    transition: all 0.6s ease;
}

.social-link-modern:hover::before {
    left: 100%;
}

.social-link-modern:hover {
    background: #0EA5E9;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Footer Widget Titles */
.footer-widget-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0EA5E9, #374151);
    border-radius: 1px;
}

/* Modern Footer Links */
.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 8px;
}

.footer-links-modern a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 6px 0;
    border-radius: 6px;
}

.footer-links-modern a:hover {
    color: #0EA5E9;
    transform: translateX(8px);
    background: rgba(14, 165, 233, 0.1);
    padding-left: 10px;
}

.footer-links-modern a i {
    color: #6B7280;
    transition: all 0.3s ease;
    width: 16px;
}

.footer-links-modern a:hover i {
    color: #0EA5E9;
}

/* Newsletter Modern */
.newsletter-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.newsletter-desc {
    color: #D1D5DB;
    font-size: 0.85rem;
    line-height: 1.5;
}

.newsletter-input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    border: none;
    background: white;
    padding: 12px 18px;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    box-shadow: none;
    border: none;
}

.btn-newsletter {
    background: linear-gradient(135deg, #0EA5E9, #374151);
    border: none;
    padding: 12px 18px;
    color: white;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #374151, #0EA5E9);
    transform: scale(1.05);
}

/* Contact Quick */
.contact-quick {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-modern {
    display: flex;
    align-items: center;
    color: #D1D5DB;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 6px 0;
    border-radius: 6px;
}

.contact-item-modern:hover {
    color: #0EA5E9;
    background: rgba(14, 165, 233, 0.1);
    padding-left: 8px;
}

.contact-icon {
    width: 18px;
    color: #0EA5E9;
    margin-right: 12px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom-left .copyright {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-bottom-left .brand-name {
    color: #0EA5E9;
    font-weight: 600;
}

.footer-bottom-right {
    text-align: right;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0EA5E9;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #0EA5E9;
}

.legal-link:hover::after {
    width: 100%;
}

.footer-certifications {
    margin-top: 8px;
}

/* Floating Elements */
.footer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(120deg);
    }
    66% {
        transform: translateY(-5px) rotate(240deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .top-info-bar {
        padding: 6px 0;
        font-size: 0.8rem;
    }
    
    .top-info-bar .col-md-8 .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .top-info-bar .col-md-4 {
        margin-top: 10px;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .search-box {
        display: none !important;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px !important;
        margin-top: 15px;
    }
    
    .header-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-right {
        text-align: center;
        margin-top: 20px;
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links-footer {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .brand-title {
        font-size: 1.3rem;
    }
    
    .newsletter-modern {
        padding: 15px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .floating-shape {
        display: none;
    }
}

/* ===== ADDITIONAL ANIMATIONS ===== */

/* Pulse animation for important elements */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll effects */
.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.modern-header.scrolled .top-info-bar {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
}

/* Enhanced hover effects */
.footer-widget:hover .footer-widget-title::after {
    width: 60px;
    background: linear-gradient(90deg, #0EA5E9, #84CC16);
}

/* Tooltip for social links */
.social-link-modern[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #374151;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 10;
}

.social-link-modern[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-bottom-color: #374151;
    z-index: 10;
}

/* ===== HERO SECTION STYLES ===== */

/* Color Palette Variables from Image */
:root {
    --hero-bg-light: #f8fafc;
    --hero-bg-blue: #e0f2fe;
    --hero-gray-light: #b8c5d1;
    --hero-gray-medium: #8b95a1;
    --hero-gray-dark: #64748b;
    --hero-primary: #3b82f6;
    --hero-success: #10b981;
    --hero-warning: #f59e0b;
}

.hero-section {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--hero-bg-light) 0%, var(--hero-bg-blue) 50%, var(--hero-bg-light) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0px 0 0px;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-shapes .shape-1 {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--hero-bg-blue), var(--hero-gray-light));
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--hero-gray-light), var(--hero-gray-medium));
    border-radius: 30px;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
    animation-delay: -2s;
}

.hero-shapes .shape-3 {
    position: absolute;
    top: 60%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--hero-primary), var(--hero-bg-blue));
    border-radius: 20px;
    opacity: 0.25;
    animation: float 5s ease-in-out infinite;
    animation-delay: -4s;
}

.hero-shapes .shape-4 {
    position: absolute;
    top: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--hero-success), var(--hero-bg-blue));
    border-radius: 50%;
    opacity: 0.2;
    animation: float 7s ease-in-out infinite;
    animation-delay: -1s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--hero-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    color: var(--hero-warning);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--hero-gray-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.text-gradient {
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--hero-gray-medium);
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle strong {
    color: var(--hero-primary);
    font-weight: 700;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 1.4s ease-out;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--hero-gray-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--hero-success);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease-out;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-success));
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::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: all 0.6s ease;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid var(--hero-gray-light);
    color: var(--hero-gray-dark);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: var(--hero-gray-dark);
    border-color: var(--hero-gray-dark);
    color: white;
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust {
    animation: fadeInUp 1.8s ease-out;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--hero-gray-medium);
    font-weight: 500;
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    border: 1px solid var(--hero-gray-light);
    color: var(--hero-gray-dark);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trust-item i {
    color: var(--hero-primary);
    font-size: 1rem;
}

/* ===== HERO VISUAL STYLES ===== */

.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInUp 2s ease-out;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--hero-gray-dark), var(--hero-gray-medium));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red {
    background: #ff5f57;
}

.control-dot.yellow {
    background: #ffbd2e;
}

.control-dot.green {
    background: #28ca42;
}

.dashboard-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-content {
    padding: 25px;
}

/* Stats Cards */
.stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-card.blue {
    border-left-color: var(--hero-primary);
}

.stat-card.green {
    border-left-color: var(--hero-success);
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.stat-card.blue .stat-icon {
    background: linear-gradient(135deg, var(--hero-primary), #60a5fa);
}

.stat-card.green .stat-icon {
    background: linear-gradient(135deg, var(--hero-success), #34d399);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--hero-gray-medium);
    margin-top: 2px;
}

/* Chart Area */
.chart-area {
    background: var(--hero-bg-light);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h6 {
    color: var(--hero-gray-dark);
    font-weight: 600;
    margin: 0;
}

.chart-period {
    font-size: 0.8rem;
    color: var(--hero-gray-medium);
    background: white;
    padding: 4px 10px;
    border-radius: 20px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--hero-primary), var(--hero-bg-blue));
    border-radius: 4px 4px 0 0;
    min-height: 10px;
    transition: all 0.3s ease;
    animation: barGrow 1.5s ease-out;
    animation-delay: calc(var(--i) * 0.1s);
}

.bar:hover {
    transform: scaleY(1.1);
    background: linear-gradient(to top, var(--hero-success), var(--hero-bg-blue));
}

@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--height, 50%);
    }
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 12px;
}

.action-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--hero-gray-light);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hero-gray-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-item:hover {
    background: var(--hero-bg-blue);
    border-color: var(--hero-primary);
    transform: translateY(-2px);
}

.action-item i {
    color: var(--hero-primary);
    font-size: 1rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-1 {
    top: 15%;
    right: -15%;
    animation-delay: 0s;
}

.card-1 i {
    background: linear-gradient(135deg, var(--hero-success), #34d399);
}

.card-2 {
    bottom: 25%;
    left: -20%;
    animation-delay: -2s;
}

.card-2 i {
    background: linear-gradient(135deg, var(--hero-warning), #fbbf24);
}

.card-3 {
    top: 50%;
    right: -10%;
    animation-delay: -4s;
}

.card-3 i {
    background: linear-gradient(135deg, var(--hero-primary), #60a5fa);
}

.card-title {
    font-weight: 600;
    color: var(--hero-gray-dark);
    font-size: 0.9rem;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--hero-gray-medium);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(2deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--hero-gray-medium);
    z-index: 2;
    animation: fadeInUp 2.5s ease-out;
}

.scroll-text {
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
    color: var(--hero-primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== HERO DASHBOARD VISUAL ===== */

.hero-visual-dashboard {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Image Styles */
.dashboard-hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25)) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dashboard-hero-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 70px rgba(0, 0, 0, 0.3)) drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.badge-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--hero-gray-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatBadge 8s ease-in-out infinite;
    white-space: nowrap;
}

.badge-item i {
    font-size: 1.1rem;
    color: var(--hero-primary);
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: -2s;
}

.badge-3 {
    top: 25%;
    left: -20%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

/* ===== RESPONSIVE HERO SECTION ===== */

@media (max-width: 992px) {
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-logos {
        justify-content: center;
    }
    
    .dashboard-preview {
        max-width: 400px;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Hero dashboard responsive */
    .dashboard-hero-image {
        max-width: 560px;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary-hero,
    .btn-outline-hero {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-logos {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .dashboard-preview {
        max-width: 350px;
    }
    
    .dashboard-content {
        padding: 20px;
    }
    
    /* Hero dashboard tablet responsive */
    .dashboard-hero-image {
        max-width: 480px;
    }
    
    .floating-badges {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-shapes .shape-1,
    .hero-shapes .shape-2 {
        display: none;
    }
    
    .dashboard-preview {
        max-width: 300px;
    }
    
    .chart-bars {
        height: 80px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Hero devices mobile responsive */
    .devices-container {
        max-width: 100%;
    }
    
    .laptop-image {
        max-width: 350px;
    }
    
    .mobile-container {
        right: -15px;
        bottom: 10px;
    }
    
    .mobile-image {
        width: 60px;
    }
}

/* ===== INDUSTRIES SECTION STYLES (Enhanced with Dashboard) ===== */

.industries-section-enhanced {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--hero-bg-light) 50%, #ffffff 100%);
    overflow: hidden;
}

/* Enhanced decorative background */
.industries-section-enhanced::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.industries-section-enhanced::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Enhanced Section Header */
.section-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hero-primary);
    margin-bottom: 20px;
}

.section-title-enhanced {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--hero-dark);
}

.section-subtitle-enhanced {
    font-size: 1.2rem;
    color: var(--hero-gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Layout */
.industries-enhanced-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.industries-cards-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Enhanced Industry Cards */
.industry-card-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hero-primary), var(--hero-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.industry-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.industry-card-enhanced:hover::before {
    transform: scaleX(1);
}

.industry-card-enhanced.coming-soon {
    opacity: 0.7;
}

.industry-card-enhanced.coming-soon:hover {
    transform: translateY(-4px);
}

/* Enhanced Card Header */
.industry-card-enhanced-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: flex-start;
}

.industry-icon-enhanced {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-accent));
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.industry-card-enhanced:hover .industry-icon-enhanced {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

/* Industry Content */
.industry-content-enhanced {
    flex: 1;
}

.industry-title-enhanced {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hero-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.industry-subtitle-enhanced {
    color: var(--hero-gray-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.08);
    color: var(--hero-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: rgba(59, 130, 246, 0.12);
    transform: translateY(-1px);
}

.industry-features.muted .feature-tag {
    background: rgba(156, 163, 175, 0.1);
    color: var(--hero-gray-medium);
    border-color: rgba(156, 163, 175, 0.2);
}

/* Industry Stats */
.industry-stats {
    text-align: right;
}

.stat-item {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 80px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hero-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--hero-gray-medium);
    font-weight: 600;
    margin-top: 4px;
}

.coming-soon-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* Dashboard Showcase Section */
.dashboard-showcase-section {
    position: relative;
}

.dashboard-container-enhanced {
    position: relative;
    max-width: 120%;
    width: 120%;
}

.dashboard-frame {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: scale(1.1);
}

.dashboard-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-container-enhanced:hover .dashboard-frame::before {
    opacity: 1;
}

.dashboard-header {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 20px 20px 0 0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.dashboard-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
}

.control-dot.red { background: #ef4444; }
.control-dot.yellow { background: #f59e0b; }
.control-dot.green { background: #10b981; }

.dashboard-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.dashboard-image-enhanced {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 2;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 3;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.stat-card .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}

.stat-card.stat-1 .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stat-card.stat-2 .stat-icon {
    background: linear-gradient(135deg, #10b981, #047857);
}

.stat-card.stat-3 .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--hero-dark);
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--hero-gray-medium);
    font-weight: 600;
    margin-top: 2px;
}

/* Color variants for different industries */
.industry-card-enhanced.retail .industry-icon-enhanced {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.industry-card-enhanced.wholesale .industry-icon-enhanced {
    background: linear-gradient(135deg, #10b981, #047857);
}

.industry-card-enhanced.services .industry-icon-enhanced {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.industry-card-enhanced.manufacturing .industry-icon-enhanced {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .industries-enhanced-layout {
        gap: 40px;
    }
    
    .floating-stats {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .industries-enhanced-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .dashboard-showcase-section {
        order: -1;
    }
    
    .section-title-enhanced {
        font-size: 2.4rem;
    }
    
    .industry-card-enhanced-header {
        grid-template-columns: auto 1fr;
        gap: 16px;
    }
    
    .industry-stats {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .industries-section-enhanced {
        padding: 80px 0;
    }
    
    .section-title-enhanced {
        font-size: 2rem;
    }
    
    .industries-enhanced-layout {
        gap: 40px;
        margin-top: 40px;
    }
    
    .industry-card-enhanced {
        padding: 20px;
    }
    
    .industry-card-enhanced-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .industry-icon-enhanced {
        margin: 0 auto;
    }
    
    .industry-stats {
        text-align: center;
    }
    
    .floating-stats {
        gap: 12px;
    }
    
    .stat-card {
        min-width: auto;
        flex: 1;
        padding: 12px;
    }
    
    .dashboard-frame {
        padding: 4px;
    }
    
    .dashboard-header {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .section-title-enhanced {
        font-size: 1.8rem;
    }
    
    .section-subtitle-enhanced {
        font-size: 1.1rem;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .stat-card {
        max-width: 140px;
    }
}

/* ===== FEATURES SECTION STYLES ===== */

/* ===== FEATURES SECTION STYLES (Compact) ===== */

.features-section-compact {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--hero-bg-light) 50%, #ffffff 100%);
    overflow: hidden;
}

/* Features Background Effects */
.features-section-compact::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-section-compact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(59,130,246,0.8), rgba(59,130,246,0.1));
    border-radius: 50%;
    filter: blur(0.5px);
    opacity: 0.8;
}

/* Different particle positions and animations */
.particle-1 { top: 10%; left: 15%; animation: drift1 12s linear infinite; }
.particle-2 { top: 20%; left: 65%; animation: drift2 14s linear infinite; }
.particle-3 { top: 35%; left: 30%; animation: drift3 16s linear infinite; }
.particle-4 { top: 50%; left: 80%; animation: drift1 13s linear infinite; }
.particle-5 { top: 65%; left: 20%; animation: drift2 15s linear infinite; }
.particle-6 { top: 75%; left: 55%; animation: drift3 17s linear infinite; }
.particle-7 { top: 15%; left: 85%; animation: drift2 18s linear infinite; }
.particle-8 { top: 40%; left: 5%; animation: drift1 19s linear infinite; }
.particle-9 { top: 58%; left: 72%; animation: drift3 21s linear infinite; }
.particle-10 { top: 82%; left: 38%; animation: drift2 20s linear infinite; }
.particle-11 { top: 28%; left: 48%; animation: drift1 22s linear infinite; }
.particle-12 { top: 88%; left: 88%; animation: drift3 24s linear infinite; }

/* Keyframes for drifting particles */
@keyframes drift1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(20px, -15px) scale(1.3); opacity: 0.9; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
}

@keyframes drift2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-25px, 10px) scale(1.2); opacity: 0.8; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}

@keyframes drift3 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(15px, 20px) scale(1.25); opacity: 1; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
}

/* Responsive adjustments for particles */
@media (max-width: 768px) {
  .particle { width: 10px; height: 10px; opacity: 0.6; }
}
@media (max-width: 480px) {
  .particle { width: 8px; height: 8px; opacity: 0.4; }
}


/* Compact Header */
.compact-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.compact-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--hero-gray-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.compact-subtitle {
    font-size: 1rem;
    color: var(--hero-gray-medium);
    margin: 0;
}

/* Features Grid */
.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Feature Item */
.feature-item-compact {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgb(11 20 35 / 38%);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

/* Animated background gradient */
.feature-item-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.04), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.feature-item-compact:hover::before {
    left: 100%;
}

/* Enhanced hover effects */
.feature-item-compact:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

/* Glow effect on hover */
.feature-item-compact:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Feature Icon */
.feature-icon-compact {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--hero-primary);
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Icon glow effect */
.feature-icon-compact::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-item-compact:hover .feature-icon-compact {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.25),
        0 0 0 4px rgba(59, 130, 246, 0.1);
}

.feature-item-compact:hover .feature-icon-compact::after {
    opacity: 1;
}

.feature-item-compact:hover .feature-icon-compact i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

/* Feature Text */
.feature-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--hero-gray-medium);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Feature Tags */
.feature-tags-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.ftag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.ftag:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--hero-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .features-section-compact { padding: 50px 0; }
    .features-grid-compact { gap: 16px; grid-template-columns: 1fr; }
    .compact-title { font-size: 1.8rem; }
    .feature-item-compact { padding: 20px 16px; }
}

@media (max-width: 576px) {
    .compact-header { margin-bottom: 40px; }
    .feature-tags-compact { gap: 4px; }
    .ftag { padding: 3px 8px; font-size: 0.7rem; }
}

/* ===== PRICING SECTION (Compact) ===== */

.pricing-section-compact {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--hero-bg-light) 50%, #ffffff 100%);
}

.pricing-header-compact { margin-bottom: 40px; }
.pricing-title { 
    font-size: 2.4rem; 
    font-weight: 800; 
    color: var(--hero-gray-dark); 
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

/* Special styling for 'Affordable' text */
.affordable-text {
    color: #10b981;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.affordable-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 1px;
}

.pricing-subtitle { color: var(--hero-gray-medium); margin: 0 0 16px 0; }

/* Billing Toggle */
.billing-toggle-compact { display: inline-flex; align-items: center; gap: 12px; background: #f8fafc; border: 1px solid #e2e8f0; padding: 8px 12px; border-radius: 999px; }
.billing-option { font-weight: 700; color: #64748b; }
.billing-option.active { color: #0ea5e9; }
.toggle-switch-compact { position: relative; width: 44px; height: 24px; }
.toggle-switch-compact input { display: none; }
.toggle-label-compact { position: absolute; inset: 0; background: #e2e8f0; border-radius: 999px; cursor: pointer; }
.toggle-label-compact::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: white; border-radius: 50%; transition: all .2s ease; box-shadow: 0 2px 6px rgba(0,0,0,.1); }
#billingToggleCompact:checked + .toggle-label-compact { background: #0ea5e9; }
#billingToggleCompact:checked + .toggle-label-compact::after { transform: translateX(20px); }
.save-badge { background: #dcfce7; color: #166534; border: 1px solid #86efac; border-radius: 999px; padding: 2px 8px; font-weight: 700; font-size: .8rem; }

/* Grid */
.pricing-grid-compact { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }

/* Card */
.pricing-card-compact { background: white; border: 1px solid #e5e7eb; border-radius: 18px; padding: 20px; transition: all .3s ease; position: relative; }
.pricing-card-compact:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,0,0,.1); border-color: #d1d5db; }
.pricing-card-compact.featured { border-color: #0ea5e9; box-shadow: 0 20px 60px rgba(14,165,233,.15); }

.popular-badge-compact { position: absolute; top: -12px; right: 16px; background: #0ea5e9; color: white; padding: 6px 10px; border-radius: 999px; font-weight: 700; font-size: .8rem; display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 8px 20px rgba(14,165,233,.35); }

.plan-header-compact { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; margin-bottom: 14px; }
.plan-icon-compact { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(59,130,246,.15)); color: #0ea5e9; }
.plan-title-compact { margin: 0; font-weight: 800; color: #1f2937; font-size: 1.1rem; }
.plan-subtitle-compact { margin: 0; color: #6b7280; font-size: .9rem; }

.price-section-compact { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.price-display { display: block; }
.price-display .price-amount { font-size: 1.8rem; font-weight: 800; color: #111827; }
.price-display .price-period { color: #6b7280; font-weight: 600; }

.features-compact { list-style: none; padding: 0; margin: 0 0 14px 0; display: grid; gap: 8px; }
.features-compact li { color: #374151; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.features-compact i { color: #10b981; }

.btn-pricing-compact { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 10px; font-weight: 700; border: 1px solid transparent; transition: all .25s ease; }
.btn-starter { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.btn-starter:hover { background: #dbeafe; }
.btn-professional { background: #ecfeff; color: #155e75; border-color: #a5f3fc; }
.btn-professional:hover { background: #cffafe; }
.btn-enterprise { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.btn-enterprise:hover { background: #dcfce7; }

/* Trust */
.pricing-trust-section { text-align: center; margin-top: 22px; }
.trust-text { color: #64748b; margin-bottom: 10px; font-size: .95rem; }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; background: #f8fafc; border: 1px solid #e2e8f0; padding: 6px 10px; border-radius: 999px; color: #334155; font-weight: 700; font-size: .85rem; }

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid-compact { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 768px) {
  .pricing-section-compact { padding: 70px 0; }
  .pricing-grid-compact { grid-template-columns: 1fr; }
  .pricing-title { 
    font-size: 1.8rem; 
    line-height: 1.3;
  }
  .affordable-text::after {
    height: 1.5px;
  }
}

@media (max-width: 576px) {
  .pricing-title {
    font-size: 1.6rem;
  }
}


/* ===== FAQ SECTION WITH GRADIENT BACKGROUND ===== */

.faq-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 50%, #ecfeff 100%);
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(147, 197, 253, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(34, 197, 94, 0.06) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-compact {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.faq-compact-header {
    margin-bottom: 30px;
}

.faq-compact-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--hero-gray-dark);
    margin-bottom: 8px;
}

.faq-compact-subtitle {
    color: var(--hero-gray-medium);
    font-size: 0.95rem;
    margin: 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 8px;
}

.faq-accordion-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.faq-accordion-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.faq-accordion-item summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-item summary:hover {
    background: rgba(59, 130, 246, 0.08);
    backdrop-filter: blur(8px);
}

.faq-accordion-item[open] summary {
    background: rgba(59, 130, 246, 0.12);
    border-bottom-color: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.faq-accordion-item summary .q {
    font-weight: 700;
    color: var(--hero-gray-dark);
    font-size: 0.95rem;
    flex: 1;
    text-align: left;
}

.faq-accordion-item summary i {
    color: var(--hero-primary);
    transition: transform 0.25s ease;
    font-size: 0.85rem;
}

.faq-accordion-item[open] summary i {
    transform: rotate(180deg);
}

.faq-accordion-item .a {
    padding: 18px 24px;
    color: var(--hero-gray-medium);
    line-height: 1.6;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

/* First item is open by default */
.faq-accordion-item:first-child {
    border-color: rgba(59, 130, 246, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-accordion {
        max-width: 100%;
    }
    
    .faq-accordion-item summary {
        padding: 14px 16px;
    }
    
    .faq-accordion-item .a {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .faq-compact-title {
        font-size: 1.4rem;
    }
}

/* ===== STICKY NAVIGATION ENHANCEMENTS ===== */

/* Optional: Add a scrolled class for enhanced sticky behavior */
.main-navigation.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.main-navigation.scrolled .brand-enhanced .logo-horizontal {
    max-height: 40px;
    max-width: 240px;
}

/* Ensure dropdowns appear above other content */
.navbar-nav .dropdown-menu {
    z-index: 1050;
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

/* Add padding to sections to account for sticky header */
section[id] {
    scroll-margin-top: 100px;
}

/* ===== OLD FEATURES SECTION STYLES (Legacy) ===== */

.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--hero-bg-light) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--hero-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--hero-gray-dark);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--hero-gray-medium);
    margin-bottom: 0;
    animation: fadeInUp 1.2s ease-out;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.4s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.03), transparent);
    transition: all 0.8s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--hero-primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-success));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hero-gray-medium);
    margin-bottom: 20px;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-item {
    background: var(--hero-bg-blue);
    color: var(--hero-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--hero-primary);
    color: white;
    transform: translateY(-2px);
}

/* Features Comparison */
.features-comparison {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--hero-gray-light);
    position: relative;
}

.comparison-header {
    margin-bottom: 40px;
}

.comparison-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
    margin-bottom: 15px;
}

.comparison-subtitle {
    font-size: 1.1rem;
    color: var(--hero-gray-medium);
    margin-bottom: 0;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card.traditional {
    border: 2px solid #fee2e2;
    background: linear-gradient(135deg, #ffffff, #fef2f2);
}

.comparison-card.modern {
    border: 2px solid #dcfce7;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.comparison-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-card .card-header i {
    font-size: 1.5rem;
    margin-right: 12px;
}

.comparison-card .card-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--hero-gray-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li:hover {
    background: rgba(0, 0, 0, 0.02);
    padding-left: 10px;
    border-radius: 8px;
}

.comparison-list li i {
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Features CTA */
.features-cta {
    background: linear-gradient(135deg, var(--hero-bg-light), var(--hero-bg-blue));
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.features-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hero-gray-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--hero-gray-medium);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    margin: 0 10px 10px 10px;
}

/* CTA Stats */
.cta-stats {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hero-primary);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--hero-gray-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Features Section */
@media (max-width: 992px) {
    .features-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
        padding: 30px 25px;
    }
    
    .features-comparison {
        padding: 30px 20px;
    }
    
    .comparison-card {
        margin-bottom: 30px;
    }
    
    .features-cta {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 20px auto;
    }
    
    .feature-highlights {
        justify-content: center;
    }
    
    .comparison-title {
        font-size: 1.8rem;
    }
    
    .features-cta {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 0 15px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .features-comparison {
        padding: 20px 15px;
    }
    
    .comparison-card {
        padding: 20px 15px;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .features-cta {
        padding: 25px 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
}

/* Feature Card Animation Delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== MOBILE APP SECTION STYLES ===== */

.mobile-app-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.mobile-app-section .container {
    position: relative;
    z-index: 2;
}

/* App Content Styles */
.app-content {
    color: white;
    padding: 20px 0;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(14, 165, 233, 0.15) 100%);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.app-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.app-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* App Features */
.app-features {
    margin: 2.5rem 0;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.app-feature-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.feature-icon-small i {
    font-size: 1.5rem;
    color: white;
}

.feature-content-small h5 {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content-small p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* App Store Buttons */
.app-download-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.app-store-btn:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: #3b82f6;
    text-decoration: none;
}

.store-icon {
    font-size: 2rem;
    margin-right: 12px;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.get-it {
    font-size: 0.8rem;
    color: #6b7280;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

/* App Stats */
.app-stats {
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-box .stat-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Phone Mockup Styles */
.app-visual {
    position: relative;
    padding: 2rem;
}

.phone-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    z-index: 10;
}

.phone-frame {
    position: relative;
    background: #1f2937;
    border-radius: 35px;
    padding: 25px 15px;
    box-shadow: 
        0 0 0 8px #374151,
        0 0 0 12px #1f2937,
        0 25px 80px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-10px); }
}

.phone-screen {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 25px;
    padding: 20px 15px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.phone-screen > * {
    position: relative;
    z-index: 2;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.status-icons {
    display: flex;
    gap: 6px;
}

.status-icons i {
    font-size: 0.8rem;
    color: #374151;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 20px;
}

.app-header h6 {
    color: #1f2937;
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.header-icons {
    display: flex;
    gap: 10px;
}

.sync-icon, .notification-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sync-icon:hover, .notification-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.sync-icon {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Dashboard */
.mobile-dashboard {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.dashboard-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.dashboard-card.sales {
    border-left-color: #3b82f6;
}

.dashboard-card.orders {
    border-left-color: #10b981;
}

.dashboard-card.inventory {
    border-left-color: #f59e0b;
}

.dashboard-card .card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 1.2rem;
}

.sales .card-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.orders .card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.inventory .card-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-info {
    flex: 1;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.card-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Quick Actions Mobile */
.quick-actions-mobile {
    margin-top: 20px;
}

.quick-actions-mobile h6 {
    color: #374151;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.action-btn:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.action-btn i {
    font-size: 1.2rem;
    color: #3b82f6;
    margin-bottom: 5px;
}

.action-btn span {
    color: #374151;
    font-weight: 500;
}

/* Floating Features */
.floating-features {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-feature {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatAround 8s ease-in-out infinite;
    z-index: 5;
}

.feature-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.feature-2 {
    bottom: 35%;
    left: -15%;
    animation-delay: 2s;
}

.feature-3 {
    top: 65%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes floatAround {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.8;
    }
    33% { 
        transform: translateY(-15px) rotate(1deg); 
        opacity: 1;
    }
    66% { 
        transform: translateY(10px) rotate(-1deg); 
        opacity: 0.9;
    }
}

.floating-feature .feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1;
}

.feature-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1;
}

/* Responsive Design for Mobile App Section */
@media (max-width: 992px) {
    .mobile-app-section {
        padding: 80px 0;
    }
    
    .app-title {
        font-size: 2.2rem;
    }
    
    .app-subtitle {
        font-size: 1.1rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .app-store-btn {
        min-width: auto;
    }
    
    .phone-frame {
        transform: none;
        margin-top: 3rem;
    }
    
    .floating-feature {
        display: none;
    }
}

@media (max-width: 768px) {
    .app-title {
        font-size: 1.8rem;
    }
    
    .app-feature-item {
        padding: 1rem;
    }
    
    .feature-icon-small {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .feature-icon-small i {
        font-size: 1.2rem;
    }
    
    .phone-container {
        max-width: 250px;
    }
    
    .phone-screen {
        min-height: 500px;
        padding: 15px 10px;
    }
}

/* ===== PRICING SECTION STYLES ===== */

.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--hero-bg-light) 30%, #ffffff 70%, var(--hero-bg-blue) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.billing-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hero-gray-dark);
    transition: all 0.3s ease;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e5e7eb;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-input:checked + .toggle-label {
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-success));
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-label .toggle-slider {
    transform: translateX(30px);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: all 0.8s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.pricing-card.starter:hover {
    border-color: #3b82f6;
}

.pricing-card.professional:hover {
    border-color: #10b981;
}

.pricing-card.enterprise:hover {
    border-color: #8b5cf6;
}

/* Most Popular Badge */
.most-popular {
    position: relative;
    transform: scale(1.05);
    border: 2px solid #10b981;
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: bounce 2s infinite;
}

.popular-badge i {
    margin-right: 6px;
}

/* Pricing Header */
.pricing-header {
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.starter .plan-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.professional .plan-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.enterprise .plan-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1) rotate(5deg);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hero-gray-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.plan-description {
    color: var(--hero-gray-medium);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Price Container */
.price-container {
    position: relative;
    margin-bottom: 20px;
}

.price {
    display: none;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.price.active {
    display: flex;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--hero-gray-medium);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--hero-gray-dark);
    line-height: 1;
}

.period {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--hero-gray-medium);
}

.savings-note {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Pricing Features */
.pricing-features {
    padding: 0 30px 30px;
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
    margin-bottom: 20px;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--hero-gray-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    background: rgba(59, 130, 246, 0.03);
    padding-left: 10px;
    border-radius: 8px;
}

.features-list li i {
    margin-right: 12px;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.features-list li .fa-check {
    color: #10b981;
}

.features-list li .fa-times {
    color: #ef4444;
    opacity: 0.5;
}

/* Pricing Action */
.pricing-action {
    padding: 0 30px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-pricing-starter {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pricing-professional {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pricing-enterprise {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pricing-starter::before,
.btn-pricing-professional::before,
.btn-pricing-enterprise::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: all 0.6s ease;
}

.btn-pricing-starter:hover::before,
.btn-pricing-professional:hover::before,
.btn-pricing-enterprise:hover::before {
    left: 100%;
}

.btn-pricing-starter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-pricing-professional:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-pricing-enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    color: white;
}

.trial-note {
    font-size: 0.85rem;
    color: var(--hero-gray-medium);
    margin: 15px 0 0 0;
    font-style: italic;
}

/* Pricing Features Comparison */
.pricing-features-comparison {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    margin-top: 60px;
}

.comparison-header {
    margin-bottom: 40px;
}

.comparison-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
    margin-bottom: 15px;
}

.comparison-subtitle {
    font-size: 1.1rem;
    color: var(--hero-gray-medium);
    margin-bottom: 0;
}

.feature-highlight {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-highlight:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--hero-primary);
}

.feature-highlight .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-success));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-highlight:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-highlight h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
    margin-bottom: 12px;
}

.feature-highlight p {
    color: var(--hero-gray-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* FAQ Section */
.pricing-faq {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    margin-top: 60px;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hero-gray-dark);
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--hero-gray-medium);
    margin-bottom: 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--hero-primary);
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.faq-question i {
    color: var(--hero-primary);
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-question h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hero-gray-dark);
    margin: 0;
    line-height: 1.4;
}

.faq-answer p {
    color: var(--hero-gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing CTA */
.pricing-cta {
    background: linear-gradient(135deg, var(--hero-bg-light), var(--hero-bg-blue));
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.pricing-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hero-gray-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.pricing-cta .cta-subtitle {
    font-size: 1.2rem;
    color: var(--hero-gray-medium);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.pricing-cta .cta-buttons {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pricing-cta .cta-buttons .btn {
    margin: 0 10px 15px 10px;
}

.cta-trust {
    position: relative;
    z-index: 2;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-indicators .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--hero-gray-dark);
}

.trust-indicators .trust-item i {
    font-size: 1.1rem;
}

/* Responsive Pricing Section */
@media (max-width: 992px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .most-popular {
        transform: none;
        margin-bottom: 30px;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .pricing-features-comparison,
    .pricing-faq,
    .pricing-cta {
        padding: 40px 30px;
    }
    
    .comparison-title,
    .faq-title,
    .pricing-cta .cta-title {
        font-size: 2rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-header {
        padding: 30px 20px 25px;
    }
    
    .pricing-features {
        padding: 0 20px 25px;
    }
    
    .pricing-action {
        padding: 0 20px 30px;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .plan-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .pricing-features-comparison,
    .pricing-faq,
    .pricing-cta {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .comparison-title,
    .faq-title {
        font-size: 1.8rem;
    }
    
    .pricing-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .pricing-cta .cta-subtitle {
        font-size: 1rem;
    }
    
    .pricing-cta .cta-buttons .btn {
        width: 100%;
        margin: 0 0 15px 0;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-header {
        padding: 25px 15px 20px;
    }
    
    .pricing-features {
        padding: 0 15px 20px;
    }
    
    .pricing-action {
        padding: 0 15px 25px;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-features-comparison,
    .pricing-faq,
    .pricing-cta {
        padding: 25px 15px;
    }
    
    .feature-highlight {
        padding: 25px 15px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .comparison-title,
    .faq-title,
    .pricing-cta .cta-title {
        font-size: 1.6rem;
    }
}

/* Animation Delays for Pricing Cards */
.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s; }

/* JavaScript Toggle Functionality */
.pricing-section.annual .monthly-price {
    display: none;
}

.pricing-section.annual .annual-price {
    display: flex;
}

.pricing-section.annual .savings-note {
    opacity: 1;
}
