/* ------------------------------
   Services page: interactive tiles
------------------------------- */

.hero-badges {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(2, 103, 188, 0.16);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    color: rgba(15, 23, 42, 0.84);
    font-weight: 750;
}

.hero-badge i {
    color: var(--brand-primary);
}

.service-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-teaser {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-teaser__media {
    position: relative;
    aspect-ratio: 12 / 6.6;
    overflow: hidden;
}

.service-teaser__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 52, 95, 0.0), rgba(1, 52, 95, 0.62));
    opacity: 0.85;
    pointer-events: none;
}

.service-teaser__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.02);
    transition: transform 420ms ease;
}

.service-teaser:hover .service-teaser__media img {
    transform: scale(1.07);
}

.service-teaser__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-teaser__title {
    font-weight: 900;
    letter-spacing: 0.2px;
    margin-bottom: 0;
}

.service-teaser__desc {
    color: rgba(15, 23, 42, 0.74);
    margin-bottom: 0;
    line-height: 1.6;
}

.service-teaser__details {
    margin-top: auto;
}

.service-teaser__details summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(2, 103, 188, 0.06);
    border: 1px solid rgba(2, 103, 188, 0.12);
    font-weight: 850;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-teaser__details summary::-webkit-details-marker {
    display: none;
}

.service-teaser__details summary::after {
    content: "＋";
    font-weight: 900;
    color: rgba(15, 23, 42, 0.64);
    transition: transform 200ms ease;
}

.service-teaser__details[open] summary {
    background: rgba(2, 103, 188, 0.10);
}

.service-teaser__details[open] summary::after {
    transform: rotate(45deg);
}

.service-teaser__details ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: rgba(15, 23, 42, 0.74);
}

.journey {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-strong);
    padding: 18px;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.journey-step {
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 103, 188, 0.12);
    box-shadow: var(--shadow-soft);
}

.journey-step__icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(2, 103, 188, 0.16), rgba(83, 214, 247, 0.18));
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.journey-step__title {
    font-weight: 900;
}

.journey-step__text {
    margin-top: 4px;
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .journey-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .journey-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1199.98px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .service-teaser__desc {
        min-height: 8rem;
    }
}

/* Fees page helper */
.fee-card__note {
    margin-top: 14px;
}
