/* KimboAI Enhanced Styles */

/* CSS Variables for Light and Dark Mode */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00a86b;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --accent-color: #ff6b35;
    --text-color: #374151;
    --text-secondary: #6b7280;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --primary-color: #3b82f6;
    --secondary-color: #10b981;
    --dark-color: #0f172a;
    --light-color: #1e293b;
    --accent-color: #f97316;
    --text-color: #f1f5f9;
    --text-secondary: #cbd5e1;
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
}

* {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

/* Typography Improvements */
h1, .h1 { font-size: 36px; font-weight: 700; line-height: 1.2; }
h2, .h2 { font-size: 28px; font-weight: 700; line-height: 1.3; }
h3, .h3 { font-size: 22px; font-weight: 600; line-height: 1.4; }
h4, .h4 { font-size: 18px; font-weight: 600; line-height: 1.4; }
h5, .h5 { font-size: 16px; font-weight: 600; line-height: 1.5; }
h6, .h6 { font-size: 14px; font-weight: 600; line-height: 1.5; }

.display-1 { font-size: 48px; font-weight: 700; }
.display-2 { font-size: 42px; font-weight: 700; }
.display-3 { font-size: 36px; font-weight: 700; }
.display-4 { font-size: 32px; font-weight: 700; }

.lead { font-size: 17px; font-weight: 400; line-height: 1.6; }

p { font-size: 15px; line-height: 1.6; margin-bottom: 1rem; }

.small, small { font-size: 13px; }

/* Enhanced Hero Section Styles */
.hero-section {
    background-color: var(--primary-color);
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 0l60 60M60 0L0 60' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.4;
}

@keyframes patternMove {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.5; }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 50px;
    height: 50px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.shape-3 {
    width: 65px;
    height: 65px;
    bottom: 25%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.5; }
}

/* Badge Styles */
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: white;
}

/* Text Gradient */
.text-gradient {
    color: white;
    font-weight: 600;
}

/* Feature Highlights */
.feature-highlights {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    transition: background-color 0.2s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

/* CTA Buttons */
.cta-buttons .btn {
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    box-shadow: var(--shadow-md);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #f9fafb;
}

.cta-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Trust Indicators */
.company-logos {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.company-placeholder {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.company-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.main-circle {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    margin: 0 auto 2rem;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.circle-content {
    text-align: center;
    color: var(--text-color);
}

.circle-content i {
    color: var(--primary-color);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    animation: cardFloat 8s ease-in-out infinite;
}

.card-1 {
    top: -10px;
    right: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20px;
    right: 10px;
    animation-delay: 4s;
}

.card-4 {
    bottom: -10px;
    left: 20px;
    animation-delay: 6s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.card-icon {
    font-size: 16px;
    margin-right: 6px;
}

/* Hero Stats */
.hero-stats {
    margin-top: 2rem;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 110px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 11px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
}

/* Navbar */
.navbar {
    background-color: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(8px);
    transition: background-color 0.2s ease;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Enhanced Section Styles */

/* Feature Section */
.feature-section {
    background-color: var(--light-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
    color: var(--accent-color);
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.feature-card .btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(10px);
}

.feature-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Use Cases Section */
.use-cases-section {
    background-color: var(--bg-color);
    padding: 80px 0;
    position: relative;
}

.use-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
}

.use-case-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px 28px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}

.use-case-card h3 {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.use-case-card h3::before {
    content: '•';
    margin-right: 10px;
    font-size: 20px;
    color: var(--accent-color);
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 14px;
}

/* About Section */
.about-section {
    background-color: var(--bg-color);
    padding: 80px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.about-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.8) 100%);
    padding: 100px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 40px 35px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: 'Georgia', serif;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 60px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-card .text-muted {
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
}

/* Modern Pricing Section */
.pricing-section {
    background-color: var(--light-color);
    padding: 80px 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    display: none;
}

.pricing-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 36px 28px;
    margin-bottom: 24px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.pricing-card.popular::after {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.pricing-card h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.pricing-card h4::before {
    content: '$';
    font-size: 20px;
    font-weight: 600;
    position: relative;
    top: -10px;
    left: -6px;
}

.pricing-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-left: 22px;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
}

.pricing-card .btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary-hover);
}

.pricing-card .btn:hover::before {
    left: 100%;
}

.pricing-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

/* CTA Section Enhancement */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    border-radius: 6px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer Enhancement */
.footer {
    background-color: var(--dark-color);
    padding: 50px 0 24px;
    color: var(--light-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
}

.footer h3 {
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 14px;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.footer a:hover {
    color: var(--primary-color);
    opacity: 0.9;
}

/* Enhanced Navigation Styles */
.navbar-brand {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.2s ease;
}

.brand-text {
    color: white;
    font-weight: 600;
}

.brand-accent {
    color: white;
    font-weight: 700;
}

.brand-glow {
    display: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 14px;
    padding: 0.6rem 0.9rem;
    margin: 0 0.2rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link i {
    font-size: 13px;
    margin-right: 0.4rem;
    opacity: 0.8;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-actions .btn {
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 0.5rem 1.1rem;
    transition: all 0.2s ease;
}

.navbar-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
}

.navbar-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* How It Works Section - Stepper */
.how-it-works-section {
    background-color: var(--bg-color);
    padding: 80px 0;
    position: relative;
}

.how-it-works-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.stepper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stepper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 1rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.step-circle:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
    z-index: 2;
    position: relative;
}

.step-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.6rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.step-connector {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
    border-radius: 1px;
    position: relative;
    max-width: 180px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: connectorFlow 3s ease-in-out infinite;
}

@keyframes connectorFlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--bg-color) 0%, rgba(52, 152, 219, 0.01) 100%);
    padding: 100px 0;
    position: relative;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(106, 90, 205, 0.05));
    color: var(--primary-color);
    box-shadow: inset 0 2px 4px rgba(52, 152, 219, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%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");
    transform: rotate(-180deg);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

.accordion-body {
    padding: 0 2rem 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

/* Enhanced Footer Styles */
.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.newsletter-signup .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.newsletter-signup .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
}

.newsletter-signup .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-signup .form-control:focus {
    background: transparent;
    color: white;
    box-shadow: none;
    border: none;
}

.newsletter-signup .btn {
    background: var(--primary-color);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.newsletter-signup .btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-bottom-links a {
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color) !important;
}

/* FAQ Custom Styles */
.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(52, 152, 219, 0.05);
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover .faq-icon {
    transform: scale(1.1);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .stepper-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .step-connector {
        width: 3px;
        height: 50px;
        margin: 1rem auto;
    }

    .navbar-actions {
        margin-top: 1rem;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        text-align: center;
        margin-top: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-icon {
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }
}

@media (max-width: 576px) {
    .step-circle {
        width: 60px;
        height: 60px;
    }

    .step-number {
        font-size: 1.4rem;
    }

    .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1rem;
    }
}

.cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.footer {
    background-color: var(--dark-color);
    padding: 40px 0;
    color: var(--light-color);
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.theme-toggle button {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle button:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .feature-highlights .row {
        justify-content: center;
    }

    .feature-item {
        margin-bottom: 10px;
    }

    .company-logos {
        justify-content: center;
    }

    .stats-container {
        gap: 15px;
    }

    .stat-item {
        min-width: 100px;
        padding: 15px;
    }

    .main-circle {
        width: 220px;
        height: 220px;
    }

    .floating-card {
        display: none; /* Hide floating cards on mobile for cleaner look */
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .feature-section,
    .use-cases-section,
    .about-section,
    .testimonials-section,
    .pricing-section,
    .cta-section {
        padding: 60px 0;
    }

    .feature-card,
    .use-case-card,
    .testimonial-card,
    .pricing-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }
}
