.sw-price {
    background: #EFF1FB;
    padding: 100px 0 10px;
}
.sw-price__container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}
.sw-price__header {
    text-align: center;
    margin-bottom: 80px;
}
.sw-price__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    margin-top: 8px;
}
.sw-price__sub {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0 auto;
}
.sw-price__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.sw-price__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid rgba(224, 229, 237, 1);
}
.sw-price__card--featured {
    border: 2px solid rgba(48, 64, 207, 1);
}
.sw-price__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.sw-price__brand {
    font-size: 28px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    line-height: 38px;
}
.sw-price__badge {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    background: #F3F4F6;
    border-radius: 50px;
    padding: 4px 12px;
    white-space: nowrap;
    line-height: 18px;
}
.sw-price__tiers {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.sw-price__tier {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px 0;
}
.sw-price__tier-price {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    line-height: 17px;
}
.sw-price__tier-desc {
    font-size: 12px;
    font-style: italic;
    color: #4B5768;
    text-align: right;
    font-weight: 500;
    line-height: 15px;
}
.sw-price__includes-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 10px;
    line-height: 20px;
}
.sw-price__includes {
    padding-bottom: 14px;
}
.sw-price__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sw-price__checklist.mb-43 {
  margin-bottom: 43px;
}
.sw-price__check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
    line-height: 20px;
  padding: 0;
}
.sw-price__check-item:before {
  display: none;
}
.sw-price__example {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sw-price__card:not(.sw-price__card--featured) .sw-price__example {
    border: 0;
  	flex-direction: row;
  	align-items: flex-start;
    justify-content: space-between;
  	flex-wrap: wrap;
}
.sw-price__ex-top {
    display: flex;
    margin-bottom: 0;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}
.sw-price__ex-title p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 500;
    line-height: 20px;
}
.sw-price__ex-warning {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(249, 116, 67, 1);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 7px 8px;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 18px;
}
.sw-price__ex-row p {
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    margin: 0;
    font-weight: 400;
    line-height: 17px;
}
.sw-price__ex-row:last-child {
    margin-bottom: 0;
}
.sw-price__ex-row strong {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
}
.sw-price__ex-note {
    font-size: 12px;
    color: #6B7280;
    line-height: 18px;
    font-weight: 400;
}
@media (max-width: 1024px) {
    .sw-price__tier {
        flex-direction: column;
        gap: 2px;
    }
    .sw-price__tier-desc {
        text-align: left;
    }
  .sw-save{
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
    .sw-price {
        padding: 55px 0 0;
    }
  .sw-save{
    padding: 55px 0;
  }
    .sw-price__container {
        padding: 0 20px;
    }
    .sw-price__title {
        font-size: 28px;
    }
    .sw-price__grid {
        grid-template-columns: 1fr;
    }
    .sw-price__header {
        margin-bottom: 32px;
    }
    .sw-price__card {
        padding: 24px 20px;
    }
    .sw-price__ex-top {
        flex-direction: column;
        align-items: flex-start;
    }
  	.sw-price__checklist.mb-43 {
    	margin-bottom: 20px;
  	}
}
