/* ------------------------------
   Fees page: profile + pricing
------------------------------- */

.profile-card {
    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;
}

.profile-card__media {
    position: relative;
    aspect-ratio: 5 / 4.4;
    overflow: hidden;
}

.profile-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 52, 95, 0.0), rgba(1, 52, 95, 0.55));
    opacity: 0.75;
    pointer-events: none;
}

.profile-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

.profile-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-card__name {
    font-weight: 900;
    font-size: 1.32rem;
    letter-spacing: 0.2px;
}

.profile-card__role {
    color: rgba(15, 23, 42, 0.76);
    font-weight: 650;
}

.profile-card__meta {
    display: grid;
    gap: 8px;
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.96rem;
}

.profile-card__meta i {
    color: var(--brand-primary);
    margin-right: 10px;
}

.profile-card__cta {
    display: grid;
    gap: 10px;
}

.profile-card__note {
    margin-top: auto;
    background: rgba(2, 103, 188, 0.06);
    border: 1px solid rgba(2, 103, 188, 0.12);
    border-radius: var(--radius-lg);
    padding: 12px 12px;
    color: rgba(15, 23, 42, 0.74);
    font-size: 0.95rem;
}

.pricing-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-strong);
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.pricing-card__header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(2, 103, 188, 0.10);
}

.pricing-card__header h2 {
    font-weight: 900;
    color: #0b2340;
}

.pricing-card__header p {
    color: rgba(15, 23, 42, 0.72);
}

.pricing-card__footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(2, 103, 188, 0.10);
    color: rgba(15, 23, 42, 0.68);
    font-size: 0.92rem;
}

.price-list {
    display: grid;
    gap: 12px;
}

.price-list--compact {
    gap: 10px;
}

.price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 14px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(2, 103, 188, 0.08), rgba(83, 214, 247, 0.06));
    border: 1px solid rgba(2, 103, 188, 0.16);
    box-shadow: 0 8px 20px rgba(2, 20, 50, 0.05);
}

.price-row__label {
    font-weight: 850;
    color: #0b2340;
}

.price-row__hint {
    margin-top: 3px;
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.92rem;
}

.price-row__value {
    font-weight: 900;
    font-size: 1.02rem;
    letter-spacing: 0.01em;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(2, 103, 188, 0.14), rgba(83, 214, 247, 0.18));
    border: 1px solid rgba(2, 103, 188, 0.22);
    box-shadow: 0 6px 18px rgba(2, 20, 50, 0.08);
    white-space: nowrap;
    color: #0b2340;
}

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

.insured-card__header {
    margin-bottom: 14px;
}

.insured-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.insured-step {
    display: flex;
    gap: 12px;
    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);
}

.insured-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);
    flex-shrink: 0;
}

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

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

.insured-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

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

/* ------------------------------
   Insurance grid (Fees)
------------------------------- */

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.insurance-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 14px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insurance-card:hover {
    transform: translateY(-2px);
    border-color: rgba(2, 103, 188, 0.18);
    box-shadow: 0 18px 44px rgba(2, 20, 50, 0.12);
}

.insurance-card img {
    width: 100%;
    max-height: 62px;
    object-fit: contain;
    display: block;
}

.insurance-card figcaption {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.70);
}

.insurance-card {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insurance-card figure,
.insurance-card picture {
    display: block;
}

.insurance-card figcaption {
    min-height: 2.4em;
}
