:root {
    --bg: #f4f3f8;
    --card: #ffffff;
    --border: #dcd6ff;
    --accent: #ff6a3d;
    --accent-soft: #fff1db;
    --text: #1f2937;
    --muted: #6b7280;
    --green: #22c55e;
    --purple: #c7c1ff;
}

.content-section {
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.custom-card-shadow {
    box-shadow: #dbd7f9 0px 0px 0px 8px, #dbd7f9 0px 4px 6px -1px, #dbd7f9 0px 1px 0px inset;
    padding: 0px;
}

.card-wrap {
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(180deg, #e9e6ff, #dcd7ff);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.card {
    /* width: 360px; */
    width: 100%;
    background: var(--card);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    padding: 0px;
}


.card-header {
    text-align: center;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #eee;
}


.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eef0ff;
    display: inline-grid;
    place-items: center;
    margin-bottom: 10px;
    color: #9aa0ff;
    font-weight: 700;
}


.card-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}


.card-body {
    padding: 22px 22px 26px;
}

.card-body h3 {
    margin:  0 0 10px 0px;
    font-size: 20px;
    font-weight: 700;
}


.price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 14px;
}


.price .currency {
    color: var(--accent);
    font-size: 28px;
    font-weight: 700;
}


.price .amount {
    color: var(--accent);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}


.price .per {
    font-size: 18px;
    color: #111827;
    margin-bottom: 6px;
}


.highlight {
    background: var(--accent-soft);
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    margin-bottom: 10px;
}


.highlight b {
    font-weight: 600
}


.note {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
    text-align: left;
}


ul.features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}


ul.features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
}


.check {
    color: var(--green);
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
    margin-top: 2px;
}


.plus {
    color: #65a30d
}


.cta {
    display: block;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(180deg, #ff7a4f, #ff6333);
    box-shadow: 0 10px 20px rgba(255, 106, 61, .35);
}


.cta:hover {
    filter: brightness(.97)
}


.footer-note {
    text-align: center;
    font-size: 9px;
    color: #6b7280;
    margin-top: 12px;
}

.custom-pricing-card {
    width: 100%;
    box-shadow: #dbd7f9 0px 0px 0px 4px, #dbd7f9 0px 4px 6px -1px, #dbd7f9 0px 1px 0px inset;
}


@media(max-width:420px) {
    .card {
        width: 100%
    }
}
