@font-face {
    font-family: "Samim";
    src: url("../fonts/Samim.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

.avayeto-page .avayeto-rich-text > :first-child {
    margin-top: 0;
}

.avayeto-page .avayeto-rich-text > :last-child {
    margin-bottom: 0;
}

.avayeto-page .avayeto-rich-text a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@font-face {
    font-family: "Samim";
    src: url("../fonts/Samim-Medium.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Samim";
    src: url("../fonts/Samim-Bold.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

:root {
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #050607;
    color: #f4f4f2;
    font-family: "Samim", Tahoma, Arial, sans-serif;
}

.avayeto-page {
    --page-bg: #050607;
    --surface: #0b0c0e;
    --surface-soft: #111316;
    --line: rgba(255, 255, 255, 0.1);
    --muted: #92979f;
    --orange: #ff5b19;
    --blue: #4e8cff;
    position: relative;
    min-height: 100vh;
    overflow: clip;
    background-color: var(--page-bg);
}

.avayeto-page::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    opacity: 0.22;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 44%);
}

.avayeto-page a {
    color: inherit;
    text-decoration: none;
}

.avayeto-page button,
.avayeto-page a {
    -webkit-tap-highlight-color: transparent;
}

.avayeto-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    width: 100%;
    min-height: 82px;
    margin: 0 auto;
    padding-inline: max(20px, calc((100vw - 1180px) / 2));
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 7, 0.72);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.avayeto-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.avayeto-brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 91, 25, 0.55);
    border-radius: 13px;
    background: #13100f;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
}

.avayeto-brand > span:last-child {
    display: grid;
    gap: 2px;
}

.avayeto-brand strong {
    font-size: 14px;
}

.avayeto-brand small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 2px;
}

.avayeto-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #b8bbc0;
    font-size: 12px;
}

.avayeto-nav a {
    transition: color 220ms ease;
}

.avayeto-nav a:hover,
.avayeto-nav a:focus-visible {
    color: #fff;
}

.avayeto-button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff7942;
    border-radius: 11px;
    background: var(--orange);
    box-shadow: 0 12px 36px rgba(255, 91, 25, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.avayeto-button:hover,
.avayeto-button:focus-visible {
    transform: translateY(-2px);
    background-color: #ff6b30;
    box-shadow: 0 16px 46px rgba(255, 91, 25, 0.3);
}

.avayeto-button--small {
    min-height: 38px;
    padding-inline: 18px;
    border-radius: 9px;
    font-size: 11px;
}

.avayeto-hero {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(1180px, calc(100% - 40px));
    min-height: 720px;
    margin: 0 auto;
    padding: 84px 0 70px;
    grid-template-columns: 0.83fr 1.17fr;
    align-items: center;
    gap: 58px;
}

.avayeto-hero::after {
    position: absolute;
    top: -280px;
    right: 45%;
    z-index: -1;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 84, 18, 0.12);
    filter: blur(85px);
    content: "";
}

.avayeto-kicker {
    display: inline-flex;
    margin-bottom: 22px;
    align-items: center;
    gap: 9px;
    color: #c0c3c8;
    font-size: 11px;
}

.avayeto-kicker span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 18px var(--orange);
}

.avayeto-hero h1 {
    margin: 0;
    font-size: clamp(42px, 5.1vw, 70px);
    font-weight: 500;
    letter-spacing: -3.4px;
    line-height: 1.2;
}

.avayeto-hero h1 em {
    display: block;
    color: #a8abb0;
    font-style: normal;
}

.avayeto-hero__copy > p {
    max-width: 610px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
}

.avayeto-hero__actions {
    display: flex;
    margin-top: 34px;
    align-items: center;
    gap: 24px;
}

.avayeto-link-button {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    color: #d6d7da;
    font-size: 12px;
}

.avayeto-hero__stats {
    display: grid;
    max-width: 530px;
    margin: 55px 0 0;
    grid-template-columns: repeat(3, 1fr);
}

.avayeto-hero__stats div {
    padding: 0 20px;
    border-right: 1px solid var(--line);
}

.avayeto-hero__stats div:first-child {
    padding-right: 0;
    border-right: 0;
}

.avayeto-hero__stats dt {
    margin-bottom: 7px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.avayeto-hero__stats dd {
    margin: 0;
    color: #777d85;
    font-size: 10px;
}

.avayeto-hero__visual {
    position: relative;
    min-width: 0;
    perspective: 1100px;
}

.avayeto-order-shell {
    position: relative;
    z-index: 3;
    overflow: hidden;
    min-height: 490px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(8, 9, 11, 0.96);
    box-shadow: -30px 45px 90px rgba(0, 0, 0, 0.56), 0 0 80px rgba(78, 140, 255, 0.08);
    transform: rotateY(-5deg) rotateX(1deg);
    transform-origin: center right;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.avayeto-hero__visual:hover .avayeto-order-shell {
    transform: rotateY(0) rotateX(0) translateY(-4px);
}

.avayeto-order-shell__topbar {
    display: flex;
    height: 54px;
    padding: 0 18px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    color: #c9ccd1;
    font-size: 10px;
}

.avayeto-order-shell__topbar > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avayeto-order-shell__topbar small {
    color: #626872;
}

.avayeto-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ed483;
    box-shadow: 0 0 12px rgba(78, 212, 131, 0.7);
}

.avayeto-order-shell__body {
    display: grid;
    min-height: 436px;
    grid-template-columns: 120px minmax(0, 1fr);
}

.avayeto-order-nav {
    display: grid;
    padding: 15px 11px;
    align-content: start;
    gap: 5px;
    border-left: 1px solid var(--line);
    background: #090a0c;
}

.avayeto-order-nav button {
    display: flex;
    width: 100%;
    min-height: 45px;
    padding: 0 10px;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: #676d75;
    font-family: inherit;
    font-size: 9px;
    text-align: right;
    cursor: pointer;
    transition: color 320ms ease, background-color 320ms ease, border-color 320ms ease;
}

.avayeto-order-nav button span {
    font-family: Arial, sans-serif;
    font-size: 8px;
}

.avayeto-order-nav button.is-active {
    border-color: rgba(255, 91, 25, 0.22);
    background: rgba(255, 91, 25, 0.08);
    color: #f5f5f5;
}

.avayeto-order-stage {
    display: flex;
    min-width: 0;
    padding: 24px;
    flex-direction: column;
}

.avayeto-order-stage__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.avayeto-order-eyebrow,
.avayeto-order-total small {
    color: #676d75;
    font-size: 8px;
}

.avayeto-order-title {
    margin: 7px 0 0;
    font-size: 17px;
    font-weight: 500;
}

.avayeto-order-total {
    display: grid;
    gap: 5px;
    text-align: left;
}

.avayeto-order-total strong {
    color: #fff;
    font-size: 11px;
}

.avayeto-order-content {
    display: grid;
    margin-top: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 10px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.avayeto-order-content:has(.avayeto-order-success) {
    display: block;
    margin-top: 8px;
}

.avayeto-order-content.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

.avayeto-demo-card {
    display: grid;
    min-height: 86px;
    padding: 13px;
    align-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #0e1013;
}

.avayeto-demo-card.is-selected {
    border-color: rgba(255, 91, 25, 0.6);
    background: #16110f;
}

.avayeto-demo-card small,
.avayeto-demo-row small {
    color: #747a82;
    font-size: 8px;
}

.avayeto-demo-card strong,
.avayeto-demo-row strong {
    font-size: 10px;
    font-weight: 600;
}

.avayeto-demo-card span {
    color: var(--orange);
    font-size: 8px;
}

.avayeto-demo-row {
    display: flex;
    min-height: 48px;
    padding: 0 12px;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #0d0f11;
}

.avayeto-demo-row > div {
    display: grid;
    gap: 4px;
}

.avayeto-demo-row > span {
    padding: 5px 7px;
    border-radius: 5px;
    background: rgba(78, 140, 255, 0.1);
    color: #7ea8ff;
    font-size: 7px;
}

.avayeto-order-footer {
    display: flex;
    margin-top: auto;
    padding-top: 18px;
    align-items: center;
    gap: 15px;
}

.avayeto-order-footer.is-hidden {
    display: none;
}

.avayeto-order-success {
    display: flex;
    min-height: 310px;
    padding: 12px 20px 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.avayeto-order-success__celebration {
    position: relative;
    display: grid;
    width: 115px;
    height: 105px;
    margin-bottom: 8px;
    place-items: center;
}

.avayeto-order-success__celebration span {
    position: relative;
    z-index: 2;
    font-size: 50px;
    animation: avayetoCelebrate 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.avayeto-order-success__celebration i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 12px;
    border-radius: 2px;
    background: var(--orange);
    opacity: 0;
    animation: avayetoConfetti 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.avayeto-order-success__celebration i:nth-child(2n) {
    background: var(--blue);
}

.avayeto-order-success__celebration i:nth-child(3n) {
    background: #f2c94c;
}

.avayeto-order-success__celebration i:nth-child(1) { --confetti-x: -52px; --confetti-y: -48px; --confetti-r: -85deg; }
.avayeto-order-success__celebration i:nth-child(2) { --confetti-x: -25px; --confetti-y: -63px; --confetti-r: 45deg; }
.avayeto-order-success__celebration i:nth-child(3) { --confetti-x: 8px; --confetti-y: -66px; --confetti-r: 110deg; }
.avayeto-order-success__celebration i:nth-child(4) { --confetti-x: 45px; --confetti-y: -52px; --confetti-r: 160deg; }
.avayeto-order-success__celebration i:nth-child(5) { --confetti-x: 62px; --confetti-y: -18px; --confetti-r: 230deg; }
.avayeto-order-success__celebration i:nth-child(6) { --confetti-x: 52px; --confetti-y: 23px; --confetti-r: 300deg; }
.avayeto-order-success__celebration i:nth-child(7) { --confetti-x: 24px; --confetti-y: 49px; --confetti-r: 360deg; }
.avayeto-order-success__celebration i:nth-child(8) { --confetti-x: -12px; --confetti-y: 52px; --confetti-r: 420deg; }
.avayeto-order-success__celebration i:nth-child(9) { --confetti-x: -48px; --confetti-y: 35px; --confetti-r: 500deg; }
.avayeto-order-success__celebration i:nth-child(10) { --confetti-x: -65px; --confetti-y: 2px; --confetti-r: 570deg; }
.avayeto-order-success__celebration i:nth-child(11) { --confetti-x: -38px; --confetti-y: -25px; --confetti-r: 640deg; }
.avayeto-order-success__celebration i:nth-child(12) { --confetti-x: 35px; --confetti-y: -24px; --confetti-r: 710deg; }

.avayeto-order-success > strong {
    font-size: 17px;
    font-weight: 700;
}

.avayeto-order-success > p {
    max-width: 310px;
    margin: 10px auto 18px;
    color: #777d85;
    font-size: 9px;
    line-height: 1.9;
}

.avayeto-new-order-button {
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(255, 91, 25, 0.62);
    border-radius: 8px;
    background: rgba(255, 91, 25, 0.1);
    color: #ff7b45;
    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.avayeto-new-order-button:hover,
.avayeto-new-order-button:focus-visible {
    color: #fff;
    background: var(--orange);
    transform: translateY(-2px);
}

.avayeto-order-footer button {
    min-width: 74px;
    min-height: 34px;
    border: 0;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-family: inherit;
    font-size: 9px;
}

.avayeto-order-progress {
    overflow: hidden;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}

.avayeto-order-progress span {
    display: block;
    width: 16.66%;
    height: 100%;
    border-radius: inherit;
    background: var(--orange);
    transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.avayeto-float-card {
    position: absolute;
    z-index: 5;
    display: grid;
    width: 180px;
    padding: 14px;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 11px;
    background: rgba(15, 17, 20, 0.94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
    animation: avayetoFloat 5s ease-in-out infinite;
}

.avayeto-float-card small,
.avayeto-float-card span {
    color: #737981;
    font-size: 8px;
}

.avayeto-float-card strong {
    font-size: 10px;
}

.avayeto-float-card--top {
    top: -35px;
    left: -34px;
}

.avayeto-float-card--bottom {
    right: -36px;
    bottom: -30px;
    animation-delay: -2.5s;
}

.avayeto-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.avayeto-orbit--one {
    inset: -60px 35px;
}

.avayeto-orbit--two {
    inset: -18px -60px;
}

.avayeto-media-strip {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 90px;
    padding: 0 max(30px, calc((100vw - 1180px) / 2));
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-block: 1px solid var(--line);
    background: #08090a;
    color: #9da1a8;
    font-size: 11px;
}

.avayeto-media-strip span {
    color: #565b62;
}

.avayeto-section {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 130px 0;
}

.avayeto-section__heading {
    display: flex;
    margin-bottom: 55px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.avayeto-section__heading > div {
    max-width: 710px;
}

.avayeto-section__number {
    display: block;
    margin-bottom: 15px;
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 11px;
}

.avayeto-section__heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.35;
}

.avayeto-section__heading > p {
    max-width: 370px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 2;
}

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

.avayeto-service-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 30px 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
}

.avayeto-service-card:nth-child(-n + 4) {
    min-height: 320px;
}

.avayeto-service-card--wide {
    grid-column: 1 / -1;
}

.avayeto-service-card__index {
    position: absolute;
    top: 22px;
    left: 24px;
    color: #3f444b;
    font-family: Arial, sans-serif;
    font-size: 11px;
}

.avayeto-service-card > span,
.avayeto-profile-copy > span {
    color: var(--orange);
    font-size: 10px;
}

.avayeto-service-card h3 {
    max-width: 580px;
    margin: 13px 0 11px;
    font-size: 21px;
    font-weight: 500;
}

.avayeto-service-card > p,
.avayeto-profile-copy p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 2;
}

.avayeto-service-card__meta {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: #747a82;
    font-size: 9px;
}

.avayeto-slider-preview {
    display: flex;
    min-height: 122px;
    margin-top: 35px;
    padding: 20px;
    align-items: flex-end;
    border: 1px solid rgba(255, 91, 25, 0.22);
    border-radius: 13px;
    background-color: #17100d;
    box-shadow: inset 0 0 70px rgba(255, 91, 25, 0.08);
}

.avayeto-slider-preview div {
    display: grid;
    gap: 7px;
}

.avayeto-slider-preview small,
.avayeto-slider-preview span {
    color: #8b756b;
    font-size: 8px;
}

.avayeto-slider-preview strong {
    font-size: 16px;
}

.avayeto-mini-list,
.avayeto-verified {
    display: flex;
    min-height: 76px;
    margin-top: 40px;
    padding: 13px;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #0f1114;
}

.avayeto-mini-list i {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #302019;
}

.avayeto-mini-list > div,
.avayeto-verified > div {
    display: grid;
    gap: 5px;
}

.avayeto-mini-list strong,
.avayeto-verified strong {
    font-size: 11px;
}

.avayeto-mini-list small,
.avayeto-verified small {
    color: #696f77;
    font-size: 8px;
}

.avayeto-mini-list b {
    margin-right: auto;
    padding: 5px 8px;
    border-radius: 5px;
    background: rgba(255, 91, 25, 0.1);
    color: var(--orange);
    font-size: 8px;
}

.avayeto-wave {
    display: flex;
    height: 80px;
    margin-top: 32px;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.avayeto-wave i {
    width: 5px;
    height: 18px;
    border-radius: 4px;
    background: var(--orange);
    animation: avayetoWave 1.3s ease-in-out infinite;
}

.avayeto-wave i:nth-child(2),
.avayeto-wave i:nth-child(7) {
    animation-delay: -0.2s;
}

.avayeto-wave i:nth-child(3),
.avayeto-wave i:nth-child(6) {
    animation-delay: -0.4s;
}

.avayeto-wave i:nth-child(4),
.avayeto-wave i:nth-child(5) {
    animation-delay: -0.6s;
}

.avayeto-verified > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: #2677ff;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.avayeto-service-card--profile {
    display: grid;
    min-height: 420px;
    padding: 55px;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 75px;
}

.avayeto-profile-copy ul {
    display: grid;
    margin: 25px 0 0;
    padding: 0;
    gap: 12px;
    list-style: none;
    color: #c0c4ca;
    font-size: 10px;
}

.avayeto-profile-copy li::before {
    margin-left: 8px;
    color: var(--orange);
    content: "—";
}

.avayeto-search-preview {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #0e1013;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.avayeto-search-preview__bar {
    margin-bottom: 25px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    color: #686e76;
    font-size: 9px;
}

.avayeto-search-preview > small {
    color: #4f9b70;
    font-size: 8px;
}

.avayeto-search-preview > strong {
    display: block;
    margin: 10px 0;
    color: #75a7ff;
    font-size: 14px;
}

.avayeto-search-preview > p {
    margin: 0;
    color: #747a82;
    font-size: 9px;
    line-height: 1.8;
}

.avayeto-process {
    width: 100%;
    padding-inline: max(20px, calc((100vw - 1180px) / 2));
    border-block: 1px solid var(--line);
    background: #090a0c;
}

.avayeto-section__heading--center {
    align-items: center;
}

.avayeto-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.avayeto-process__grid article {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0d0f11;
    transition: border-color 900ms ease, background-color 900ms ease, transform 900ms ease;
}

.avayeto-process__grid article.is-active {
    border-color: rgba(255, 91, 25, 0.72);
    background: #17110e;
    transform: translateY(-6px);
}

.avayeto-process__grid span {
    color: #51565d;
    font-family: Arial, sans-serif;
    font-size: 10px;
}

.avayeto-process__grid h3 {
    margin: 70px 0 12px;
    font-size: 17px;
    font-weight: 500;
}

.avayeto-process__grid p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

.avayeto-testimonials {
    width: 100%;
    padding-inline: max(20px, calc((100vw - 1180px) / 2));
    border-block: 1px solid var(--line);
    background: #090a0c;
}

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

.avayeto-testimonials__grid article {
    min-height: 285px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #0e1012;
}

.avayeto-testimonials__rating {
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
}

.avayeto-testimonials blockquote {
    margin: 55px 0 36px;
    color: #d6d8dc;
    font-size: 13px;
    line-height: 2;
}

.avayeto-testimonials footer {
    display: grid;
    gap: 4px;
}

.avayeto-testimonials footer strong {
    font-size: 11px;
}

.avayeto-testimonials footer span {
    color: #6f747c;
    font-size: 9px;
}

.avayeto-cta {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(1180px, calc(100% - 40px));
    min-height: 330px;
    margin: 120px auto 0;
    padding: 65px;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    overflow: hidden;
    border: 1px solid rgba(255, 91, 25, 0.35);
    border-radius: 20px;
    background: #130d0b;
}

.avayeto-cta::before,
.avayeto-cta::after {
    position: absolute;
    width: 380px;
    height: 1px;
    background: rgba(255, 91, 25, 0.45);
    content: "";
}

.avayeto-cta::before {
    top: 50%;
    left: -110px;
    transform: rotate(28deg);
}

.avayeto-cta::after {
    right: -110px;
    bottom: 30%;
    transform: rotate(-28deg);
}

.avayeto-cta > * {
    position: relative;
    z-index: 2;
}

.avayeto-cta span {
    color: var(--orange);
    font-size: 10px;
}

.avayeto-cta h2 {
    margin: 14px 0 12px;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 500;
    letter-spacing: -3px;
}

.avayeto-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.avayeto-faq {
    max-width: 920px;
}

.avayeto-help-button {
    display: inline-flex;
    min-height: 46px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 91, 25, 0.55);
    border-radius: 10px;
    background: rgba(255, 91, 25, 0.08);
    color: #ff7a44;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.avayeto-help-button:hover,
.avayeto-help-button:focus-visible {
    color: #fff;
    background: var(--orange);
    transform: translateY(-2px);
}

.avayeto-faq__list {
    display: grid;
    gap: 8px;
}

.avayeto-faq__list article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.avayeto-faq__list button {
    display: flex;
    width: 100%;
    min-height: 70px;
    padding: 0 24px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: #e9eaec;
    font-family: inherit;
    font-size: 12px;
    text-align: right;
    cursor: pointer;
}

.avayeto-faq__list button span {
    color: var(--orange);
    font-size: 18px;
}

.avayeto-faq__list article > div {
    display: none;
    padding: 0 24px 24px;
    color: var(--muted);
    font-size: 11px;
    line-height: 2;
}

.avayeto-faq__list article:first-child > div {
    display: block;
}

.avayeto-seo-content {
    border-top: 1px solid var(--line);
}

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

.avayeto-seo-content__grid article {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0b0d0f;
}

.avayeto-seo-content__grid h3 {
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
}

.avayeto-seo-content__grid p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 2.25;
}

.avayeto-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    padding: 20px;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 280ms, opacity 280ms ease;
}

.avayeto-contact-modal.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.avayeto-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
}

.avayeto-contact-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 470px);
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #0d0f11;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.avayeto-contact-modal.is-open .avayeto-contact-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.avayeto-contact-modal__close {
    position: absolute;
    top: 15px;
    left: 15px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #121417;
    color: #9da2a9;
    font-family: Arial, sans-serif;
    font-size: 22px;
    cursor: pointer;
}

.avayeto-contact-modal__intro > span {
    color: var(--orange);
    font-size: 10px;
}

.avayeto-contact-modal__intro h2 {
    margin: 12px 0 9px;
    font-size: 28px;
    font-weight: 500;
}

.avayeto-contact-modal__intro p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.9;
}

.avayeto-contact-form {
    display: grid;
    margin-top: 28px;
    gap: 9px;
}

.avayeto-contact-form label {
    margin-top: 7px;
    color: #c9ccd1;
    font-size: 10px;
}

.avayeto-contact-form input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: 0;
    background: #111316;
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.avayeto-contact-form input::placeholder {
    color: #565c64;
}

.avayeto-contact-form input:focus {
    border-color: rgba(255, 91, 25, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 91, 25, 0.09);
}

.avayeto-contact-form input.is-invalid {
    border-color: #e55b5b;
}

.avayeto-contact-form__error {
    min-height: 15px;
    color: #ee7474;
    font-size: 9px;
}

.avayeto-contact-form__server-error {
    min-height: 16px;
    color: #ee7474;
    font-size: 9px;
    line-height: 1.7;
}

.avayeto-contact-form button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.avayeto-faq__list article > div p {
    margin: 0;
}

.avayeto-contact-form .avayeto-button {
    width: 100%;
    margin-top: 10px;
    font-family: inherit;
    cursor: pointer;
}

.avayeto-contact-success {
    display: none;
    padding: 35px 0 5px;
    text-align: center;
}

.avayeto-contact-success strong {
    display: block;
    font-size: 24px;
}

.avayeto-contact-success p {
    margin: 12px 0 24px;
    color: var(--muted);
    font-size: 11px;
}

.avayeto-contact-success button {
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #15171a;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
}

.avayeto-page.has-contact-modal {
    touch-action: none;
}

.avayeto-footer {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(1180px, calc(100% - 40px));
    min-height: 150px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid var(--line);
    color: #6c7179;
    font-size: 10px;
}

.avayeto-footer p {
    margin: 0;
}

.avayeto-footer > a {
    color: #b6bac0;
}

@keyframes avayetoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes avayetoWave {
    0%, 100% { height: 16px; opacity: 0.45; }
    50% { height: 58px; opacity: 1; }
}

@keyframes avayetoCelebrate {
    0% { opacity: 0; transform: scale(0.35) rotate(-18deg); }
    62% { opacity: 1; transform: scale(1.18) rotate(6deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes avayetoConfetti {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.2) rotate(0); }
    20% { opacity: 1; }
    100% { opacity: 0; transform: translate(calc(-50% + var(--confetti-x)), calc(-50% + var(--confetti-y))) scale(1) rotate(var(--confetti-r)); }
}

@media (max-width: 1050px) {
    .avayeto-hero {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .avayeto-hero__copy {
        max-width: 720px;
    }

    .avayeto-hero__visual {
        width: min(760px, 92%);
        margin: 60px auto 30px;
    }

    .avayeto-service-card--profile {
        gap: 35px;
    }

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

    .avayeto-testimonials__grid,
    .avayeto-seo-content__grid {
        grid-template-columns: 1fr;
    }

    .avayeto-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .avayeto-header {
        padding-inline: 14px;
    }

    .avayeto-nav {
        display: none;
    }

    .avayeto-hero,
    .avayeto-section,
    .avayeto-cta,
    .avayeto-footer {
        width: min(100% - 28px, 1180px);
    }

    .avayeto-hero {
        min-height: auto;
        padding: 60px 0 50px;
    }

    .avayeto-hero h1 {
        letter-spacing: -2px;
    }

    .avayeto-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .avayeto-link-button {
        align-self: flex-start;
    }

    .avayeto-hero__stats div {
        padding-inline: 10px;
    }

    .avayeto-hero__stats dt {
        font-size: 16px;
    }

    .avayeto-hero__visual {
        width: 100%;
        margin-top: 60px;
    }

    .avayeto-order-shell {
        min-height: 520px;
        transform: none;
    }

    .avayeto-order-shell__body {
        min-height: 465px;
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .avayeto-order-nav {
        padding-inline: 6px;
    }

    .avayeto-order-nav button {
        justify-content: center;
        font-size: 0;
    }

    .avayeto-order-nav button span {
        font-size: 8px;
    }

    .avayeto-order-stage {
        padding: 18px 14px;
    }

    .avayeto-order-content {
        grid-template-columns: 1fr;
    }

    .avayeto-demo-card {
        min-height: 62px;
    }

    .avayeto-float-card {
        width: 145px;
    }

    .avayeto-float-card--top {
        top: -38px;
        left: -5px;
    }

    .avayeto-float-card--bottom {
        right: -5px;
    }

    .avayeto-media-strip {
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap;
    }

    .avayeto-section {
        padding: 90px 0;
    }

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

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

    .avayeto-testimonials {
        width: 100%;
        padding-inline: 14px;
    }

    .avayeto-service-card--wide {
        grid-column: auto;
    }

    .avayeto-service-card--profile {
        padding: 34px;
        grid-template-columns: 1fr;
    }

    .avayeto-process {
        width: 100%;
        padding-inline: 14px;
    }

    .avayeto-process__grid {
        grid-template-columns: 1fr;
    }

    .avayeto-process__grid article {
        min-height: 175px;
    }

    .avayeto-process__grid h3 {
        margin-top: 40px;
    }

    .avayeto-cta {
        padding: 44px 28px;
        align-items: flex-start;
        flex-direction: column;
    }

    .avayeto-footer {
        padding: 40px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .avayeto-contact-modal__dialog {
        padding: 34px 22px 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .avayeto-page *,
    .avayeto-page *::before,
    .avayeto-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
