:root {
    --baseColor: #656c7c;
    --baseSize: 16px;
    --baseLineHeight: 1.5;
    --fontFamily: Inter, sans-serif;
    --pink: #ea4c89;
    --pinkLight: #ffecf0;
    --blue: #1769ff;

    --redTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23EA455F'/%3E%3C/svg%3E%0A");
    --whiteTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");
}

.plans {
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 12px;
}

.planItem {
    --border: 1px solid #e6e6e6;
    --bgColor: #fff;
    --boxShadow: none;
    background-color: var(--bgColor);
    border: var(--border);
    border-radius: 1rem;
    box-shadow: var(--boxShadow);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.planItem--pro {
    --border: 0;
    --boxShadow: 0px 14px 30px rgba(204, 204, 204, 0.32);
}

.planItem--pro .label {
    margin-left: auto;
    background-color: #fdb72e;
    color: #fff;
    font-weight: 600;
    line-height: 1.25;
    font-size: 1rem;
    text-align: center;
    padding: 0.625rem 1.125rem;
    border-radius: 2rem;
    user-select: none;
}

.card__header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.symbol {
    border: 2px solid var(--blue);
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 0.25rem;
    position: relative;
}

.symbol:after {
    content: "";
    border: 2px solid var(--pink);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card h2 {
    font-size: 1.5rem;
    margin: 0;
}

.card__desc {
    margin-top: 1rem;
    color: var(--baseColor);
}

.price {
    font-size: 2rem;
    font-weight: 600;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--baseColor);
}

.featureList {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.featureList li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.featureList li:before {
    content: "";
    background-image: var(--redTick);
    background-size: cover;
    width: 1.125rem;
    height: 0.875rem;
    display: block;
}

.checkout-container {
    margin-block: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-card {
    background: #fff;
    max-width: 900px;
    width: 96%;
    display: flex;
    gap: 2rem;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.checkout-section {
    flex: 1 1 400px;
}

.checkout-section h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.25rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.form-group p,
.form-group label {
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #34495e;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.card-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.card-icons img {
    height: 35px;
    object-fit: contain;
}

.checkout-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #34495e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #2c3e50;
}

@media (max-width: 768px) {
    .checkout-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}