.native-ops-page {
    overflow: hidden;
}

.native-hero {
    position: relative;
    padding: clamp(74px, 8vw, 118px) 0 clamp(70px, 8vw, 112px);
    overflow: hidden;
}

.native-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 46px);
    justify-items: center;
}

.native-hero__content {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    margin: 0 auto;
    color: var(--text-light);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.72;
    font-weight: 500;
    margin-bottom: 16px;
}

.native-hero__content h1 {
    max-width: 820px;
    margin: 0 auto 24px !important;
    text-align: center;
}

.native-command-showcase {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 72px;
}

.native-command {
    position: relative;
    width: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 90px rgba(26, 26, 26, 0.17);
    transform: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.native-command:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 110px rgba(26, 26, 26, 0.22);
}

.native-command-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: -1px;
    background: #ffffff;
    overflow: hidden;
}

.native-command-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.native-command-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.native-command-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.native-command-slider__btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(206, 184, 152, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-dark);
    box-shadow: var(--shadow-light);
    transform: translateY(-50%);
    transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.native-command-slider__btn:hover,
.native-command-slider__btn:focus-visible {
    transform: translateY(-50%) scale(1.06);
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow);
    outline: none;
}

.native-command-slider__btn--prev {
    left: 0;
}

.native-command-slider__btn--next {
    right: 0;
}

.native-hero__actions {
    justify-content: center;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .native-command-showcase {
        padding: 0 46px;
    }

    .native-command {
        border-radius: 26px;
    }

    .native-command-slider__btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .native-command-showcase {
        padding: 0;
    }

    .native-command-slider__btn {
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .native-command-slider__btn:hover,
    .native-command-slider__btn:focus-visible {
        transform: scale(1.06);
    }

    .native-command-slider__btn--prev {
        left: 14px;
    }

    .native-command-slider__btn--next {
        right: 14px;
    }
}

.native-hero__content h1 {
    margin: 0 0 24px;
    color: var(--text-dark);
    font-size: clamp(38px, 5.4vw, 68px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.native-hero__content h1 span {
    color: var(--gold-dark);
}

.native-command,
.native-stat-board,
.native-note-card,
.native-card,
.native-integration-panel {
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow);
}

.native-logo-strip {
    padding: 28px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.native-logo-strip .container {
    display: grid;
    gap: 16px;
    justify-items: center;
}

.native-logo-strip .container > span,
.native-integration-group > span {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.native-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.native-chip-row--left {
    justify-content: flex-start;
}

.native-chip-row span,
.native-chip-row strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(206, 184, 152, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: var(--shadow-light);
}

.native-chip-row i {
    color: var(--primary-dark);
}

.native-card-grid {
    display: grid;
    gap: 18px;
}

.native-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.native-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.native-card::before,
.native-stat-board::before,
.native-integration-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 92% 8%, rgba(var(--primary-rgb), 0.14), transparent 34%), linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(234, 214, 184, 0.26));
    opacity: 0;
    transition: opacity 0.32s ease;
}

.native-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    background: #eef0ef;
    box-shadow: var(--shadow);
}

.native-card:hover::before {
    opacity: 1;
}

.native-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: var(--gradient-gold);
    color: var(--ink);
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(206, 184, 152, 0.24);
}

.native-card h3,
.native-benefit-list h3,
.native-note-card h3 {
    margin: 0 0 12px;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.native-card p,
.native-benefit-list p,
.native-note-card li,
.native-final-cta p {
    color: var(--text-light);
    line-height: 1.68;
}

.native-card p {
    margin: 0 0 18px;
    font-size: 14px;
}

.native-card > strong {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: auto;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
}

.native-step-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.native-step-grid article {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(206, 184, 152, 0.38);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-light);
}

.native-step-grid span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(var(--primary-rgb), 0.28);
}

.native-step-grid h3 {
    margin: 0 0 10px;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.native-step-grid p {
    margin: 0 0 16px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.58;
}

.native-step-grid em {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.native-split,
.native-benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1fr);
    gap: clamp(24px, 4vw, 46px);
    align-items: start;
}

.native-integration-panel,
.native-note-card,
.native-stat-board {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    isolation: isolate;
}

.native-integration-panel,
.native-note-card {
    padding: clamp(24px, 3vw, 34px);
}

.native-integration-group {
    display: grid;
    gap: 12px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(206, 184, 152, 0.30);
}

.native-integration-group:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.native-integration-group em {
    min-height: auto;
    padding: 4px 7px;
    font-size: 10px;
}

.native-note-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.native-note-card h3 i {
    color: var(--primary-dark);
}

.native-note-card ol {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding-left: 20px;
}

.native-note-card li {
    font-size: 14px;
}

.native-note-card li strong {
    color: var(--text-dark);
    font-weight: 900;
}

.native-portal-features {
    margin-top: 22px;
}

.native-benefits-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.74fr);
}

.native-benefit-list {
    display: grid;
    gap: 16px;
}

.native-benefit-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid rgba(206, 184, 152, 0.38);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-light);
}

.native-benefit-list .native-card__icon {
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 16px;
    font-size: 17px;
}

.native-benefit-list h3 {
    font-size: 18px;
}

.native-benefit-list p {
    margin: 0;
    font-size: 14px;
}

.native-stat-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.native-stat-board article {
    display: grid;
    gap: 10px;
    align-content: center;
    min-height: 170px;
    padding: 22px;
    border: 1px solid rgba(206, 184, 152, 0.30);
    background: rgba(246, 240, 229, 0.48);
}

.native-stat-board article:nth-child(1) {
    border-radius: 22px 0 0 0;
}

.native-stat-board article:nth-child(2) {
    border-radius: 0 22px 0 0;
}

.native-stat-board article:nth-child(3) {
    border-radius: 0 0 0 22px;
}

.native-stat-board article:nth-child(4) {
    border-radius: 0 0 22px 0;
}

.native-stat-board strong {
    color: var(--gold-dark);
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.075em;
}

.native-stat-board span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.native-ops-page .faq {
    max-width: 980px;
    margin: 0 auto;
}

.native-ops-page .faq-item {
    margin-bottom: 16px;
}

.native-ops-page .faq-item summary {
    position: relative;
}

.native-ops-page .faq-item summary::after {
    content: '\f067';
}

.native-ops-page .faq-item[open] summary::after {
    content: '\f068';
}

.native-final-cta {
    padding: clamp(74px, 8vw, 112px) 0;
    text-align: center;
}

.native-final-cta .container {
    display: grid;
    justify-items: center;
}

.native-final-cta h2 {
    max-width: 720px;
    margin: 0 0 16px;
    color: var(--text-dark);
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.native-final-cta p {
    max-width: 720px;
    margin: 0 0 28px;
    font-size: 18px;
}

.native-final-cta .action-group {
    justify-content: center;
}

.native-final-cta span {
    display: block;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 1199px) {
    .native-hero__grid,
    .native-split,
    .native-benefits-layout {
        grid-template-columns: 1fr;
    }

    .native-card-grid--three,
    .native-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .native-step-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .native-hero {
        padding: 84px 0 66px;
    }

    .native-card-grid--three,
    .native-step-grid,
    .native-stat-board {
        grid-template-columns: 1fr;
    }

    .native-benefit-list article {
        grid-template-columns: 1fr;
    }

    .native-stat-board article,
    .native-stat-board article:nth-child(n) {
        min-height: auto;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .native-command__body,
    .native-card,
    .native-integration-panel,
    .native-note-card {
        padding: 22px;
    }
}

.native-integrations-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    align-items: stretch;
    gap: clamp(22px, 3vw, 34px);
}

.native-integrations-layout .native-integration-panel,
.native-integrations-layout .native-note-card {
    height: 100%;
}

.native-integrations-layout .native-integration-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: clamp(20px, 2.4vw, 28px);
    border-color: rgba(206, 184, 152, 0.42);
    background:
        radial-gradient(circle at 92% 8%, rgba(var(--primary-rgb), 0.10), transparent 34%),
        rgba(255, 255, 255, 0.94);
}

.native-integrations-layout .native-integration-group {
    display: grid;
    gap: 14px;
    padding: 18px;
    margin: 0;
    border: 1px solid rgba(206, 184, 152, 0.34);
    border-radius: 22px;
    background: rgba(246, 240, 229, 0.42);
    box-shadow: var(--shadow-light);
}

.native-integrations-layout .native-integration-group:last-child {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(206, 184, 152, 0.34);
}

.native-integrations-layout .native-chip-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 0.4fr));
    gap: 10px;
    justify-content: stretch;
}

.native-integrations-layout .native-integration-group > span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(206, 184, 152, 0.42);
    border-radius: 999px;
    background: #ffffff;
    color: var(--gold-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.native-integrations-layout .native-chip-row strong {
    justify-content: flex-start;
    min-height: 54px;
    padding: 11px 12px;
    border-radius: 18px;
    border-color: rgba(16, 24, 23, 0.10);
    background: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 10px 26px rgba(16, 24, 23, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.native-integrations-layout .native-chip-row strong:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.34);
    background: #eef0ef;
    box-shadow: var(--shadow);
}

.native-integrations-layout .native-chip-row strong > i {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-dark);
    font-size: 13px;
}

.native-integrations-layout .native-note-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 3vw, 36px);
}

.native-integrations-layout .native-note-card ol {
    gap: 16px;
    margin-top: 22px;
}

.native-integrations-layout .native-note-card li {
    padding-left: 4px;
    line-height: 1.72;
}

.native-step-grid {
    gap: 18px;
}

.native-step-grid::before {
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    top: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.20), rgba(206, 184, 152, 0.70), rgba(var(--primary-rgb), 0.20));
    opacity: 1;
}

.native-step-grid article {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.native-step-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--primary-rgb), 0.36);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.native-step-grid article:hover span {
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 18px 38px rgba(var(--primary-rgb), 0.34);
}

.native-step-grid span {
    position: relative;
    z-index: 2;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.native-benefit-list .fa-shield-halved.native-card__icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

@media (max-width: 1199px) {
    .native-integrations-layout {
        grid-template-columns: 1fr;
    }

    .native-integrations-layout .native-integration-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .native-integrations-layout .native-integration-panel,
    .native-integrations-layout .native-chip-row {
        grid-template-columns: 1fr;
    }
}

.native-integration-flow-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(28px, 3.2vw, 40px);
    background: rgba(255, 255, 255, 0.96);
}

.native-integration-flow-card::before {
    display: none;
}

/* Верхний блок */
.native-flow-visual {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 14px;
    margin-bottom: auto;
    border: 1px solid rgba(206, 184, 152, 0.34);
    border-radius: 22px;
    background: rgba(246, 240, 229, 0.42);
    box-shadow: var(--shadow-light);
}

.native-flow-visual span,
.native-flow-visual strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 10px 24px rgba(16, 24, 23, 0.06);
}

.native-flow-visual strong {
    background: var(--primary);
    color: #ffffff;
}

.native-flow-visual i {
    color: var(--primary-dark);
    font-size: 13px;
}

/* Центральный текст */
.native-flow-content {
    width: 100%;
    padding: clamp(34px, 5vw, 70px) 0;
}

/* Нижний блок */
.native-flow-footer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
}

.native-flow-footer span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px;
    border: 1px solid rgba(206, 184, 152, 0.34);
    border-radius: 999px;
    background: rgba(246, 240, 229, 0.42);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.native-flow-footer i {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .native-flow-visual {
        grid-template-columns: 1fr;
    }

    .native-flow-visual i {
        transform: rotate(90deg);
        justify-self: center;
    }

    .native-flow-footer {
        grid-template-columns: 1fr;
    }

    .native-flow-content {
        padding: 28px 0;
    }
}