/* OS Web Hosting - Custom Styles */

/* =============================================================================
   CSS VARIABLES - BRAND IDENTITY
============================================================================= */
:root {
    /* Primary Colors - Deep Blues */
    --primary: #2C599D;
    --primary-dark: #193A6F;
    --primary-light: #5B84C4;
    
    /* Secondary Colors - Orange Accent */
    --secondary: #F98125;
    --secondary-dark: #e6721f;
    --secondary-light: #FB9B50;
    
    /* Accent Colors */
    --accent-blue: #5B84C4;
    --accent-blue-dark: #2C599D;
    --accent-orange: #F98125;
    --accent-orange-light: #FB9B50;
    
    /* Neutral Colors */
    --dark: #11224D;
    --dark-light: #193A6F;
    --dark-lighter: #2C599D;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-white-75: rgba(255, 255, 255, 0.75);
    --text-white-50: rgba(255, 255, 255, 0.5);
    --text-dark: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    --gradient-hero: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--primary-dark) 100%);
    --gradient-orange: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(44, 89, 157, 0.4);
    --shadow-glow-orange: 0 0 30px rgba(249, 129, 37, 0.4);
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =============================================================================
   GLOBAL STYLES
============================================================================= */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* =============================================================================
   UTILITY CLASSES
============================================================================= */
.text-white-75 {
    color: var(--text-white-75) !important;
}

.text-white-50 {
    color: var(--text-white-50) !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-dark-light {
    background-color: var(--dark-light) !important;
}

/* =============================================================================
   NAVIGATION
============================================================================= */
.navbar {
    background: rgba(17, 34, 77, 0.85) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-smooth);
    padding: 1rem 0;
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 0;
}

.navbar.scrolled {
    background: rgba(17, 34, 77, 0.95) !important;
    padding: 0.5rem 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary) !important;
}

.navbar-brand:hover::before {
    left: 100%;
}

.nav-link {
    color: var(--text-white-75) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0.25rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(14, 165, 233, 0.15) 50%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: #ffffff !important;
    background: rgba(14, 165, 233, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    transform: translateY(-1px);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.nav-link.active::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.nav-link.active::after {
    width: 80%;
    background: linear-gradient(90deg, #ffffff, var(--primary));
    height: 3px;
}

/* Enhanced Get Started Button in Navigation */
.navbar .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar .btn-primary:hover::before {
    left: 100%;
}

/* Mobile Navigation Enhancements */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Mobile Menu Glass Effect */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(17, 34, 77, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .nav-link {
        margin: 0.25rem 0;
    }
    
    .navbar .btn-primary {
        margin-top: 1rem;
        width: 100%;
    }
}

/* =============================================================================
   PRICING COMPARISON TABLE
============================================================================= */
.comparison-table-section {
    position: relative;
}

.table-responsive {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.table-responsive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 20px;
}

.table {
    margin-bottom: 0;
    background: transparent;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
}

.table thead th {
    background: rgba(17, 34, 77, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    vertical-align: middle;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.table thead th:first-child {
    border-top-left-radius: 16px;
    color: var(--text-white) !important;
}

.table thead th:last-child {
    border-top-right-radius: 16px;
}

.table thead th.text-primary {
    color: #60a5fa !important;
    background: rgba(14, 165, 233, 0.15);
}

.table thead th.text-success {
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.15);
}

.table thead th.text-info {
    color: var(--secondary) !important;
    background: rgba(139, 92, 246, 0.15);
}

.table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    box-shadow: 4px 0 0 var(--primary);
}

.table tbody td {
    background: rgba(17, 34, 77, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1rem;
    color: var(--text-white-75);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.table tbody td:first-child {
    color: var(--text-white) !important;
    font-weight: 600;
    background: rgba(17, 34, 77, 0.6);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

/* Enhanced Icons */
.table tbody td i.fa-check {
    color: #10b981 !important;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.table tbody td i.fa-times {
    color: #ef4444 !important;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* Plan Column Highlights */
.table tbody td:nth-child(2) {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.table tbody td:nth-child(3) {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.table tbody td:nth-child(4) {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.table tbody tr:hover td:nth-child(2) {
    border-left-color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
}

.table tbody tr:hover td:nth-child(3) {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.table tbody tr:hover td:nth-child(4) {
    border-left-color: var(--secondary);
    background: rgba(139, 92, 246, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .table-responsive {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .table thead th,
    .table tbody td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .table tbody tr:hover {
        transform: none;
        box-shadow: none;
    }
}

/* =============================================================================
   FAQ ACCORDION
============================================================================= */
.accordion {
    --bs-accordion-color: var(--text-white);
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-border-radius: 16px;
    --bs-accordion-inner-border-radius: 12px;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-btn-color: var(--text-white);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2360a5fa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2360a5fa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.25rem;
    --bs-accordion-active-color: var(--text-white);
    --bs-accordion-active-bg: rgba(14, 165, 233, 0.1);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 16px;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.accordion-item:last-of-type {
    margin-bottom: 0;
}

.accordion-button {
    background: transparent !important;
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 1.1rem;
    border: none !important;
    border-radius: 16px !important;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.accordion-button:not(.collapsed) {
    background: rgba(14, 165, 233, 0.15) !important;
    color: #60a5fa !important;
    box-shadow: none !important;
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #60a5fa !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3) !important;
    border-color: transparent !important;
}

.accordion-button::after {
    background-image: var(--bs-accordion-btn-icon);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.3));
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: rotate(180deg);
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5));
}

.accordion-collapse {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.accordion-body {
    background: rgba(17, 34, 77, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-white-75) !important;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 0 2px 2px 0;
}

/* Enhanced FAQ Section Header */
.accordion-dark .display-5 {
    background: linear-gradient(135deg, var(--text-white) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .accordion-item:hover {
        transform: none;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .accordion-body {
        font-size: 0.9rem;
    }
}

/* =============================================================================
   FEATURES PAGE ENHANCEMENTS
============================================================================= */

/* What We Can Help With Section Styling */
.help-with-list {
    text-align: left !important;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.help-with-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 20px;
}

.help-with-list h5 {
    color: var(--text-white) !important;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--text-white) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-with-list .list-unstyled {
    position: relative;
    z-index: 2;
}

.help-with-list .list-unstyled li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.help-with-list .list-unstyled li:last-child {
    margin-bottom: 0;
}

.help-with-list .list-unstyled li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-with-list .list-unstyled li:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.help-with-list .list-unstyled li:hover::before {
    opacity: 1;
}

.help-with-list .fas.fa-arrow-right {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    margin-right: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.help-with-list .list-unstyled li:hover .fas.fa-arrow-right {
    background: var(--primary);
    color: white !important;
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.help-with-list h6 {
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.help-with-list p.small {
    color: var(--text-white-75) !important;
    line-height: 1.4;
    margin-bottom: 0;
}

.help-with-list .d-flex {
    align-items: flex-start;
}

/* Support Section Grid Icons Alignment */
.support-grid-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
}

.support-grid-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.support-grid-item i {
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-grid-item:hover i {
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .help-with-list {
        padding: 1.5rem;
    }
    
    .help-with-list .list-unstyled li {
        padding: 1rem;
    }
    
    .help-with-list .list-unstyled li:hover {
        transform: none;
    }
    
    .help-with-list .fas.fa-arrow-right {
        margin-right: 0.75rem;
    }
}

/* =============================================================================
   PERFORMANCE FEATURES SECTION STYLING
============================================================================= */

/* Performance Feature Cards - Clean Content-Focused Design */
.performance-feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.performance-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.performance-feature-card:hover::before {
    opacity: 1;
}

.performance-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Clean Content-Focused Layout */

/* Performance Feature Content */
.performance-feature-card h5 {
    color: var(--text-white) !important;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-white) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.performance-feature-card p {
    color: var(--text-white-75) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Performance Feature Lists */
.performance-feature-card .list-unstyled {
    margin: 0;
    padding: 0;
}

.performance-feature-card .list-unstyled li {
    color: var(--text-white-75) !important;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 8px;
}

.performance-feature-card .list-unstyled li:last-child {
    margin-bottom: 0;
}

.performance-feature-card .list-unstyled li:hover {
    color: var(--text-white) !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 0.5rem;
    transform: translateX(4px);
}

.performance-feature-card .list-unstyled li i.fa-check {
    color: #10b981 !important;
    font-size: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}


/* Mobile Responsiveness for Performance Cards */
@media (max-width: 768px) {
    .performance-feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .performance-feature-card h5 {
        font-size: 1.2rem;
    }
    
    .performance-feature-card:hover {
        transform: none;
    }
}

/* =============================================================================
   BUTTONS
============================================================================= */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--gradient-primary);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-light {
    border: 2px solid var(--text-white-50);
    color: var(--text-white);
    background: transparent;
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-success {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.btn-outline-success:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.btn-outline-info {
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.btn-outline-info:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
}

/* =============================================================================
   HERO SECTION
============================================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236366f1" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>');
    z-index: -1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
    transition: all var(--transition-smooth);
    animation: float 6s ease-in-out infinite;
}

.floating-card[data-float="1"] {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card[data-float="2"] {
    top: 50%;
    right: 20%;
    animation-delay: -2s;
}

.floating-card[data-float="3"] {
    bottom: 30%;
    left: 30%;
    animation-delay: -4s;
}

.floating-card i {
    font-size: 2rem;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* =============================================================================
   MODERN HERO SECTION ENHANCEMENTS
============================================================================= */

/* Hero Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Heritage Badge */
.hero-badge {
    display: inline-block;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white-75);
    backdrop-filter: blur(20px);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        border-color: rgba(99, 102, 241, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
        border-color: rgba(99, 102, 241, 0.5);
    }
}

/* Enhanced Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.typing-text {
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.glow-text {
    position: relative;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { 
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        filter: brightness(1);
    }
    to { 
        text-shadow: 0 0 30px rgba(99, 102, 241, 0.8), 0 0 40px rgba(139, 92, 246, 0.5);
        filter: brightness(1.2);
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-white-75);
    max-width: 90%;
}

/* Hero Stats Pills */
.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    text-align: center;
    transition: all var(--transition-smooth);
    animation: statFloat 4s ease-in-out infinite;
}

.stat-pill:nth-child(1) { animation-delay: 0s; }
.stat-pill:nth-child(2) { animation-delay: -1s; }
.stat-pill:nth-child(3) { animation-delay: -2s; }

@keyframes statFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.stat-pill:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-white-50);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Buttons */
.btn-primary-glow {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-primary-glow:hover::before {
    left: 100%;
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: white;
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    transition: all var(--transition-smooth);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: var(--text-white);
}

/* Trust Indicators */
.hero-trust {
    opacity: 0.8;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-white-50);
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Enhanced Visual Section */
.hero-visual-enhanced {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tech Hub Central Element */
.tech-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-core {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-inner {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    z-index: 2;
    position: relative;
}

.core-inner i {
    font-size: 2rem;
    color: white;
    animation: coreRotate 20s linear infinite;
}

@keyframes coreRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pulse Rings */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: -1s;
}

.pulse-ring.delay-2 {
    animation-delay: -2s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Orbiting Elements */
.tech-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation: orbit 20s linear infinite;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    animation: orbit 25s linear infinite reverse;
}

.orbit-3 {
    width: 350px;
    height: 350px;
    animation: orbit 30s linear infinite;
}

.orbit-4 {
    width: 450px;
    height: 450px;
    animation: orbit 35s linear infinite reverse;
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-element {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation: counter-rotate 20s linear infinite;
}

.orbit-2 .orbit-element {
    animation: counter-rotate 25s linear infinite reverse;
}

.orbit-3 .orbit-element {
    animation: counter-rotate 30s linear infinite;
}

.orbit-4 .orbit-element {
    animation: counter-rotate 35s linear infinite reverse;
}

@keyframes counter-rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(-360deg); }
}

.element-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    min-width: 140px;
    transition: all var(--transition-smooth);
}

.element-inner:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.element-inner i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.element-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white-75);
}

/* Data Points */
.data-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.data-point {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: dataFloat 5s ease-in-out infinite;
}

.dp-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.dp-2 {
    top: 15%;
    right: 20%;
    animation-delay: -1.5s;
}

.dp-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -3s;
}

@keyframes dataFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

.dp-content {
    text-align: center;
}

.dp-value {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.dp-unit {
    font-size: 0.6rem;
    color: var(--text-white-50);
    font-weight: 600;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke-dasharray: 5, 10;
    animation: lineDash 3s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: -0.5s; }
.line-3 { animation-delay: -1s; }
.line-4 { animation-delay: -1.5s; }

@keyframes lineDash {
    0% { stroke-dashoffset: 0; opacity: 0.3; }
    50% { stroke-dashoffset: -15; opacity: 0.8; }
    100% { stroke-dashoffset: -30; opacity: 0.3; }
}

/* =============================================================================
   HERO LEAD FORM
============================================================================= */

/* Hero Lead Form Container */
.hero-lead-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.hero-lead-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(249, 129, 37, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 132, 196, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Form Header */
.form-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(249, 129, 37, 0.1);
    border: 1px solid rgba(249, 129, 37, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white-75);
    margin-bottom: 1rem;
    animation: formBadgeGlow 3s ease-in-out infinite;
}

@keyframes formBadgeGlow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(249, 129, 37, 0.3);
        border-color: rgba(249, 129, 37, 0.3);
    }
    50% { 
        box-shadow: 0 0 25px rgba(249, 129, 37, 0.5);
        border-color: rgba(249, 129, 37, 0.5);
    }
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-white-75);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Form Styling */
.hero-form .form-group {
    position: relative;
}

.hero-form .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--text-white);
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.hero-form .form-control::placeholder {
    color: var(--text-white-50);
    font-weight: 400;
}

.hero-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(249, 129, 37, 0.25);
    outline: none;
}

.hero-form .form-control:valid {
    border-color: var(--secondary-light);
}

/* Input Glow Effect */
.input-glow {
    position: absolute;
    top: 28px; /* Position below the label */
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    opacity: 0;
    z-index: 1;
    transition: opacity var(--transition-smooth);
    padding: 2px;
}

.input-glow::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.hero-form .form-control:focus + .input-glow {
    opacity: 0.6;
}

/* Submit Button */
.btn-hero-submit {
    background: var(--gradient-orange);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    transition: all var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(249, 129, 37, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-hero-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-hero-submit:hover::before {
    left: 100%;
}

.btn-hero-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 129, 37, 0.5);
    color: white;
}

/* Trust Signals */
.form-trust-signals {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-row {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-white-50);
    margin: 0 1rem 0.5rem 0;
}

.trust-row i {
    font-size: 0.9rem;
}

/* Enhanced Form Polish and Modern Styling */

/* Enhanced Hero Form Container */
.hero-lead-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-lead-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
    border-radius: 24px;
}

.hero-lead-form::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(139, 92, 246, 0.3), transparent);
    border-radius: 24px;
    z-index: -2;
    opacity: 0.5;
}

/* Enhanced Form Elements */
.hero-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.hero-form .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(14, 165, 233, 0.6);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.hero-form .form-control:valid {
    border-color: rgba(16, 185, 129, 0.4);
}

/* Enhanced Submit Button */
.btn-hero-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-hero-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-hero-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.btn-hero-submit:hover::before {
    left: 100%;
}

/* Enhanced Form Labels */
.hero-form .form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
    background: linear-gradient(135deg, var(--text-white) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-visual-enhanced {
        height: 400px;
    }
    
    .tech-orbit {
        display: none;
    }
    
    .data-points {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-pill {
        flex: 1;
        min-width: 100px;
    }
    
    .hero-actions {
        text-align: center;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
    
    .trust-text {
        justify-content: center;
        text-align: center;
    }
    
    .hero-lead-form {
        padding: 2rem;
        margin: 1rem 0;
        border-radius: 20px;
    }
    
    .hero-form .form-control {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .btn-hero-submit {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-hero-submit:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .trust-row {
        display: block;
        margin: 0.5rem 0;
    }
    
}

/* =============================================================================
   AI DEV SERVERS HERO SECTION
============================================================================= */

/* AI Hero Background */
.ai-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #11224D 0%, #193A6F 30%, #11224D 70%, #2C599D 100%);
    padding-bottom: 90px;
}

.ai-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(91, 132, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(249, 129, 37, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(44, 89, 157, 0.08) 0%, transparent 70%);
    z-index: -2;
}

.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%2314b8a6" fill-opacity="0.03"><circle cx="20" cy="20" r="1"/></g></svg>') 0 0,
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="%236366f1" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></svg>') 30px 30px;
    z-index: -1;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-40px, -40px); }
}

/* AI Badge */
.ai-badge {
    display: inline-block;
}

.ai-badge-text {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44, 89, 157, 0.1), rgba(249, 129, 37, 0.1));
    border: 1px solid rgba(91, 132, 196, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white-75);
    backdrop-filter: blur(20px);
    animation: aiGlow 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.ai-badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 3s ease;
}

.ai-badge:hover .ai-badge-text::before {
    left: 100%;
}

@keyframes aiGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(91, 132, 196, 0.4);
        border-color: rgba(91, 132, 196, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(249, 129, 37, 0.5);
        border-color: rgba(249, 129, 37, 0.4);
    }
}

/* AI Hero Title */
.ai-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.ai-glow-text {
    position: relative;
    animation: aiTextGlow 3s ease-in-out infinite alternate;
}

@keyframes aiTextGlow {
    from { 
        text-shadow: 
            0 0 20px rgba(91, 132, 196, 0.6),
            0 0 30px rgba(44, 89, 157, 0.4);
        filter: brightness(1);
    }
    to { 
        text-shadow: 
            0 0 30px rgba(91, 132, 196, 0.8), 
            0 0 40px rgba(249, 129, 37, 0.6),
            0 0 50px rgba(44, 89, 157, 0.5);
        filter: brightness(1.3);
    }
}

/* AI Hero Description */
.ai-hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-white-75);
    max-width: 95%;
}

/* Demo Value Props */
.demo-value-props {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.value-prop:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.value-prop i {
    font-size: 1.2rem;
    min-width: 20px;
}

.value-prop span {
    color: var(--text-white);
    font-weight: 600;
}

/* Enhanced Demo Buttons */
.btn-demo-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border: none;
    color: white;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    transition: all var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(249, 129, 37, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.btn-demo-primary .btn-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.btn-demo-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(249, 129, 37, 0.6);
    color: white;
}

.btn-ai-secondary {
    background: transparent;
    border: 2px solid rgba(91, 132, 196, 0.5);
    color: var(--text-white);
    font-weight: 600;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-ai-secondary:hover {
    background: rgba(91, 132, 196, 0.2);
    border-color: var(--primary-light);
    transform: translateY(-4px);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(91, 132, 196, 0.4);
}

/* AI Social Proof */
.ai-social-proof {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all var(--transition-smooth);
    min-width: 100px;
}

.proof-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.proof-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--text-white-50);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* AI Visual Enhanced */
.ai-visual-enhanced {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI Brain Hub */
.ai-brain-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.brain-core {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ai {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(14, 165, 233, 0.8);
    z-index: 2;
    position: relative;
    animation: brainPulse 3s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 50px rgba(14, 165, 233, 0.8);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 70px rgba(139, 92, 246, 1);
    }
}

.core-ai i {
    font-size: 2.5rem;
    color: white;
    animation: brainRotate 10s linear infinite;
}

@keyframes brainRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Neural Rings */
.neural-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    animation: neuralPulse 4s ease-out infinite;
}

.neural-ring.ring-1 {
    width: 140px;
    height: 140px;
    animation-delay: 0s;
}

.neural-ring.ring-2 {
    width: 180px;
    height: 180px;
    animation-delay: -1s;
    border-color: rgba(139, 92, 246, 0.3);
}

.neural-ring.ring-3 {
    width: 220px;
    height: 220px;
    animation-delay: -2s;
}

@keyframes neuralPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* AI Capability Nodes */
.ai-capability-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ai-node {
    position: absolute;
    transition: all var(--transition-smooth);
}

.ai-node.node-1 {
    top: 15%;
    left: 20%;
}

.ai-node.node-2 {
    top: 25%;
    right: 15%;
}

.ai-node.node-3 {
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.node-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    min-width: 120px;
    transition: all var(--transition-smooth);
    animation: nodeFloat 6s ease-in-out infinite;
}

.ai-node:nth-child(1) .node-inner { animation-delay: 0s; }
.ai-node:nth-child(2) .node-inner { animation-delay: -1.5s; }
.ai-node:nth-child(3) .node-inner { animation-delay: -3s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.node-inner:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.node-inner i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.node-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white-75);
}

/* Code Stream Visualization */
.code-stream {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.code-line {
    height: 4px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
    border-radius: 2px;
    animation: codeFlow 3s ease-in-out infinite;
}

.code-line.line-1 {
    width: 120px;
    animation-delay: 0s;
}

.code-line.line-2 {
    width: 80px;
    animation-delay: -0.5s;
}

.code-line.line-3 {
    width: 100px;
    animation-delay: -1s;
}

@keyframes codeFlow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* AI Models */
.ai-models {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.model-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    transition: all var(--transition-smooth);
    animation: modelFloat 4s ease-in-out infinite;
}

.model-badge.claude {
    animation-delay: 0s;
    border-color: rgba(14, 165, 233, 0.3);
}

.model-badge.gpt {
    animation-delay: -1s;
    border-color: rgba(139, 92, 246, 0.3);
}

.model-badge.custom {
    animation-delay: -2s;
    border-color: rgba(16, 185, 129, 0.3);
}

@keyframes modelFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.model-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-5px);
}

/* Performance Display */
.performance-display {
    position: absolute;
    bottom: 30%;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    transition: all var(--transition-smooth);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0ea5e9;
    line-height: 1;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-white-50);
    font-weight: 600;
}

/* Neural Network */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.neural-path {
    stroke-dasharray: 8, 12;
    animation: neuralFlow 4s ease-in-out infinite;
}

.neural-path.path-1 { animation-delay: 0s; }
.neural-path.path-2 { animation-delay: -0.8s; }
.neural-path.path-3 { animation-delay: -1.6s; }
.neural-path.path-4 { animation-delay: -2.4s; }
.neural-path.path-5 { animation-delay: -3.2s; }

@keyframes neuralFlow {
    0% { stroke-dashoffset: 0; opacity: 0.3; }
    50% { stroke-dashoffset: -20; opacity: 0.9; }
    100% { stroke-dashoffset: -40; opacity: 0.3; }
}

/* Demo CTA Strip */
.demo-cta-strip {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.demo-avatar-stack {
    position: relative;
    display: flex;
}

.demo-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.demo-avatar.avatar-1::after { content: 'SC'; }
.demo-avatar.avatar-2::after { content: 'MJ'; }
.demo-avatar.avatar-3::after { content: 'DR'; }

.demo-avatar:first-child {
    margin-left: 0;
}

.demo-testimonial {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.demo-attribution {
    font-size: 0.9rem;
    color: var(--text-white-50);
}

.btn-demo-secondary {
    background: transparent;
    border: 2px solid rgba(14, 165, 233, 0.5);
    color: #0ea5e9;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all var(--transition-smooth);
}

.btn-demo-secondary:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: #0ea5e9;
    color: #0ea5e9;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ai-visual-enhanced {
        height: 400px;
    }
    
    .ai-capability-nodes {
        display: none;
    }
    
    .ai-models, .performance-display, .code-stream {
        display: none;
    }
    
    .ai-social-proof {
        justify-content: center;
    }
    
    .proof-stat {
        flex: 1;
        min-width: 90px;
    }
    
    .ai-hero-actions {
        text-align: center;
    }
    
    .ai-hero-actions .btn {
        display: block;
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
    
    .demo-cta-strip .col-lg-8,
    .demo-cta-strip .col-lg-4 {
        text-align: center;
    }
    
    .demo-cta-strip .btn-demo-secondary {
        margin-top: 1rem;
        width: 100%;
    }
}

/* =============================================================================
   FEATURE CARDS
============================================================================= */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all var(--transition-slow);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-smooth);
    flex-shrink: 0;
}

/* Fix oval icons in flexbox layouts */
.d-flex .feature-icon {
    margin: 0;
}

.feature-card:hover .feature-icon {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
}

/* =============================================================================
   STATS SECTION
============================================================================= */
.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

/* =============================================================================
   TECH GRID
============================================================================= */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-smooth);
    animation: techFloat 4s ease-in-out infinite;
}

.tech-item[data-tech="1"] { animation-delay: 0s; }
.tech-item[data-tech="2"] { animation-delay: -0.5s; }
.tech-item[data-tech="3"] { animation-delay: -1s; }
.tech-item[data-tech="4"] { animation-delay: -1.5s; }
.tech-item[data-tech="5"] { animation-delay: -2s; }
.tech-item[data-tech="6"] { animation-delay: -2.5s; }

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all var(--transition-smooth);
}

.tech-item:hover i {
    color: var(--primary-light);
}

.tech-item span {
    font-weight: 600;
    color: var(--text-white-75);
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* =============================================================================
   CTA SECTION
============================================================================= */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="50" cy="50" r="2"/></g></svg>');
}

/* =============================================================================
   PRICING CARDS
============================================================================= */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 45px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    transform-origin: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-white-75);
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* =============================================================================
   RESPONSIVE DESIGN
============================================================================= */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 90vh;
        text-align: center;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

/* =============================================================================
   ANIMATIONS
============================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* AOS Animation Overrides */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}