/* Лендинг `/` и `/en/`. Шапка/футер также на блоге (body.izi-landing-chrome). */

:root {
    --bg: #f1f2f4;
    --text: #1a1a1a;
    --muted: #4a5568;
    --lead: #5f76dd;
    --login: #306fd5;
    --grad: linear-gradient(90deg, #2abbd7 0%, #5f76dd 100%);
    --grad-reg: linear-gradient(90deg, #28c0d4 0%, #6d6bde 100%);
    --grad-hover: linear-gradient(90deg, #2abbd7 0%, #dd5f92 100%);
    --nav-bg: #111111;
    --font: "Montserrat", system-ui, sans-serif;
    --content-max: 1900px;
    --page-gutter: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.izi-landing-body.blog,
body.izi-landing-body.home {
    padding: 0;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.page-top {
    background: var(--bg);
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    padding-bottom: 48px;
}

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

.wrap {
    width: min(1480px, calc(100% - 48px));
    margin: 0 auto;
}

.wrap--wide {
    width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
    margin: 0 auto;
}

/* ----- header ----- */

.site-header {
    background: var(--bg);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.4fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 0;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.brand img {
    display: block;
    width: auto;
    height: auto;
    max-height: 40px;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
}

.brand__name {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.brand__tag {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
}

.nav-pill {
    justify-self: center;
    display: inline-flex;
    align-items: stretch;
    height: 52px;
    padding: 0 8px;
    background: var(--nav-bg);
    border-radius: 15px;
}

.nav-pill ul {
    display: flex;
    align-items: stretch;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-pill li {
    display: flex;
    height: 100%;
}

.nav-pill a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 17px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 12px;
    line-height: 1;
}

.nav-pill a:hover {
    background: #282828;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.btn--login {
    height: 52px;
    padding: 0 40px;
    color: var(--login);
    background: #fff;
    border: 1px solid #e3e3e7;
    border-radius: 15px;
    box-shadow: 0 0 8px 1px rgb(230, 230, 230);
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.btn--login:hover {
    color: #fff;
    background: #111;
    border-color: #111;
    box-shadow: none;
}

.btn--reg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    height: 52px;
    padding: 0 40px;
    color: #fff;
    background-image: var(--grad-reg);
    border-radius: 15px;
}

.btn--cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 60px;
    padding: 20px 28px;
    color: #fff;
    background-image: var(--grad);
    border-radius: 20px;
}

.btn--reg::after,
.btn--cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: var(--grad-hover);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn--reg:hover::after,
.btn--cta:hover::after {
    opacity: 1;
}

.btn__icon {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.burger {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #fff;
}

.burger span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 5px auto;
    background: #111;
}

.drawer {
    display: none;
    padding: 8px 24px 20px;
}

.drawer a {
    display: block;
    padding: 10px 0;
    font-weight: 700;
}

/* ----- hero ----- */

.hero {
    padding: 72px 0 6vh;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.46fr) minmax(0, 1fr);
    gap: 24px 32px;
    align-items: center;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.hero__lead {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--lead);
    line-height: 1.45;
}

.hero__roles {
    margin: 0 0 16px;
    padding-left: 18px;
}

.hero__roles li {
    margin: 0 0 6px;
    font-size: 14px;
    color: #333;
}

.hero__more {
    margin: 0 0 28px;
    font-size: 15px;
    color: #333;
}

.hero__cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.hero__hint {
    margin: 0;
    font-size: 14px;
    color: #555;
    max-width: 28ch;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    line-height: 0;
    overflow: hidden;
}

.hero__visual video {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    background: transparent;
    object-fit: contain;
    pointer-events: none;
}

.hero__visual video.is-buffered {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero__visual canvas {
    display: none;
    width: 100%;
    max-width: 560px;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
    pointer-events: none;
}

.hero__visual canvas.is-active {
    display: block;
}

.lang-switch {
    display: inline-flex;
    gap: 6px;
    margin: 0 4px 0 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lang-switch a {
    color: #888;
    text-decoration: none;
}

.lang-switch a.is-active {
    color: #111;
}

/* ----- agents / hermes + cases ----- */

.agents {
    padding: 56px 0 8px;
}

.agents__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.86fr) minmax(280px, 1fr);
    gap: 20px;
    align-items: stretch;
}

.hermes {
    position: relative;
    overflow: hidden;
    min-height: 432px;
    padding: 28px 32px 32px;
    background-color: #e2e5ea;
    background-image: url("../images/landing/waves.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto;
    border-radius: 20px;
}

.hermes h2 {
    position: relative;
    margin: 0 0 16px;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.hermes__lead {
    position: relative;
    margin: 0 0 28px;
    font-size: 16px;
    color: #000;
    max-width: 52em;
}

.hermes__cols {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hermes__cols h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
}

.hermes__cols p {
    margin: 0;
    font-size: 14px;
    color: #222;
}

.cases {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 432px;
    padding: 18px 18px 16px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background: #1a1d2e;
    box-sizing: border-box;
}

.cases__tag {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
}

.cases h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cases__intro {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0;
}

.cases__card {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 14px 16px 12px;
    background: #141414;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cases__slides {
    position: relative;
    flex: 1 1 auto;
    min-height: 8rem;
}

.cases__slide {
    display: none;
}

.cases__slide.is-active {
    display: block;
}

.cases__mark {
    display: block;
    margin-bottom: 6px;
    color: #fff;
}

.cases__quote {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: #fff;
}

.cases__cite {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: #c7c7c7;
}

.cases__nav {
    display: inline-flex;
    align-self: flex-end;
    gap: 4px;
    margin-top: 12px;
    padding: 3px 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.cases__nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.cases__nav button:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ----- integration cases (not the quote carousel .cases) ----- */

.integration {
    background: var(--bg);
    padding: 72px 0 80px;
}

.integration__kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #b0b0b0;
}

.integration__head {
    margin-bottom: 40px;
}

.integration__head h2 {
    margin: 0 0 16px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.integration__head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #333;
}

.integration__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
}

.integration__cta .btn,
.icase__cta .btn {
    height: 52px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 15px;
}

.icases {
    position: relative;
}

.icases__nav {
    display: none;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -44px;
    z-index: 1;
    gap: 4px;
    padding: 3px 5px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 999px;
    background: #fff;
}

.icases.is-scrollable {
    padding-bottom: 52px;
}

.icases.is-scrollable .icases__nav {
    display: inline-flex;
}

.icases__nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #111;
    cursor: pointer;
}

.icases__nav button:hover {
    background: #f1f2f4;
}

.icases__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.icases__viewport::-webkit-scrollbar {
    display: none;
}

.icases__track {
    display: flex;
    gap: 16px;
}

.icase-card {
    flex: 0 0 calc((100% - 32px) / 3);
    display: flex;
    flex-direction: column;
    min-width: 0;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(17, 17, 17, 0.06);
}

.icase-card:hover {
    transform: translateY(-2px);
}

.icase-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #e2e5ea;
    overflow: hidden;
}

.icase-card__media.is-empty {
    background:
        linear-gradient(135deg, #e8ebf0 0%, #d5dae3 100%);
}

.icase-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icase-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 18px 20px;
    flex: 1 1 auto;
}

.icase-card__meta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #6b7280;
}

.icase-card__title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.icase-card__excerpt {
    font-size: 14px;
    color: #333;
    flex: 1 1 auto;
}

.icase-card__more {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--login);
}

.icases--index .icases__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.icases--index .icase-card {
    flex: none;
}

.icase-index {
    padding: 24px 0 8px;
}

.icase-index__title {
    margin: 0 0 16px;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.icase-index__lead {
    margin: 0 0 32px;
    font-size: 16px;
    color: #333;
}

.icase {
    padding: 12px 0 8px;
}

.icase__wrap {
    max-width: 860px;
}

.icase__crumb {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 600;
}

.icase__crumb a {
    color: var(--login);
}

.icase__meta {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.icase h1 {
    margin: 0 0 16px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.icase__lead {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.5;
    color: #222;
}

.icase__cover {
    margin: 0 0 32px;
}

.icase__cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.icase__body {
    margin: 0 0 8px;
}

.icase__body h2 {
    margin: 28px 0 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.icase__body p {
    margin: 0 0 10px;
    font-size: 16px;
    color: #222;
}

.icase__body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 16px 0;
    border-radius: 14px;
    cursor: zoom-in;
}

.icase__block {
    margin: 0 0 28px;
}

.icase__block h2 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.icase__block p {
    margin: 0 0 10px;
    font-size: 16px;
    color: #222;
}

.icase-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.icase-gallery__item {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #e2e5ea;
    text-align: left;
    cursor: zoom-in;
    font: inherit;
    color: inherit;
}

.icase-gallery__item.is-empty {
    cursor: default;
    min-height: 180px;
    justify-content: flex-end;
    padding: 16px;
    background:
        repeating-linear-gradient(-45deg, #e8ebf0, #e8ebf0 10px, #dde2ea 10px, #dde2ea 20px);
}

.icase-gallery__item img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.icase-gallery__item span {
    display: block;
    padding: 10px 12px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: #fff;
}

.icase-gallery__item.is-empty span {
    padding: 0;
    background: transparent;
}

.icase__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    margin: 36px 0 8px;
}

.izi-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 64px 56px;
    background: rgba(10, 12, 18, 0.88);
}

.izi-lightbox[hidden] {
    display: none;
}

.izi-lightbox__figure {
    margin: 0;
    max-width: min(1200px, 100%);
}

.izi-lightbox__figure img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 140px);
    margin: 0 auto;
    border-radius: 8px;
}

.izi-lightbox__figure figcaption {
    margin-top: 12px;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

.izi-lightbox__close,
.izi-lightbox__nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

.izi-lightbox__close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.izi-lightbox__nav {
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.izi-lightbox__nav--prev {
    left: 16px;
}

.izi-lightbox__nav--next {
    right: 16px;
}

/* ----- features ----- */

.features {
    background: #fff;
    padding: 72px 0 80px;
}

.features__kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #b0b0b0;
}

.features__title {
    margin: 0 0 48px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

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

.features__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.features__item h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.features__item p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    flex: 1 1 auto;
}

.features__item img {
    display: block;
    width: auto;
    height: auto;
    max-height: 72px;
    max-width: 80px;
    object-fit: contain;
    object-position: left bottom;
}

/* ----- why ----- */

.why {
    background: #fff;
    padding: 24px 0 96px;
}

.why__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px 56px;
    align-items: start;
}

.why__visual {
    min-width: 0;
    max-width: 797px;
    overflow: hidden;
    border-radius: 28px;
}

.why__visual img {
    display: block;
    width: 100%;
    height: auto;
}

.why__copy {
    min-width: 0;
    padding-top: 8px;
}

.why__kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #b0b0b0;
}

.why__copy h2 {
    margin: 0 0 32px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.why__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why__list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.why__check {
    display: block;
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.why__check svg {
    display: block;
    width: 100%;
    height: 100%;
}

.why__list h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.why__list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.why__cta {
    margin-top: 32px;
}

/* ----- start / how-to ----- */

.start {
    background: #fff;
    padding: 24px 0 96px;
}

.start__kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #b0b0b0;
}

.start__title {
    margin: 0 0 40px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.start__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px 48px;
    align-items: start;
}

.start__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.start__steps li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    background: #f4f5f7;
    border-radius: 16px;
}

.start__icon {
    display: block;
    width: 26px;
    height: 26px;
    margin-top: 1px;
    color: #111;
}

.start__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.start__steps h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.start__steps p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.start__visual {
    min-width: 0;
    width: 100%;
    max-width: 797px;
}

.start__slides {
    position: relative;
    width: 100%;
    aspect-ratio: 797 / 774;
    overflow: hidden;
    border-radius: 28px;
}

.start__slides img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.start__slides img.is-active {
    opacity: 1;
}

.start__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.start__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d0d2d6;
    cursor: pointer;
}

.start__dots button.is-active {
    background: #5f76dd;
    width: 22px;
    border-radius: 99px;
}

/* ----- social proof ----- */

.proof {
    background: #fff;
    padding: 48px 0 80px;
}

.proof__grid {
    display: grid;
    grid-template-columns: 344px minmax(0, 1fr);
    gap: 32px 48px;
    align-items: center;
}

.proof__grid img {
    display: block;
    width: 344px;
    max-width: 100%;
    height: auto;
}

.proof h2 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111;
}

/* ----- faq ----- */

.faq {
    background: var(--bg);
    padding: 72px 0 96px;
}

.faq__grid {
    display: grid;
    grid-template-columns: 421px minmax(0, 1fr);
    gap: 48px 64px;
    align-items: start;
}

.faq__visual {
    padding-top: 8px;
}

.faq__visual img {
    display: block;
    width: 421px;
    max-width: 100%;
    height: auto;
}

.faq__kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #b0b0b0;
}

.faq__copy h2 {
    margin: 0 0 28px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.faq-acc details {
    border-bottom: 1px solid #d5d8dc;
}

.faq-acc summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #1f2124;
    cursor: pointer;
    list-style: none;
}

.faq-acc summary::-webkit-details-marker {
    display: none;
}

.faq-acc summary::marker {
    content: "";
}

.faq-acc summary::after {
    content: "";
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    margin-top: -2px;
    border-right: 1.7px solid #1f2124;
    border-bottom: 1.7px solid #1f2124;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-acc details[open] summary::after {
    margin-top: 4px;
    transform: rotate(-135deg);
}

.faq-acc details p {
    margin: 0 0 20px;
    max-width: 52em;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
}

/* ----- pricing ----- */

.pricing {
    background: #fff;
    padding: 72px 0 96px;
}

.pricing__kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #b0b0b0;
}

.pricing__title {
    margin: 0 0 40px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 28px 24px 24px;
    background: #fff;
    border: 1px solid #e4e6ea;
    border-radius: 20px;
}

.plan-card h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111;
}

.plan-card__badge {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111;
    background: #c8eef5;
    border-radius: 999px;
}

.plan-card__lead {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
}

.plan-card__specs,
.plan-card__feats {
    margin: 0;
    padding: 0 0 0 18px;
}

.plan-card__specs {
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.plan-card__feats {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.45;
    color: #333;
}

.plan-card__specs li,
.plan-card__feats li {
    margin: 0 0 6px;
}

.plan-card__foot {
    margin-top: 20px;
}

.plan-card__price {
    margin: 0 0 6px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111;
}

.plan-card__price span {
    font-size: 16px;
    font-weight: 500;
    color: #808080;
}

.plan-card__note {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.plan-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.plan-card__btn--ghost {
    color: #306fd5;
    background: #fff;
    border: 1px solid #c5d8f5;
    box-shadow: 0 0 8px 1px rgb(230, 230, 230);
}

.plan-card__btn--ghost:hover {
    color: #fff;
    background: #050505;
    border-color: #050505;
    box-shadow: none;
}

.plan-card--accent {
    background: #2a2d35;
    border-color: #2a2d35;
    color: #fff;
}

.plan-card--accent h3,
.plan-card--accent .plan-card__lead,
.plan-card--accent .plan-card__specs,
.plan-card--accent .plan-card__price {
    color: #fff;
}

.plan-card--accent .plan-card__feats {
    color: #d8d8d8;
}

.plan-card--accent .plan-card__price span,
.plan-card--accent .plan-card__note {
    color: #b0b0b0;
}

.plan-card__btn--solid {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #111;
    background: #fff;
}

.plan-card__btn--solid::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: var(--grad-hover);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-card__btn--solid:hover {
    color: #fff;
}

.plan-card__btn--solid:hover::after {
    opacity: 1;
}

.pricing__hint {
    margin: 20px 0 0;
    font-size: 13px;
    color: #666;
}

/* ----- blog ----- */

section.blog {
    background: #fff;
    padding: 48px 0 72px;
}

.blog__kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #b0b0b0;
}

.blog__title {
    margin: 0 0 32px;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px 22px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: #e2d6cc;
    box-shadow: 0 16px 32px rgba(26, 20, 16, 0.1);
}

.blog-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    transition: color 0.15s ease;
}

.blog-card:hover h3 {
    color: #e85614;
}

.blog-card time {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    color: #b0b0b0;
}

.blog-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* ----- footer ----- */

.site-foot {
    margin-top: 8px;
    margin-bottom: 40px;
    padding: 40px 40px 28px;
    background: #1a1a1a;
    border-radius: 48px;
    color: #fff;
}

.site-foot__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 24px;
    align-items: start;
}

.site-foot__logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 40px;
}

.site-foot__label {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-foot__contacts p {
    margin: 0 0 6px;
    font-size: 15px;
}

.site-foot__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.site-foot__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding: 14px 28px;
    background: #fff;
    color: #111;
    border-radius: 999px;
    font-size: 14px;
}

.site-foot__bar a {
    color: #111;
}

/*
 * Тема (style.css + inline цвет ссылок) сильнее наследует чёрный на a/p.
 * На записях/страницах шапка, футер и градиентные кнопки должны остаться светлыми.
 */
body.izi-landing-chrome .nav-pill a,
body.izi-landing-chrome .nav-pill a:hover,
body.izi-landing-chrome .nav-pill a:focus {
    color: #fff;
    text-decoration: none;
}

body.izi-landing-chrome .btn--reg,
body.izi-landing-chrome .btn--cta,
body.izi-landing-chrome .btn--reg:hover,
body.izi-landing-chrome .btn--cta:hover,
body.izi-landing-chrome .btn--login:hover {
    color: #fff;
    text-decoration: none;
}

body.izi-landing-chrome .btn--login {
    color: var(--login);
    text-decoration: none;
}

body.izi-landing-chrome .site-foot,
body.izi-landing-chrome .site-foot p,
body.izi-landing-chrome .site-foot a,
body.izi-landing-chrome .site-foot .site-foot__label {
    color: #fff;
}

body.izi-landing-chrome .site-foot a:hover,
body.izi-landing-chrome .site-foot a:focus {
    color: #fff;
    text-decoration: none;
}

body.izi-landing-chrome .site-foot__bar,
body.izi-landing-chrome .site-foot__bar a,
body.izi-landing-chrome .site-foot__bar a:hover,
body.izi-landing-chrome .site-foot__bar a:focus {
    color: #111;
}

body.izi-landing-chrome .drawer a {
    color: #111;
    text-decoration: none;
}

body.izi-landing-chrome .icase-card,
body.izi-landing-chrome .icase-card:hover,
body.izi-landing-chrome .icase-card:focus {
    color: inherit;
    text-decoration: none;
}

body.izi-landing-chrome .icase a,
body.izi-landing-chrome .icase-index a {
    text-decoration: none;
}

/* ----- footer blur (как dbbk-footer-blur на живой главной) ----- */

.body-container-blur {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    pointer-events: none;
    z-index: 20;
}

.body-container-blur .bc-blur {
    position: absolute;
    inset: 0;
}

.body-container-blur .bc-blur-1 {
    mask-image: linear-gradient(transparent 50%, #000 62.5%, #000 75%, transparent 87.5%);
    -webkit-mask-image: linear-gradient(transparent 50%, #000 62.5%, #000 75%, transparent 87.5%);
    backdrop-filter: blur(0.875px);
    -webkit-backdrop-filter: blur(0.875px);
}

.body-container-blur .bc-blur-2 {
    mask-image: linear-gradient(transparent 62.5%, #000 75%, #000 87.5%, transparent 100%);
    -webkit-mask-image: linear-gradient(transparent 62.5%, #000 75%, #000 87.5%, transparent 100%);
    backdrop-filter: blur(1.75px);
    -webkit-backdrop-filter: blur(1.75px);
}

.body-container-blur .bc-blur-3 {
    mask-image: linear-gradient(transparent 75%, #000 87.5%, #000 100%);
    -webkit-mask-image: linear-gradient(transparent 75%, #000 87.5%, #000 100%);
    backdrop-filter: blur(3.5px);
    -webkit-backdrop-filter: blur(3.5px);
}

@media (min-width: 576px) {
    .body-container-blur {
        display: block;
    }
}

@media (max-width: 1100px) {
    .nav-pill,
    .header-actions .btn {
        display: none;
    }

    .burger {
        display: inline-block;
        justify-self: end;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .drawer.is-open {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

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

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

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

    .hermes h2 {
        font-size: 40px;
    }

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

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

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

    .features__title {
        font-size: 32px;
    }

    .why__copy h2 {
        font-size: 28px;
    }

    .integration__head h2,
    .icase-index__title,
    .icase h1 {
        font-size: 32px;
    }

    .icase-card {
        flex-basis: calc((100% - 16px) / 2);
    }

    .icases--index .icases__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .why__visual {
        width: 100%;
        max-width: 797px;
    }

    .start__title {
        font-size: 32px;
    }

    .start__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .start__visual,
    .start__slides {
        width: 100%;
        max-width: 797px;
        margin: 0 auto;
    }

    .proof__grid {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 24px;
    }

    .proof h2 {
        font-size: 36px;
    }

    .proof h2 br {
        display: none;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq__copy h2 {
        font-size: 32px;
    }

    .faq-acc summary {
        font-size: 17px;
    }

    .pricing__title {
        font-size: 32px;
    }

    .blog__title {
        font-size: 32px;
    }

    .site-foot__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 24px;
    }

    .hermes h2 {
        font-size: 28px;
    }

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

    .features__title {
        font-size: 24px;
    }

    .why__copy h2 {
        font-size: 24px;
    }

    .start__title {
        font-size: 24px;
    }

    .proof h2 {
        font-size: 28px;
    }

    .faq__copy h2 {
        font-size: 24px;
    }

    .pricing__title {
        font-size: 24px;
    }

    .blog__title {
        font-size: 24px;
    }

    .integration__head h2,
    .icase-index__title,
    .icase h1 {
        font-size: 24px;
    }

    .icase-card {
        flex-basis: 100%;
    }

    .icases--index .icases__track,
    .icase-gallery {
        grid-template-columns: 1fr;
    }

    .izi-lightbox {
        padding: 56px 16px 24px;
    }

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

    .site-foot {
        margin-bottom: 24px;
        padding: 28px 20px 20px;
        border-radius: 28px;
    }

    .site-foot__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-foot__bar {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
    }

    .wrap {
        width: calc(100% - 32px);
    }

    .page-top {
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
        padding-bottom: 28px;
    }
}
