* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f5f2eb;
    --surface: #ffffff;
    --surface-muted: #ece5d8;
    --ink: #101a2a;
    --ink-soft: #44506a;
    --line: #d5cbb9;
    --brand: #b18a58;
    --brand-dark: #8f6b3f;
    --deep: #1d2a40;
    --radius: 16px;
    --container: 1160px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.58;
}

.container {
    width: min(var(--container), 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 242, 235, 0.96);
    backdrop-filter: blur(8px);
}

.nav-wrap {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--deep);
}

.logo-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
}

.logo-title {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--deep);
}

.logo-subtitle {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.logo-mark {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    background: var(--surface);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.93rem;
}

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

main section {
    padding: 70px 0;
}

main > section.hero {
    padding: 36px 0 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.38fr 0.62fr;
    gap: 20px;
    align-items: start;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.hero-photo {
    position: relative;
    width: 100%;
    max-width: 300px;
    justify-self: end;
    min-height: 220px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(140deg, #26354f 0%, #111a2b 100%);
    color: #f9f2e6;
    overflow: hidden;
    align-self: start;
}

.hero-photo-media {
    display: grid;
    grid-template: "stack";
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 400px;
    min-height: 240px;
    overflow: hidden;
    background: #111a2b;
}

.hero-photo-media > .hero-photo-image,
.hero-photo-media > .hero-video-inline:not(:fullscreen):not(:-webkit-full-screen),
.hero-photo-media > .hero-video-fallback {
    grid-area: stack;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    justify-self: stretch;
    align-self: stretch;
}

.hero-photo-media > .hero-photo-image,
.hero-photo-media > .hero-video-inline:not(:fullscreen):not(:-webkit-full-screen):not(.is-fullscreen) {
    object-fit: cover;
    object-position: center 18%;
}

.hero-photo-image {
    display: block;
}

.hero-photo-media > .hero-video-inline {
    background: #111a2b;
}

.hero-video-inline.is-hidden,
.hero-video-fallback.is-hidden {
    display: none !important;
}

.hero-photo.is-playing .hero-photo-image {
    display: none;
}

.hero-photo.is-playing .hero-video-inline:not(.is-hidden) {
    display: block;
    z-index: 1;
}

/* Полный экран: весь кадр целиком (contain), без обрезки по высоте */
.hero-video-inline.is-fullscreen,
.hero-video-inline:fullscreen,
.hero-video-inline:-webkit-full-screen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    min-width: 0;
    min-height: 0;
    margin: 0;
    object-fit: contain;
    object-position: center center;
    background: #000;
}

.hero-video-fallback {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 16px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #f9f2e6;
    background: rgba(17, 26, 43, 0.92);
}

.hero-photo-toolbar {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-photo-toolbar[hidden] {
    display: none;
}

.hero-photo-tool-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(17, 26, 43, 0.72);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    line-height: 1;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.hero-photo-tool-btn:hover {
    background: rgba(17, 26, 43, 0.9);
}

.hero-play-btn .hero-pause-icon.is-hidden,
.hero-play-btn .hero-play-icon.is-hidden {
    display: none;
}

.hero-photo-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-photo-wave {
    display: block;
    width: 100%;
    height: clamp(22px, 4vw, 32px);
    flex-shrink: 0;
}

.hero-video-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px 16px;
    background: var(--bg);
    color: var(--deep);
}

.hero-video-strip-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hero-video-strip-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--deep);
}

.hero-video-strip-note {
    font-size: 0.78rem;
    color: var(--ink-soft);
}

.hero-play-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.15s;
}

.hero-play-btn:hover {
    background: var(--brand-dark);
    transform: scale(1.05);
}

.hero-more {
    margin-top: 14px;
    margin-bottom: 0;
}

.kicker {
    color: var(--brand-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.kicker-sub {
    margin: 6px 0 16px;
    font-size: clamp(0.88rem, 1.6vw, 0.98rem);
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    line-height: 1.45;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 10px 0 16px;
}

h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    margin-bottom: 14px;
}

h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.lead,
.text {
    color: var(--ink-soft);
}

#expertise .text {
    max-width: 920px;
    margin-bottom: 18px;
}

#expertise .grid-3 .card {
    display: flex;
    flex-direction: column;
}

#expertise .grid-3 .link-btn {
    margin-top: auto;
    padding-top: 12px;
}

.link-btn {
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.link-btn:hover {
    color: var(--deep);
}

.more-link {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.more-link:hover {
    color: var(--deep);
}

.text-center {
    text-align: center;
}

.about-hero {
    padding-bottom: 48px;
}

.about-hero .mega-slogan {
    margin: 0 auto 20px;
    max-width: 920px;
}

.mega-slogan {
    font-size: clamp(1.65rem, 4.2vw, 2.75rem);
    font-weight: 700;
    color: var(--deep);
    line-height: 1.25;
}

.mega-slogan .highlight {
    color: var(--brand-dark);
}

.about-hero-lead {
    max-width: 720px;
    margin: 0 auto;
}

.quote-block {
    position: relative;
    overflow: hidden;
    margin: 0 0 28px;
    padding: 28px 28px 24px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius);
    background: var(--surface);
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    color: #34405a;
    line-height: 1.52;
}

.quote-block::before {
    content: "“";
    position: absolute;
    top: -22px;
    left: 8px;
    font-size: clamp(6rem, 10vw, 9rem);
    line-height: 1;
    font-weight: 700;
    color: rgba(177, 138, 88, 0.15);
    pointer-events: none;
}

.quote-block > * {
    position: relative;
    z-index: 1;
}

.archetype-section .roles-grid {
    margin-top: 8px;
}

.alt-card h3 {
    color: var(--deep);
}

.container-narrow {
    width: min(720px, 92vw);
    margin: 0 auto;
}

.steps-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.steps-list li {
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    border-left: 4px solid var(--brand);
}

.philosophy-split {
    align-items: start;
}

@media (min-width: 981px) {
    .philosophy-split {
        align-items: center;
    }
}

.philosophy-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

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

.about-split {
    align-items: center;
    gap: 28px;
}

.about-split-reverse .about-copy {
    order: 2;
}

.about-split-reverse .about-media {
    order: 1;
}

.about-media {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

.about-media-compact {
    max-width: 360px;
    justify-self: center;
}

.about-media-soft {
    position: relative;
}

.about-media-soft::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(245, 242, 235, 0.2);
    pointer-events: none;
}

.about-media-soft img {
    filter: saturate(88%) contrast(92%) brightness(0.98);
}

.text.emphasis {
    color: var(--deep);
    font-weight: 600;
}

.academy-story-section {
    padding: 4rem 0;
    background-color: #fcfbf9;
}

.highlight-box {
    border-left: 4px solid #d4af37;
    padding-left: 2rem;
}

.highlight-box .text + .text {
    margin-top: 10px;
}

.center-actions {
    justify-content: center;
}

.press-section {
    background-color: #f7f7f7;
    padding: 3rem 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.press-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    flex-wrap: wrap;
}

.press-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 52px;
    padding: 8px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    transition: border-color 0.2s, transform 0.2s;
}

.press-link-label {
    font-size: 1rem;
    font-weight: 600;
    color: #6f7484;
    opacity: 0.78;
    transition: color 0.25s, opacity 0.25s;
}

.press-link img {
    max-height: 38px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.72;
    transition: filter 0.25s, opacity 0.25s;
}

.press-link:hover {
    border-color: var(--brand);
    transform: translateY(-1px);
}

.press-link:hover .press-link-label {
    color: var(--deep);
    opacity: 1;
}

.press-link:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.media-logos-grid {
    margin-top: 20px;
    justify-content: flex-start;
}

.media-list-section .text {
    max-width: 900px;
}

.media-list {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.media-item {
    padding: 16px 18px;
}

.media-item .text {
    margin: 0;
}

.media-item a {
    color: var(--deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.media-item a:hover {
    color: var(--brand-dark);
}

.corporate-media .text {
    max-width: 760px;
}

.corporate-press-logos {
    margin-top: 18px;
    justify-content: flex-start;
}

.course-intro-text {
    margin-bottom: 2rem;
}

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

.metric-card {
    text-align: center;
}

.metric-value {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(1.7rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #d4af37;
}

.target-audience {
    background-color: #fcfbf9;
    padding: 4rem 0;
}

.target-audience-title {
    text-align: center;
}

.target-audience-grid {
    margin-top: 2rem;
}

.people-intro-head {
    max-width: 44em;
    margin-bottom: 28px;
}

.people-intro .target-audience-grid {
    margin-top: 0;
}

.people-intro-actions {
    margin-top: 28px;
}

.program-intro {
    margin-bottom: 2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    border-left: 4px solid #d4af37;
}

.timeline-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.review-slider {
    margin-top: 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.review-track {
    position: relative;
}

.review-card {
    display: none;
}

.review-card.active {
    display: block;
}

.review-author {
    margin-top: 14px;
    color: var(--deep);
    font-weight: 600;
}

.review-card .tag {
    display: inline-block;
    margin-bottom: 12px;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--deep);
    font-size: 1.2rem;
    cursor: pointer;
}

.slider-arrow:hover {
    border-color: var(--brand);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

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

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 26, 42, 0.62);
}

.modal-dialog {
    position: relative;
    width: min(760px, 92vw);
    max-height: 84vh;
    margin: 8vh auto;
    overflow: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.modal-list {
    margin-top: 14px;
    padding-left: 22px;
    display: grid;
    gap: 10px;
    color: var(--ink-soft);
}

.breadcrumbs {
    padding-top: 18px;
    padding-bottom: 0;
}

.breadcrumbs .text {
    color: #5f6780;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: inherit;
}

.breadcrumbs .current {
    color: var(--deep);
}

main > .breadcrumbs + .hero {
    padding-top: 18px;
    padding-bottom: 28px;
}

main > .breadcrumbs + .hero + section {
    padding-top: 26px;
}

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

.btn {
    display: inline-block;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 11px 16px;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.btn.ghost {
    background: var(--surface);
    color: var(--brand-dark);
}

.btn.ghost:hover {
    background: var(--surface-muted);
    border-color: var(--brand-dark);
    color: var(--deep);
}

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

.formats-grid-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 920px;
}

.people-formats-intro {
    max-width: 44em;
    margin-bottom: 28px;
}

.people-formats-intro .lead {
    margin-bottom: 14px;
}

.people-formats-free {
    margin: 0;
    padding: 12px 16px;
    background: var(--surface);
    border-left: 3px solid var(--brand);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--ink);
}

.people-format-grid {
    align-items: stretch;
}

.people-format-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.people-format-body {
    flex: 1 1 auto;
}

.people-format-date {
    margin: 8px 0 4px;
}

.people-format-foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.people-format-foot .people-format-price {
    margin: 0;
    text-align: center;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
}

.people-format-foot .actions {
    margin-top: 0;
}

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

.people-format-actions .btn,
.people-format-program-link,
.people-format-foot .people-program-details > summary {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.people-format-program-link {
    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
}

.people-format-card .people-program-details {
    margin: 0;
    flex: none;
}

.people-program-details {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    overflow: hidden;
}

.people-program-details > summary {
    cursor: pointer;
    padding: 11px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    list-style: none;
    text-align: center;
}

.people-program-details > summary::-webkit-details-marker {
    display: none;
}

.people-program-details > summary::after,
.people-format-program-link::after {
    content: " →";
    font-weight: 400;
}

.people-program-details[open] {
    border-radius: 12px;
    background: var(--bg);
}

.people-program-details[open] > summary {
    border-bottom: 1px solid var(--line);
    background: var(--surface-muted);
    border-radius: 0;
}

.people-program-details[open] > summary::after {
    content: "";
}

.people-program-details-body {
    padding: 14px;
}

.people-program-details-body .text {
    font-size: 0.92rem;
}

.people-program-details-body .accordion {
    margin-top: 12px;
}

.people-format-card .accordion-button {
    font-size: 0.88rem;
    padding: 12px 14px;
}

.people-format-card .accordion-body {
    font-size: 0.9rem;
}

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

.badge-list,
.bullet-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.badge-list li {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    border-radius: 10px;
    padding: 12px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.price {
    color: var(--brand-dark);
    font-weight: 700;
    margin: 10px 0 16px;
}

.tariffs-section .grid-3 .card {
    display: flex;
    flex-direction: column;
}

.tariffs-section .grid-3 .price {
    margin-top: auto;
}

.tariffs-section .grid-3 .card > .btn {
    align-self: flex-start;
}

.tag {
    display: inline-block;
    margin-bottom: 8px;
    border-radius: 999px;
    padding: 4px 8px;
    background: var(--surface-muted);
    color: var(--deep);
    font-size: 0.78rem;
}

.accordion {
    display: grid;
    gap: 10px;
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.accordion-button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
}

.accordion-body {
    display: none;
    padding: 0 14px 14px;
    color: var(--ink-soft);
}

.accordion-item.open .accordion-body {
    display: block;
}

.cta-band {
    background: linear-gradient(130deg, #202f47 0%, #152237 100%);
    color: #f7f2e9;
}

.cta-band .text {
    color: #d5deea;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 26px;
}

.cta-copy {
    max-width: 700px;
}

.cta-form {
    margin-top: 14px;
    display: grid;
    gap: 12px;
    max-width: 620px;
}

.form-field {
    display: grid;
    gap: 6px;
}

.is-hidden {
    display: none;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-field > span,
.form-fieldset legend {
    font-weight: 600;
    color: #f7f2e9;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.09);
    color: #f7f2e9;
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid rgba(212, 175, 55, 0.55);
    outline-offset: 1px;
}

.form-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    margin: 0;
    padding: 10px 12px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
}

.form-fieldset label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d5deea;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #d5deea;
    font-size: 0.95rem;
}

.form-consent a {
    color: #f5e6b0;
    text-decoration: underline;
}

.cta-form .btn {
    justify-self: start;
}

.form-status {
    margin: 2px 0 0;
    min-height: 1.2em;
    font-size: 0.95rem;
    color: #d5deea;
    border-radius: 10px;
    padding: 0;
    border: 0;
    transition: background-color 0.2s, border-color 0.2s, padding 0.2s;
}

.form-status.is-success {
    color: #dff6e7;
    background: rgba(87, 186, 126, 0.22);
    border: 1px solid rgba(185, 239, 199, 0.45);
    padding: 10px 12px;
}

.form-status.is-error {
    color: #ffe3e3;
    background: rgba(230, 104, 104, 0.2);
    border: 1px solid rgba(255, 180, 180, 0.45);
    padding: 10px 12px;
}

.cta-logo {
    display: block;
    width: min(340px, 34vw);
    height: auto;
    margin: 0;
    object-fit: contain;
    opacity: 0.98;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #ede6d8;
    padding: 26px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--ink-soft);
}

.footer-links a {
    color: inherit;
}

.footer-meta {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #5f6780;
}

@media (max-width: 980px) {
    .hero-grid,
    .split,
    .grid-3,
    .formats-grid-duo {
        grid-template-columns: 1fr;
    }

    .formats-grid-duo {
        max-width: none;
    }

    .about-split-reverse .about-copy,
    .about-split-reverse .about-media {
        order: initial;
    }

    .about-media-compact {
        max-width: 100%;
    }

    .cta-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cta-logo {
        width: min(260px, 58vw);
        justify-self: start;
    }

    .form-fieldset {
        flex-direction: column;
        gap: 8px;
    }

    .hero-photo {
        max-width: none;
        justify-self: stretch;
    }

    .review-slider {
        grid-template-columns: 1fr;
    }

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

    .press-link {
        min-width: 110px;
    }

    .slider-arrow {
        width: 100%;
        border-radius: 12px;
        height: 40px;
    }

    main > .breadcrumbs + .hero {
        padding-top: 12px;
        padding-bottom: 18px;
    }

    main > .breadcrumbs + .hero + section {
        padding-top: 18px;
    }
}

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

    .main-nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 12px 4vw 16px;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .logo-title {
        font-size: 0.82rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

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

    .press-logos,
    .media-logos-grid,
    .corporate-press-logos {
        justify-content: center;
        gap: 1rem;
    }
}
