:root {
    --bg: #f7f7f8;
    --surface: #ffffff;
    --text: #232323;
    --muted: #707078;
    --line: #e5e5ea;
    --accent: #6c63ff;
    --accent-strong: #535ced;
    --accent-soft: #ecebff;
    --dark: #17171c;
    --radius: 6px;
    --shadow: 0 24px 70px rgba(28, 28, 38, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    letter-spacing: 0;
}

body.is-locked {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 14px max(20px, calc((100vw - 1180px) / 2));
    background: rgba(249, 249, 249, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 229, 234, 0.8);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--accent);
    font-size: 13px;
    letter-spacing: 0;
}

.brand__name {
    font-size: 16px;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    color: #3d3d45;
    font-size: 14px;
    font-weight: 600;
}

.site-nav a {
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone {
    font-weight: 700;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    color: #fff;
    background: var(--accent);
}

.btn--primary:hover {
    background: var(--accent-strong);
}

.btn--ghost {
    color: var(--text);
    background: #fff;
    border-color: var(--text);
}

.btn--ghost:hover,
.btn--light:hover {
    color: #fff;
    background: var(--text);
}

.btn--light {
    color: var(--text);
    background: #fff;
    border-color: #fff;
}

.btn--outline {
    color: var(--accent-strong);
    background: transparent;
    border-color: var(--accent-strong);
}

.btn--outline:hover {
    color: #fff;
    background: var(--accent-strong);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 78px 0 74px;
    background: var(--bg);
}

.hero__grid,
.split-grid,
.feature-grid,
.trial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 72px;
}

.hero__content {
    max-width: 620px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.18;
}

.hero__lead,
.section-copy,
.section-head p,
.service-card p,
.benefit-card p,
.setting-copy p,
.review-card p,
.site-footer p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero__lead {
    max-width: 560px;
    margin-bottom: 30px;
    font-size: 21px;
}

.hero__actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.hero__stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.hero__stats strong {
    color: var(--text);
    font-size: 24px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.console-card,
.phone-preview,
.api-badge,
.product-panel,
.report-card,
.chat-demo {
    background: var(--surface);
    border: 1px solid rgba(229, 229, 234, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.console-card--main {
    position: absolute;
    inset: 36px 48px 58px 0;
    padding: 22px;
}

.console-card__top {
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
}

.console-card__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d7d7df;
}

.console-card__top span:first-child {
    background: #ff7262;
}

.console-card__top span:nth-child(2) {
    background: #ffce55;
}

.console-card__top span:nth-child(3) {
    background: #36c486;
}

.delivery-flow {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: var(--radius);
    background: #f5f5f8;
}

.flow-node {
    display: grid;
    place-items: center;
    min-width: 56px;
    height: 38px;
    padding: 0 10px;
    color: #555760;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 800;
}

.flow-node.is-active {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.flow-line {
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #d8d7ff);
}

.message-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.message-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: #36c486;
    border-radius: var(--radius);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.avatar--purple {
    background: var(--accent);
}

.avatar--dark {
    background: var(--dark);
}

.message-row strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.message-row p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.message-row em {
    padding: 6px 9px;
    color: var(--accent-strong);
    background: var(--accent-soft);
    border-radius: var(--radius);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.phone-preview {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 190px;
    min-height: 330px;
    padding: 48px 14px 18px;
    background: #202027;
}

.phone-preview__notch {
    position: absolute;
    top: 17px;
    left: 50%;
    width: 58px;
    height: 7px;
    border-radius: 999px;
    background: #3d3d47;
    transform: translateX(-50%);
}

.sms-bubble {
    margin-bottom: 14px;
    padding: 12px;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius);
    font-size: 13px;
    line-height: 1.35;
}

.sms-bubble--reply {
    margin-left: 24px;
    color: var(--text);
    background: #fff;
}

.api-badge {
    position: absolute;
    right: 126px;
    top: 0;
    padding: 13px 16px;
    color: #fff;
    background: var(--dark);
    border-color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}

.section {
    padding: 92px 0;
    background: #fff;
}

.section--muted,
.section--services {
    background: var(--bg);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-head--left {
    margin-left: 0;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 99, 255, 0.35);
    box-shadow: 0 20px 46px rgba(22, 22, 30, 0.08);
}

.service-card__tag {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 42px;
    margin-bottom: 28px;
    color: var(--accent-strong);
    background: var(--accent-soft);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 800;
}

.service-card p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.55;
}

.service-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.service-card__bottom span {
    font-weight: 800;
}

.service-card__bottom a {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-strong);
}

.split-section {
    background: #fff;
}

.channel-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 24px;
    background: #f4f4f7;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.channel-card {
    display: grid;
    place-items: center;
    min-height: 92px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 800;
}

.channel-card.is-primary {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.feature-grid {
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
}

.product-panel {
    padding: 24px;
}

.panel-head,
.report-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    font-weight: 800;
}

.panel-head strong,
.report-card__top strong {
    color: var(--accent-strong);
    font-size: 30px;
}

.segment-list {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.segment-list span {
    padding: 8px 10px;
    color: var(--muted);
    background: #f3f3f6;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 800;
}

.segment-list .is-active {
    color: #fff;
    background: var(--accent);
}

.contact-table {
    display: grid;
    gap: 10px;
}

.contact-table div {
    display: grid;
    grid-template-columns: 1fr auto 72px;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-table span {
    font-weight: 800;
}

.contact-table b {
    color: var(--muted);
    font-size: 12px;
}

.contact-table i {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #36c486);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.benefit-card__metric {
    display: inline-flex;
    min-width: 76px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    background: var(--dark);
    border-radius: var(--radius);
    font-weight: 800;
}

.settings-list {
    display: grid;
    gap: 26px;
}

.setting-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    align-items: center;
    gap: 52px;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.setting-row--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.setting-row--reverse .setting-visual {
    order: 2;
}

.setting-visual {
    min-height: 180px;
    padding: 22px;
    background: #f5f5f8;
    border-radius: var(--radius);
    overflow: hidden;
}

.setting-visual span {
    display: inline-grid;
    place-items: center;
    width: 78px;
    height: 54px;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius);
    font-weight: 800;
}

.setting-visual__bar {
    height: 12px;
    margin: 32px 0 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0 64%, #dedee8 64%);
}

.setting-visual__dots {
    display: flex;
    gap: 12px;
}

.setting-visual__dots i {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.response-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.response-cards div {
    padding: 18px;
    background: #f5f5f8;
    border-radius: var(--radius);
}

.response-cards strong,
.response-cards span {
    display: block;
}

.response-cards span {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.5;
}

.chat-demo {
    padding: 24px;
}

.chat-demo__header {
    margin-bottom: 28px;
    font-size: 26px;
    font-weight: 800;
}

.chat-demo__message {
    max-width: 82%;
    margin-bottom: 14px;
    padding: 14px;
    background: #f1f1f5;
    border-radius: var(--radius);
    line-height: 1.5;
}

.chat-demo__message--owner {
    margin-left: auto;
    color: #fff;
    background: var(--accent);
}

.chat-demo__input {
    margin-top: 34px;
    padding: 16px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.report-card {
    padding: 26px;
}

.chart-bars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 12px;
    height: 250px;
    padding: 18px;
    background: #f5f5f8;
    border-radius: var(--radius);
}

.chart-bars i {
    display: block;
    min-height: 32px;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(180deg, var(--accent), #36c486);
}

.report-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.pricing-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 18px;
    background: #f4f4f7;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.pricing-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.pricing-tabs button {
    min-height: 48px;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
}

.pricing-tabs button.is-active {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.pricing-card {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr) auto;
    align-items: center;
    gap: 28px;
    padding: 28px;
    background: #fff;
    border-radius: var(--radius);
}

.pricing-card.is-active {
    display: grid;
}

.pricing-card__price {
    margin: 0;
    color: var(--accent-strong);
    font-size: 28px;
    font-weight: 800;
}

.pricing-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    position: relative;
    margin: 10px 0;
    padding-left: 20px;
    color: var(--muted);
}

.pricing-card li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
}

.pricing-actions {
    display: grid;
    gap: 10px;
    min-width: 210px;
}

.pricing-actions .btn {
    width: 100%;
}

.trial-section {
    color: #fff;
    background: var(--dark);
}

.trial-section .eyebrow,
.trial-section .section-copy {
    color: #c9c9ff;
}

.trial-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
}

.cabinet-card,
.lead-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    color: var(--text);
    background: #fff;
    border-radius: var(--radius);
}

.cabinet-card h3 {
    margin-bottom: 0;
}

.cabinet-card p {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.cabinet-card .btn {
    width: 100%;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.lead-form input,
.lead-form select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: var(--text);
    background: #f7f7f9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    background: #fff;
    border-color: var(--accent);
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: #24895f;
    font-weight: 800;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.review-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.review-card p {
    font-size: 16px;
}

.site-footer {
    padding: 58px 0;
    color: #cfcfd7;
    background: #111116;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 42px;
}

.brand--footer {
    margin-bottom: 18px;
    color: #fff;
}

.site-footer h3 {
    color: #fff;
    font-size: 16px;
}

.site-footer a,
.site-footer span,
.footer-button {
    display: block;
    margin: 11px 0;
    color: #cfcfd7;
}

.footer-button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.site-footer a:hover,
.footer-button:hover {
    color: #fff;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    padding: 28px;
}

.modal.is-open {
    display: grid;
    place-items: center;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 22, 0.68);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(1180px, 100%);
    height: min(86vh, 820px);
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--line);
}

.modal__head .eyebrow {
    margin-bottom: 6px;
}

.modal__head h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
}

.modal__close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    color: var(--text);
    background: #f4f4f7;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.tarifs-frame {
    min-height: 0;
    background: #f4f4f7;
}

.tarifs-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
    background: #fff;
}

.modal__fallback {
    display: flex;
    justify-content: flex-end;
    padding: 14px 24px;
    border-top: 1px solid var(--line);
}

.cookie {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    width: min(520px, calc(100% - 40px));
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    font-size: 14px;
}

.cookie.is-hidden {
    display: none;
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav,
    .header-actions {
        position: fixed;
        left: 20px;
        right: 20px;
        display: none;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open,
    .header-actions.is-open {
        display: grid;
    }

    .site-nav {
        top: 88px;
        gap: 0;
        padding: 12px;
    }

    .site-nav a {
        padding: 14px;
        border-radius: var(--radius);
    }

    .site-nav a:hover {
        background: #f4f4f7;
    }

    .header-actions {
        top: 360px;
        padding: 14px;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card {
        grid-template-columns: 1fr;
    }

    .pricing-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero__grid,
    .split-grid,
    .feature-grid,
    .trial-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero {
        padding-top: 52px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .console-card--main {
        inset: 0 60px 50px 0;
    }

    .benefit-grid,
    .response-cards {
        grid-template-columns: 1fr;
    }

    .setting-row,
    .setting-row--reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .setting-row--reverse .setting-visual {
        order: initial;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        min-height: 68px;
        padding: 12px 14px;
    }

    .brand__name {
        font-size: 14px;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
    }

    .site-nav {
        top: 76px;
        left: 14px;
        right: 14px;
    }

    .header-actions {
        top: 348px;
        left: 14px;
        right: 14px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 34px;
    }

    .hero__lead,
    .section-copy,
    .section-head p {
        font-size: 17px;
    }

    .section {
        padding: 68px 0;
    }

    .hero-visual {
        min-height: 500px;
    }

    .console-card--main {
        inset: 0 0 162px 0;
    }

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

    .flow-line {
        width: 2px;
        height: 18px;
        margin: 0 auto;
    }

    .message-row {
        grid-template-columns: 36px 1fr;
    }

    .message-row em {
        grid-column: 2;
        width: max-content;
    }

    .phone-preview {
        right: 18px;
        width: 170px;
        min-height: 280px;
    }

    .api-badge {
        top: auto;
        right: auto;
        left: 18px;
        bottom: 28px;
    }

    .services-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .channel-board {
        grid-template-columns: repeat(2, 1fr);
        padding: 14px;
    }

    .contact-table div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pricing-tabs {
        grid-template-columns: 1fr;
    }

    .pricing-actions {
        grid-template-columns: 1fr;
    }

    .setting-row {
        padding: 22px;
    }

    .modal {
        padding: 10px;
    }

    .modal__dialog {
        height: calc(100vh - 20px);
    }

    .modal__head {
        padding: 16px;
    }

    .tarifs-frame iframe {
        min-height: 440px;
    }

    .modal__fallback {
        padding: 12px 16px;
    }

    .modal__fallback .btn {
        width: 100%;
    }

    .cookie {
        grid-template-columns: 1fr;
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
