:root {
    --color-wine-dark: #24040d;
    --color-wine: #51091c;
    --color-wine-light: #78142e;
    --color-white: #ffffff;
    --color-text-muted: #d3c7cb;
    --color-border: rgba(255, 255, 255, 0.14);
    --color-accent: #f3d7b3;
    --color-discount: #f02f55;
    --color-discount-dark: #a51431;
    --container-width: 1240px;
    --container-padding: 24px;
    --header-height: 86px;
    --font-heading: "Unbounded", Arial, Helvetica, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--color-wine);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--color-white);
    background:
        radial-gradient(ellipse 48% 65% at 78% 18%, rgba(185, 51, 91, 0.24) 0%, rgba(126, 25, 56, 0.12) 46%, transparent 76%),
        radial-gradient(circle at 15% 42%, rgba(124, 20, 50, 0.42) 0%, transparent 38%),
        linear-gradient(145deg, var(--color-wine-dark) 0%, var(--color-wine) 52%, #2b0611 100%);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

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

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-container {
    width: min(calc(100% - var(--container-padding) * 2), var(--container-width));
    margin-inline: auto;
}

.site-main {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 48% 65% at 78% 18%, rgba(185, 51, 91, 0.24) 0%, rgba(126, 25, 56, 0.12) 46%, transparent 76%),
        radial-gradient(circle at 15% 42%, rgba(124, 20, 50, 0.42) 0%, transparent 38%),
        linear-gradient(145deg, var(--color-wine-dark) 0%, var(--color-wine) 52%, #2b0611 100%);
}

.site-main::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Header */

.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        backdrop-filter 0.2s ease;
}

.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-logo__mark {
    width: 40px;
    height: 40px;
    display: block;
    flex: 0 0 40px;
}

.site-logo__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-logo__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    line-height: 1.05;
}

.site-logo__text strong {
    display: block;
    transform: translateX(-4px);
    color: var(--color-white);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.site-logo__text span {
    margin-top: 4px;
    color: var(--color-text-muted);
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.3vw, 30px);
}

.site-navigation a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 14px;
    transition: color 0.2s ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
    color: var(--color-white);
}

.site-header__trust {
    min-width: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    line-height: 1.15;
    text-align: right;
}

.site-header__trust span {
    color: var(--color-text-muted);
    font-size: 11px;
    white-space: nowrap;
}

.site-header__trust strong {
    margin-top: 4px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Hero */

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
}

.hero__content {
    position: relative;
    z-index: 3;
    min-width: 0;
    max-width: 760px;
}

.hero__title {
    max-width: 100%;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(37px, 3.7vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero__title-line {
    display: block;
}

.hero__title-group {
    display: block;
}

.hero__title-group--mobile {
    display: none;
}

.hero__title-line--accent {
    color: var(--color-accent);
}

.hero__description {
    max-width: 640px;
    margin: clamp(24px, 2.5vh, 28px) 0 0;
    color: var(--color-text-muted);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.55;
}

.hero__advantages {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 16px;
    list-style: none;
}

.hero__advantage {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
    color: #eee5e8;
    font-size: 13px;
    line-height: 1.3;
    white-space: normal;
}

.hero__advantage > span:last-child {
    min-width: 0;
}

.hero__advantage-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: rgba(108, 160, 239, 0.88);
    background: rgba(66, 133, 244, 0.11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__advantage--checklist .hero__advantage-icon {
    color: rgba(242, 190, 78, 0.88);
    background: rgba(251, 188, 5, 0.12);
}

.hero__advantage--system .hero__advantage-icon {
    color: rgba(74, 176, 106, 0.9);
    background: rgba(52, 168, 83, 0.12);
}

.hero__advantage-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Offer and price */

.hero__offer {
    margin-top: clamp(36px, 4vh, 44px);
    max-width: 500px;
}

.hero__price {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 11px;
    line-height: 1;
    white-space: nowrap;
}

.hero__price-label {
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.hero__price-old {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

.hero__price-old::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -3px;
    width: calc(100% + 6px);
    height: 2px;
    border-radius: 2px;
    background: var(--color-discount);
    transform: rotate(-7deg);
}

.hero__price-current {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: clamp(29px, 2.25vw, 34px);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.hero__action {
    max-width: 100%;
    margin-top: 22px;
    position: relative;
    display: block;
}

.hero__button {
    position: relative;
    min-width: 0;
    width: 100%;
    min-height: 60px;
    padding: 12px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 214, 151, 0.7);
    border-radius: 14px;
    color: #25060d;
    background: linear-gradient(180deg, #ffc773 0%, #ffb246 43%, #ee8d18 100%);
    box-shadow:
        0 4px 0 #b55b12,
        0 12px 22px rgba(20, 0, 7, 0.28),
        inset 0 1px 0 rgba(255, 239, 207, 0.5),
        inset 0 -1px 0 rgba(122, 45, 3, 0.22);
    font-family: var(--font-heading);
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-wrap: balance;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.hero__button-price {
    color: #140308;
    font-size: 1.13em;
    font-weight: 800;
}

.hero__button:hover,
.hero__button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 219, 156, 0.86);
    box-shadow:
        0 5px 0 #b55b12,
        0 15px 25px rgba(20, 0, 7, 0.32),
        inset 0 1px 0 rgba(255, 242, 214, 0.58),
        inset 0 -1px 0 rgba(122, 45, 3, 0.2);
    filter: saturate(1.04);
}

.hero__button:focus-visible {
    outline: 3px solid rgba(255, 207, 128, 0.44);
    outline-offset: 4px;
}

.hero__button:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 #b55b12,
        0 8px 14px rgba(20, 0, 7, 0.28),
        inset 0 2px 4px rgba(102, 32, 0, 0.18);
}

.hero__discount {
    position: static;
    min-width: 0;
    padding: 5px 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-2px);
    border: 1px solid rgba(243, 215, 179, 0.34);
    border-radius: 999px;
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.09);
    box-shadow:
        0 5px 12px rgba(20, 0, 7, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.hero__note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

.mobile-sticky-cta {
    display: none;
}

.hero__visual {
    position: relative;
    z-index: 1;
    min-width: 0;
    width: 100%;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hero__visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 49%;
    left: 50%;
    width: 118%;
    height: 98%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, rgba(255, 221, 183, 0.3) 0%, rgba(239, 156, 156, 0.18) 34%, rgba(143, 30, 64, 0.16) 62%, transparent 82%);
    filter: blur(34px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero__visual::after {
    content: none;
}

.hero__image {
    position: relative;
    z-index: 2;
    width: min(112%, 580px);
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 16px rgba(19, 0, 7, 0.2)) drop-shadow(0 34px 42px rgba(19, 0, 7, 0.28));
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 92%, rgba(0, 0, 0, 0.88) 97%, rgba(0, 0, 0, 0.62) 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 92%, rgba(0, 0, 0, 0.88) 97%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-benefits {
    position: relative;
    z-index: 2;
    border-block: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(36, 4, 13, 0.22);
}

.hero-benefits__inner {
    padding-top: clamp(16px, 2.2vw, 24px);
    padding-bottom: clamp(16px, 2.2vw, 24px);
}

.hero-benefits .hero__advantages {
    align-items: stretch;
    gap: 0;
}

.hero-benefits .hero__advantage {
    min-height: 44px;
    padding: 0 clamp(14px, 2.2vw, 28px);
    align-items: center;
}

.hero-benefits .hero__advantage:first-child {
    padding-left: 0;
}

.hero-benefits .hero__advantage:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Search shift */

.search-shift {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: transparent;
}

.search-shift::before {
    content: none;
}

.search-shift__inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(74px, 7vw, 112px);
    padding-bottom: clamp(78px, 7vw, 118px);
}

.search-shift__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    align-items: center;
    gap: clamp(42px, 5vw, 82px);
}

.search-shift--no-image .search-shift__layout {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.search-shift__content {
    min-width: 0;
    max-width: 620px;
}

.search-shift__visual {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.search-shift__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 20px 34px rgba(19, 0, 7, 0.18));
}

.search-shift-slider {
    display: grid;
    gap: 16px;
}

.search-shift-slider__viewport {
    position: relative;
    min-height: 1px;
}

.search-shift-slider__slide {
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.search-shift-slider__slide:not(:first-child) {
    position: absolute;
    inset: 0;
}

.search-shift-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.search-shift-slider__tabs {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(243, 215, 179, 0.12);
    border-radius: 999px;
    background: rgba(20, 1, 8, 0.18);
}

.search-shift-slider__tab {
    min-height: 34px;
    padding: 7px 13px;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    font: inherit;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.18s ease, background-color 0.18s ease;
}

.search-shift-slider__tab.is-active,
.search-shift-slider__tab:hover,
.search-shift-slider__tab:focus-visible {
    color: #f8e1c4;
    background: rgba(243, 215, 179, 0.13);
}

.search-shift-slider__tab:focus-visible {
    outline: 2px solid rgba(243, 215, 179, 0.34);
    outline-offset: 2px;
}

.search-shift__eyebrow {
    margin: 0 0 18px;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
}

.search-shift__title {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.15vw, 48px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.032em;
}

.search-shift__title-mobile-break {
    display: none;
}

.search-shift__description {
    margin: 20px 0 0;
    color: var(--color-text-muted);
    font-size: clamp(16px, 1.16vw, 18px);
    line-height: 1.58;
}

.search-shift__points {
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 0;
    counter-reset: search-point;
    list-style: none;
}

.search-shift__points li {
    position: relative;
    min-width: 0;
    padding: 18px 0 18px 48px;
    border-top: 1px solid rgba(243, 215, 179, 0.14);
    counter-increment: search-point;
}

.search-shift__points li::before {
    content: counter(search-point, decimal-leading-zero);
    position: absolute;
    top: 18px;
    left: 0;
    color: rgba(243, 215, 179, 0.72);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.search-shift__points strong {
    display: block;
    color: #f3e8dc;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.search-shift__points span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.55;
}

/* Visibility gaps */

.visibility-gaps {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: transparent;
}

.visibility-gaps__inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(74px, 7vw, 108px);
    padding-bottom: clamp(86px, 7vw, 128px);
}

.visibility-gaps__head {
    max-width: 940px;
}

.visibility-gaps__eyebrow {
    margin: 0 0 18px;
    max-width: 690px;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.visibility-gaps__title {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.1vw, 48px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.032em;
}

.visibility-gaps__intro {
    margin: 22px 0 0;
    max-width: 760px;
    color: var(--color-text-muted);
    font-size: clamp(16px, 1.16vw, 18px);
    line-height: 1.58;
}

.visibility-gaps__diagnostic {
    margin-top: clamp(42px, 5vw, 68px);
    display: grid;
    grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
    align-items: start;
    gap: clamp(34px, 4.4vw, 64px);
}

.visibility-gaps__visual {
    position: sticky;
    top: calc(var(--header-height) + 26px);
    min-width: 0;
    margin: 0;
}

.visibility-gaps__image,
.visibility-gaps__placeholder {
    width: 100%;
    border-radius: 8px;
}

.visibility-gaps__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(18, 0, 7, 0.16));
}

.visibility-gaps__placeholder {
    min-height: clamp(320px, 34vw, 460px);
    padding: clamp(22px, 3vw, 34px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(243, 215, 179, 0.22);
    background:
        rgba(22, 1, 8, 0.28);
}

.visibility-gaps__placeholder span {
    max-width: 280px;
    color: rgba(243, 215, 179, 0.72);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.visibility-gaps__list {
    position: relative;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(20px, 2.8vw, 30px);
    list-style: none;
}

.visibility-gaps__list::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 10px;
    left: 6px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(243, 215, 179, 0.38), rgba(243, 215, 179, 0.08));
}

.visibility-gaps__list li {
    position: relative;
    min-width: 0;
    padding-left: 36px;
}

.visibility-gaps__list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 13px;
    height: 13px;
    border: 1px solid rgba(243, 215, 179, 0.52);
    border-radius: 50%;
    background: var(--color-wine);
    box-shadow: 0 0 0 5px rgba(243, 215, 179, 0.05);
}

.visibility-gaps__tag {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(243, 215, 179, 0.72);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.visibility-gaps__list h3 {
    margin: 0;
    color: #f3e8dc;
    font-family: var(--font-heading);
    font-size: clamp(17px, 1.42vw, 21px);
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: 0;
}

.visibility-gaps__list p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.56;
}

.visibility-gaps__outro {
    margin-top: clamp(46px, 5vw, 74px);
    padding-top: clamp(24px, 3vw, 38px);
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 72px);
    border-top: 1px solid rgba(243, 215, 179, 0.22);
}

.visibility-gaps__outro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.58;
}

.visibility-gaps__loss {
    max-width: 520px;
}

.visibility-gaps__turn {
    position: relative;
    max-width: 620px;
    padding-left: clamp(18px, 2vw, 28px);
    color: #f3d7b3;
    font-family: var(--font-heading);
    font-size: clamp(18px, 1.75vw, 25px);
    font-weight: 700;
    line-height: 1.45;
}

.visibility-gaps__turn::before {
    content: "";
    position: absolute;
    top: 0.2em;
    bottom: 0.2em;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #f3d7b3, rgba(243, 215, 179, 0.18));
}

.site-footer {
    padding: 25px 0;
    color: #cbbfc3;
    background: #170208;
}

.site-footer__inner {
    font-size: 13px;
}

.site-footer p {
    margin: 0;
}

.default-page {
    min-height: 70vh;
    padding: 160px 0 80px;
}

@media (min-width: 961px) {
    .hero__title-line {
        white-space: nowrap;
    }
}

@media (max-width: 1180px) {
    :root {
        --container-padding: 20px;
    }

    .site-navigation {
        display: none;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.16fr) minmax(290px, 0.84fr);
        gap: 18px;
    }

    .hero__title {
        font-size: clamp(35px, 4vw, 45px);
    }

    .hero__description {
        font-size: 17px;
    }

    .hero-benefits .hero__advantages {
        gap: 10px 15px;
    }

    .hero__advantage {
        font-size: 13px;
    }

    .hero__image {
        width: min(112%, 520px);
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 76px;
        --container-padding: 18px;
    }

    .site-header__inner {
        gap: 16px;
    }

    .site-logo__mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .site-logo__text strong {
        font-size: 12px;
    }

    .site-logo__text span {
        font-size: 9px;
    }

    .hero__inner {
        padding-top: calc(var(--header-height) + 28px);
        padding-bottom: 28px;
        grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
        gap: 12px;
    }

    .hero__title {
        font-size: clamp(31px, 4.1vw, 39px);
    }

    .hero__description {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.48;
    }

    .hero-benefits .hero__advantages {
        gap: 9px 12px;
    }

    .hero__advantage {
        font-size: 12px;
    }

    .hero__advantage-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .hero__offer {
        margin-top: 32px;
    }

    .hero__price-label {
        font-size: 15px;
    }

    .hero__price-old {
        font-size: 18px;
    }

    .hero__price-current {
        font-size: 29px;
    }

    .hero__action {
        max-width: 470px;
        margin-top: 18px;
    }

    .hero__note {
        max-width: 470px;
        margin-top: 13px;
    }

    .hero__button {
        min-height: 56px;
        padding: 11px 22px;
        font-size: 12px;
    }

    .hero__discount {
        font-size: 11px;
    }

    .hero__image {
        width: min(108%, 430px);
    }
}

@media (min-width: 821px) and (max-height: 760px) {
    .hero__inner {
        padding-top: calc(var(--header-height) + 22px);
        padding-bottom: 24px;
    }

    .hero__title {
        font-size: clamp(32px, 3.5vw, 44px);
    }

    .hero__description {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.45;
    }

    .hero__offer {
        margin-top: 28px;
    }

    .hero__action {
        margin-top: 16px;
    }

    .hero__note {
        margin-top: 12px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 80px;
        --container-padding: 18px;
    }

    body {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .site-header {
        position: sticky;
        background: transparent;
        border-bottom-color: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header.is-scrolled {
        background: rgba(75, 8, 29, 0.64);
        border-bottom-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 30px rgba(25, 0, 10, 0.12);
        backdrop-filter: blur(18px) saturate(135%);
        -webkit-backdrop-filter: blur(18px) saturate(135%);
    }

    .site-header__inner {
        min-height: var(--header-height);
        gap: 14px;
    }

    .site-logo {
        gap: 11px;
        flex: 1 1 auto;
        flex-shrink: 1;
    }

    .site-logo__mark {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
    }

    .site-logo__text strong {
        transform: translateX(-3px);
        font-size: 14px;
        line-height: 1.05;
        letter-spacing: -0.025em;
    }

    .site-logo__text span {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.1;
    }

    .site-header__trust {
        max-width: 148px;
        padding-left: 20px;
    }

    .site-header__trust span {
        font-size: 10px;
        line-height: 1.25;
    }

    .site-header__trust strong {
        margin-top: 4px;
        font-size: 11px;
        line-height: 1.2;
    }

    .site-navigation {
        display: none;
    }

    .hero {
        min-height: auto;
        background: transparent;
    }

    .hero__inner {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 42px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .hero__content {
        width: 100%;
        max-width: none;
    }

    .hero__title {
        font-size: clamp(27px, 7.3vw, 38px);
        line-height: 1.12;
        letter-spacing: -0.032em;
    }

    .hero__title-group--desktop {
        display: none;
    }

    .hero__title-group--mobile {
        display: block;
    }

    .hero__title-line {
        white-space: normal;
    }

    .hero__description {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.52;
    }

    .hero-benefits .hero__advantages {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero__advantage {
        font-size: 14px;
        white-space: normal;
    }

    .hero__advantage-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .hero__offer {
        width: 100%;
        margin-top: 30px;
    }

    .hero__price {
        justify-content: center;
        gap: 11px;
    }

    .hero__price-label {
        font-size: 17px;
    }

    .hero__price-old {
        font-size: 20px;
    }

    .hero__price-current {
        font-size: 34px;
    }

    .hero__action {
        max-width: none;
        margin-top: 16px;
    }

    .hero__button {
        width: 100%;
        min-height: 62px;
        padding: 12px 18px;
        font-size: clamp(12px, 3.1vw, 14px);
    }

    .hero__discount {
        padding-inline: 8px;
        font-size: 11px;
    }

    .hero__note {
        margin-top: 13px;
        text-align: center;
        font-size: 12px;
    }

    .hero__visual {
        width: 100%;
        margin-top: 34px;
        padding: 0 2px 8px;
    }

    .hero__image {
        width: min(92%, 500px);
        max-width: 100%;
        margin-inline: auto;
    }

    .hero-benefits__inner {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .hero-benefits .hero__advantage {
        min-height: 0;
        padding: 10px 0;
    }

    .hero-benefits .hero__advantage:not(:first-child) {
        border-top: 1px solid rgba(255, 255, 255, 0.09);
        border-left: 0;
    }

    .mobile-sticky-cta {
        position: fixed;
        z-index: 900;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        height: 100dvh;
        padding: 0 var(--container-padding) max(2px, env(safe-area-inset-bottom));
        display: flex;
        align-items: flex-end;
        justify-content: center;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    @supports not (height: 100dvh) {
        .mobile-sticky-cta {
            top: auto;
            bottom: calc(var(--mobile-sticky-cta-viewport-bottom, 0px) + max(2px, env(safe-area-inset-bottom)));
            height: auto;
            padding: 0 var(--container-padding);
            display: block;
        }
    }

    .mobile-sticky-cta.is-visible {
        opacity: 1;
        pointer-events: none;
        transform: translateY(0);
    }

    .mobile-sticky-cta__button {
        width: min(100%, 470px);
        min-height: 60px;
        padding-inline: 8px;
        margin-inline: auto;
        font-size: clamp(14px, 3.9vw, 16.5px);
        white-space: nowrap;
        text-wrap: nowrap;
        pointer-events: auto;
    }

    .mobile-sticky-cta__button .hero__button-price {
        font-size: 1.34em;
        font-weight: 900;
    }

    .hero__visual::before {
        width: 104%;
        height: 94%;
        filter: blur(24px);
    }

    .hero__visual::after {
        left: 6%;
        right: 6%;
        bottom: 5%;
        height: 50px;
        filter: blur(24px);
    }

    .search-shift__inner {
        padding-top: 58px;
        padding-bottom: 66px;
    }

    .search-shift__layout {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .search-shift__visual {
        width: 100%;
        order: 2;
    }

    .search-shift-slider {
        gap: 13px;
    }

    .search-shift-slider__tabs {
        width: 100%;
        border-radius: 999px;
    }

    .search-shift-slider__tab {
        flex: 1 1 auto;
        padding-inline: 10px;
    }

    .search-shift__content {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .search-shift__title {
        font-size: clamp(28px, 7.1vw, 34px);
        line-height: 1.14;
        overflow-wrap: break-word;
    }

    .search-shift__title-mobile-break {
        display: block;
    }

    .search-shift__description {
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.52;
        overflow-wrap: break-word;
    }

    .search-shift__points {
        margin-top: 28px;
    }

    .search-shift__points li {
        padding: 16px 0 16px 42px;
    }

    .search-shift__points li::before {
        top: 16px;
        font-size: 11px;
    }

    .search-shift__points strong {
        font-size: 16px;
        line-height: 1.32;
    }

    .search-shift__points span {
        font-size: 14px;
        line-height: 1.5;
        overflow-wrap: break-word;
    }

    .search-shift__description,
    .search-shift__points strong,
    .search-shift__points span {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .visibility-gaps__inner {
        padding-top: 58px;
        padding-bottom: 74px;
    }

    .visibility-gaps__eyebrow {
        margin-bottom: 16px;
        font-size: 11px;
        line-height: 1.45;
    }

    .visibility-gaps__title {
        font-size: clamp(27px, 7vw, 34px);
        line-height: 1.14;
        overflow-wrap: break-word;
    }

    .visibility-gaps__intro {
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.52;
        overflow-wrap: anywhere;
    }

    .visibility-gaps__diagnostic {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .visibility-gaps__visual {
        position: relative;
        top: auto;
    }

    .visibility-gaps__placeholder {
        min-height: 280px;
        padding: 20px;
    }

    .visibility-gaps__list {
        gap: 22px;
    }

    .visibility-gaps__list li {
        padding-left: 30px;
    }

    .visibility-gaps__list li::before {
        top: 7px;
        width: 11px;
        height: 11px;
        box-shadow: 0 0 0 4px rgba(243, 215, 179, 0.05);
    }

    .visibility-gaps__list::before {
        left: 5px;
    }

    .visibility-gaps__tag {
        margin-bottom: 7px;
        font-size: 9.5px;
    }

    .visibility-gaps__list h3 {
        font-size: 16px;
        line-height: 1.32;
        overflow-wrap: anywhere;
    }

    .visibility-gaps__list p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .visibility-gaps__outro {
        margin-top: 34px;
        padding-top: 22px;
        grid-template-columns: 1fr;
        gap: 16px;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .visibility-gaps__outro p {
        font-size: 15px;
        line-height: 1.54;
        overflow-wrap: anywhere;
    }

    .visibility-gaps__turn {
        padding-left: 17px;
        font-size: 18px;
        line-height: 1.45;
    }

}

@media (max-width: 420px) {
    :root {
        --header-height: 78px;
        --container-padding: 14px;
    }

    .site-header__inner {
        gap: 10px;
    }

    .site-logo {
        gap: 9px;
    }

    .site-logo__mark {
        width: 51px;
        height: 51px;
        flex: 0 0 51px;
    }

    .site-logo__text strong {
        font-size: 13px;
    }

    .site-logo__text span {
        margin-top: 4px;
        font-size: 9px;
    }

    .site-header__trust {
        max-width: 142px;
        padding-left: 17px;
    }

    .site-header__trust span {
        font-size: 9.5px;
    }

    .site-header__trust strong {
        font-size: 10.5px;
    }

    .hero__inner {
        padding-top: 40px;
        padding-bottom: 36px;
    }

    .hero__title {
        font-size: clamp(25px, 7.7vw, 32px);
    }

    .hero__description {
        margin-top: 18px;
        font-size: 15px;
    }

    .hero__price {
        gap: 9px;
    }

    .hero__price-label {
        font-size: 15px;
    }

    .hero__price-old {
        font-size: 18px;
    }

    .hero__price-current {
        font-size: 31px;
    }

    .hero__button {
        min-height: 60px;
        padding: 11px 14px;
        font-size: 12px;
    }

    .hero__discount {
        padding: 5px 8px;
        font-size: 11px;
    }

    .hero__visual {
        margin-top: 30px;
    }

    .search-shift__inner {
        padding-top: 52px;
        padding-bottom: 56px;
    }

    .search-shift__layout {
        gap: 24px;
    }

    .search-shift__points {
        margin-top: 24px;
    }

    .search-shift__points li {
        padding-left: 38px;
    }

}

@media (max-width: 360px) {
    :root {
        --container-padding: 12px;
    }

    .site-logo {
        gap: 8px;
    }

    .site-logo__mark {
        width: 47px;
        height: 47px;
        flex: 0 0 47px;
    }

    .site-logo__text strong {
        font-size: 12px;
    }

    .site-logo__text span {
        font-size: 8px;
    }

    .site-header__trust {
        max-width: 120px;
        padding-left: 14px;
    }

    .site-header__trust span {
        display: block;
        font-size: 8.5px;
    }

    .site-header__trust strong {
        margin-top: 3px;
        font-size: 9.5px;
        line-height: 1.2;
        white-space: normal;
    }

    .hero__title {
        font-size: 25px;
    }

    .hero__price {
        gap: 7px;
    }

    .hero__price-label {
        font-size: 14px;
    }

    .hero__price-old {
        font-size: 16px;
    }

    .hero__price-current {
        font-size: 29px;
    }

    .hero__button {
        padding: 10px 12px;
        font-size: 12px;
    }

    .hero__discount {
        padding-inline: 7px;
        font-size: 10.5px;
    }
}

@media (max-width: 767px) {
    .site-header__trust {
        padding-left: 0;
        border-left: 0;
    }

    .site-header__trust::before,
    .site-header__trust::after {
        content: none;
        display: none;
    }

    .mobile-sticky-cta__button {
        font-size: clamp(14px, 3.9vw, 16.5px);
    }

    .mobile-sticky-cta__button .hero__button-price {
        font-size: 1.34em;
        font-weight: 900;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .site-navigation a,
    .hero__button,
    .mobile-sticky-cta {
        transition: none;
    }
}
