* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #36545a;
    --color-dark: #13191f;
    --color-gray: #646668;
    --color-darker: #171f26;
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Google Sans Flex', sans-serif;
}

html {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    color: #ededed;
    background-color: #e6e6e6;
    line-height: 1.6;
    overflow-x: hidden;
}

body a, body img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body a:hover {
    color: var(--color-primary);
}

body a:hover img{
    opacity: 0.7;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 30px;
}

h2:after {
    content: "";
    border-bottom: 1px solid var(--color-primary);
    display: block;
    opacity: 0.5;
    padding-bottom: 15px;
}

h4 {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.4;
    font-size: 18px;
    margin-bottom: 20px;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999999;
    padding: 20px 0;
    overflow: hidden;
    bottom: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-scroll .header:before {
    content: "";
    backdrop-filter: blur(5px);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-scroll .header:after {
    content: "";
    border-bottom: 1px solid #25373d30;
    width: 100%;
    position: absolute;
    bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__top {
    background: #e6e6e6;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.header__top:after {
    content: "";
    border-bottom: 1px solid #c3c9ca;
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
}

.header__top .top__left p {
    display: none;
}

.top__right, .top__right li {
    display: flex;
    align-items: center;
}

.top__right ul {
    list-style: none;
    display: inline-flex;
    gap: 15px;
}

.top__right li img {
    width: 16px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(26%) saturate(505%) hue-rotate(143deg) brightness(93%) contrast(91%);
}

.top__content, .top__content a {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.top__content a:hover {
    opacity: 0.7;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    height: 60px;
    display: flex;
    align-items: center;
    z-index: 99;
}

.nav__logo img {
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
}

.nav__toggle img {
    width: 40px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(26%) saturate(505%) hue-rotate(143deg) brightness(93%) contrast(91%);
}

.close__menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2395%) hue-rotate(32deg) brightness(103%) contrast(107%);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close__menu:hover {
    opacity: 1;
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.nav__toggle:hover {
    opacity: 0.7;
}

.nav__toggle.active {
    opacity: 0;
}

.nav__toggle span {
    width: 27px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    max-width: 280px;
    background-color: #13191fba;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    list-style: none;
    transition: right 1s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1 / 1;
    z-index: 99999;
    backdrop-filter: blur(5px);
    border-left: 1px solid #d6d9da21;
    padding-left: 20px;
}

.nav__menu.active {
    right: 0;
}

.nav__menu li a {
    color: #ededed;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    padding: 20px;
    position: relative;
}

.nav__menu li a:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: #ffffff30;
    top: calc(50% - 1px);
    left: -20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__menu li a:hover:before {
    background: #ffffff40;
    width: 10px;
}

.nav__menu li a:hover {
    opacity: 1;
    padding-left: 0px;
}

.hero {
    padding: 120px 0 0;
    background-color: #e6e6e6;
    height: calc(100vh - 80px);
    margin-top: -80px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero__text {
    color: var(--color-primary);
    z-index: 9;
    max-width: 240px;
}

.hero__text span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 15px;
    font-weight: 400;
}

.hero__text h1 {
    margin-top: 5px;
    max-width: 190px;
}

.hero__text h3 {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.3;
}

.hero__text h3:after {
    content: "";
    border-bottom: 2px solid var(--color-primary);
    display: block;
    width: 70px;
    padding-bottom: 10px;
}

.hero__image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: bottom;
    min-height: 90vh;
}

.intro {
    padding: 60px 0;
    background-color: var(--color-dark);
}

.intro__content {
    display: flex;
    flex-direction: column;
}

.intro__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 60px;
    margin-top: 0px;
}

.intro__description p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.3;
    font-weight: 300;
}

.about {
    padding: 60px 0 0;
    background-color: #040404;
    position: relative;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__image {
    margin-left: -20px;
    width: calc(100% + 40px);
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1 / 1;
}

.signature {
    position: absolute;
    bottom: -30px;
    right: 0;
}

.signature img {
    width: 100%;
}

.about__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about__description {
    display: flex;
    flex-direction: column;
    margin-left: 60px;
    z-index: 99999;
    position: relative;
    margin-top: 0px;
}

.about__description p {
    font-size: 15px;
    line-height: 1.5;
    color: #6e6e6e;
}

.about__description p span {
    color: #fff;
}

.about__description ul {
    font-size: 15px;
    line-height: 1.5;
    color: #6e6e6e;
    list-style: inside;
}

.about__description ul li::marker {
    font-size: 13px;
    color: #6e6e6e;
}

.features {
    padding: 90px 0;
    background-color: #ffffff;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.feature-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.feature-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(23 31 38 / 60%), rgb(23 31 38 / 50%));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card__content:after{
    opacity: 1;
}

.feature-card__content:after {
    content: "";
    background-color: rgb(23 31 38 / 70%);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.3;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    width: 100%;
    padding: 30px;
}

.feature-card__description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(70px);
    z-index: 999;
    width: 100%;
}

.feature-card__description li:last-child {
    margin: 0;
}

.feature-card:hover .feature-card__description {
    opacity: 1;
    transform: translateY(0px);
}

.feature-card:hover h3 {
    opacity: 0;
    transform: translateY(-70px);
}

.feature-card__description ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    opacity: 0.7;
}

.feature-card__description li {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
}

.cta {
    padding: 60px 0;
    background: var(--color-dark);
}

.cta__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 60px;
}

.cta__text h4 {
    font-weight: 600;
    margin-bottom: 0;
}

.cta__text ul {
    list-style: inside;
}

.cta__text li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #6e6e6e;
}

::marker {
    font-size: 14px;
    color: var(--color-primary);
}

.parallax {
    min-height: 400px;
    height: 50vh;
    position: relative;
    overflow: hidden;
    display: block;
}

.parallax__image {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 130%;
    min-height: calc(100% + 100px);
    background-image: url('../images/parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    transform: translateZ(0);
    will-change: transform;
    display: none;
}

.mobile__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.mobile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.title__icon {
    width: 40px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(26%) saturate(505%) hue-rotate(143deg) brightness(93%) contrast(91%);
}

.faq {
    padding: 60px 0;
    background: var(--color-dark);
}

.faq__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section__header {
    display: inline-flex;
    align-items: baseline;
    gap: 20px;
    z-index: 999;
    position: relative;
}

.section__header h2 {
    line-height: 1.2;
}

.section__header h2 span {
    font-size: 26px;
    color: var(--color-primary);
    white-space: nowrap;
}

.faq__list h4 {
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 400;
    margin-bottom: 10px;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion__header {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    text-align: left;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.accordion__header span, .accordion__header img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__header:hover span, .accordion__header:hover img {
        opacity: 0.5;
}

.accordion__header span {
    width: calc(100% - 30px);
}

.accordion__icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(319deg) brightness(106%) contrast(100%);
    transform: rotate(-90deg);
}

.accordion__item.active .accordion__icon {
    transform: rotate(90deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__item.active .accordion__content {
    max-height: 200px;
}

.accordion__content p {
    padding: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.3;
    opacity: 0.3;
    letter-spacing: 0.3px;
    font-weight: 300;
}

.contact {
    padding: 50px 0;
    background-color: var(--color-dark);
}

.contact__content {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2:after {
    display: none;
}

.contact h2, .contact h4 {
    text-align: center;
}

.contact__subtitle {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.contact__form {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 50px;
}

.contact__form label{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.3;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

p.form__privacy {
    font-size: 11px;
    line-height: 1.5;
    opacity: 0.3;
    letter-spacing: 0.5px;
    font-weight: 200;
    margin-bottom: 30px;
}

.form__message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.form__message--success {
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form__message--error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.flex__group {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    flex-direction: column;
}

.form__group {
    margin-bottom: 20px;
    width: 100%;
}

.form__group input, .form__group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--color-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 15px;
    font-family: var(--font-body);
    border-radius: 8px;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn {
    background-color: var(--color-primary);
    color: #ededed;
    border: none;
    padding: 15px 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    display: block;
    margin: 0 auto;
    height: 60px;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #2a4147;
}

.footer {
    padding-bottom: 60px;
    background-color: var(--color-dark);
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    border-top: 1px solid #25373d;
    padding-top: 30px;
}

.footer__content ul {
    list-style: none;
    display: inline-flex;
    gap: 10px;
}

.footer__right ul {
    display: flex;
    flex-direction: column;
}

.footer__right ul li:nth-child(2) {
    display:none;
}

.footer__left p, .footer__center a, .footer__right p, .footer__content a {
    font-size: 14px;
    color: #ededed;
    font-weight: 600;
    text-decoration: none;
}


@media (min-width: 480px) {
    .features__grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero__text {
        max-width: unset;
    }
    .hero__text h1 {
        max-width: unset;
    }
    .footer__right ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .footer__right ul li:nth-child(2) {
        display:flex;
    }
    .flex__group {
        gap: 25px;
        flex-direction: unset;
    }
}

@media (min-width: 768px) {
    .hero__image img {
        height: 100%;
        margin-left: 0;
    }
    .hero__image {
        top: 0;
        bottom: 0;
        height: 100vh;
    }
    .hero__text {
        position: absolute;
        top: 0;
        bottom: 20%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .header__top {
        background: unset;
    }
    .nav__logo img {
        height: 50px;
    }
}


@media (min-width: 992px) {
    .intro__description {
        margin-top: 20px;
    }
    .about__description {
        margin-top: 5px;
    }
    h2 {
        font-size: 42px;
        position: relative;
    }
    h4 {
        font-size: 20px;
    }

    .nav__menu li a {
        font-size: 18px;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero__content {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .hero__image {
        flex: 1;
        order: 2;
    }

    .intro {
        padding: 100px 0;
    }

    .intro__content {
        flex-direction: row;
        gap: 100px;
        align-items: flex-start;
    }

    .intro__description {
        margin-left: 0;
    }

    .intro__description p {
        font-size: 17px;
    }

    .about {
        padding: 100px 0;
        overflow: hidden;
    }

    .about__content {
        flex-direction: row;
        gap: 80px;
        align-items: center;
        max-width: 900px;
    }

    .about__image {
        position: absolute;
        top: 0;
        margin-left: 0;
        width: 100%;
        bottom: 0;
        right: 0;
    }

    .about__description {
        margin-left: 0;
    }

    .about__text {
        display: flex;
        flex-direction: row;
        gap: 100px;
        align-items: flex-start;
    }

    .about__title {
        font-size: 52px;
    }

    .about__description p {
        font-size: 18px;
    }

    .features {
        padding: 100px 0;
    }

    .features__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .feature-card {
        aspect-ratio: 1 / 1;
    }

    .feature-card__title {
        font-size: 26px;
        margin: 20px 0;
        line-height: 1.2;
    }

    .feature-card__description {
        z-index: 999;
    }



    .feature-card__description li {
        font-size: 15px;
    }

    .cta {
        padding: 100px 0;
    }

    .cta__content {
        flex-direction: row;
        gap: 100px;
        align-items: flex-start;
    }

    .cta__text {
        margin-left: 0;
    }

    .cta__text p {
        font-size: 17px;
    }

    .cta__email {
        font-size: 20px;
    }

    .parallax {
        min-height: 600px;
        height: 60vh;
    }

    .parallax__image {
        top: -10%;
        height: 130%;
        min-height: calc(100% + 150px);
        background-attachment: fixed;
        display: block;
    }

    .mobile__image {
        display: none;
    }

    .faq {
        padding: 100px 0;
    }

    .faq__content {
        flex-direction: row;
        gap: 100px;
        align-items: flex-start;
    }

    .faq .section__header {
        width: 340px;
    }

    .faq__list {
        flex: 1;
    }

    .accordion__header {
        font-size: 17px;
    }

    .accordion__content p {
        font-size: 16px;
    }

    .contact {
        padding: 100px 0;
    }

    .contact__subtitle {
        font-size: 18px;
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer__right {
        text-align: right;
    }

    .footer__social {
        justify-content: flex-end;
    }
    .footer__center {
        margin-left: -10%;
    }
    h2:after {
        border-bottom: none;
        border-right: 1px solid var(--color-primary);
        height: auto;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin-right: -50px;
    }
    .cta__text li {
        font-size: 18px;
    }
    .about__image img {
        object-position: right;
        max-height: 100%;
        height: 100%;
        object-fit: contain;
    }
    h1 {
        font-size: 50px;
    }
    .hero__text h3 {
        font-size: 44px;
        line-height: 1.2;
    }
    .hero__text h3:after {
        padding-bottom: 25px;
    }
    .hero__text span {
        font-size: 18px;
    }
    .hero__text h1 {
        margin-top: 15px;
    }
    .top__left {
        display: inline-flex;
        align-items: center;
        width: auto;
        gap: 20px;
        justify-content: flex-start;
    }
    .top__content a {
        width: unset;
    }
    .header__top .top__left p {
        display: block;
    }
    .top__content, .top__content a {
        font-size: 14px;
    }
    .header__top:after {
        left: 20px;
        right: 20px;
        max-width: 1280px;
        margin: 0 auto;
    }
    .top__left p:before, .top__left a:before {
        content: "";
        border-left: 1px solid #c3c9ca;
        height: 40px;
        width: 20px;
    }
    .section__header h2 span {
        font-size: 42px;
    }
}


@media (min-width: 1280px) {
    .section__header {
        width: 260px;
        min-width: 260px;
    }
    .feature-card:hover h3 {
        opacity: 1;
    }
    .feature-card:hover .feature-card__description {
        opacity: 1;
        transform: translateY(0px);
    }
    .feature-card__description {
        position: relative;
        opacity: 0;
        background: none;
        height: auto;
        max-height: 0;
        padding: 0 30px;
        z-index: 999;
        transform: translateY(70px);
    }
}

@media (min-width: 1640px) {
    .feature-card__description ul li {
        line-height: 1.3;
        font-size: 16px;
    }
    .feature-card__description {
        padding: 0 30px;
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--animation-delay, 0s), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--animation-delay, 0s);
}

.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) var(--animation-delay, 0s);
}

.animate-fade.is-visible {
    opacity: 1;
}

.delay-100 { --animation-delay: 0.1s; }
.delay-200 { --animation-delay: 0.2s; }
.delay-300 { --animation-delay: 0.3s; }
.delay-400 { --animation-delay: 0.4s; }
.delay-500 { --animation-delay: 0.5s; }
.delay-600 { --animation-delay: 0.6s; }
.delay-700 { --animation-delay: 0.7s; }
.delay-800 { --animation-delay: 0.8s; }
.delay-900 { --animation-delay: 0.9s; }
.delay-1000 { --animation-delay: 1s; }