* {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* API code styles */
.text-primary {
    color: #60a5fa !important;
}

.doc-section pre code {
    color: #f3f4f6;
}

.code-block {
    background: #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    color: #f3f4f6;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-block .method {
    color: #34d399;
}

.code-block .url {
    color: #60a5fa;
}

.code-block .string {
    color: #fbbf24;
}

.code-block .number {
    color: #a78bfa;
}

/* Animations and visual effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

/* Indices-inspired background pattern - Chart lines */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,150 Q50,100 100,80 T200,40' stroke='%236366f1' stroke-width='1.5' fill='none' opacity='0.15'/%3E%3Cpath d='M0,160 Q60,120 120,100 T200,60' stroke='%238b5cf6' stroke-width='1.5' fill='none' opacity='0.12'/%3E%3Ccircle cx='100' cy='80' r='2' fill='%236366f1' opacity='0.2'/%3E%3Ccircle cx='120' cy='100' r='2' fill='%238b5cf6' opacity='0.18'/%3E%3C/svg%3E");
    background-size: 400px 400px;
    background-position: 0 0;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.hero-gradient {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

.section-animate {
    animation: fadeInUp 0.8s ease-out;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bg-gradient-animated {
    background: linear-gradient(-45deg, #f0f9ff, #faf5ff, #f0f9ff, #faf5ff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

/* FAQ Styles */
.faq-toggle svg {
    transition: transform 0.3s ease;
}

.faq-toggle.active svg {
    transform: rotate(180deg);
}

.faq-toggle:focus{
    outline: none !important;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content.show {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.btn{
    border-radius: 0.5rem;
}

.list-group-item a{
    font-size: 16px;
}

@media (min-width: 500px) {
    .dotsContainer {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .enterprise-card-enhanced {
        min-height: auto;
        padding: 1.5rem !important;
    }
    
    .enterprise-card-enhanced .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .enterprise-card-enhanced .flex {
        width: 100%;
    }
    
    .enterprise-card-enhanced h3 {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .enterprise-card-enhanced .text-5xl {
        font-size: 2.5rem !important;
    }
    
    .enterprise-card-enhanced .text-lg {
        font-size: 1rem !important;
    }
}
