@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Onest:wght@300;400;500;600;700&family=Tenor+Sans&display=swap');

:root {
    --bg: #edf2ef;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --text: #11231f;
    --muted: #4f615d;
    --accent: #0f6a5b;
    --accent-strong: #0d4e45;
    --accent-soft: #dcebe6;
    --line: #ccd9d4;
    --warn: #ff9052;
    --shadow: 0 16px 38px rgba(7, 27, 24, 0.09);
    --radius: 20px;
}

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

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Onest", "Segoe UI", sans-serif;
    scroll-behavior: smooth;
    background-image:
        radial-gradient(circle at 14% 12%, rgba(168, 211, 198, 0.24), rgba(168, 211, 198, 0) 34%),
        radial-gradient(circle at 86% 80%, rgba(143, 192, 177, 0.2), rgba(143, 192, 177, 0) 36%),
        repeating-linear-gradient(135deg, rgba(20, 98, 85, 0.035) 0 1px, rgba(20, 98, 85, 0) 1px 22px),
        linear-gradient(180deg, #eef3f0 0%, #e9efec 46%, #e7eeeb 100%);
}

body.page-home {
    background-image:
        radial-gradient(circle at 8% 20%, rgba(170, 220, 204, 0.33), rgba(170, 220, 204, 0) 35%),
        radial-gradient(circle at 90% 70%, rgba(129, 188, 171, 0.26), rgba(129, 188, 171, 0) 37%),
        radial-gradient(circle at 48% 112%, rgba(110, 165, 149, 0.15), rgba(110, 165, 149, 0) 46%),
        repeating-linear-gradient(145deg, rgba(15, 106, 91, 0.05) 0 1px, rgba(15, 106, 91, 0) 1px 18px),
        linear-gradient(180deg, #eef3f0 0%, #e9efec 45%, #e6eeea 100%);
}

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

a {
    color: inherit;
}

.bg-orb {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    filter: blur(10px);
}

.bg-orb--one {
    top: -240px;
    right: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(143, 197, 183, 0.55) 0%, rgba(143, 197, 183, 0) 72%);
}

.bg-orb--two {
    bottom: -220px;
    left: -140px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(196, 215, 210, 0.62) 0%, rgba(196, 215, 210, 0) 75%);
}

.bg-side {
    position: fixed;
    top: 0;
    bottom: 0;
    width: clamp(120px, 14vw, 260px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.98;
}

.bg-side::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    top: 12%;
    filter: blur(38px);
}

.bg-side--left {
    left: 0;
    background:
        linear-gradient(90deg, rgba(121, 186, 169, 0.48) 0%, rgba(121, 186, 169, 0.14) 54%, rgba(121, 186, 169, 0) 92%),
        radial-gradient(circle at 26% 24%, rgba(182, 228, 215, 0.42) 0%, rgba(182, 228, 215, 0) 38%),
        radial-gradient(circle at 18% 72%, rgba(129, 189, 172, 0.26) 0%, rgba(129, 189, 172, 0) 35%);
}

.bg-side--left::before {
    left: -34px;
    background: radial-gradient(circle, rgba(132, 210, 187, 0.56) 0%, rgba(132, 210, 187, 0) 74%);
}

.bg-side--right {
    right: 0;
    background:
        linear-gradient(270deg, rgba(108, 168, 153, 0.46) 0%, rgba(108, 168, 153, 0.14) 54%, rgba(108, 168, 153, 0) 92%),
        radial-gradient(circle at 74% 18%, rgba(172, 220, 205, 0.38) 0%, rgba(172, 220, 205, 0) 36%),
        radial-gradient(circle at 82% 76%, rgba(113, 170, 154, 0.24) 0%, rgba(113, 170, 154, 0) 34%);
}

.bg-side--right::before {
    right: -34px;
    background: radial-gradient(circle, rgba(107, 178, 158, 0.52) 0%, rgba(107, 178, 158, 0) 74%);
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(245, 248, 247, 0.9);
    border-bottom: 1px solid rgba(17, 35, 31, 0.09);
}

.header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo__mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.08em;
    background: linear-gradient(150deg, #103b34, #1f6a5d);
    color: #edf3f1;
    font-size: 1.65rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(16, 59, 52, 0.22);
}

.logo__stack {
    display: grid;
    gap: 2px;
}

.logo__text {
    font-weight: 700;
    letter-spacing: 0.28em;
    font-size: 0.86rem;
    line-height: 1;
}

.logo__caption {
    color: var(--muted);
    letter-spacing: 0.02em;
    font-size: 0.74rem;
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--text);
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--accent-soft);
    color: var(--accent-strong);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-family: inherit;
}

.main {
    padding-bottom: 64px;
}

.page-home .main {
    padding-bottom: 118px;
}

.hero {
    padding: 72px 0 34px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--accent-strong);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin: 0 0 16px;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.08;
    font-family: "Tenor Sans", serif;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(2rem, 4.6vw, 4rem);
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(1.55rem, 3.2vw, 2.5rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

p {
    margin-top: 0;
    line-height: 1.6;
    color: var(--muted);
}

.hero__lead {
    max-width: 500px;
    font-size: 1.1rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero__photo {
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.hero__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 18, 16, 0.22), rgba(9, 18, 16, 0));
    pointer-events: none;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 14px 20px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 26px rgba(15, 143, 120, 0.22);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 143, 120, 0.28);
}

.btn--attention {
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(15, 143, 120, 0.35);
    animation: auditCtaGlow 3.6s cubic-bezier(0.35, 0.02, 0.21, 0.99) infinite;
}

.btn--attention::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(169, 241, 224, 0.66);
    opacity: 0;
    animation: auditCtaRing 4.9s ease-in-out infinite;
}

.btn__text--attention {
    display: inline-block;
    animation: auditTextNudge 3.6s cubic-bezier(0.35, 0.02, 0.21, 0.99) infinite;
}

.btn--header-attention {
    animation: headerCtaPulse 4.4s ease-in-out infinite;
}

.btn--ghost {
    background: var(--surface-strong);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn--callback {
    background: linear-gradient(135deg, #f3f8f6, #e9f3ef);
    border-color: #b7d0c8;
    color: #163530;
    box-shadow: 0 12px 24px rgba(25, 63, 54, 0.12);
}

.btn--callback:hover {
    box-shadow: 0 16px 28px rgba(25, 63, 54, 0.17);
}

.btn--danger {
    background: linear-gradient(135deg, #cf3b3b, #a12c2c);
    box-shadow: 0 12px 26px rgba(180, 26, 26, 0.24);
}

.btn--danger:hover {
    box-shadow: 0 16px 28px rgba(180, 26, 26, 0.32);
}

.btn--small {
    padding: 10px 14px;
    font-size: 0.88rem;
}

.btn--full {
    width: 100%;
}

.section {
    padding: 64px 0;
}

.section--tight {
    padding-top: 28px;
    padding-bottom: 46px;
}

.page-top {
    padding-top: 52px;
    padding-bottom: 18px;
}

.section-head {
    max-width: 780px;
    border-left: 3px solid #9ebdb4;
    padding-left: 16px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    width: 96px;
    height: 96px;
    right: -28px;
    top: -28px;
    border-radius: 50%;
    background: rgba(27, 104, 89, 0.1);
}

.stat-card__value {
    margin: 0 0 7px;
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
    color: var(--text);
    font-weight: 700;
}

.stat-card__label {
    margin: 0;
}

.advice-grid,
.direction-grid,
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--accent-strong);
    font-weight: 600;
    text-decoration: none;
}

.card-link::after {
    content: "->";
    font-size: 0.85em;
    transition: transform 0.2s ease;
}

.card-link:hover::after {
    transform: translateX(3px);
}

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

.insight-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.insight-card h3 {
    margin-bottom: 10px;
}

.insight-card p {
    margin-bottom: 0;
}

.insight-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 14px;
    display: grid;
    place-items: center;
    color: #f0f7f5;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
}

.insight-card__icon svg {
    width: 20px;
    height: 20px;
}

.card__title {
    margin-top: 16px;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
}

.case-track {
    gap: 10px;
}

.case-track .eyebrow {
    margin-bottom: 6px;
}

.case-track__media {
    margin: -24px -24px 14px;
    height: 172px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.case-track__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-track__meta {
    margin-bottom: 0;
    color: var(--text);
}

.case-track__result {
    margin-bottom: 0;
    color: var(--text);
    font-weight: 600;
}

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

.price-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-card__actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

.price-card__badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.32);
}

.price-card__badge--silver {
    background: #d2d7d5;
}

.price-card__badge--blue {
    background: #3bafe8;
}

.price-card__badge--yellow {
    background: #dce300;
}

.price-card__hint {
    margin-bottom: 0;
}

.price-card__value {
    margin-bottom: 0;
    color: var(--text);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 700;
}

.list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 9px;
    color: var(--text);
}

.list--compact {
    gap: 7px;
    padding-left: 18px;
}

.direction-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.direction-card__main > :last-child {
    margin-bottom: 0;
}

.direction-card__meta {
    margin-bottom: 0;
    color: var(--text);
}

.direction-card__meta--budget {
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid #bfdcd2;
    background: #eef8f4;
}

.direction-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    border-color: #b7d7ce;
    background: linear-gradient(135deg, rgba(242, 252, 247, 0.98), rgba(229, 242, 237, 0.95));
}

.direction-card__aside {
    align-self: start;
    border: 1px solid #cfe3dc;
    border-radius: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.85);
}

.direction-card__aside .card__title {
    margin-top: 0;
}

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

.results-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card {
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(12, 38, 33, 0.15);
}

.result-card--big {
    min-height: 250px;
}

.result-card h3,
.result-card h2 {
    font-size: 1.08rem;
}

.result-card__logo-wrap {
    height: 90px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #deece7;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    overflow: hidden;
}

.result-card__logo {
    max-height: 75px;
    width: auto;
}

.section-actions {
    margin-top: 18px;
}

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

.client-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    min-height: 175px;
    box-shadow: var(--shadow);
}

.client-card__logo-wrap {
    height: 96px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #deece7;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.client-card__logo {
    max-height: 84px;
    width: auto;
}

.client-card h3 {
    font-size: 1.05rem;
}

.about-preview {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}

.about-preview figure {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.section--cta {
    padding-top: 44px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.cta-contact {
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
}

.form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    display: grid;
    gap: 13px;
}

.field {
    display: grid;
    gap: 8px;
}

.field span {
    color: var(--text);
    font-weight: 600;
}

.field--compact {
    gap: 6px;
}

.field--compact span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #c8d8d3;
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    padding: 12px 14px;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(15, 143, 120, 0.1);
}

.alert {
    border-radius: 14px;
    padding: 13px 16px;
    margin-bottom: 12px;
}

.alert p {
    margin-bottom: 6px;
    color: var(--text);
}

.alert ul {
    margin: 0;
    padding-left: 16px;
}

.alert--success {
    background: #ddf7ee;
    border: 1px solid #87d9bd;
}

.alert--warn {
    background: #fff4dc;
    border: 1px solid #ffd08a;
}

.alert--error {
    background: #ffe9df;
    border: 1px solid #ffb48f;
}

.featured-case {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(232, 243, 239, 0.95));
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 28px;
}

.featured-case__result {
    font-size: 1.1rem;
    color: var(--text);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.timeline-card {
    background: var(--surface);
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px;
}

.timeline-card h3 {
    color: var(--accent-strong);
    margin-bottom: 10px;
}

.cta-inline {
    background: linear-gradient(130deg, #e7f3ef, #f4fbf8);
    border: 1px solid #c9ddd7;
    border-radius: 26px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.section--meetings {
    padding-top: 40px;
}

.meetings-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 22px;
    align-items: stretch;
}

.meetings-showcase > * {
    min-width: 0;
}

.meetings-intro {
    position: relative;
    border-radius: 24px;
    padding: 26px;
    border: 1px solid #bfd6cf;
    background: linear-gradient(145deg, rgba(227, 241, 236, 0.96), rgba(245, 251, 248, 0.95));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.meetings-intro::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -85px;
    bottom: -95px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 112, 95, 0.28) 0%, rgba(21, 112, 95, 0) 72%);
}

.meetings-intro h2 {
    margin-bottom: 14px;
}

.meetings-intro p {
    margin-bottom: 0;
    max-width: 46ch;
}

.meetings-chips {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meetings-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    border: 1px solid #aac8bf;
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
}

.meetings-slider {
    position: relative;
    border-radius: 28px;
    border: 1px solid #bfd7cf;
    padding: 12px;
    background: linear-gradient(152deg, rgba(17, 47, 41, 0.98), rgba(13, 34, 30, 0.96));
    box-shadow: 0 20px 34px rgba(9, 30, 26, 0.24);
    color: #ebf8f4;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.meetings-slider:focus-visible {
    outline: 2px solid #7ad7be;
    outline-offset: 3px;
}

.meetings-slider__viewport {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(217, 241, 233, 0.22);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    touch-action: pan-y;
    width: 100%;
    max-width: 100%;
}

.meetings-slider__track {
    display: flex;
    transition: transform 0.62s cubic-bezier(0.18, 0.7, 0.2, 1);
    will-change: transform;
    width: 100%;
}

.meetings-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 12px;
    opacity: 0.7;
    transition: opacity 0.35s ease;
}

.meetings-slide.is-active {
    opacity: 1;
}

.meetings-slide__frame {
    margin: 0;
    border-radius: 16px;
    border: 1px solid rgba(224, 245, 238, 0.2);
    background: linear-gradient(155deg, rgba(228, 242, 236, 0.16), rgba(17, 35, 32, 0.2));
    overflow: hidden;
    min-height: 460px;
    display: grid;
    place-items: center;
    padding: 10px;
}

.meetings-slide__frame img {
    width: 100%;
    height: 100%;
    max-height: 510px;
    object-fit: contain;
    border-radius: 12px;
    transform: scale(1.03);
    transition: transform 0.7s ease;
}

.meetings-slide.is-active .meetings-slide__frame img {
    transform: scale(1);
}

.meetings-slide__caption {
    margin-top: 12px;
}

.meetings-slide__title {
    margin: 0 0 4px;
    color: #f2fcf8;
    font-weight: 700;
    line-height: 1.35;
}

.meetings-slide__text {
    margin: 0;
    color: rgba(233, 248, 243, 0.84);
    font-size: 0.94rem;
    overflow-wrap: anywhere;
}

.meetings-slider__controls {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.meetings-slider__btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(222, 243, 236, 0.34);
    background: rgba(255, 255, 255, 0.16);
    color: #f4fffb;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.meetings-slider__btn:hover {
    transform: scale(1.07);
    background: rgba(255, 255, 255, 0.26);
}

.meetings-slider__btn:focus-visible {
    outline: 2px solid #8ce4cb;
    outline-offset: 2px;
}

.meetings-slider__footer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.meetings-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.meetings-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(220, 241, 235, 0.46);
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease;
}

.meetings-slider__dot.is-active {
    width: 30px;
    background: #8de1ca;
}

.meetings-slider__counter {
    margin: 0;
    color: rgba(234, 252, 245, 0.92);
    letter-spacing: 0.08em;
    font-family: "Tenor Sans", serif;
    font-size: 0.86rem;
}

.social-float {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    gap: 10px;
}

.social-float__link {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.44);
    box-shadow: 0 16px 26px rgba(67, 42, 21, 0.24);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-float__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 19px 30px rgba(67, 42, 21, 0.29);
}

.social-float__link--tg {
    background: linear-gradient(155deg, rgba(60, 170, 230, 0.95), rgba(31, 126, 194, 0.92));
}

.social-float__link--vk {
    background: linear-gradient(155deg, rgba(82, 132, 225, 0.95), rgba(62, 96, 191, 0.92));
}

.social-float__link--max {
    background: linear-gradient(155deg, rgba(86, 79, 228, 0.95), rgba(139, 65, 227, 0.92));
}

.social-float__icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
}

.social-float__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.social-float__icon--max {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    overflow: hidden;
}

.social-float__icon--max img {
    object-fit: cover;
}

.social-float__label {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translate3d(8px, -50%, 0);
    opacity: 0;
    pointer-events: none;
    background: rgba(16, 38, 34, 0.92);
    color: #edf6f2;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.social-float__link:hover .social-float__label {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
}

.lead-popup {
    position: fixed;
    left: max(20px, env(safe-area-inset-left));
    bottom: max(20px, env(safe-area-inset-bottom));
    width: min(340px, calc(100vw - 120px));
    z-index: 75;
    background: linear-gradient(146deg, rgba(12, 43, 38, 0.97), rgba(22, 69, 61, 0.94));
    border: 1px solid rgba(174, 224, 210, 0.42);
    border-radius: 22px;
    color: #eefaf6;
    box-shadow: 0 24px 38px rgba(7, 22, 19, 0.34);
    padding: 18px 18px 16px;
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.lead-popup.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lead-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(236, 252, 246, 0.18);
    color: #edf8f4;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.lead-popup__close:hover {
    background: rgba(236, 252, 246, 0.3);
}

.lead-popup__eyebrow {
    margin: 0 0 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(205, 243, 232, 0.9);
    font-weight: 700;
}

.lead-popup h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #f2fef9;
}

.lead-popup p {
    color: rgba(227, 247, 240, 0.89);
    margin-bottom: 14px;
}

.lead-popup .btn {
    width: 100%;
}

@keyframes auditCtaGlow {
    0%,
    58%,
    100% {
        box-shadow: 0 14px 28px rgba(15, 143, 120, 0.33);
        transform: translateY(0) scale(1);
    }

    70% {
        box-shadow: 0 0 0 0 rgba(128, 214, 193, 0.52), 0 18px 32px rgba(15, 143, 120, 0.44);
        transform: translateY(-2px) scale(1.035);
    }

    80% {
        box-shadow: 0 0 0 16px rgba(128, 214, 193, 0), 0 22px 34px rgba(15, 143, 120, 0.46);
        transform: translateY(-1px) scale(1.02);
    }
}

@keyframes auditTextNudge {
    0%,
    60%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    66% {
        transform: translate3d(-3px, 0, 0);
    }

    69% {
        transform: translate3d(4px, -1px, 0);
    }

    73% {
        transform: translate3d(-3px, 0, 0);
    }

    78% {
        transform: translate3d(2px, 0, 0);
    }

    83% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes auditCtaRing {
    0%,
    62%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    70% {
        opacity: 0.78;
        transform: scale(1.06);
    }

    82% {
        opacity: 0;
        transform: scale(1.16);
    }
}

@keyframes headerCtaPulse {
    0%,
    72%,
    100% {
        transform: translateY(0);
    }

    78% {
        transform: translateY(-1px) scale(1.02);
    }

    83% {
        transform: translateY(0) scale(0.99);
    }

    88% {
        transform: translateY(-1px) scale(1.015);
    }
}

.footer {
    padding: 32px 0 42px;
    border-top: 1px solid rgba(19, 36, 33, 0.14);
    background: rgba(247, 250, 249, 0.7);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer__title {
    color: var(--text);
    margin-bottom: 3px;
    font-weight: 700;
}

.footer__text {
    margin-bottom: 0;
}

.footer__contacts {
    display: grid;
    gap: 6px;
    text-align: right;
}

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

.admin-page {
    background: linear-gradient(145deg, #edf4f1, #f7faf9);
}

.admin-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
}

.admin-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.admin-header h1 {
    font-size: clamp(1.3rem, 2.1vw, 1.9rem);
    margin: 0 0 4px;
}

.admin-subtitle {
    margin: 0;
    color: var(--muted);
}

.admin-nav {
    display: flex;
    gap: 8px;
    padding-bottom: 14px;
    flex-wrap: wrap;
}

.admin-nav a {
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.admin-nav a.active {
    background: #d6ece6;
    border-color: #b7d7cd;
}

.admin-main {
    padding-top: 30px;
    padding-bottom: 40px;
    display: grid;
    gap: 20px;
}

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

.admin-kpi-card {
    background: #f4fbf8;
    border: 1px solid #d2e7df;
    border-radius: 14px;
    padding: 14px;
}

.admin-kpi-card__label {
    margin: 0 0 6px;
    font-size: 0.82rem;
}

.admin-kpi-card__value {
    margin: 0;
    color: var(--text);
    font-size: 1.6rem;
    font-weight: 700;
}

.admin-section {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.admin-section h2 {
    margin-bottom: 14px;
}

.admin-toolbar {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.admin-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-actions--results {
    justify-content: space-between;
    align-items: center;
}

.admin-empty {
    margin-bottom: 0;
}

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

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

.admin-results-list {
    display: grid;
    gap: 12px;
}

.admin-result-item {
    background: rgba(244, 250, 247, 0.9);
    border: 1px solid #d3e7df;
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 10px;
}

.admin-result-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-result-item__head h3 {
    margin: 0;
}

.admin-result-item__preview {
    width: 100%;
    max-width: 260px;
    height: 96px;
    border: 1px solid #d3e7df;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.admin-result-item__preview img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.admin-result-item__preview--table {
    max-width: none;
    height: 88px;
}

.admin-result-item__preview--table img {
    max-height: 70px;
}

.admin-help {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.admin-table th,
.admin-table td {
    border: 1px solid var(--line);
    padding: 10px 12px;
    vertical-align: top;
}

.admin-table th {
    text-align: left;
    background: #f0f8f5;
}

.admin-table--results td {
    background: rgba(255, 255, 255, 0.75);
}

.admin-result-row__index {
    text-align: center;
    font-weight: 700;
    color: var(--accent-strong);
    font-family: "Tenor Sans", serif;
    vertical-align: middle;
}

.admin-result-row__logo {
    display: grid;
    gap: 8px;
    max-width: 320px;
}

.admin-table--results textarea {
    min-height: 104px;
    resize: vertical;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-login__card {
    width: min(520px, 100%);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 26px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1260px) {
    .bg-side {
        width: clamp(88px, 10vw, 170px);
        opacity: 0.82;
    }

    .lead-popup {
        width: min(330px, calc(100vw - 110px));
    }
}

@media (max-width: 1100px) {
    .results-grid,
    .results-grid--wide,
    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .meetings-showcase {
        grid-template-columns: 1fr;
    }

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

    .admin-grid-3 {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 960px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        padding: 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
    }

    body.menu-open .nav {
        display: flex;
    }

    .header .btn--small {
        display: none;
    }

    .logo__caption {
        display: none;
    }

    .hero__grid,
    .about-preview,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 44px;
    }

    .hero__photo {
        max-width: 520px;
    }

    .hero--home {
        padding: 0;
    }

    .hero--home .hero__grid {
        --hero-padding-top: max(18px, env(safe-area-inset-top));
        --hero-padding-bottom: max(24px, env(safe-area-inset-bottom));
        position: relative;
        display: flex;
        align-items: stretch;
        gap: 0;
        width: 100%;
        margin-inline: 0;
        min-height: calc(100svh - 78px);
        padding: var(--hero-padding-top) 20px var(--hero-padding-bottom);
        overflow: hidden;
    }

    .hero--home .hero__content {
        z-index: 2;
        width: min(560px, 100%);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: calc(100svh - 78px - var(--hero-padding-top) - var(--hero-padding-bottom));
    }

    .hero--home .hero__body {
        margin-top: auto;
        max-width: 520px;
    }

    .hero--home .hero__content .eyebrow,
    .hero--home .hero__content h1,
    .hero--home .hero__content .hero__lead {
        color: #fff;
        text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
    }

    .hero--home .hero__content .eyebrow {
        color: rgba(255, 255, 255, 0.86);
        margin-bottom: 0;
    }

    .hero--home .hero__content h1 {
        font-size: clamp(1.7rem, 7vw, 2.3rem);
        margin-bottom: 10px;
    }

    .hero--home .hero__content .hero__lead {
        font-size: 1rem;
    }

    .hero--home .hero__actions {
        margin-top: 18px;
    }

    .hero--home .hero__actions .btn {
        width: 100%;
    }

    .hero--home .hero__actions .btn--ghost:not(.btn--callback) {
        display: none;
    }

    .social-float {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
    }

    .social-float__link {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .social-float__label {
        display: none;
    }

    .lead-popup {
        left: 12px;
        bottom: 78px;
        width: min(420px, calc(100vw - 84px));
        border-radius: 18px;
        padding: 16px;
    }

    .hero--home .hero__photo {
        position: absolute;
        inset: 0;
        max-width: none;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        z-index: 0;
    }

    .hero--home .hero__photo::after {
        background: linear-gradient(180deg, rgba(6, 12, 11, 0.24) 0%, rgba(6, 12, 11, 0.46) 48%, rgba(6, 12, 11, 0.78) 100%);
    }

    .hero--home .hero__photo img {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }

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

    .advice-grid,
    .insight-grid,
    .direction-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

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

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

    .section--meetings {
        padding-top: 28px;
    }

    .meetings-showcase {
        gap: 14px;
    }

    .meetings-intro {
        border-radius: 18px;
        padding: 18px;
    }

    .meetings-intro::after {
        width: 170px;
        height: 170px;
        right: -72px;
        bottom: -84px;
    }

    .meetings-slider {
        border-radius: 20px;
        padding: 8px;
    }

    .meetings-slider__viewport {
        border-radius: 14px;
    }

    .meetings-slide {
        padding: 6px;
    }

    .meetings-slide__frame {
        min-height: 0;
        aspect-ratio: 4 / 5;
        padding: 6px;
    }

    .meetings-slide__frame--landscape img {
        object-fit: contain;
        object-position: center;
    }

    .meetings-slide__frame img {
        max-height: none;
        object-fit: cover;
        object-position: center;
    }

    .meetings-slide__caption {
        margin-top: 9px;
    }

    .meetings-slider__controls {
        top: auto;
        bottom: 84px;
        transform: none;
        left: 12px;
        right: 12px;
    }

    .meetings-slider__btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .meetings-slider__footer {
        margin-top: 8px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .meetings-slider__counter {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .meetings-slider__dots {
        width: 100%;
        justify-content: center;
        order: 2;
    }

    .results-grid,
    .results-grid--wide {
        grid-template-columns: 1fr;
    }

    .admin-results {
        grid-template-columns: 1fr;
    }

    .admin-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-actions--results {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cta-inline {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer__contacts {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .section--meetings .container {
        width: min(1160px, calc(100% - 24px));
    }

    .meetings-intro {
        padding: 16px;
    }

    .meetings-intro h2 {
        font-size: clamp(1.35rem, 7vw, 1.7rem);
    }

    .meetings-chips {
        margin-top: 14px;
    }

    .meetings-chip {
        padding: 6px 10px;
        font-size: 0.78rem;
    }

    .meetings-slide__frame {
        aspect-ratio: 10 / 13;
        padding: 4px;
        border-radius: 12px;
    }

    .meetings-slide__frame--landscape img {
        object-fit: contain;
        object-position: center;
    }

    .meetings-slide__frame img {
        border-radius: 8px;
    }

    .meetings-slide__title {
        font-size: 0.98rem;
    }

    .meetings-slide__text {
        font-size: 0.88rem;
    }

    .meetings-slider__controls {
        display: none;
    }

    .meetings-slider__dot {
        width: 8px;
        height: 8px;
    }

    .meetings-slider__dot.is-active {
        width: 22px;
    }

    .page-home .main {
        padding-bottom: 150px;
    }

    .social-float {
        gap: 8px;
    }

    .social-float__link {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .social-float__icon {
        width: 24px;
        height: 24px;
    }

    .social-float__icon--max {
        width: 30px;
        height: 30px;
    }

    .lead-popup {
        left: 10px;
        right: 70px;
        width: auto;
        bottom: 10px;
        border-radius: 16px;
        box-shadow: 0 14px 26px rgba(7, 22, 19, 0.3);
    }

    .lead-popup h3 {
        font-size: 1.02rem;
    }
}

@media (max-width: 420px) {
    .meetings-slider {
        border-radius: 16px;
        padding: 6px;
    }

    .meetings-slider__viewport {
        border-radius: 10px;
    }

    .meetings-slide {
        padding: 4px;
    }

    .meetings-slide__title {
        font-size: 0.94rem;
    }

    .meetings-slide__text {
        font-size: 0.84rem;
    }

    .meetings-slider__counter {
        font-size: 0.78rem;
        letter-spacing: 0.03em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .meetings-slider__track,
    .meetings-slide,
    .meetings-slide__frame img,
    .meetings-slider__btn,
    .meetings-slider__dot,
    .btn--attention,
    .btn--attention::after,
    .btn__text--attention,
    .btn--header-attention,
    .social-float__link,
    .lead-popup {
        transition: none;
        animation: none;
    }
}
