/* ============================================================
   Pricing Models — Public styles
   ============================================================ */
 @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..900;1,9..40,100..900&display=swap');


.pm-section {
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;
}

/* ---- Tab bar ---- */
.pm-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 50px;
}

.pm-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background: rgb(255 255 255 / 70%);
    color: #555;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    line-height: 1;
     border: 1px solid transparent;
}

.pm-tab i { font-size: 16px; }
.pm-tab:hover { background: rgba(255,255,255,1); }
.pm-tab--active {
    background: #ffffff;
    color: #0D72B8;
    border: 1px solid #0D72B8;
   box-shadow: 0 10px 22px 0 rgba(13, 114, 184, 0.22);

}

/* ---- Panel ---- */
.pm-panel { display: none; }
.pm-panel--active { display: block; }

/* ---- Card ---- */
.pm-card-inner {
    background: #fdf9f4;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: end;
}

.pm-card-body {
    flex: 1;
    min-width: 0;
}

/* ---- Icon circle ---- */
.pm-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    outline: 10px solid rgb(125 74 23 / 20%);
}

.pm-icon-circle i { color: #fff; font-size: 22px; }

/* ---- Typography ---- */
.pm-title {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0 10px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.2;
}

.pm-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.5;
}

.pm-desc {
    font-size: 16px;
    color: #333333;
    line-height: 1.65;
    margin: 0 0 10px;
}

/* ---- Checklist ---- */
.pm-checklist {
    border-radius: 20px;
    background: #FFF;
    padding: 20px 15px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pm-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
}
.pm-checklist li svg{
    flex-shrink: 0;
}
.pm-checklist li:last-child { border-bottom: none; }
.pm-checklist i { color: #1a6fd4; font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.pm-checklist strong { color: #222; }

/* ---- CTA Button ---- */
.pm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    cursor: pointer;
    border-radius: 24px;
border: 1px solid var(--soft-white-background-clean-spacious-sections, #F9FBFD);
background: #0D72B8;
box-shadow: 0 0 31.5px 0 rgba(16, 119, 189, 0.26);
}
.pm-btn:hover { background: #1558ab; }
.pm-btn i { font-size: 16px; }

/* ---- Image area ---- */
.pm-card-image {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pm-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.pm-img-empty {
    width: 100%;
    height: 160px;
    background: #e8f0fb;
    border: 1px dashed #b0c8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a9cc4;
}
.pm-img-empty i { font-size: 40px; }

/* ---- Responsive ---- */
@media (max-width: 680px) {
    .pm-card-inner { flex-direction: column; }
    .pm-card-image { width: 100%; }
    .pm-card-image img { height: 180px; width: 100%; }
    .pm-tab {
        font-size: 12px;
        padding: 8px 12px;
        width: 100%;
        flex: 1 1 auto;
        flex-basis: 100%;
        width: 100%;
        flex-wrap: nowrap;
        text-wrap: nowrap;
        text-overflow: ellipsis;
      
    }
    .pm-tabs{
  overflow:scroll
    }
}
