:root {
    --ay-ink: #17131f;
    --ay-ink-soft: #3d3548;
    --ay-paper: #f7f4ef;
    --ay-paper-deep: #ebe6df;
    --ay-brand: #5b45b8;
    --ay-brand-deep: #3b2e8c;
    --ay-line: rgba(23, 19, 31, 0.1);
    --ay-white: #ffffff;
    --ay-font-display: "Fraunces", Georgia, serif;
    --ay-font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body.ay-site {
    margin: 0;
    color: var(--ay-ink);
    background: var(--ay-paper);
    font-family: var(--ay-font-body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.ay-container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

/* Navbar */
.ay-nav {
    position: absolute;
    inset-inline: 0;
    top: 0;
    z-index: 30;
    padding: 1.1rem 0;
    transition: background 0.25s ease, backdrop 0.25s ease, padding 0.25s ease;
}

.ay-nav.is-scrolled {
    position: fixed;
    background: rgba(23, 19, 31, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ay-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ay-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ay-white);
}

.ay-nav__logo,
.ay-nav__brand img {
    height: 52px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: block;
}

.ay-nav__brand-text {
    font-family: var(--ay-font-display);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.ay-nav__toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--ay-white);
    border-radius: 0.55rem;
    padding: 0.45rem 0.7rem;
    cursor: pointer;
}

.ay-nav__links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ay-nav__links a,
.ay-nav__links button {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.95rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.ay-nav__links a:hover,
.ay-nav__links button:hover {
    background: rgba(255, 255, 255, 0.12);
}

.ay-nav__cta {
    background: var(--ay-white) !important;
    color: var(--ay-brand-deep) !important;
}

.ay-nav__cta:hover {
    background: #f3f0ff !important;
}

/* Hero */
.ay-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: block;
    color: var(--ay-white);
    overflow: hidden;
    background: #17131f;
}

.ay-hero__slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ay-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.ay-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.ay-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ay-hero__media img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover !important;
    object-position: center center;
    display: block;
    transform: scale(1.08);
    transform-origin: center center;
}

/* Crop empty left panel often present in AI hero art */
.ay-hero__media--focus-right img {
    object-position: 78% center;
    transform: scale(1.18);
    transform-origin: 70% center;
}

.ay-hero__media--focus-center img {
    object-position: center 30%;
    transform: scale(1.1);
}

.ay-hero__slide.is-active .ay-hero__media img {
    animation: ay-hero-pan 28s ease-in-out infinite alternate;
}

.ay-hero__slide.is-active .ay-hero__media--focus-right img {
    animation-name: ay-hero-pan-right;
}

.ay-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(15, 11, 24, 0.38) 0%,
            rgba(15, 11, 24, 0.18) 40%,
            rgba(15, 11, 24, 0.72) 100%
        ),
        linear-gradient(
            90deg,
            rgba(15, 11, 24, 0.55) 0%,
            rgba(15, 11, 24, 0.28) 28%,
            rgba(15, 11, 24, 0.08) 55%,
            transparent 75%
        );
}

.ay-hero__content {
    position: relative;
    z-index: 2;
    width: min(640px, calc(100% - 2rem));
    margin: 0;
    margin-inline-start: max(1rem, calc((100% - min(1120px, calc(100% - 2rem))) / 2));
    padding: 8.5rem 0 5.5rem;
    animation: ay-rise 0.9s ease both;
}

.ay-hero__content .ay-hero__title,
.ay-hero__content .ay-hero__text,
.ay-hero__content .ay-hero__brand {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.ay-hero__controls {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: 1.35rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 11, 24, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.ay-hero__arrow {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.ay-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.ay-hero__dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ay-hero__dot {
    width: 0.55rem;
    height: 0.55rem;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.ay-hero__dot.is-active {
    width: 1.35rem;
    background: #fff;
}

.ay-nav__links a.is-active {
    background: rgba(255, 255, 255, 0.18);
    color: var(--ay-white);
}

.ay-hero__pill {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ay-hero__brand {
    display: block;
    font-family: var(--ay-font-display);
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 0.65rem;
}

.ay-hero__title {
    max-width: 22ch;
    font-family: var(--ay-font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.9rem;
}

.ay-hero__text {
    max-width: 34rem;
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.ay-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.ay-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ay-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ay-hero__stat strong {
    font-family: var(--ay-font-display);
    font-size: 1.75rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ay-hero__stat span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.ay-section__head--center {
    text-align: center;
    margin-inline: auto;
}

.ay-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.ay-step {
    padding: 1.75rem 1.5rem;
    border-radius: 1.1rem;
    background: var(--ay-white);
    border: 1px solid var(--ay-line);
    box-shadow: 0 12px 32px rgba(23, 19, 31, 0.05);
    animation: ay-rise 0.8s ease both;
}

.ay-step:nth-child(2) { animation-delay: 0.1s; }
.ay-step:nth-child(3) { animation-delay: 0.2s; }

.ay-step__num {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: var(--ay-font-display);
    font-size: 2rem;
    font-weight: 650;
    color: var(--ay-brand);
    letter-spacing: -0.03em;
    line-height: 1;
}

.ay-step__title {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    font-weight: 800;
}

.ay-step__text {
    margin: 0;
    color: var(--ay-ink-soft);
    font-size: 0.98rem;
}

.ay-features--8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ay-feature--card {
    padding: 1.35rem 1.25rem;
    border: 1px solid var(--ay-line);
    border-radius: 1rem;
    background: var(--ay-white);
    border-top: 1px solid var(--ay-line);
    box-shadow: 0 8px 24px rgba(23, 19, 31, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ay-feature--card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(23, 19, 31, 0.08);
}

.ay-feature__icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: rgba(91, 69, 184, 0.1);
    color: var(--ay-brand-deep);
}

.ay-why {
    background:
        radial-gradient(circle at 85% 15%, rgba(91, 69, 184, 0.35), transparent 45%),
        linear-gradient(135deg, #211a33 0%, #3b2e8c 100%);
    color: var(--ay-white);
}

.ay-why__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.ay-section__eyebrow--light {
    color: rgba(255, 255, 255, 0.7);
}

.ay-why__title {
    margin: 0 0 0.85rem;
    font-family: var(--ay-font-display);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ay-why__text {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 34rem;
}

.ay-why__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.ay-why__list li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.ay-why__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
}

.ay-why__card {
    padding: 1.75rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.ay-why__card-label {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.ay-why__card-quote {
    margin: 0 0 1rem;
    font-family: var(--ay-font-display);
    font-size: 1.35rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.ay-why__card-author {
    font-size: 0.9rem;
    opacity: 0.75;
    font-weight: 600;
}

.ay-pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 820px;
    margin-inline: auto;
}

.ay-pricing--compare {
    max-width: 920px;
    gap: 1.25rem;
    align-items: stretch;
}

.ay-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--ay-white);
    border: 1px solid var(--ay-line);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(23, 19, 31, 0.06);
}

.ay-plan--featured {
    border-color: rgba(91, 69, 184, 0.35);
    box-shadow: 0 18px 48px rgba(91, 69, 184, 0.14);
}

.ay-plan__badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 1;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--ay-brand);
    color: var(--ay-white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ay-plan__head {
    padding: 1.6rem 1.4rem 1.25rem;
    background: #f3f4f6;
    border-bottom: 1px solid var(--ay-line);
}

.ay-plan--featured .ay-plan__head {
    background: linear-gradient(160deg, rgba(91, 69, 184, 0.1), #f3f4f6 70%);
}

.ay-plan__name {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ay-ink);
}

.ay-plan__tagline {
    margin: 0 0 0.85rem;
    color: var(--ay-ink-soft);
    font-size: 0.92rem;
}

.ay-plan__price {
    margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.ay-plan__amount {
    font-family: var(--ay-font-display);
    font-size: 2.2rem;
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ay-ink);
}

.ay-plan__period {
    color: var(--ay-ink-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.ay-plan__features {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
    flex: 1 1 auto;
}

.ay-plan__feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 1.35rem;
    border-bottom: 1px solid rgba(23, 19, 31, 0.06);
    font-size: 0.94rem;
    color: var(--ay-ink-soft);
}

.ay-plan__feature:last-child {
    border-bottom: 0;
}

.ay-plan__feature-label {
    min-width: 0;
}

.ay-plan__feature-icon {
    flex-shrink: 0;
    width: 1.35rem;
    text-align: center;
    font-weight: 800;
}

.ay-plan__feature.is-on .ay-plan__feature-icon {
    color: #1f9d55;
}

.ay-plan__feature.is-off {
    opacity: 0.55;
}

.ay-plan__feature.is-off .ay-plan__feature-icon {
    color: #d64545;
}

.ay-plan__btn {
    margin: 0.5rem 1.25rem 1.35rem;
    width: calc(100% - 2.5rem);
}

.ay-pricing__card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    background: var(--ay-white);
    border: 1px solid var(--ay-line);
    box-shadow: 0 12px 36px rgba(23, 19, 31, 0.06);
    display: flex;
    flex-direction: column;
}

.ay-pricing__card--featured {
    border-color: rgba(91, 69, 184, 0.35);
    box-shadow: 0 18px 48px rgba(91, 69, 184, 0.14);
}

.ay-pricing__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--ay-brand);
    color: var(--ay-white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ay-pricing__name {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ay-brand);
}

.ay-pricing__price {
    margin: 0 0 0.65rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.ay-pricing__amount {
    font-family: var(--ay-font-display);
    font-size: 2.4rem;
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1;
}

.ay-pricing__period {
    color: var(--ay-ink-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.ay-pricing__desc {
    margin: 0 0 1.1rem;
    color: var(--ay-ink-soft);
    font-size: 0.98rem;
}

.ay-pricing__list {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
    flex: 1 1 auto;
}

.ay-pricing__list li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.95rem;
    color: var(--ay-ink-soft);
}

.ay-pricing__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ay-brand);
    font-weight: 800;
}

.ay-pricing__btn {
    width: 100%;
    margin-top: auto;
}

.ay-testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

.ay-testimonial-slider {
    position: relative;
    overflow: hidden;
}

.ay-testimonial-slider__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.ay-testimonial--slide {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    min-width: 0;
}

.ay-testimonial-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ay-testimonial-slider__btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid var(--ay-line);
    background: var(--ay-white);
    color: var(--ay-brand-deep);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.ay-testimonial-slider__btn:hover {
    background: var(--ay-brand);
    color: #fff;
    border-color: var(--ay-brand);
}

.ay-testimonial-slider__dots {
    display: flex;
    gap: 0.4rem;
}

.ay-testimonial-slider__dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: 0;
    background: rgba(23, 19, 31, 0.2);
    cursor: pointer;
    padding: 0;
}

.ay-testimonial-slider__dot.is-active {
    background: var(--ay-brand);
    transform: scale(1.15);
}

@media (max-width: 991.98px) {
    .ay-testimonial--slide {
        flex-basis: calc((100% - 1.25rem) / 2);
    }
}

@media (max-width: 767.98px) {
    .ay-testimonial--slide {
        flex-basis: 100%;
    }
}

.ay-testimonial {
    padding: 1.6rem 1.45rem;
    border-radius: 1.15rem;
    background: var(--ay-white);
    border: 1px solid var(--ay-line);
    box-shadow: 0 10px 28px rgba(23, 19, 31, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    animation: ay-rise 0.8s ease both;
}

.ay-testimonial:nth-child(2) { animation-delay: 0.08s; }
.ay-testimonial:nth-child(3) { animation-delay: 0.16s; }
.ay-testimonial:nth-child(4) { animation-delay: 0.24s; }

.ay-testimonial__stars {
    color: #e0a800;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    line-height: 1;
}

.ay-testimonial__quote {
    margin: 0;
    color: var(--ay-ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
    flex: 1 1 auto;
}

.ay-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--ay-line);
}

.ay-testimonial__avatar {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #5b45b8, #3b2e8c);
    color: var(--ay-white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.ay-testimonial__name {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--ay-ink);
}

.ay-testimonial__role {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.85rem;
    color: var(--ay-ink-soft);
    font-weight: 600;
}

.ay-btn--ghost-dark {
    background: transparent;
    color: var(--ay-brand-deep);
    border-color: rgba(91, 69, 184, 0.35);
}

.ay-btn--ghost-dark:hover {
    background: rgba(91, 69, 184, 0.06);
}

.ay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ay-btn:hover {
    transform: translateY(-1px);
}

.ay-btn--primary {
    background: var(--ay-white);
    color: var(--ay-brand-deep);
}

.ay-btn--ghost {
    background: transparent;
    color: var(--ay-white);
    border-color: rgba(255, 255, 255, 0.45);
}

.ay-btn--brand {
    background: var(--ay-brand);
    color: var(--ay-white);
}

.ay-btn--brand:hover {
    background: var(--ay-brand-deep);
}

/* Features */
.ay-section {
    padding: 5rem 0;
}

.ay-section--paper {
    background: var(--ay-paper);
}

.ay-section--deep {
    background: var(--ay-paper-deep);
}

.ay-section__head {
    max-width: 36rem;
    margin-bottom: 2.75rem;
}

.ay-section__eyebrow {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--ay-brand);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ay-section__title {
    margin: 0 0 0.75rem;
    font-family: var(--ay-font-display);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ay-section__text {
    margin: 0;
    color: var(--ay-ink-soft);
    font-size: 1.05rem;
}

.ay-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
}

.ay-feature {
    padding-top: 1.1rem;
    border-top: 1px solid var(--ay-line);
    animation: ay-rise 0.8s ease both;
}

.ay-feature:nth-child(2) { animation-delay: 0.08s; }
.ay-feature:nth-child(3) { animation-delay: 0.16s; }
.ay-feature:nth-child(4) { animation-delay: 0.24s; }

.ay-feature__icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1rem;
    color: var(--ay-brand-deep);
}

.ay-feature__title {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    font-weight: 800;
}

.ay-feature__text {
    margin: 0;
    color: var(--ay-ink-soft);
    font-size: 0.98rem;
}

/* CTA band */
.ay-cta {
    padding: 4.5rem 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(91, 69, 184, 0.28), transparent 40%),
        linear-gradient(135deg, #211a33, #3b2e8c 70%);
    color: var(--ay-white);
}

.ay-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ay-cta__title {
    margin: 0 0 0.45rem;
    font-family: var(--ay-font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: -0.03em;
}

.ay-cta__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.ay-footer {
    background: var(--ay-ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 3.25rem 0 1.5rem;
}

.ay-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.ay-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ay-white);
    margin-bottom: 0.85rem;
}

.ay-footer__logo,
.ay-footer__brand img {
    height: 48px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
    display: block;
}

.ay-footer__brand-text {
    font-family: var(--ay-font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.ay-footer__tagline {
    margin: 0;
    max-width: 24rem;
    color: rgba(255, 255, 255, 0.65);
}

.ay-footer__title {
    margin: 0 0 0.9rem;
    color: var(--ay-white);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ay-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.ay-footer__links a:hover {
    color: var(--ay-white);
}

.ay-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.15rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

@keyframes ay-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ay-hero-pan {
    from { transform: scale(1.1) translate3d(0, 0, 0); }
    to { transform: scale(1.18) translate3d(-1.5%, 0, 0); }
}

@keyframes ay-hero-pan-right {
    from { transform: scale(1.18) translate3d(0, 0, 0); }
    to { transform: scale(1.26) translate3d(-2%, 0, 0); }
}

@media (max-width: 991.98px) {
    .ay-features,
    .ay-features--8 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ay-steps,
    .ay-why__grid,
    .ay-pricing,
    .ay-testimonials {
        grid-template-columns: 1fr;
    }

    .ay-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .ay-nav__toggle {
        display: inline-flex;
    }

    .ay-nav__links {
        display: none;
        position: absolute;
        top: calc(100% + 0.35rem);
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        border-radius: 1rem;
        background: rgba(23, 19, 31, 0.96);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    }

    .ay-nav__links.is-open {
        display: flex;
    }

    .ay-nav__logo,
    .ay-nav__brand img {
        height: 44px !important;
        max-width: 200px !important;
    }

    .ay-hero__content {
        width: min(100%, calc(100% - 2rem));
        margin-inline: 1rem;
        padding: 7rem 0 4.5rem;
    }

    .ay-hero__media--focus-right img {
        object-position: 70% center;
        transform: scale(1.22);
    }

    .ay-features,
    .ay-features--8,
    .ay-footer__grid {
        grid-template-columns: 1fr;
    }

    .ay-section {
        padding: 3.5rem 0;
    }
}

/* Inner pages */
.ay-page-hero {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
    padding: 7.5rem 0 3.5rem;
    color: var(--ay-white);
    background:
        linear-gradient(135deg, rgba(23, 19, 31, 0.88), rgba(59, 46, 140, 0.78)),
        url('/assets/web/hero-shop.jpg') center/cover no-repeat;
    overflow: hidden;
}

.ay-page-hero--contact {
    background:
        linear-gradient(135deg, rgba(23, 19, 31, 0.9), rgba(91, 69, 184, 0.72)),
        url('/assets/web/hero-shop.jpg') center/cover no-repeat;
}

.ay-page-hero__content {
    position: relative;
    z-index: 1;
    animation: ay-rise 0.8s ease both;
}

.ay-page-hero__eyebrow {
    margin: 0 0 0.7rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.ay-page-hero__title {
    margin: 0 0 0.75rem;
    font-family: var(--ay-font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.ay-page-hero__text {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.ay-about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.ay-prose {
    color: var(--ay-ink-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

.ay-about-panels {
    display: grid;
    gap: 1rem;
}

.ay-about-panel {
    padding: 1.4rem 1.35rem;
    border-radius: 1.1rem;
    background: var(--ay-white);
    border: 1px solid var(--ay-line);
    box-shadow: 0 10px 30px rgba(23, 19, 31, 0.05);
}

.ay-about-panel--accent {
    background: linear-gradient(160deg, #5b45b8, #3b2e8c);
    color: var(--ay-white);
    border: 0;
}

.ay-about-panel__label {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.ay-about-panel p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
}

.ay-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.ay-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.ay-contact-list li {
    padding: 1rem 1.1rem;
    border-radius: 0.9rem;
    background: var(--ay-white);
    border: 1px solid var(--ay-line);
}

.ay-contact-list span {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ay-brand);
}

.ay-contact-list a,
.ay-contact-list strong {
    color: var(--ay-ink);
    font-weight: 700;
}

.ay-contact-form-wrap {
    background: var(--ay-white);
    border: 1px solid var(--ay-line);
    border-radius: 1.25rem;
    padding: 1.6rem;
    box-shadow: 0 18px 40px rgba(23, 19, 31, 0.06);
}

.ay-contact-form__title {
    margin: 0 0 1.2rem;
    font-family: var(--ay-font-display);
    font-size: 1.55rem;
    letter-spacing: -0.02em;
}

.ay-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.ay-form-row {
    margin-bottom: 0.95rem;
}

.ay-form-row label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.ay-form-row input,
.ay-form-row textarea {
    width: 100%;
    border: 1.5px solid #e5e1d8;
    border-radius: 0.8rem;
    background: #fbfaf7;
    padding: 0.8rem 0.95rem;
    font: inherit;
    color: var(--ay-ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ay-form-row input:focus,
.ay-form-row textarea:focus {
    border-color: var(--ay-brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(91, 69, 184, 0.12);
}

.ay-error {
    margin-top: 0.35rem;
    color: #c0392b;
    font-size: 0.85rem;
}

@media (max-width: 991.98px) {
    .ay-about-grid,
    .ay-contact-grid,
    .ay-form-grid {
        grid-template-columns: 1fr;
    }
}
