.actions{
    margin-bottom: 50px;
}
.action_items{
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify; 
    flex-wrap: wrap;
    margin-top: 50px;
}
.action_items .action_block {
    width: calc( (100% - 15px) / 2 );
    background-size: cover;
    background-repeat: no-repeat;
    max-height: 397px;
    background-position: center;
    height: 100vh;
    position: relative;
    border-radius: 25px;
    border: 1px solid #358c70;
    margin-right: 15px;
    margin-bottom: 15px;
    padding-left: 38px;
    margin-left: 0;
}
.action_items .action_block:nth-child(2n){
    margin-right: 0;
}
.action_items .action_title {
    font-weight: 600;
    font-size: 30px;
    color: #fff;
    margin-bottom: 50px;
    margin-top: 88px;
    z-index: 2;
    position: relative;
}
.action_items .action_description {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-bottom: 50px;
    max-width: none;
    z-index: 2;
    position: relative;
    padding-right: 20px;
}
.action_items .action_description span {
    font-weight: 600;
    color: #f3f5e5;
}
.action_items .action_price {
    font-weight: 600;
    font-size: 36px;
    color: #fff;
    z-index: 2;
    position: relative;
}
.action_items .discount_price {
    font-weight: 600;
    font-size: 36px;
    color: #fff;
    z-index: 2;
    position: relative;
}
.action_items .discount_price:after {
    top: 18px;
}
.action_items .action_icon {
    border-radius: 50px;
    width: 60px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background: #276652;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 29px;
    left: 38px;
    z-index: 2;
}
.actions .mini_callback_title {
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    color: #000;
    margin: auto;
    margin-bottom: 50px;
    max-width: none;
}
.actions .mini_callback_inner {
    border-radius: 25px;
    background-color: #eee;
    padding-top: 92px;
    padding-bottom: 92px;
    margin-bottom: 15px;
}
.action_items_after{
    margin-top: 0;
}


/*конкретная акция*/
:root {
    /* Новая цветовая палитра в фирменных цветах Zyb: градиент от пурпурного к зелёному */
    --bg: #f5f7f6;
    --bg-alt: #ffffff;
    --bg-soft: #eef5f4;
    --primary: #6f2dbd; /* пурпурный цвет для начала градиента */
    --primary-dark: #2ba56a; /* зелёный цвет для конца градиента */
    --accent: #2ba56a; /* дополнительный зелёный оттенок */
    --text: #11322d; /* основной цвет текста */
    --muted: #596e6c; /* приглушённый текст */
    --border: #d5e3dd; /* цвет границ */
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
}

.action_more main {
    margin: 0;
    /* Используем шрифт Montserrat для всего интерфейса */
    color: var(--text);
    line-height: 1.6;
}

.action_more a {
    color: var(--accent);
    text-decoration: none;
}

.action_more a:hover {
    text-decoration: underline;
}

.action_more {
    min-height: 100vh;
    background: radial-gradient(circle at top left, #e0f7f5 0, transparent 55%),
                radial-gradient(circle at bottom right, #e5f4ff 0, transparent 55%),
                var(--bg);
    margin-top: 20px;
}

.action_more .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 16px;
}

.action_more .btn {
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 10px 22px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    white-space: nowrap;
}

.action_more .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
}

.action_more .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.55);
}

.action_more .btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: #111827;
    border: 1px solid rgba(156, 163, 175, 0.4);
}

.action_more .btn-ghost:hover {
    background: #fff;
}

/* HERO */
.hero {
    padding: 40px 0 32px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    /* Фон и границы для бейджа: мягкий зелёно-лиловый оттенок */
    background: rgba(43, 165, 106, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(43, 165, 106, 0.25);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
}

.badge-pill {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-title {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 18px;
}

.hero-list {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #374151;
}

.hero-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-list-bullet {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.hero-note {
    font-size: 12px;
    color: var(--muted);
}

.hero-note strong {
    color: #111827;
}

.hero-side {
    position: relative;
}

.hero-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(209, 213, 219, 0.8);
}

.hero-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    /* Обновляем цвет точки в теге, чтобы он соответствовал фирменной палитре */
    background: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(43, 165, 106, 0.25);
}

.hero-patient {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.hero-patient-text h3 {
    font-size: 15px;
    margin: 0 0 2px;
}

.hero-patient-text span {
    font-size: 12px;
    color: var(--muted);
}

.hero-quote {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 16px;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    font-size: 11px;
}

.hero-mini-item {
    padding: 10px;
    border-radius: 12px;
    /* Лёгкий лиловый фон и более мягкая рамка */
    background: #f5f0fa;
    border: 1px dashed rgba(209, 213, 219, 0.5);
}

.hero-mini-label {
    color: var(--muted);
    margin-bottom: 1px;
}

.hero-mini-value {
    font-weight: 700;
    color: #111827;
}

.hero-floating {
    transform: translateY(0);
    /* Темный блок для плавающего бейджа выполняем в фирменном стиле */
    background: linear-gradient(135deg, #251448, #022c22);
    color: #f5f7f6;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.55);
    margin-top: 20px;
}

.hero-floating span {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    /* Кружок внутри плавающего бейджа перекрашиваем в зелёный оттенок палитры */
    background: var(--primary-dark);
    color: #f5f7f6;
    font-weight: 700;
    font-size: 11px;
}

/* STATS / INFOGRAPHIC */
.band {
    padding: 10px 0 30px;
}

.stats {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 18px 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    font-size: 13px;
}

.stat {
    display: flex;
    gap: 10px;
    align-items: center;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    /* Блок с иконкой статистики: светло-лиловый фон и зелёный цвет иконки */
    background: #f5f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.stat-main {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
}

.stat-label {
    color: var(--muted);
    font-size: 12px;
}

/* STEPS */
.steps-section {
    padding: 30px 0 18px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.section-title {
    font-size: 22px;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 16px 14px 14px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    position: relative;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    /* Нумерация шагов: мягкий лиловый фон и зелёный номер */
    background: #f5f0fa;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-text {
    font-size: 13px;
    color: #4b5563;
}

.step-line {
    position: absolute;
    top: 22px;
    right: -8px;
    width: 16px;
    height: 1px;
    background: rgba(148, 163, 184, 0.7);
}

.step-card:last-child .step-line {
    display: none;
}

/* WHO SECTION */
.who-section {
    padding: 24px 0 26px;
}

.who-grid {
    display: grid;
    grid-template-columns: 3fr 2.2fr;
    gap: 22px;
}

.who-list {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    border: 1px solid rgba(209, 213, 219, 0.9);
}

.who-list ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: #374151;
}

.who-list li {
    margin-bottom: 6px;
}

.who-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

.who-highlight {
    /* Темная карточка в секции "Кому мы особенно будем рады" обновляем на наш фирменный градиент */
    background: linear-gradient(135deg, var(--primary), #03151c);
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.who-highlight::before {
    /* Удаляем зелёные вкрапления на тёмной карточке для более чистого вида */
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at top left, rgba(111, 45, 189, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(43, 165, 106, 0.14), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.who-highlight-inner {
    position: relative;
    z-index: 1;
}

.who-kpi-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 6px;
}

.who-kpi-main {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 2px;
}

.who-kpi-sub {
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 10px;
}

.who-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11px;
}

.who-badge {
    /* Значки внутри тёмной карточки: рамка и фон более насыщенные */
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(37, 20, 72, 0.8);
}

/* HOW SECTION */
.how-section {
    padding: 26px 0 20px;
    border-top: 1px dashed rgba(209, 213, 219, 0.9);
}

.how-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr;
    gap: 22px;
    align-items: flex-start;
}

.how-block {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    border: 1px solid rgba(209, 213, 219, 0.9);
}

.how-block h3 {
    font-size: 15px;
    margin: 0 0 8px;
}

.how-block ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: #374151;
}

.how-block li {
    margin-bottom: 5px;
}

.how-mail {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}

.how-mail a {
    font-weight: 600;
}

.how-info {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 8px;
}

.how-info:last-child {
    margin-bottom: 0;
}

/* FORM SECTION */
.form-section {
    padding: 34px 0 40px;
}

.form-shell {
    /* Форма обрамлена лилово-зелёным градиентом для привлечения внимания */
    background: linear-gradient(135deg, rgba(226, 213, 249, 0.7), rgba(204, 244, 226, 0.8));
    border-radius: 26px;
    padding: 2px;
    box-shadow: var(--shadow-soft);
}

.form-inner {
    background: #ffffff;
    border-radius: 24px;
    padding: 22px 20px 20px;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 24px;
}

.form-copy-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.form-copy-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 14px;
}

.form-copy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    font-size: 13px;
    color: #374151;
}

.form-copy-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.form-copy-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    /* Точка в списке преимуществ формы: светло-лиловый фон */
    background: #f5f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.form-copy-footnote {
    font-size: 12px;
    color: var(--muted);
}

.apply-form {
    display: grid;
    gap: 12px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.field label {
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
}

.field label span.req {
    color: #ef4444;
    font-weight: 700;
}

.field small {
    font-size: 11px;
    color: var(--muted);
}

/* Настройки текстовых полей и текстовых областей */


.field textarea {
    min-height: 120px;
}

.field input,
.field textarea {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 9px 10px;
    font: inherit;
    resize: vertical;
    background: #f5f0fa;
    transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    /* При фокусе поле подсвечивается фиолетово-зелёным оттенком */
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(43, 165, 106, 0.5);
}

.form-footer {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    color: var(--muted);
}

.form-footer a {
    color: var(--accent);
}

.submit-wrap {
    margin-top: 2px;
}

.submit-btn {
    width: 100%;
    padding: 11px 18px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    }
    .hero-side {
    order: -1;
    }
    .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .who-grid {
    grid-template-columns: minmax(0, 1fr);
    }
    .how-grid {
    grid-template-columns: minmax(0, 1fr);
    }
    .form-inner {
    grid-template-columns: minmax(0, 1fr);
    }
    .field-row {
    grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .site-header-inner {
    flex-wrap: wrap;
    gap: 8px;
    }
    .header-right {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
    }
    .hero {
    padding: 26px 0 18px;
    }
    .stats {
    grid-template-columns: minmax(0, 1fr);
    }
    .steps {
    grid-template-columns: minmax(0, 1fr);
    }
    .form-shell {
    border-radius: 20px;
    }
    .form-inner {
    border-radius: 18px;
    padding: 18px 14px 16px;
    }
    .submit-btn {
    font-size: 13px;
    }
}