/**
 * Accessibility — WCAG touch targets & swiper pagination hit areas
 * Visual bullet size unchanged; 44×44px minimum tap area via pseudo-elements.
 */

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.hero-swiper .swiper-pagination-bullet,
.hero-swiper--photo .swiper-pagination-bullet,
.testimonials-swiper .swiper-pagination-bullet,
.swiper-pagination-bullet {
    position: relative;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    opacity: 1;
    background: transparent !important;
    border-radius: 0 !important;
}

.hero-swiper .swiper-pagination-bullet::before,
.hero-swiper--photo .swiper-pagination-bullet::before,
.testimonials-swiper .swiper-pagination-bullet::before,
.swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.hero-swiper .swiper-pagination-bullet::after,
.hero-swiper--photo .swiper-pagination-bullet::after,
.testimonials-swiper .swiper-pagination-bullet::after,
.swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
    pointer-events: none;
}

.hero-swiper .swiper-pagination-bullet-active,
.hero-swiper--photo .swiper-pagination-bullet-active,
.testimonials-swiper .swiper-pagination-bullet-active,
.swiper-pagination-bullet-active {
    width: 44px !important;
    background: transparent !important;
}

.hero-swiper .swiper-pagination-bullet-active::after,
.swiper-pagination-bullet-active::after {
    width: 28px;
    border-radius: 5px;
    background: #fff;
}

.hero-swiper--photo .swiper-pagination-bullet::after {
    background: rgba(15, 23, 42, 0.28);
}

.hero-swiper--photo .swiper-pagination-bullet-active::after {
    width: 28px;
    border-radius: 5px;
    background: #0f172a;
}

.hero-swiper:not(.hero-swiper--photo) .swiper-pagination-bullet-active::after {
    width: 32px;
    border-radius: 6px;
    background: #fff;
}

.testimonials-swiper .swiper-pagination-bullet::after {
    background: rgba(15, 76, 129, 0.25);
}

.testimonials-swiper .swiper-pagination-bullet-active::after {
    background: var(--cp-primary, #0f4c81);
}

.site-footer .footer-brand {
    font-size: 1.25rem;
}

.site-footer .footer-column-title {
    font-size: 1rem;
}

/* Footer — WCAG AA contrast on #0F172A background */
.site-footer {
    color: rgba(255, 255, 255, 0.88);
}

.site-footer .footer-about,
.site-footer .small,
.site-footer .footer-contact-item,
.site-footer .footer-bottom,
.site-footer .footer-bottom span {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-about {
    line-height: 1.85;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer-divider {
    opacity: 1;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer .social-links__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.site-footer .social-links__list a {
    margin-left: 0;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

/* Section blocks — WCAG AA on #fff / #F8FAFC (products, blog, testimonials, partners) */
.section-padding .section-eyebrow:not([style*="color"]) {
    color: #0a5f7a;
}

.section-padding .section-title:not(.text-white) {
    color: #0f172a;
}

.section-padding .section-desc {
    color: #475569;
}

.section-padding .section-header a:not(.btn) {
    color: #0a3560;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.12em;
    text-decoration-thickness: 1px;
}

.section-padding .section-header a:not(.btn):hover {
    color: #083d6b;
}

/* Testimonials + partners — WCAG AA on white backgrounds */
.testimonial-role {
    color: #475569;
}

.partner-logo-placeholder {
    color: #475569;
}

.partners-section .partner-logo-item {
    opacity: 0.9;
}
