@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap");

:root {
    --ae-primary: #ff7a00;
    --ae-primary-dark: #f05b00;
    --ae-soft: #ffead3;
    --ae-ink: #212529;
    --ae-blue: #0e1f51;
    --ae-muted: #6b7280;
    --ae-muted-dark: #4b5563;
    --ae-line: #f0f1f3;
    --ae-surface: #f9fafb;
    --ae-card-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    --ae-soft-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    --ae-radius: 6px;
    --ae-container: 1200px;
    --ae-gutter: 24px;
    --ae-section-pad: 56px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    font-family: "Prompt", system-ui, sans-serif;
    color: var(--ae-ink);
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--ae-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.wrap {
    width: 100%;
    max-width: var(--ae-container);
    margin-inline: auto;
    padding-inline: var(--ae-gutter);
}

.topbar .layout-wrap,
.nav .layout-wrap,
.footer-main .layout-wrap,
.footer-bottom .layout-wrap {
    width: 100%;
    max-width: var(--ae-container);
    margin-inline: auto;
    padding-inline: var(--ae-gutter);
}

.section {
    padding-block: var(--ae-section-pad);
}

.section--feature-strip {
    padding-block: 32px;
}

.heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.heading--left {
    align-items: flex-start;
}

.heading__kicker {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    color: var(--ae-ink);
}

.heading__kicker--orange {
    color: var(--ae-primary);
}

.heading__bar {
    width: 80px;
    height: 6px;
    background: var(--ae-primary);
    border-radius: 999px;
}

.sub-title {
    max-width: 760px;
    margin: 12px auto 0;
    color: #191c1d;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.sec-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.see-all {
    color: var(--ae-primary);
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.see-all:hover {
    color: var(--ae-primary-dark);
}

.btn,
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--ae-radius);
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary,
.btn-hero,
.btn--more {
    background: var(--ae-primary);
    color: #fff;
}

.btn--primary {
    min-height: 44px;
    padding-inline: 22px;
    font-size: 14px;
    font-weight: 700;
}

.nav .btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-inline: 22px;
    border: 0;
    border-radius: var(--ae-radius);
    background: var(--ae-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.btn-hero {
    min-height: 44px;
    padding-inline: 24px;
    font-size: 14px;
}

.btn--more {
    min-height: 40px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 500;
    align-self: center;
    margin-top: 4px;
}

.btn--primary:hover,
.btn-hero:hover,
.btn--more:hover {
    background: var(--ae-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 122, 0, 0.28);
}

.nav .btn--primary:hover {
    background: var(--ae-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 122, 0, 0.28);
}

.dots-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}

.dots-deco[hidden] {
    display: none;
}

.dots-deco button,
.dots-deco i {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffd9b8;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dots-deco button.is-active,
.dots-deco i:first-child {
    width: 26px;
    border-radius: 6px;
    background: var(--ae-primary);
}

.dots-deco button:hover,
.dots-deco button:focus-visible {
    transform: translateY(-1px);
}

.dots-deco button:focus-visible {
    outline: 3px solid rgba(255, 122, 0, 0.28);
    outline-offset: 3px;
}

.topbar {
    background: var(--ae-ink);
    color: #f6f6f7;
    font-size: 14px;
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 44px;
    padding-block: 0;
    flex-wrap: wrap;
}

.topbar__left,
.topbar__right,
.topbar__item,
.topbar__langs {
    display: flex;
    align-items: center;
}

.topbar__left {
    gap: 18px;
    flex-wrap: wrap;
}

.topbar__right {
    gap: 14px;
}

.topbar__item {
    gap: 7px;
}

.topbar i {
    font-size: 18px;
    color: var(--ae-primary);
}

.topbar__langs {
    gap: 6px;
    color: #fff;
    font-weight: 600;
}

.topbar__langs a:hover {
    color: var(--ae-primary);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    background: var(--ae-soft);
    color: var(--ae-primary-dark);
    font-size: 14px;
    font-weight: 400;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-contact i {
    font-size: 18px;
    color: var(--ae-primary-dark);
}

.btn-contact:hover {
    background: #fff2e5;
    transform: none;
    box-shadow: none;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.site-nav.nav {
    display: block;
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

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

.nav .layout-wrap {
    padding-block: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand__logo {
    width: 50px;
    height: 50px;
    border-radius: var(--ae-radius);
    object-fit: contain;
    transition: transform 0.25s ease;
}

.brand:hover .brand__logo {
    transform: scale(1.06);
}

.brand__name {
    max-width: 230px;
    color: var(--ae-ink);
    font-size: 15px;
    font-weight: 500;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.nav__menu a {
    position: relative;
    color: var(--ae-blue);
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--ae-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav__menu a:hover,
.nav__menu a[aria-current="page"] {
    color: var(--ae-primary);
}

.nav__menu a:hover::after {
    transform: scaleX(1);
}

.burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--ae-ink);
    font-size: 28px;
}

.burger__bars {
    display: none;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

.hero {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero__blob {
    display: none;
}

.hero .wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 500px;
    padding-block: 50px;
}

.hero__text {
    flex: 1;
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
}

.hero__badge i {
    color: var(--ae-primary);
    font-size: 20px;
}

.hero__text h1 {
    margin: 0 0 18px;
    color: #1f2937;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.hero__sub {
    margin: 0 0 26px;
    color: #51320e;
    font-size: 17px;
    line-height: 1.6;
}

.hero__media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero__media img {
    width: 100%;
    max-width: 480px;
}

.feat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 28px 24px;
    border: 1px solid var(--ae-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.15);
}

.feat {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    opacity: 0;
    transform: translateY(14px);
}

.feat__ico {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--ae-primary);
    color: #fff;
    font-size: 26px;
    transition: transform 0.3s ease;
}

.feat:hover .feat__ico {
    transform: scale(1.08) rotate(-5deg);
}

.feat__title {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
}

.feat__sub {
    color: #000;
    font-size: 12px;
}

@keyframes feat-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feat-strip.is-visible .feat {
    animation: feat-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.feat-strip.is-visible .feat:nth-child(1) {
    animation-delay: 0.1s;
}

.feat-strip.is-visible .feat:nth-child(2) {
    animation-delay: 0.22s;
}

.feat-strip.is-visible .feat:nth-child(3) {
    animation-delay: 0.34s;
}

.feat-strip.is-visible .feat:nth-child(4) {
    animation-delay: 0.46s;
}

.about,
.why {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about__media,
.why__media,
.about__body,
.why__text {
    flex: 1;
}

.about__media,
.why__media {
    display: flex;
    justify-content: center;
}

.about__media img,
.why__media img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--ae-radius);
    object-fit: cover;
}

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

.about__body h2,
.why__text h2 {
    margin: 0;
    color: #191c1d;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.about__body p,
.why__lead {
    margin: 0;
    color: var(--ae-muted-dark);
    font-size: 14px;
    line-height: 1.9;
}

.stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 380px;
    margin-top: 14px;
    padding-inline: 4px;
}

.stepper::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 3px;
    background: var(--ae-primary);
}

.step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.step__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 3px solid var(--ae-primary);
    border-radius: 50%;
    background: #fff;
    color: var(--ae-primary);
    font-size: 26px;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.step:hover .step__circle {
    background: var(--ae-primary);
    color: #fff;
    transform: translateY(-3px);
}

.step span {
    color: #000;
    font-size: 16px;
}

.carousel {
    margin-top: 30px;
    --hp-slide-width: min(68vw, 470px);
    --hp-slide-height: min(34vw, 235px);
}

.carousel__viewport {
    position: relative;
    overflow: visible;
    min-height: 280px;
    padding-block: 12px;
    perspective: 1200px;
}

.carousel__track {
    position: relative;
    width: 100%;
    max-width: 980px;
    height: 260px;
    margin-inline: auto;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--hp-slide-width);
    height: var(--hp-slide-height);
    min-height: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.5);
    transform-origin: center;
    transition:
        transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity, filter;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.slide.is-active {
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    cursor: default;
    filter: none;
    transform: translate(-50%, -50%) translateX(0) scale(1);
}

.slide.is-prev {
    z-index: 4;
    opacity: 0.68;
    pointer-events: auto;
    cursor: pointer;
    filter: saturate(0.75) brightness(1.04);
    transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * -0.72)) scale(0.78);
}

.slide.is-next {
    z-index: 4;
    opacity: 0.68;
    pointer-events: auto;
    cursor: pointer;
    filter: saturate(0.75) brightness(1.04);
    transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * 0.72)) scale(0.78);
}

.slide.is-far-prev {
    z-index: 3;
    opacity: 0.4;
    pointer-events: auto;
    cursor: pointer;
    filter: grayscale(0.12) saturate(0.65) brightness(1.08);
    transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * -1.12)) scale(0.58);
}

.slide.is-far-next {
    z-index: 3;
    opacity: 0.4;
    pointer-events: auto;
    cursor: pointer;
    filter: grayscale(0.12) saturate(0.65) brightness(1.08);
    transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * 1.12)) scale(0.58);
}

.slide.is-hidden-left {
    transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * -1.45)) scale(0.48);
}

.slide.is-hidden-right {
    transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * 1.45)) scale(0.48);
}

.slide.is-active:hover img {
    transform: scale(1.04);
}

.slide__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 46px 22px 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 16, 35, 0.78));
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.slide.is-active:hover .slide__caption,
.slide.is-active:focus-within .slide__caption {
    opacity: 1;
    transform: translateY(0);
}

.slide__caption h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.slide__caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--ae-ink);
    font-size: 30px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.carousel__arrow:hover {
    color: var(--ae-primary);
    transform: scale(1.12);
}

.carousel__dots {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
}

.carousel__dots button,
.carousel__dots i {
    appearance: none;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ae-primary);
    font-size: 0;
    line-height: 0;
    opacity: 0.4;
    transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.carousel__dots button.is-active,
.carousel__dots i.is-active {
    width: 16px;
    height: 16px;
    opacity: 1;
}

.carousel.is-single .carousel__nav {
    display: none;
}

.carousel.is-animating .slide.is-active {
    animation: hp-carousel-card-pop 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel.is-animating .slide.is-active img {
    animation: hp-carousel-image-settle 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes hp-carousel-card-pop {
    0% {
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    }

    55% {
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.24);
    }

    100% {
        box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
    }
}

@keyframes hp-carousel-image-settle {
    0% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.why__text .heading__bar {
    margin: 8px 0 14px;
}

.why__lead {
    margin-bottom: 20px;
}

.why__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.why-item__ico {
    flex: 0 0 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    border-radius: 24px;
    background: var(--ae-primary);
    color: #fff;
    font-size: 27px;
    transition: transform 0.3s ease;
}

.why-item:hover .why-item__ico {
    transform: scale(1.08) rotate(5deg);
}

.why-item__title {
    color: #1f2937;
    font-size: 17px;
}

.why-item__sub {
    color: var(--ae-muted);
    font-size: 13px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.card-grid.card-rail {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    padding: 4px 2px 18px;
    scroll-behavior: smooth;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.card-grid.card-rail::-webkit-scrollbar {
    display: none;
}

.card-grid.card-rail .pcard {
    flex: 0 0 calc((100% - 40px) / 2.75);
    scroll-snap-align: start;
}

.pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    border-radius: var(--ae-radius);
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.pcard__link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.pcard__top {
    height: 280px;
    overflow: hidden;
    background: var(--ae-surface);
}

.pcard__top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pcard:hover .pcard__top img {
    transform: scale(1.04);
}

.pcard__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px 18px;
}

.pcard__body h3 {
    margin: 0;
    color: #26292c;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.pcard__desc {
    display: -webkit-box;
    flex: 1;
    margin: 0;
    overflow: hidden;
    color: #26292c;
    font-size: 15px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.pcard .btn--more {
    position: relative;
    z-index: 3;
}

.pcard--team .pcard__top {
    height: 360px;
}

.pcard--team .pcard__body {
    align-items: center;
    text-align: center;
}

.pcard--team .role {
    color: var(--ae-primary);
    font-size: 16px;
    font-weight: 500;
}

.pcard--news .date {
    color: var(--ae-primary);
    font-size: 16px;
    font-weight: 500;
}

.pcard--news h3 {
    font-size: 19px;
}

.section--join-us {
    background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 55%, #eef6ff 100%);
}

.join-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px 32px;
}

.join-cta .heading {
    grid-column: 1 / -1;
}

.join-cta__content {
    max-width: 760px;
}

.join-cta__content h3 {
    margin: 0;
    color: #191c1d;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.join-cta__content p {
    margin: 10px 0 0;
    color: var(--ae-muted-dark);
    font-size: 15px;
    line-height: 1.8;
}

.join-cta .btn--primary {
    min-width: 160px;
}

.btn--ghost {
    min-height: 44px;
    padding-inline: 22px;
    border: 1px solid var(--ae-line);
    background: #fff;
    color: var(--ae-blue);
    font-size: 14px;
    font-weight: 700;
}

.btn--ghost:hover {
    border-color: var(--ae-primary);
    color: var(--ae-primary);
    transform: translateY(-2px);
    box-shadow: var(--ae-soft-shadow);
}

.page-main {
    background: #fff;
}

.page-hero {
    border-bottom: 1px solid var(--ae-line);
    background: #f8fafc;
}

.page-hero__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: center;
    gap: 44px;
    min-height: 390px;
    padding-block: 56px;
}

.page-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 680px;
}

.page-hero__content h1 {
    margin: 0 0 16px;
    color: #1f2937;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.18;
}

.page-hero__content p:not(.hero__badge) {
    margin: 0;
    color: var(--ae-muted-dark);
    font-size: 18px;
    line-height: 1.8;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.page-hero__media {
    display: flex;
    justify-content: center;
}

.page-hero__media img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    border-radius: var(--ae-radius);
    object-fit: cover;
}

.page-hero--about .page-hero__media img {
    border-radius: 0;
    background: transparent;
    object-fit: contain;
}

.page-hero--services .page-hero__media img {
    object-fit: contain;
}

.page-section {
    background: #fff;
}

.about-page {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 48px;
}

.about-page__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--ae-radius);
    object-fit: cover;
}

.about-page__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-page__body h2 {
    margin: 0;
    color: #191c1d;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.35;
}

.about-page__body p {
    margin: 0;
    color: var(--ae-muted-dark);
    font-size: 16px;
    line-height: 1.9;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.about-value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 138px;
    padding: 20px;
    border: 1px solid var(--ae-line);
    border-radius: var(--ae-radius);
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.about-value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: var(--ae-radius);
    background: var(--ae-primary);
    color: #fff;
    font-size: 24px;
}

.about-value-card h3 {
    margin: 0;
    color: var(--ae-blue);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--ae-line);
    border-radius: var(--ae-radius);
    background: #fff;
    box-shadow: var(--ae-card-shadow);
}

.service-detail-card__media {
    min-height: 260px;
    background: var(--ae-surface);
}

.service-detail-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.service-detail-card__count {
    color: var(--ae-primary);
    font-size: 14px;
    font-weight: 700;
}

.service-detail-card h3 {
    margin: 0;
    color: #191c1d;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
}

.service-detail-card p {
    margin: 0;
    color: var(--ae-muted-dark);
    font-size: 15px;
    line-height: 1.8;
}

.section--partners {
    padding-block: 44px 52px;
}

.section--partners .heading {
    gap: 4px;
}

.section--partners .heading__kicker {
    font-size: 12px;
    line-height: 1.4;
}

.section--partners .heading__bar {
    display: none;
}

.sub-title--partners {
    max-width: 760px;
    margin-top: 6px;
    color: #1f2933;
    font-size: 16px;
    line-height: 1.5;
}

.partners-carousel {
    margin-top: 22px;
}

.partners-viewport {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    overflow: hidden;
}

.partners-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.partners-page {
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 42px;
    min-height: 72px;
}

.partner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 64px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 0.25s ease;
}

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

.partner img {
    max-width: 84px;
    max-height: 58px;
    object-fit: contain;
}

.partners-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.partners-dots button {
    appearance: none;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9d9d9;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.partners-dots button.is-active {
    background: var(--ae-primary);
    transform: scale(1.08);
}

.footer-main {
    background: var(--ae-surface);
}

.footer-main .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-block: 48px;
}

.fcol {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fcol--about {
    flex: 1.4;
    min-width: 300px;
}

.fcol--contact,
.fcol--map {
    flex: 1;
    min-width: 240px;
}

.fcol__logo {
    width: 75px;
    height: 75px;
    border-radius: 4px;
    object-fit: contain;
}

.fcol h4 {
    margin: 0;
    color: var(--ae-blue);
    font-size: 16px;
    font-weight: 600;
}

.fcol p,
.fline {
    margin: 0;
    color: var(--ae-ink);
    font-size: 14px;
    line-height: 1.6;
}

.fline {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 8px;
}

.fline i {
    flex: 0 0 22px;
    color: var(--ae-ink);
    font-size: 22px;
}

.fcol--map img {
    width: 250px;
    max-width: 100%;
    border-radius: var(--ae-radius);
    object-fit: cover;
}

.footer-bottom {
    background: var(--ae-primary);
}

.footer-bottom .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 81px;
    color: #fff;
    flex-wrap: wrap;
}

.socials {
    display: flex;
    gap: 8px;
}

.soc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--ae-radius);
    background: #fff;
    color: var(--ae-primary);
    font-size: 18px;
    transition: transform 0.2s ease;
}

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

.copyright {
    flex: 1;
    min-width: 200px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.powered {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .nav__menu {
        gap: 12px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .feat-strip,
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-grid.card-rail .pcard {
        flex-basis: calc((100% - 20px) / 2);
    }

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

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

@media (max-width: 860px) {
    .nav__menu {
        display: none;
    }

    .nav .wrap {
        position: relative;
        gap: 12px;
    }

    .brand {
        min-width: 0;
    }

    .brand__name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav__right {
        flex: 0 0 auto;
        gap: 10px;
    }

    .burger {
        display: flex !important;
        position: static !important;
        flex: 0 0 44px;
        z-index: 4;
        border: 1px solid var(--ae-line);
        border-radius: var(--ae-radius);
        background: #fff;
        color: #1f2937;
        transform: none;
    }

    .burger__bars {
        display: block !important;
    }

    .burger i {
        display: none !important;
    }

    .nav__menu.is-open {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 24px 20px;
        background: #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .hero .wrap {
        flex-direction: column;
        text-align: center;
    }

    .hero__text {
        max-width: none;
    }

    .hero__badge {
        justify-content: center;
    }

    .page-hero__wrap,
    .about-page {
        grid-template-columns: 1fr;
    }

    .page-hero__content {
        align-items: center;
        max-width: none;
        text-align: center;
    }

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

    .page-hero__media,
    .about-page__media {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .page-hero__media img,
    .about-page__media img {
        max-width: 100%;
    }

    .about-page__media {
        order: -1;
    }

    .about,
    .why {
        flex-direction: column;
    }

    .about__media,
    .why__media {
        order: -1;
    }

    .carousel {
        --hp-slide-width: min(78vw, 430px);
        --hp-slide-height: 230px;
    }

    .carousel__viewport {
        min-height: 262px;
    }

    .carousel__track {
        height: 242px;
    }

    .slide.is-prev {
        opacity: 0.48;
        transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * -0.58)) scale(0.72);
    }

    .slide.is-next {
        opacity: 0.48;
        transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * 0.58)) scale(0.72);
    }

    .slide.is-far-prev,
    .slide.is-far-next {
        opacity: 0.18;
    }

    .partners-viewport {
        max-width: 620px;
    }

    .partners-page {
        gap: 18px;
    }
}

@media (max-width: 680px) {
    :root {
        --ae-gutter: 20px;
        --ae-section-pad: 44px;
    }

    .topbar .wrap {
        justify-content: center;
    }

    .topbar__left {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        font-size: 12px;
    }

    .topbar__item {
        max-width: 100%;
        justify-content: center;
    }

    .topbar__item span {
        max-width: 100%;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .topbar__right {
        width: 100%;
        justify-content: center;
    }

    .nav .wrap {
        min-height: 72px;
    }

    .nav__menu.is-open {
        top: 100%;
    }

    .brand__name {
        max-width: 170px;
        font-size: 14px;
    }

    .nav .btn--primary {
        display: none;
    }

    .join-cta {
        grid-template-columns: 1fr;
    }

    .join-cta .btn--primary {
        display: inline-flex;
        width: fit-content;
    }

    .hero .wrap {
        min-height: auto;
        padding-block: 44px;
    }

    .hero__text h1 {
        font-size: 26px;
    }

    .page-hero__wrap {
        min-height: auto;
        padding-block: 44px;
    }

    .page-hero__content h1 {
        font-size: 30px;
    }

    .page-hero__content p:not(.hero__badge) {
        font-size: 15px;
    }

    .about-page__body h2 {
        font-size: 23px;
    }

    .hero__sub,
    .sub-title {
        font-size: 16px;
    }

    .feat-strip,
    .why__items,
    .card-grid,
    .about-value-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.card-rail {
        gap: 16px;
        padding-inline: 0;
    }

    .card-grid.card-rail .pcard {
        flex-basis: min(86vw, 360px);
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-detail-card__media {
        height: 220px;
        min-height: 0;
    }

    .feat {
        align-items: flex-start;
    }

    .stepper {
        max-width: 320px;
    }

    .carousel {
        --hp-slide-width: min(86vw, 360px);
        --hp-slide-height: 190px;
    }

    .carousel__viewport {
        min-height: 224px;
    }

    .carousel__track {
        height: 205px;
    }

    .slide {
        border-radius: 18px;
    }

    .slide.is-prev {
        transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * -0.46)) scale(0.68);
    }

    .slide.is-next {
        transform: translate(-50%, -50%) translateX(calc(var(--hp-slide-width) * 0.46)) scale(0.68);
    }

    .slide.is-far-prev,
    .slide.is-far-next {
        opacity: 0;
        pointer-events: none;
    }

    .slide__caption {
        display: none;
    }

    .section--partners {
        padding-block: 36px 44px;
    }

    .sub-title--partners {
        font-size: 14px;
    }

    .partners-viewport {
        max-width: 360px;
    }

    .partners-page {
        row-gap: 16px;
        min-height: 150px;
    }

    .sec-head-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .pcard__top {
        height: 240px;
    }

    .pcard--team .pcard__top {
        height: 320px;
    }

    .footer-bottom .wrap {
        justify-content: center;
        padding-block: 16px;
        text-align: center;
    }

    .powered {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .reveal,
    .feat {
        opacity: 1;
        transform: none;
    }

    .feat-strip.is-visible .feat {
        animation: none;
    }

    .carousel__track {
        transition: none !important;
    }

    .carousel.is-animating .slide.is-active,
    .carousel.is-animating .slide.is-active img {
        animation: none !important;
    }

    .btn--primary:hover,
    .btn-hero:hover,
    .btn--ghost:hover,
    .btn--more:hover,
    .btn-contact:hover,
    .brand:hover .brand__logo,
    .feat:hover .feat__ico,
    .step:hover .step__circle,
    .slide:hover img,
    .carousel__arrow:hover,
    .why-item:hover .why-item__ico,
    .pcard:hover,
    .pcard:hover .pcard__top img,
    .partner:hover,
    .soc:hover {
        transform: none !important;
    }
}
