:root {
    --ink: #082653;
    --ink-2: #113c72;
    --teal: #00a994;
    --teal-2: #56cdb4;
    --mint: #e7f8f4;
    --paper: #ffffff;
    --line: #d8e3ef;
    --soft: #f5f8fb;
    --text: #17345f;
    --muted: #5e7290;
    --shadow: 0 20px 60px rgba(8, 38, 83, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    background: var(--paper);
    line-height: 1.5;
    overflow-x: hidden;
}

img,
svg {
    display: block;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(20px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.93);
    border-bottom: 1px solid rgba(216, 227, 239, 0.8);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand img {
    width: clamp(190px, 20vw, 250px);
    height: auto;
}

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

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 9px;
    border-radius: 6px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.main-nav a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: var(--mint);
    outline: none;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 92px;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--mint);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero {
    width: 100%;
    max-width: 100vw;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - 132px);
    padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 72px) 38px;
    background:
        linear-gradient(135deg, rgba(231, 248, 244, 0.92), rgba(255, 255, 255, 0.75) 46%, rgba(245, 248, 251, 0.96)),
        radial-gradient(circle at 82% 20%, rgba(0, 169, 148, 0.18), transparent 32%);
}

.hero-content {
    min-width: 0;
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.35rem, 4.3vw, 4.35rem);
    line-height: 1;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.btn-primary {
    color: var(--paper);
    background: linear-gradient(135deg, var(--teal), #0b8f91);
    box-shadow: 0 16px 30px rgba(0, 169, 148, 0.24);
}

.btn-secondary {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--line);
}

.hero-visual {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.hero-visual img,
.carousel-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.hero-carousel {
    position: relative;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--ink);
}

.carousel-slides {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.carousel-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel-slide img {
    height: 100%;
    object-fit: cover;
}

.carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(8, 38, 83, 0.78));
}

.carousel-slide figcaption {
    position: absolute;
    left: 78px;
    right: 78px;
    bottom: 66px;
    z-index: 2;
    color: var(--paper);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 900;
    text-shadow: 0 2px 16px rgba(8, 38, 83, 0.55);
}

.carousel-controls {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-button,
.carousel-dots button {
    pointer-events: auto;
}

.carousel-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: var(--paper);
    background: rgba(8, 38, 83, 0.52);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.carousel-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(8, 38, 83, 0.48);
    backdrop-filter: blur(12px);
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.carousel-dots button.is-active {
    width: 26px;
    background: var(--teal-2);
}

.metrics-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.metrics-strip div {
    padding: 26px clamp(20px, 5vw, 72px);
    background: var(--paper);
}

.metrics-strip strong {
    display: block;
    color: var(--ink);
    font-size: 1.28rem;
}

.metrics-strip span {
    color: var(--muted);
}

.section {
    padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading h2,
.resources-copy h2,
.contact-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3.4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: 0;
}

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

.feature-panel,
.plan-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.feature-panel {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    position: relative;
    overflow: hidden;
}

.feature-panel::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: rgba(0, 169, 148, 0.08);
}

.feature-panel h3,
.journey-step h3,
.plan-card h3,
.evaluation-band h3 {
    margin: 16px 0 8px;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.16;
}

.feature-panel p,
.journey-step p,
.plan-card p,
.resources-copy p,
.contact-copy p,
.evaluation-band p {
    margin: 0;
    color: var(--muted);
}

.panel-icon {
    display: inline-grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border-radius: 22px;
    color: var(--teal);
    background: var(--mint);
    box-shadow: inset 0 0 0 1px rgba(0, 169, 148, 0.14);
}

.feature-trails .panel-icon {
    color: #0b8f91;
    background: #e7f8f4;
}

.feature-access .panel-icon {
    color: #123d72;
    background: #eaf1fb;
}

.feature-communication .panel-icon {
    color: #1d8f74;
    background: #e9f8ef;
}

.feature-video .panel-icon {
    color: #0b5b9f;
    background: #edf6ff;
}

.panel-icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-journey,
.section-plans {
    background: var(--soft);
}

.journey-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
    padding: 6px 0 0;
}

.journey-step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 28px 44px 28px 28px;
    border: 1px solid var(--line);
    border-left: 0;
    background: var(--paper);
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.journey-step:hover,
.journey-step:focus-visible {
    z-index: 4;
    background: var(--mint);
    box-shadow: 0 10px 28px rgba(8, 38, 83, 0.08);
    outline: none;
}

.journey-step.is-active {
    z-index: 4;
    background: var(--mint);
    border-color: #a9e5d7;
    border-bottom-color: var(--mint);
    box-shadow: none;
    outline: none;
}

.journey-step.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: var(--mint);
}

.journey-step.is-active .step-number {
    background: var(--ink);
}

.journey-step:first-child {
    border-left: 1px solid var(--line);
    border-radius: 8px 0 0 8px;
}

.journey-step:last-child {
    border-radius: 0 8px 8px 0;
}

.step-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--paper);
    background: var(--teal);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
}

.journey-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    z-index: 12;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--paper);
    background: var(--teal);
    border: 4px solid var(--mint);
    border-radius: 999px;
    transform: translateY(-50%);
}

.journey-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.journey-details {
    margin-top: -1px;
}

.journey-detail {
    display: none;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(24px, 4vw, 54px);
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid #a9e5d7;
    border-radius: 0 0 8px 8px;
    background: var(--mint);
    box-shadow: 0 18px 46px rgba(8, 38, 83, 0.08);
}

.journey-detail.is-active {
    display: grid;
}

.detail-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--ink);
    background: var(--paper);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.journey-detail h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.7rem, 2.4vw, 2.6rem);
    line-height: 1.08;
}

.journey-detail p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.journey-visual {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 26px;
    padding: 20px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(0, 169, 148, 0.22);
}

.journey-visual-icon {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    border-radius: 24px;
    color: var(--paper);
    background: var(--teal);
}

.journey-visual-report .journey-visual-icon {
    background: var(--ink);
}

.journey-visual-portal .journey-visual-icon {
    background: #0b8f91;
}

.journey-visual-icon svg {
    width: 62px;
    height: 62px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.journey-visual strong {
    display: block;
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.15;
}

.journey-visual p {
    margin-top: 8px;
    font-size: 0.98rem;
}

.journey-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
}

.journey-detail-list > span {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: flex-start;
    column-gap: 12px;
    row-gap: 6px;
    min-height: 0;
    padding: 13px 14px;
    border: 0;
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    font-weight: 800;
}

.journey-item-copy {
    display: contents;
}

.journey-item-copy strong {
    min-width: 0;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.18;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.journey-item-copy small {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.92rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
}

.journey-detail-item svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--teal);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.journey-detail-item-report svg {
    stroke: var(--ink);
}

.journey-detail-item-portal svg {
    stroke: #0b8f91;
}

.format-contract,
.section-contact {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(32px, 5vw, 70px);
    align-items: start;
}

.format-contract {
    margin-top: clamp(42px, 6vw, 78px);
    padding-top: clamp(36px, 5vw, 58px);
    border-top: 1px solid var(--line);
}

.resources-copy p,
.contact-copy p {
    margin-top: 18px;
    max-width: 560px;
}

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

.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    font-weight: 700;
}

.resource-item svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--teal);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.section-experience {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    background:
        linear-gradient(135deg, rgba(231, 248, 244, 0.72), rgba(255, 255, 255, 0.92) 48%, rgba(245, 248, 251, 0.96));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.experience-copy {
    max-width: 760px;
}

.experience-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.experience-copy p:not(.eyebrow) {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.experience-panel {
    position: relative;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 18px 46px rgba(8, 38, 83, 0.1);
    overflow: hidden;
}

.experience-panel::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(0, 169, 148, 0.1);
}

.experience-panel-icon {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 20px;
    color: var(--teal);
    background: var(--mint);
}

.experience-panel-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.experience-panel h3 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 1.45rem;
}

.experience-options {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.experience-options span {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--soft);
    border: 1px solid var(--line);
    font-weight: 900;
}

.experience-options span::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 12px;
    border-radius: 999px;
    background: var(--teal);
    flex: 0 0 auto;
}

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

.plan-card {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.plan-range {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--ink);
    background: var(--mint);
    font-size: 0.86rem;
    font-weight: 900;
}

.plan-price {
    display: block;
    margin: 18px 0 8px;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
}

.plan-price span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.plan-recording {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 9px 10px;
    border-radius: 6px;
    color: #075f4a;
    background: #dff8ef;
    font-size: 0.9rem;
    font-weight: 900;
}

.plan-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: auto;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--paper);
    background: var(--ink);
    font-weight: 900;
    text-align: center;
}

.plan-action:hover,
.plan-action:focus-visible {
    background: var(--teal);
    outline: none;
}

.section-clients {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    background: var(--ink);
    color: var(--paper);
}

.clients-copy {
    max-width: 760px;
}

.clients-copy h2 {
    margin: 0;
    color: var(--paper);
    font-size: clamp(2rem, 3.3vw, 3.65rem);
    line-height: 1.06;
    letter-spacing: 0;
}

.clients-copy p:not(.eyebrow) {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.1rem;
    line-height: 1.65;
}

.clients-carousel {
    position: relative;
    min-height: 500px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.06);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.clients-carousel::before {
    content: "";
    position: absolute;
    right: -58px;
    top: -58px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(0, 169, 148, 0.2);
}

.client-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 18px;
    transition: transform 0.42s ease;
    will-change: transform;
}

.client-card {
    flex: 0 0 100%;
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(8, 38, 83, 0.42);
}

.client-identity {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.client-logo-blur {
    position: relative;
    display: block;
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(118, 234, 210, 0.9), rgba(255, 255, 255, 0.32)),
        repeating-linear-gradient(90deg, transparent 0 8px, rgba(8, 38, 83, 0.28) 8px 12px);
    filter: blur(5px);
    opacity: 0.86;
}

.client-name-blur {
    display: block;
    width: 230px;
    height: 24px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    filter: blur(5px);
}

.client-segment {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 6px;
    color: #052044;
    background: #76ead2;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.client-card p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
    line-height: 1.55;
}

.behind-note {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    padding: 16px;
    border-radius: 8px;
    color: var(--paper);
    background: rgba(0, 169, 148, 0.16);
    border: 1px solid rgba(118, 234, 210, 0.28);
    font-weight: 800;
    line-height: 1.45;
}

.client-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    position: relative;
    z-index: 1;
    margin-top: 16px;
}

.client-trust span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--paper);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 900;
}

.client-trust span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--teal-2);
    flex: 0 0 auto;
}

.client-dots {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 1;
    margin-top: 24px;
}

.client-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.client-dots button.is-active {
    width: 30px;
    background: var(--teal-2);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: var(--ink);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background: var(--paper);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.form-message {
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.form-message-success {
    color: #075f4a;
    background: #dff8ef;
    border: 1px solid #9de4cd;
}

.form-message-error {
    color: #8b1e2d;
    background: #fff0f2;
    border: 1px solid #f0b9c1;
}

.full {
    grid-column: 1 / -1;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 26px clamp(20px, 5vw, 72px);
    color: var(--paper);
    background: var(--ink);
}

.site-footer span {
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1080px) {
    .hero,
    .format-contract,
    .section-contact,
    .section-clients {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        max-width: 820px;
    }

    .journey-track,
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .journey-step,
    .journey-step:first-child,
    .journey-step:last-child {
        border: 1px solid var(--line);
        border-radius: 8px;
    }

    .journey-arrow {
        right: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(50%) rotate(90deg);
    }

    .journey-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        justify-content: flex-start;
        gap: 12px;
        padding: 13px 14px;
        font-size: 1rem;
    }

    .main-nav a svg {
        width: 22px;
        height: 22px;
        color: var(--teal);
    }

    .brand img {
        width: 184px;
    }

    .hero {
        padding-top: 42px;
        overflow: hidden;
    }

    .hero-content,
    .hero-visual {
        width: 100%;
        max-width: calc(100vw - 40px);
    }

    .carousel-slide figcaption {
        left: 22px;
        right: 22px;
        bottom: 68px;
        font-size: 0.98rem;
    }

    h1 {
        font-size: clamp(2.05rem, 10vw, 2.85rem);
        line-height: 1.06;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .eyebrow {
        font-size: 0.76rem;
        letter-spacing: 0.09em;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .metrics-strip,
    .solution-grid,
    .journey-track,
    .section-experience,
    .section-clients,
    .plans-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .clients-carousel {
        min-height: 500px;
    }

    .client-slide {
        min-height: 245px;
    }

    .journey-track {
        gap: 28px;
    }

    .journey-detail-list {
        grid-template-columns: 1fr;
    }

    .journey-visual {
        grid-template-columns: 1fr;
    }

    .journey-visual-icon {
        width: 82px;
        height: 82px;
    }

    .contact-form {
        padding: 18px;
    }

    .section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .format-contract,
    .section-contact {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 430px) {
    .brand img {
        width: 178px;
    }

    .btn {
        width: 100%;
    }
}
