.page {
    padding-bottom: 90px;
}

.page-hero {
    padding: clamp(46px, 6vh, 90px) 24px 50px;
}

.page-hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(24px, 4vw, 60px);
    align-items: center;
}

.page-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(195, 197, 148, 0.35);
    color: var(--text-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-hero__title {
    margin: 20px 0 12px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.page-hero__lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-soft);
}

.page-hero__panel {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--border-color);
}

.page-section {
    padding: 0 24px 80px;
}

.page-section--tight {
    padding-bottom: 50px;
}

.page-section__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.cards-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-card__tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(195, 197, 148, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 5px 12px;
    width: fit-content;
}

.info-card__title {
    font-size: 20px;
    margin: 0;
}

.info-card__text {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.info-card__label {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.info-card__meta {
    margin-top: 4px;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--text-soft);
}

.info-list li {
    padding-left: 18px;
    position: relative;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green);
}

.highlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    display: grid;
    gap: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.highlight-card__title {
    margin: 0;
    font-size: clamp(22px, 3vw, 30px);
}

.highlight-card__text {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.cta-card {
    background: var(--white);
    border-radius: 16px;
    padding: clamp(24px, 4vw, 36px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.cta-card__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.cta-card__text {
    margin: 0;
    color: var(--text-soft);
    max-width: 520px;
}

.info-table-wrap {
    margin-top: 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.info-table th,
.info-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-table th {
    background: rgba(195, 197, 148, 0.35);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-color);
}

.info-table tr:last-child td {
    border-bottom: 0;
}

.inline-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(195, 197, 148, 0.35);
    color: var(--text-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .page-hero__inner {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .page-hero__panel {
        padding: 22px;
    }

    .page-section {
        padding: 0 18px 70px;
    }

    .info-card {
        padding: 20px;
    }
}
