@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

.arvento-api-page {
    font-family: 'Montserrat', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.api-header {
    text-align: center;
    padding: 60px 20px;
    background: #30afb8;
    border-radius: 16px;
    color: white;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(48, 175, 184, 0.3);
}

.api-header h1 {
    font-size: 3em;
    margin-bottom: 16px;
    font-weight: 700;
}

.api-header p {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.api-content {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.api-intro {
    background: #f7fafc;
    border-left: 4px solid #30afb8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.api-intro h2 {
    color: #2d3748;
    margin-bottom: 16px;
    font-size: 1.8em;
}

.api-intro p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1em;
}

.api-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.api-feature-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.api-feature-card:hover {
    background: #edf2f7;
    transform: translateY(-3px);
}

.api-feature-icon {
    font-size: 2.5em;
    margin-bottom: 16px;
}

.api-feature-card h3 {
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.3em;
}

.api-feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

.api-capabilities {
    margin: 50px 0;
}

.api-capabilities h2 {
    text-align: center;
    font-size: 2.2em;
    color: #2d3748;
    margin-bottom: 40px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.capability-item:hover {
    border-color: #30afb8;
    background: #f7fafc;
}

.capability-icon {
    color: #48bb78;
    font-size: 1.5em;
    font-weight: bold;
}

.capability-item span {
    color: #2d3748;
    font-weight: 500;
}

.integration-steps {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 50px;
    border-radius: 16px;
    margin: 50px 0;
}

.integration-steps h2 {
    text-align: center;
    font-size: 2.2em;
    color: #2d3748;
    margin-bottom: 40px;
}

.steps-container {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.integration-step {
    display: flex;
    gap: 24px;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #30afb8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    flex-shrink: 0;
}

.step-details h3 {
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.4em;
}

.step-details p {
    color: #4a5568;
    line-height: 1.8;
}

.code-example {
    background: #2d3748;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 12px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.api-cta {
    text-align: center;
    padding: 60px 40px;
    background: #30afb8;
    border-radius: 16px;
    color: white;
    margin-top: 50px;
}

.api-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.api-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.docs-btn {
    display: inline-block;
    background: white;
    color: #30afb8;
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.docs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #30afb8;
    text-decoration: none;
}

.use-cases {
    margin: 50px 0;
}

.use-cases h2 {
    text-align: center;
    font-size: 2.2em;
    color: #2d3748;
    margin-bottom: 40px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: #30afb8;
    box-shadow: 0 8px 25px rgba(48, 175, 184, 0.15);
}

.use-case-card h3 {
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.3em;
}

.use-case-card p {
    color: #4a5568;
    line-height: 1.7;
}