.elementor-1458 .elementor-element.elementor-element-f157c2f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1458 .elementor-element.elementor-element-d3eab90 > .elementor-container > .elementor-row{align-items:stretch;}.elementor-1458 .elementor-element.elementor-element-d3eab90:not(.elementor-motion-effects-element-type-background), .elementor-1458 .elementor-element.elementor-element-d3eab90 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#9D2235;background-image:url("https://gryphon.kz/wp-content/uploads/2021/01/section-take-a-quiz-bg.png");background-position:center center;background-repeat:no-repeat;background-size:cover;}.elementor-1458 .elementor-element.elementor-element-d3eab90{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-1458 .elementor-element.elementor-element-d3eab90 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}@media(max-width:767px){.elementor-1458 .elementor-element.elementor-element-d3eab90{padding:60px 0px 60px 0px;}}/* Start custom CSS for html, class: .elementor-element-2149bf1 */.prices-section {
    padding: 80px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.prices-title {
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    color: #222;
}
.prices-subtitle {
    text-align: center;
    font-size: 15px;
    opacity: 0.65;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
    color: #555;
}
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.price-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px 32px;
    border: 1px solid #e0e0e0;          /* ← базовая граница */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-family: 'Inter', sans-serif;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(157, 34, 53, 0.08);
    border-color: #9D2235;              /* ← при наведении – фирменный цвет */
}
.price-card.featured {
    background: #fcf8f9;
    border: 2px solid #9D2235;          /* ← выделенная карточка – жирная рамка */
    box-shadow: 0 8px 30px rgba(157, 34, 53, 0.06);
}
.price-card-icon {
    font-size: 36px;
    margin-bottom: 6px;
}
.price-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    font-family: 'Inter', sans-serif;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
    flex-grow: 1;
}
.price-features li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}
.price-features li:last-child {
    border-bottom: none;
}
.price-label {
    color: #555;
    text-align: left;
}
.price-value {
    color: #9D2235;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}
.price-save {
    font-size: 11px;
    color: #4caf50;
    margin-left: 6px;
    display: inline-block;
}
.price-note {
    font-size: 12px;
    opacity: 0.5;
    margin: -6px 0 14px;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}
.price-btn {
    background: #9D2235;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 180px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}
.price-btn:hover {
    background: #7e1b2a;
    box-shadow: 0 4px 16px rgba(157, 34, 53, 0.2);
}
.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #9D2235;
    color: #fff;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(157, 34, 53, 0.2);
}
.price-card {
    position: relative;
}

/* Анимация появления (опционально – можно убрать) */
.price-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.price-card:nth-child(1) { animation-delay: 0.05s; }
.price-card:nth-child(2) { animation-delay: 0.15s; }
.price-card:nth-child(3) { animation-delay: 0.25s; }
.price-card:nth-child(4) { animation-delay: 0.35s; }
.price-card:nth-child(5) { animation-delay: 0.45s; }
.price-card:nth-child(6) { animation-delay: 0.55s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .prices-title { font-size: 26px; }
    .prices-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card { align-items: center; text-align: center; }
    .price-features li { flex-wrap: wrap; justify-content: center; gap: 0 6px; text-align: center; }
    .price-save { display: block; width: 100%; text-align: center; margin-left: 0; }
    .price-value { white-space: normal; } /* разрешаем перенос на мобильных */
    .price-card { opacity: 1; transform: none; animation: none; } /* отключаем анимацию на мобильных */
}/* End custom CSS */