/* categoria-opiniones.css — визуальный язык как в custom.css
   зависит от custom.css (переменные уже объявлены там) */

.cat-page {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.cat-page a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.cat-page a:hover,
.cat-page a:focus-visible {
    color: #142a8a;
}

.cat-page img {
    max-width: 100%;
    display: block;
}

.cat-page .container {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*.cat-page h1,*/
/*.cat-page h2,*/
/*.cat-page h3,*/
/*.cat-page h4 {*/
/*    line-height: 1.4;*/
/*    color: var(--primary-color);*/
/*    font-weight: 700;*/
/*    margin: 0 0 0.6em;*/
/*}*/

/*.cat-page p {*/
/*    margin: 0 0 1em;*/
/*}*/

.section-lead {
    text-align: center;
    color: #000;
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head h2 {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/*.cat-page section {*/
/*    padding: 80px 0;*/
/*}*/

.cat-page section.tight {
    padding: 50px 0;
}

.cat-page section.on-white {
    background-color: var(--white);
}

/* ============ HERO ============ */
.cat-page .hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cat-page .hero::before,
.cat-page .hero::after {
    content: none;
}

.cat-page .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cat-page .hero-tag {
    display: inline-block;
    background-color: #070042;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cat-page .hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--white);
    text-transform: none;
    letter-spacing: normal;
}

.cat-page .hero p.hero-lead {
    font-size: 22px;
    margin: 0 auto 40px;
    opacity: 0.95;
    max-width: 750px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--white);
}

.cat-page .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ BUTTONS (как .btn в custom.css) ============ */
.cat-page .btn {
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    border-radius: 13px;
    line-height: 1.2;
    text-align: center;
}

.cat-page .btn:hover,
.cat-page .btn:focus-visible {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cat-page .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cat-page .btn-primary:hover,
.cat-page .btn-primary:focus-visible {
    background-color: #142a8a;
    color: var(--white);
}

.cat-page .btn-outline {
    background-color: var(--white);
    color: var(--accent-color);
}

.cat-page .btn-outline:hover,
.cat-page .btn-outline:focus-visible {
    background-color: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}

.cat-page .btn-sm {
    padding: 9px 14px;
    font-size: 13px;
    flex: 1;
    border-radius: 13px;
}

.cat-page .subnav {
    border-bottom: 1px solid var(--bg-gray);
    padding: 16px 0 18px;
}

.cat-page .breadcrumbs {
    padding: 0 0 12px;
    font-size: 14px;
    color: var(--text-light);
}

.cat-page .breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.cat-page .breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 6px;
    color: #999;
}

.cat-page .breadcrumbs a {
    color: var(--text-light);
}

.cat-page .breadcrumbs a:hover {
    color: var(--yellow-color);
}

.cat-page .breadcrumbs [aria-current] {
    color: var(--text-dark);
    font-weight: 500;
}

.cat-page .category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.cat-page .category-chips-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 6px;
}

.cat-page .cat-chip {
    display: inline-block;
    padding: 7px 14px;
    border: 2px solid var(--bg-gray);
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.cat-page .cat-chip:hover,
.cat-page .cat-chip:focus-visible {
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.cat-page .cat-chip.is-active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cat-page .cat-chip.is-active:hover,
.cat-page .cat-chip.is-active:focus-visible {
    color: var(--white);
}

/* ============ IMPORTANCE (как .value-card) ============ */
.cat-page .importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cat-page .importance-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.cat-page .importance-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.cat-page .importance-icon {
    background-color: #fef9e7;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--warning-color);
}

.cat-page .importance-icon svg {
    width: 36px;
    height: 36px;
}

.cat-page .importance-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 0 12px;
}

.cat-page .importance-card p {
    color: #000;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* ============ CAROUSEL ============ */
.cat-page .carousel {
    position: relative;
}

.cat-page .carousel-viewport {
    position: relative;
    overflow: hidden;
    margin: 0 -6px;
    padding: 6px 6px 30px;
}

.cat-page .carousel-track {
    display: flex;
    gap: 30px;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 6px;
}

.cat-page .carousel-track::-webkit-scrollbar {
    display: none;
}

.cat-page .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--yellow-color);
    color: #070042;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cat-page .carousel-arrow:hover:not(:disabled) {
    background: #e0bc1a;
    transform: translateY(-50%) scale(1.06);
}

.cat-page .carousel-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cat-page .carousel-arrow svg {
    width: 22px;
    height: 22px;
}

.cat-page .carousel-arrow.prev {
    left: -10px;
}

.cat-page .carousel-arrow.next {
    right: -10px;
}

.cat-page .carousel-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.cat-page .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-gray);
    transition: all 0.3s;
    padding: 0;
    border: none;
    cursor: pointer;
}

.cat-page .carousel-dot.is-active {
    width: 28px;
    border-radius: 20px;
    background: var(--yellow-color);
}

/* ============ COMPANY CARDS (как .empresa-card) ============ */
.cat-page .company-card {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 340px;
}

.cat-page .company-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.cat-page .company-logo {
    width: 140px;
    height: 80px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    color: var(--white);
    font-size: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    overflow: hidden;
}

.cat-page .company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 8px;
}

.cat-page .company-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.cat-page .company-url {
    font-size: 13px;
    color: var(--text-light);
    margin-top: -4px;
}

.cat-page .stars {
    display: inline-flex;
    gap: 3px;
    color: #ddd;
    letter-spacing: 0;
}

.cat-page .stars svg {
    width: 20px;
    height: 20px;
}

.cat-page .stars .filled {
    color: var(--warning-color);
}

.cat-page .opiniones-count {
    font-size: 15px;
    color: #000;
    margin: 0;
    font-weight: 500;
}

.cat-page .badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.cat-page .badge-verified {
    background-color: var(--accent-color);
    color: var(--white);
}

.cat-page .badge-verified svg {
    width: 14px;
    height: 14px;
}

.cat-page .company-card .company-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

/* ============ REVIEW CARDS (как .opinion-card) ============ */
.cat-page .review-card {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--accent-color);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cat-page .review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cat-page .review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}

.cat-page .review-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    margin: 0;
    line-height: 1.2;
}

.cat-page .review-date {
    color: #000;
    font-size: 13px;
    margin: 5px 0 0;
}

.cat-page .badge-mini {
    background-color: var(--yellow-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
}

.cat-page .badge-mini svg {
    width: 11px;
    height: 11px;
}

.cat-page .review-title {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.cat-page .review-target {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 12px;
    align-self: flex-start;
    font-weight: 600;
}

.cat-page .review-body {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ============ STEPS (как .proceso-section) ============ */
.cat-page .steps-wrap {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.cat-page .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 10px;
}

@media (min-width: 1200px) {
    .cat-page .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cat-page .step-item {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.cat-page .step-circle {
    width: 90px;
    height: 90px;
    background: var(--yellow-color);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    text-shadow: none;
    box-shadow: none;
}

.cat-page .step-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 0 12px;
}

.cat-page .step-item p {
    color: #000;
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
}

/* ============ EDITORIAL ============ */
.cat-page .editorial-wrap {
    padding: 80px 0;
}

.cat-page .editorial {
    max-width: 820px;
    margin: 0 auto;
}

.cat-page .editorial h2 {
    color: var(--primary-color);
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
    text-align: left;
    font-size: 28px;
    font-weight: 700;
}

.cat-page .editorial h2:first-child {
    margin-top: 0;
    text-align: center;
    font-size: 40px;
}

.cat-page .editorial p {
    color: #000;
    font-size: 16px;
    line-height: 1.75;
}

.cat-page .editorial p strong {
    color: var(--text-dark);
}

.cat-page .criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cat-page .criterion {
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 35px 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cat-page .criterion:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.cat-page .criterion-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.cat-page .criterion-icon svg {
    width: 24px;
    height: 24px;
}

.cat-page .criterion h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    text-align: left;
    color: var(--primary-color);
}

.cat-page .criterion p {
    margin: 0;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}

/* ============ HOW TO CHOOSE ============ */
.cat-page .how-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.cat-page .how-item {
    border: none;
    border-left: 5px solid var(--yellow-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.cat-page .how-item h4 {
    color: var(--primary-color);
    margin: 0 0 10px;
    font-size: 18px;
}

.cat-page .how-item p {
    margin: 0;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}

/* ============ COMPARISON TABLE ============ */
.cat-page .demo-notice {
    background: #fef9e7;
    border: 1px dashed var(--warning-color);
    color: #7a4712;
    padding: 12px 18px;
    border-radius: var(--border-radius);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.cat-page .demo-notice svg {
    flex: 0 0 20px;
    color: var(--warning-color);
}

.cat-page .table-wrap {
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
}

.cat-page table.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 15px;
}

.cat-page table.compare th,
.cat-page table.compare td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--bg-gray);
}

.cat-page table.compare thead th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cat-page table.compare tbody tr:hover {
    background: var(--bg-light);
}

.cat-page table.compare td strong {
    color: var(--text-dark);
}

.cat-page table.compare .yes {
    color: #059669;
    font-weight: 700;
}

.cat-page table.compare .partial {
    color: var(--warning-color);
    font-weight: 700;
}

.cat-page table.compare .no {
    color: var(--danger-color);
    font-weight: 700;
}

/* ============ BLOG (как .blog-card) ============ */
.cat-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.cat-page .blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: none;
}

.cat-page .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cat-page .blog-thumb {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    overflow: hidden;
}

.cat-page .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-page .blog-body {
    padding: 30px;
}

.cat-page .blog-body h3 {
    color: var(--primary-color);
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.35;
    text-align: left;
}

.cat-page .blog-body h3 a {
    color: var(--primary-color);
}

.cat-page .blog-body h3 a:hover {
    text-decoration: underline;
}

.cat-page .blog-body p {
    color: #000;
    font-size: 15px;
    margin: 0 0 18px;
    line-height: 1.6;
}

.cat-page .blog-body > a {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cat-page .blog-body > a:hover {
    text-decoration: underline;
}


/* ============ FORM (как .review-form-section) ============ */
.cat-page .form-section {
    background: var(--yellow-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cat-page .form-section::before,
.cat-page .form-section::after {
    content: none;
}

.cat-page .form-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cat-page .form-head {
    text-align: center;
    margin-bottom: 40px;
}

.cat-page .form-head h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 40px;
    text-align: center;
}

.cat-page .form-head p {
    color: var(--white);
    font-size: 19px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.55;
    opacity: 0.95;
}

.cat-page .opinion-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.cat-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.cat-page .form-field label {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
}

.cat-page .form-field label .req {
    color: var(--danger-color);
    margin-left: 2px;
}

.cat-page .form-field select,
.cat-page .form-field input[type="text"],
.cat-page .form-field input[type="email"],
.cat-page .form-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 2px solid var(--bg-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.cat-page .form-field select {
    cursor: pointer;
}

.cat-page .form-field textarea {
    resize: vertical;
    min-height: 180px;
}

.cat-page .form-field select:focus,
.cat-page .form-field input:focus,
.cat-page .form-field textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.cat-page .form-field input::placeholder,
.cat-page .form-field textarea::placeholder {
    color: var(--text-light);
}

.cat-page .rating-input {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    padding: 0;
}

.cat-page .rating-input button {
    color: var(--primary-color);
    padding: 2px;
    transition: color 0.2s, transform 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cat-page .rating-input button:hover {
    transform: scale(1.1);
    color: var(--warning-color);
}

.cat-page .rating-input button.is-selected {
    color: var(--warning-color);
}

.cat-page .rating-input svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.cat-page .rating-input button.is-selected svg {
    fill: currentColor;
}

.cat-page .form-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #000;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cat-page .form-consent input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    flex: 0 0 18px;
    cursor: pointer;
}

.cat-page .form-consent a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cat-page .btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    margin-top: 6px;
}

.cat-page .btn-submit:hover {
    background: #142a8a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cat-page .form-success {
    background: #059669;
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    display: none;
    margin-top: 16px;
}

.cat-page .form-success.is-visible {
    display: block;
}

/* ============ META STRIP (если появится в разметке) ============ */
.cat-page .meta-strip {
    border-bottom: 1px solid var(--bg-gray);
    padding: 20px 0;
}

.cat-page .meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.cat-page .meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cat-page .meta-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.1;
}

.cat-page .meta-value small {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    margin-left: 4px;
    text-transform: uppercase;
}

.cat-page .meta-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}


.check-cards-grid .check-card-icon img {
    border: none;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    .cat-page *,
    .cat-page *::before,
    .cat-page *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============ TABLET / MOBILE ============ */
@media (max-width: 900px) {
    .cat-page .company-card,
    .cat-page .review-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .cat-page .hero h1 {
        font-size: 36px;
    }

    .cat-page .section-head h2,
    .cat-page .editorial h2:first-child,
    .cat-page .form-head h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    /*.cat-page section,*/
    .cat-page .steps-wrap,
    .cat-page .editorial-wrap,
    .cat-page .form-section {
        padding: 40px 0;
    }

    .cat-page .hero {
        padding: 60px 0;
    }

    .cat-page .hero h1 {
        font-size: 32px;
    }

    .cat-page .hero p.hero-lead {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .cat-page .section-lead {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cat-page .section-head h2 {
        font-size: 24px;
    }

    .cat-page .btn {
        padding: 10px 18px;
    }

    .cat-page .container {
        padding: 0 15px !important;
    }

    .cat-page .opinion-form {
        padding: 30px 20px;
    }

    .cat-page .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cat-page .carousel-arrow {
        width: 44px;
        height: 44px;
    }

    .cat-page .carousel-arrow.prev {
        left: 4px;
    }

    .cat-page .carousel-arrow.next {
        right: 4px;
    }
}

@media (max-width: 640px) {
    .cat-page .company-card,
    .cat-page .review-card {
        flex: 0 0 85%;
    }
}