/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229,57,53,0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-light);
    padding: 15px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Sections */
.section {
    /* padding: 80px 24px; */
    max-width: 100%;
    overflow-x: clip;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.mb-40 {
    margin-bottom: 40px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.section-header .section-label {
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title-accent {
    color: var(--primary);
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Page banner (inner pages) */
.page-banner {
    padding-top: 68px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    padding-bottom: 60px;
}

.page-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

/* Compact top (inner pages) */
.compact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.compact-left .page-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.compact-left .page-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.compact-left .page-desc {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: none;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.features-list li .check-icon {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-list li .check-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.stats-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.stats-card h3,
.stats-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.stats-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stats-card > p,
.stats-card-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.stats-card-desc {
    font-size: 14px;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-item {
    background: var(--light);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    border: 1px solid var(--gray-light);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
    line-height: 1;
}

.stat-value span {
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.stats-extra {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--primary-light);
    border-radius: 12px;
    border: 1px solid rgba(229,57,53,0.15);
    margin-top: 16px;
}

.stats-extra-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-extra-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.stats-extra-text .stats-extra-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.stats-extra-text .stats-extra-label {
    font-size: 11px;
    color: var(--gray);
}

/* Video */
.video-section {
    padding: 80px 24px;
    background: var(--white);
}

.video-inner {
    max-width: 960px;
    margin: 0 auto;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-header .section-label::before,
.video-header .section-label::after {
    width: 20px;
}

.video-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.video-header p {
    font-size: 15px;
    color: var(--gray);
}

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark);
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-player img,
.video-player .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-player:hover img,
.video-player:hover .video-thumb {
    opacity: 0.5;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(229,57,53,0.4);
    animation: playPulse 2s ease-in-out infinite;
}

.video-player:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    color: white;
    margin-left: 3px;
}

.video-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 18px;
    background: var(--light);
    border-radius: 14px;
    border: 1px solid var(--gray-light);
}

.video-info-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-info-avatar svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.video-info-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1px;
}

.video-info-text p {
    font-size: 12px;
    color: var(--gray);
}

.video-duration {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    background: var(--white);
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
}

/* News cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-grid.gap-24 {
    gap: 24px;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.news-img,
.news-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-img img,
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.news-card:hover .news-img img,
.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-date,
.news-card-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.95);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
    z-index: 1;
}

.news-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.news-body,
.news-card-body {
    padding: 22px;
}

.news-body h3,
.news-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-body .news-company {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.news-body p,
.news-card-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 80px 24px;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    line-height: 1.15;
}

.cta-inner h2 span {
    color: var(--primary);
}

.cta-inner p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 15px 18px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    border-radius: 12px;
    color: var(--dark);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.cta-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(229,57,53,0.1);
}

.cta-form button {
    padding: 15px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}

.cta-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229,57,53,0.35);
}

.cta-phone {
    font-size: 13px;
    color: var(--gray);
    margin-top: 16px;
}

.cta-phone a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.cta-actions {
    max-width: 320px;
    margin: 0 auto;
}

.cta-submit-btn {
    width: 100%;
    padding: 15px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.cta-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.35);
}

/* Contact modal (единая форма заявки) */
.contact-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: max(20px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px)) max(20px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.contact-modal-overlay.active,
.modal-overlay.active {
    display: flex;
}

.contact-modal {
    background: white;
    border-radius: 20px;
    padding: 48px 32px 32px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--light);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.contact-modal-close:hover {
    background: var(--gray-light);
}

.contact-modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-modal h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}

.contact-modal .contact-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
    text-align: center;
}

.contact-modal .form-group {
    margin-bottom: 16px;
}

.contact-modal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-modal .form-group input,
.contact-modal .form-group select,
.contact-modal .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    background: var(--white);
    box-sizing: border-box;
}

.contact-modal .form-group input:focus,
.contact-modal .form-group select:focus,
.contact-modal .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.phone-input-tel,
input[type="tel"].phone-input-tel {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    background: var(--white);
    box-sizing: border-box;
    letter-spacing: 0.02em;
    color: var(--dark);
}

.phone-input-tel:focus,
input[type="tel"].phone-input-tel:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.cta-form .phone-input-tel {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    padding: 15px 18px;
    font-size: 15px;
}

.cta-form .cta-submit-btn {
    width: auto;
    flex-shrink: 0;
}

.phone-prefix {
    display: none !important;
}

.contact-modal-submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.contact-modal-submit:hover {
    background: var(--primary-dark);
}

/* Modal (legacy) */
.modal {
    background: white;
    border-radius: 20px;
    padding: 36px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    background: var(--gray-light);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    color: white;
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    /* margin-bottom: 5px; */
}

.form-group label .required {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(229,57,53,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-submit {
    width: 100%;
    padding: 13px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 6px;
}

.form-submit:hover {
    background: var(--primary-dark);
}

.success-msg {
    display: none;
    text-align: center;
    padding: 20px;
}

.success-msg.active {
    display: block;
}

.success-msg svg {
    width: 56px;
    height: 56px;
    color: var(--green);
    margin-bottom: 14px;
}

.success-msg h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.success-msg p {
    color: var(--gray);
}

/* Forms shared */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    color: var(--gray);
    border: 2px solid var(--gray-light);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-back:hover {
    border-color: var(--gray);
    color: var(--dark);
}

.btn-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-next:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,193,7,0.4);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-light);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-step-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 28px;
}

.progress-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: min(640px, 100%);
    margin: 0 auto 40px;
    padding: 0 12px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 4.75rem;
    width: 4.75rem;
    min-width: 0;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid var(--gray-light);
    color: var(--gray);
    background: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}

.step-circle.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.step-circle.completed {
    border-color: var(--green);
    background: var(--green);
    color: white;
}

.step-line {
    flex: 1 1 0;
    min-width: 10px;
    max-width: 48px;
    height: 2px;
    background: var(--gray-light);
    margin-top: 17px;
    align-self: flex-start;
}

.step-line.completed {
    background: var(--green);
}

.step-label {
    font-size: 10px;
    line-height: 1.25;
    color: var(--gray);
    text-align: center;
    margin-top: 6px;
    white-space: normal;
    max-width: 4.75rem;
    hyphens: auto;
}

.step-label.active {
    color: var(--primary);
    font-weight: 600;
}

.phone-input-wrap,
.phone-input-standard {
    display: block;
}

.phone-input-wrap .phone-code,
.phone-input-wrap .phone-number,
.phone-input-standard .phone-prefix {
    display: none !important;
}

.success-step {
    text-align: center;
    padding: 40px 20px;
}

.success-step .success-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPop 0.5s ease;
}

.success-step .success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-step h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.success-step p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
}

.btn-home:hover {
    background: var(--primary-dark);
}

@media (max-width: 1024px) {
    .compact-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .compact-left .page-title,
    .page-title {
        font-size: 26px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-inner h2 {
        font-size: 26px;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form .phone-input-tel {
        flex: none;
        width: 100%;
    }

    .cta-form .cta-submit-btn {
        width: 100%;
    }

    .form-nav {
        flex-direction: column;
    }

    .form-nav .btn-back,
    .form-nav .btn-next,
    .form-nav .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .form-card {
        padding: 28px 20px;
    }

    .page-banner-inner {
        padding: 28px 16px 0;
    }

    .video-info {
        flex-wrap: wrap;
    }

    .video-duration {
        margin-left: 0;
    }
}
