/* Enhanced styles.css - Complete Mobile Responsive */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a237e;
    --secondary-blue: #3949ab;
    --accent-orange: #ff6b35;
    --accent-yellow: #ffab00;
    --light-gray: #f8f9ff;
    --medium-gray: #e3f2fd;
    --dark-gray: #0a0e27;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    min-width: 320px;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1002;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    padding: 5px;
}

.logo-image.no-background {
    background: none;
    padding: 0;
    border-radius: 0;
    max-height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ct-button {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.ct-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    min-height: 44px;
    min-width: 44px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 50%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
    /*min-height: 100vh;*/
    min-height: -webkit-fill-available;
    display: flex;
    align-items: center;
}

.hero::before {
    /*content: '';*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 171, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(57, 73, 171, 0.1) 0%, transparent 50%);
    opacity: 0.7;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow), #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6)); }
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-height: 44px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.hero-stats-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px; /* optional, makes corners rounded */
}


/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-10px); }
}

.mockup-header {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.3rem;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.mockup-dots span:first-child { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #27ca3f; }

.mockup-title {
    font-weight: 600;
}

.mockup-content {
    padding: 2rem;
    background: var(--white);
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 120px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.chart-bar {
    background: linear-gradient(to top, var(--accent-orange), var(--accent-yellow));
    border-radius: 4px 4px 0 0;
    flex: 1;
    animation: grow 2s ease-out;
    min-height: 20px;
}

@keyframes grow {
    from { height: 0; }
}

.kpi-cards {
    display: flex;
    gap: 1rem;
}

.kpi-card {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    flex: 1;
    text-align: center;
}

.kpi-icon {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.kpi-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: floatAround 10s linear infinite;
}

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(90deg); }
    50% { transform: translate(-5px, -20px) rotate(180deg); }
    75% { transform: translate(-15px, -10px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Problem Section */
.problem-section {
    padding: 80px 2rem;
    background: var(--light-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--white) !important;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--error);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--error), #ff7043);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark) !important;
}

.problem-card p {
    color: var(--text-light) !important;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 2rem;
    background: var(--white);
}

.features-grid {
    display: grid;
    gap: 3rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--white) !important;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
}

.feature-card:nth-child(even) {
    background: var(--light-gray) !important;
}

.feature-card:nth-child(even) .feature-visual {
    order: 2;
}

.feature-card:nth-child(even) .feature-content {
    order: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-blue) !important;
}

.feature-content p {
    color: var(--text-light) !important;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.feature-content li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark) !important;
    font-weight: 500;
}

.feature-content li::before {
    content: '✓';
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.ai-brain {
    position: relative;
    font-size: 4rem;
    color: var(--accent-orange);
    animation: pulse 2s infinite;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.realtime-chart {
    position: relative;
    width: 200px;
    height: 120px;
    background: var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
}

.chart-lines {
    position: relative;
    height: 100%;
    display: flex;
    align-items: end;
    gap: 10px;
}

.line {
    background: linear-gradient(to top, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
    width: 8px;
    animation: chartGrow 2s ease-out infinite;
}

.line-1 { height: 60%; animation-delay: 0s; }
.line-2 { height: 80%; animation-delay: 0.5s; }
.line-3 { height: 40%; animation-delay: 1s; }

@keyframes chartGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

.chart-points {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.point {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    animation: blink 1.5s infinite;
}

.point.active {
    background: var(--accent-orange);
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.toc-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.toc-level {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    position: relative;
    animation: slideIn 1s ease-out;
}

.toc-level.impact { animation-delay: 0s; }
.toc-level.outcome { animation-delay: 0.3s; }
.toc-level.output { animation-delay: 0.6s; }

@keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toc-connector {
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
}

.integration-hub {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.integration-point {
    position: absolute;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    animation: orbit 8s linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

/* Modules Section */
.modules {
    padding: 80px 2rem;
    background: var(--light-gray);
}

.modules-showcase {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modules-nav {
    display: flex;
    background: var(--primary-blue);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modules-nav::-webkit-scrollbar {
    display: none;
}

.module-tab {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
    min-height: 44px;
    justify-content: center;
}

.module-tab:hover,
.module-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.module-tab.active {
    background: var(--white);
    color: var(--primary-blue);
}

.module-content {
    padding: 3rem;
}

.module-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.module-panel.active {
    display: grid;
}

.module-description h3 {
    font-size: 2rem;
    color: var(--primary-blue) !important;
    margin-bottom: 1rem;
}

.module-description p {
    color: var(--text-light) !important;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.module-features {
    display: grid;
    gap: 1rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: var(--medium-gray);
    transform: translateX(5px);
}

.feature-point i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    width: 20px;
}

.feature-point span {
    font-weight: 500;
    color: var(--text-dark) !important;
}

/* Module Visuals */
.me-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.flow-item {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.flow-item:nth-child(1) { animation-delay: 0s; }
.flow-item:nth-child(3) { animation-delay: 0.2s; }
.flow-item:nth-child(5) { animation-delay: 0.4s; }
.flow-item:nth-child(7) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 0.5rem;
    font-size: 1.2rem;
}

.flow-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.flow-arrow {
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: bold;
}

.report-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.report-card {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideUp 1s ease-out;
}

.report-card:nth-child(1) { animation-delay: 0s; }
.report-card:nth-child(2) { animation-delay: 0.2s; }
.report-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.report-header {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.report-content {
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.ai-chat-interface {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
}

.chat-header {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.chat-messages {
    padding: 1rem;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.message {
    padding: 0.8rem;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: messageAppear 0.5s ease-out;
}

@keyframes messageAppear {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.message.user {
    background: var(--accent-orange);
    color: var(--white);
    align-self: flex-end;
    margin-left: auto;
}

.message.ai {
    background: var(--white);
    color: var(--text-dark);
    align-self: flex-start;
    border: 1px solid var(--medium-gray);
}

.chat-input {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid var(--medium-gray);
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.chat-input button {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.chat-input button:hover {
    background: var(--accent-yellow);
    transform: scale(1.1);
}

.learning-path {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 300px;
    margin: 0 auto;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    animation: skillAppear 1s ease-out;
}

.skill-level:nth-child(1) { animation-delay: 0s; }
.skill-level:nth-child(2) { animation-delay: 0.2s; }
.skill-level:nth-child(3) { animation-delay: 0.4s; }

@keyframes skillAppear {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.level-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.level-name {
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.level-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    transition: width 2s ease-out;
}

/* Solutions Section */
.solutions {
    padding: 80px 2rem;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--white) !important;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--accent-orange);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue) !important;
    text-align: center;
}

.solution-card p {
    color: var(--text-light) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.solution-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-card li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark) !important;
}

.solution-card li::before {
    content: '✓';
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.solution-cta {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 2rem;
    background: var(--light-gray);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonial {
    display: none;
    padding: 3rem;
    background: var(--white) !important;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-icon {
    color: var(--accent-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark) !important;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.organization-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(26, 35, 126, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.indicator.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Pricing Section */
.pricing {
    padding: 80px 2rem;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white) !important;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--accent-orange);
    transform: scale(1.02);
}

.popular-badge {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    padding: 0.5rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: var(--light-gray);
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.plan-header p {
    color: var(--text-light) !important;
    font-size: 1rem;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark) !important;
}

.plan-features li i {
    color: var(--success);
    font-size: 1rem;
}

.plan-cta {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin: 0 2rem 2rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-note i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

/* Integrations Section */
.integrations {
    padding: 80px 2rem;
    background: var(--light-gray);
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.integration-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.integration-category h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.integration-logo:hover {
    background: var(--medium-gray);
    transform: translateY(-3px);
}

.integration-logo i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.integration-logo span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-image.keep-colors {
    filter: none;
}

.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--accent-orange);
    width: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple Effect */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}



/* Focus styles for accessibility */
.using-keyboard *:focus {
    outline: 2px solid var(--accent-orange) !important;
    outline-offset: 2px;
}

body:not(.using-keyboard) *:focus {
    outline: none;
}

/* Loading states */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--accent-orange);
    z-index: 10;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.notification-success {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
}

.notification-error {
    background: linear-gradient(45deg, #f44336, #ef5350);
}

.notification-info {
    background: linear-gradient(45deg, #2196f3, #42a5f5);
}

/* Additional utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

.rounded-sm { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 50%; }

.border-none { border: none; }
.border-1 { border: 1px solid #e1e5e9; }
.border-2 { border: 2px solid #e1e5e9; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

.select-none { user-select: none; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

.whitespace-nowrap { white-space: nowrap; }
.whitespace-normal { white-space: normal; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* Color utilities */
.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--secondary-blue); }
.text-accent { color: var(--accent-orange); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }
.text-white { color: var(--white); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-error { color: var(--error); }

.bg-primary { background-color: var(--primary-blue); }
.bg-secondary { background-color: var(--secondary-blue); }
.bg-accent { background-color: var(--accent-orange); }
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }
.bg-success { background-color: var(--success); }
.bg-warning { background-color: var(--warning); }
.bg-error { background-color: var(--error); }

/* Gradient utilities */
.bg-gradient-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
}

.bg-gradient-accent {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
}

.bg-gradient-hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 50%, var(--secondary-blue) 100%);
}

/* Transition utilities */
.transition-none { transition: none; }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }

/* Transform utilities */
.transform { transform: translateZ(0); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

.rotate-0 { transform: rotate(0deg); }
.rotate-45 { transform: rotate(45deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }

.translate-x-0 { transform: translateX(0); }
.translate-x-1 { transform: translateX(0.25rem); }
.translate-x-2 { transform: translateX(0.5rem); }
.translate-x-3 { transform: translateX(1rem); }

.translate-y-0 { transform: translateY(0); }
.translate-y-1 { transform: translateY(0.25rem); }
.translate-y-2 { transform: translateY(0.5rem); }
.translate-y-3 { transform: translateY(1rem); }

/* Hover utilities */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }

/* Focus utilities */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--accent-orange); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px var(--accent-orange); }

/* Animation utilities */
.animate-spin { animation: spin 1s linear infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Form utilities */
.form-input {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input:invalid {
    border-color: var(--error);
}

.form-input:valid {
    border-color: var(--success);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-error {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-success {
    color: var(--success);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Button variants */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    min-height: 44px;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
}

.btn-outline:hover {
    background: currentColor;
    color: var(--white);
}

/* Card utilities */
.card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e1e5e9;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border-top: 1px solid #e1e5e9;
}

/* Badge utilities */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--white);
}

.badge-error {
    background: var(--error);
    color: var(--white);
}




/* Dropdown Menu Styles - Fixed with Company Colors */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 320px;
    border-radius: 15px;
    box-shadow: 0 25px 80px rgba(26, 35, 126, 0.15);
    border: 2px solid rgba(26, 35, 126, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 12px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-header {
    padding: 20px 24px 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.dropdown-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.dropdown-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
    background: var(--white);
    position: relative;
}

.dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 15px 15px;
}

.dropdown-item:first-of-type {
    border-top: 1px solid var(--light-gray);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    transform: translateX(4px);
}

.dropdown-item:hover .dropdown-item-icon {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--white);
}

.dropdown-item:hover .dropdown-item-description {
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--primary-blue);
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.dropdown-item-content {
    flex: 1;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.dropdown-item-description {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
    color: var(--text-light);
    transition: color 0.3s ease;
}

/* Dropdown arrow indicator with company colors */
.nav-links .dropdown > a {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links .dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Enhanced hover effect for the modules link */
.nav-links .dropdown > a:hover {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
}

/* Mobile responsiveness - Enhanced */


/* Additional animations for better UX */
.dropdown-item {
    position: relative;
    overflow: hidden;
}

.dropdown-item::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.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

/* Focus states for accessibility */
.dropdown-item:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.dropdown-item:focus .dropdown-item-icon {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
}

.dropdown-item:focus .dropdown-item-title {
    color: var(--white);
}

.dropdown-item:focus .dropdown-item-description {
    color: rgba(255, 255, 255, 0.9);
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* your existing styles remain the same */
}
/* Add margin to body or main content */
body {
    padding-top: 80px; /* Adjust this value based on your header height */
}

/* OR if you prefer to target main content specifically */
.main-content {
    margin-top: 80px;
}

/* For smooth scrolling to sections */
section {
    scroll-margin-top: 100px;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 1% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 800px; /* Increased from 600px */
    max-height: 95vh; /* Increased from 90vh */
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.demo-form {
    padding: 2.5rem; /* Increased padding */
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 2.5rem; /* Increased padding */
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    font-size: 2.2rem; /* Increased font size */
}

.modal-header p {
    opacity: 0.9;
    font-size: 1.1rem; /* Increased font size */
}


@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.demo-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.demo-submit-btn {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
    margin-top: 1rem;
}

.demo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.demo-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


.hero-image, .dashboard-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* avoid overflow beyond parent */
    max-width: 1000px;
    aspect-ratio: 3/2; /* you can remove this if not needed */
    overflow: hidden; /* optional: prevents scrollbars */
    background: #000; /* optional: background around image */
}

.dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ✅ shows full image, no cropping */
}

.toc-arrow {
    font-size: 24px;
    color: #6c757d;
    margin: 10px 0;
}
.learn-more-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    max-width: 200px;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Enhanced Report Cards */
.report-card::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 60px;
    height: 30px;
    background: linear-gradient(45deg, #e3f2fd 25%, transparent 25%), 
                linear-gradient(-45deg, #e3f2fd 25%, transparent 25%);
    background-size: 6px 6px;
    border-radius: 4px;
    opacity: 0.3;
}

.report-card:nth-child(1) .report-header {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.report-card:nth-child(1)::after {
    background: linear-gradient(90deg, #dc3545 0%, #fd7e14 50%, #ffc107 100%);
    height: 20px;
    border-radius: 10px;
}

.report-card:nth-child(2) .report-header {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.report-card:nth-child(2)::after {
    background: repeating-linear-gradient(90deg, #28a745, #28a745 10px, #20c997 10px, #20c997 20px);
    height: 25px;
    border-radius: 3px;
}

.report-card:nth-child(3) .report-header {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.report-card:nth-child(3)::after {
    background: radial-gradient(circle, #6f42c1 2px, transparent 2px);
    background-size: 12px 12px;
    height: 35px;
}
/* Mobile Responsive Fixes - Replace existing mobile styles */

/* Base Mobile Improvements */
@media (max-width: 768px) {
    /* Container and spacing improvements */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Header mobile fixes */
    .nav {
        padding: 0 1rem;
        min-height: 60px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        white-space: nowrap;
    }
    
    .logo-icon, .logo-image {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile menu improvements */
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 2rem 1rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        width: 100vw;
        height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        margin: 0;
    }
    
    /* Hero section mobile fixes */
    .hero {
        padding: 100px 1rem 60px;
        text-align: center;
        min-height: auto;
        background-attachment: scroll; /* Fix for mobile background */
    }
    
    .hero::before {
        background-size: cover;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        /* Fix background clipping on mobile */
        background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow), #4fc3f7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        /* Fallback for older browsers */
        color: var(--accent-orange);
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    /* Button improvements */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    /* Stats mobile layout */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
        text-align: center;
    }
    
    .hero-stats .stat-item {
        padding: 0.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.2rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* Dashboard mockup mobile */
    .dashboard-mockup {
        max-width: 280px;
        margin: 0 auto;
        transform: none; /* Remove 3D transform on mobile */
    }
    
    /* Section headers mobile */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Feature cards mobile */
    .features,
    .modules,
    .solutions,
    .testimonials,
    .pricing,
    .integrations,
    .problem-section,
    .cta-section {
        padding: 40px 1rem;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    /* Problems grid mobile */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    /* Solutions grid mobile */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    /* Module showcase mobile */
    .modules-nav {
        flex-direction: column;
        overflow: visible;
    }
    
    .module-tab {
        min-width: auto;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem;
    }
    
    .module-content {
        padding: 2rem 1rem;
    }
    
    .module-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .module-description h3 {
        font-size: 1.5rem;
    }
    
    .module-description p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .pricing-card {
        transform: none !important;
        margin: 0 auto;
    }
    
    .plan-header h3 {
        font-size: 1.4rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    /* Testimonials mobile */
    .testimonial {
        padding: 2rem 1.5rem;
        margin: 0;
        text-align: center;
    }
    
    .testimonial p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Integration categories mobile */
    .integration-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* CTA section mobile */
    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .cta-feature {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 1rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Modal mobile improvements */
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 2rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .demo-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Extra small mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 90px 0.75rem 40px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.1;
        /* Ensure background works on very small screens */
        background: var(--accent-orange);
        background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Better fallback */
        color: transparent;
    }
    
    .hero-text h1::-moz-selection {
        background: var(--accent-orange);
        -webkit-text-fill-color: white;
        color: white;
    }
    
    .hero-text h1::selection {
        background: var(--accent-orange);
        -webkit-text-fill-color: white;
        color: white;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 200px;
    }
    
    .hero-stats .stat-number {
        font-size: 1rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .dashboard-mockup {
        max-width: 240px;
    }
    
    .feature-card,
    .solution-card,
    .problem-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial {
        padding: 1.5rem 1rem;
    }
    
    .pricing-grid {
        max-width: 300px;
    }
    
    .integration-logos {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .modal-header,
    .demo-form {
        padding: 1.25rem 1rem;
    }
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 1rem 40px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-text p {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 500px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 140px;
    }
}

/* Text selection improvements for mobile */
@media (max-width: 768px) {
    *::selection {
        background: var(--accent-orange);
        color: white;
    }
    
    *::-moz-selection {
        background: var(--accent-orange);
        color: white;
    }
    
    /* Fix for gradient text selection on mobile */
    .hero-text h1::selection,
    .section-header h2::selection {
        background: var(--accent-orange);
        -webkit-text-fill-color: white;
        color: white;
    }
}

/* Improved touch targets */
@media (max-width: 768px) {
    .mobile-menu-btn,
    .cta-button,
    .btn-primary,
    .btn-secondary,
    .solution-cta,
    .plan-cta,
    .indicator,
    .social-links a,
    .chat-input button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .dashboard-mockup,
    .floating-elements,
    .float-element {
        animation: none;
        transform: none;
    }
    
    /* Simplify gradients on mobile for better performance */
    .hero::before {
        background: var(--primary-blue);
        opacity: 0.9;
    }
    
    /* Remove complex box shadows on mobile */
    .feature-card,
    .solution-card,
    .pricing-card {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}
.ai-brain-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-img {
    width: 250px;   /* adjust as needed */
    height: 250px;
    object-fit: contain;
    z-index: 2;
}

.pulse-ring-img {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    animation: pulse-img 2s infinite;
    z-index: 1;
}

@keyframes pulse-img {
    10%   { transform: scale(0.8); opacity: 0.7; }
    150%  { transform: scale(1.3); opacity: 0; }
    200% { transform: scale(0.8); opacity: 0; }
}
