/* Explain: Component styles for buttons, icons, and forms. - */
.section-kicker {
    display: block;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-kicker-center {
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.step-circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-weight: 700;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-icon {
    font-size: 2.5rem;
    margin: 1.5rem 0 1rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.quote-icon {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Úprava Swiper navigácie */
:root {
    --swiper-theme-color: var(--accent-color);
}
.swiper-pagination-bullet {
    background-color: var(--primary-color) !important;
    opacity: 0.2 !important;
}
.swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
    opacity: 1 !important;
}

[data-form-status].success {
    color: #16a34a;
}

[data-form-status].error {
    color: #dc2626;
}