/* Button Styles */
.btn-get-started {
    background: var(--gradient-primary);
    color: var(--color-text-white);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 208, 225, 0.4);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 208, 225, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-bg-gray-medium);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--color-white-10);
    border-color: var(--color-text-white);
    transform: translateY(-2px);
}

/* Buttons Responsive */
@media (max-width: 768px) {
    .btn-get-started {
        order: 2;
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

