.pricing-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
}

.pricing-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) * 2);
    margin: 0px;
}

.pricing-card-header {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    text-align: center;
    text-transform: uppercase;
    border-radius: var(--radius);
    color: #000;
    width: 100%;
}

.pricing-card-header.free {
    background: linear-gradient(135deg, #f5e7c3 0%, #c9a037 100%);
}

.pricing-card-price {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    color: #0b5b36;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.pricing-card-price span {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

.pricing-features {
    margin: 0;
    list-style: none;
    padding: 0;
    color: #64748b;
    font-size: 1rem;
    text-align: start;
}

.pricing-features li {
    font-size: 14px;
    margin-bottom: 0.7rem;
    padding-left: 1.2rem;
    position: relative;
}

.pricing-features li:before {
    content: "✓";
    color: #16a34a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-features li:last-child {
    margin: 0;
}

.pricing-btn {
    width: 100%;
}

.how-it-works {
    background: linear-gradient(90deg, #e0e0e0 0%, #f5f5f5 125%);
    padding: 70px 0 80px 0px;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23cbd5e1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    poInter-events: none;
}

.how-it-works-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-it-works .steps-container {
    position: relative;
    z-index: 1;
}

.how-it-works .steps-container .steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--spacing);
    margin: 0px auto;
}

.how-it-works .steps-container .steps-timeline .step-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: var(--spacing);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.how-it-works .steps-container .steps-timeline .step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 50%, #16a34a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.how-it-works .steps-container .steps-timeline .step-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.how-it-works .steps-container .steps-timeline .step-card:hover .step-icon {
    transform: scale(1.1);
}

.how-it-works .steps-container .steps-timeline .step-card:hover::before {
    opacity: 1;
}

.how-it-works .steps-container .steps-timeline .step-card .step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(22, 163, 74, 0.1);
    line-height: var(--line-height);
}

.how-it-works .steps-container .steps-timeline .step-card .step-content {
    position: relative;
    z-index: 1;
}

.how-it-works .steps-container .steps-timeline .step-card .step-content .step-icon-wrapper {
    margin-bottom: 2rem;
}

.how-it-works .steps-container .steps-timeline .step-card .step-content .step-icon-wrapper .step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-size);
    transition: all var(--transition);
    margin: 0px auto;
}

.how-it-works .steps-container .steps-timeline .step-card .step-content .step-icon-wrapper .step-icon svg {
    width: 28px;
    height: 28px;
}

.how-it-works .steps-container .steps-timeline .step-card .step-content .step-title {
    font-size: var(--text-size);
    font-weight: 600;
    color: rgb(0, 0, 0);
    line-height: var(--line-height);
    margin: 0 0 1rem 0;
}

.how-it-works .steps-container .steps-timeline .step-card .step-content .step-desc {
    color: #000;
    line-height: var(--line-height);
    min-height: 67px;
    margin-bottom: var(--spacing);
}

.how-it-works .steps-container .steps-timeline .step-card .step-content .step-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 300px;
    margin: 0px auto;
}

.how-it-works .steps-container .steps-timeline .step-card .step-content .step-features .feature-tag {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    padding: 2px 10px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

@media (max-width: 768px) and (max-width: 991.98px) {
    .how-it-works .steps-container .steps-timeline {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .pricing-card {
        flex: 1 1 230px;
        gap: calc(var(--spacing) * 2);
    }
}

@media(max-width: 767.98px) {
    .pricing-bg,
    .how-it-works {
        padding: 40px 0;
    }

    .pricing-card {
        gap: var(--spacing);
    }
}
