header.header {
    display: flex;
    width: 1440px;
    padding: 24px 32px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

header.header.scrolled {
    background-color: var(--dark-purple, #110C35);
    padding: 16px 32px;
}

header.header .navbar {
    display: flex;
    max-width: var(--container-width, 1080px);
    justify-content: space-between;
    align-items: center;
    gap: 142px;
    flex: 1 0 0;
}

header.header .navbar-brand {
    width: 246px;
    height: 47.573px;
}

header.header .navbar-menu {
    display: flex;
    padding: 8px 32px;
    justify-content: center;
    align-items: center;
    gap: 32px;
    border-radius: 19px;
    background: var(--dark-purple, #110C35);
}

header.header .navbar-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

header.header .navbar-menu ul li a {
    position: relative;
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Underline slide-in from left */
header.header .navbar-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pale-purple, #A7A4FF), var(--purple-glow, #662BF5));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

header.header .navbar-menu ul li a:hover,
header.header .navbar-menu ul li.current-menu-item a {
    color: var(--pale-purple, #A7A4FF);
}

header.header .navbar-menu ul li a:hover::after {
    transform: scaleX(1);
}

header.header .navbar-menu .header-cta {
    display: flex;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 143px;
    border: 1px solid #000;
    background: var(--dark, #040912);
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-wrap: nowrap;
    transition: all 0.3s ease;
}

header.header .navbar-menu .header-cta:hover {
    cursor: pointer;
    background: var(--pale-purple, #A7A4FF);
    color: var(--dark-purple, #110C35);
    border: 1px solid var(--pale-purple, #A7A4FF);
}

.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

@media screen and (max-width:1200px) {
    header.header {
        padding: 24px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: var(--dark-purple);
    }

    header.header .navbar {
        gap: 0;
    }

    header.header .navbar-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 62px;
        position: fixed;
        top: 100vh;
        left: 24px;
        right: 24px;
        width: calc(100vw - 48px);
        height: auto;
        padding: 24px 24px 48px;
        border-radius: 18px;
        background-color: var(--dark-purple);
        z-index: 1000;
        transition: top 0.5s ease;
    }

    header.header .navbar-menu.open {
        top: 160px;
    }

    header.header .navbar-menu ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    header.header .navbar-menu .header-cta {
        width: 100%;
    }

    header.header .navbar-menu ul li a {
        display: flex;
        padding: 8px 12px 12px;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 46px;
        height: 46px;
        padding: 12px;
        border-radius: 23px;
        background-color: transparent;
        z-index: 1000;
        transition: top 0.3s ease;
        border: 0 none;
        background-color: var(--dark-purple);
        gap: 4px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 4px;
        background-color: var(--white-tech, #F8F8F8);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(3px);
    }
}

/* ========================================================================== */
/* HERO SECTION                                                               */
/* ========================================================================== */

section.hero {
    display: flex;
    padding: var(--padding-hero-section);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

section.hero .container {
    display: flex;
    max-width: var(--container-width-md, 1080px);
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

section.hero .caption {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-hero-section-caption);
    flex: 1 0 0;
    width: 100%;
}

section.hero .caption .title {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: var(--hero-section-title-font-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--hero-section-title-line-height);
    letter-spacing: var(--hero-section-title-letter-spacing);
    margin: 0;
}

section.hero .caption .title .span {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--spektral-font-family);
    font-size: var(--hero-section-title-font-size);
    font-style: var(--spektral-font-style);
    font-weight: 300;
    line-height: var(--hero-section-title-line-height);
    letter-spacing: var(--hero-section-title-letter-spacing);
}

section.hero .caption .subtitle {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--hanken-font-family);
    font-size: var(--hero-section-subtitle-font-size);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.4px;
    margin: 0;
}

section.hero .caption .pensado-para {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--spektral-font-family);
    font-size: 24px;
    font-style: var(--spektral-font-style);
    font-weight: 300;
    line-height: 24px;
}

section.hero .caption .pensado-para .span {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section.hero .caption>* {
    opacity: 0;
    animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

section.hero .caption .title {
    animation-delay: 0.1s;
}

section.hero .caption .subtitle {
    animation-delay: 0.28s;
}

section.hero .caption .grid {
    animation-delay: 0.46s;
}

section.hero .caption .pensado-para {
    animation-delay: 0.64s;
}

@media screen and (max-width:768px) {
    section.hero .caption .grid {
        flex-direction: column;
    }

    section.hero .caption .pensado-para,
    section.hero .caption .pensado-para .span {
        font-size: 20px;
    }
}

/* =========================================
   BOXES TRANSPARENT SECTION
   ========================================= */

section.boxes-transparent-section {
    display: flex;
    padding: 60px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

section.boxes-transparent-section .container {
    display: flex;
    max-width: var(--container-width-md, 1080px);
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

section.boxes-transparent-section .marketing-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

section.boxes-transparent-section .caption-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
}

section.boxes-transparent-section .grid-2 {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
}

section.boxes-transparent-section .grid-2 .box {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    flex: 1 0 0;
    border-radius: 18px;
    border: 1px solid var(--white-tech, #F8F8F8);
}

section.boxes-transparent-section .grid-2 .box .img-2 {
    width: 64px;
    height: 64px;
    aspect-ratio: 1/1;
}

section.boxes-transparent-section .grid-2 .box .text-wrapper-7 {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--hanken-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
    margin: 0;
}

section.boxes-transparent-section .grid-2 .box .text-wrapper-8 {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: left;
}

section.boxes-transparent-section .text-wrapper-8 {
    color: var(--pale-purple, #A7A4FF);
    text-align: center;
    font-family: var(--spektral-font-family);
    font-size: 32px;
    font-style: var(--spektral-font-style);
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.64px;
    width: 100%;
    margin: 0;
}

section.boxes-transparent-section.background-pale-purple .grid-2 .box .text-wrapper-7,
section.boxes-transparent-section.background-pale-purple .grid-2 .box .text-wrapper-8 {
    color: var(--dark-purple, #110C35);
}

section.boxes-transparent-section.boxes-row .grid-2 .box {
    flex-direction: row;
    height: -webkit-fill-available;
    align-items: center;
}

@media screen and (max-width:1200px) {
    section.boxes-transparent-section {
        padding: 30px 0;
    }

    section.boxes-transparent-section .grid-2 {
        flex-direction: column;
    }

    section.boxes-transparent-section .text-wrapper-8 {
        font-size: 20px;
    }

    section.boxes-transparent-section .grid-2 .box {
        padding: 24px;
        flex-direction: row;
    }
}

section.modelo-futtura {
    padding: 60px 0;
}

section.modelo-futtura .container {
    display: flex;
    max-width: var(--container-width-md, 1080px);
    flex-direction: column;
    align-items: flex-start;
    gap: 41px;
    align-self: stretch;
}

section.modelo-futtura .grid {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
}

section.modelo-futtura .grid .box-dark {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 18px;
    border: 1px solid var(--white-tech, #F8F8F8);
    background: var(--dark-purple, #110C35);
}

section.modelo-futtura .grid .box-dark .goal {
    width: 64px;
    height: 64px;
    aspect-ratio: 1/1;
}

section.modelo-futtura .grid .box-dark .img-2 {
    width: 64px;
    height: 64px;
    aspect-ratio: 1/1;
}

section.modelo-futtura .grid .box-dark .h3 {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--hanken-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
    margin: 0;
}

section.modelo-futtura .grid .box-dark .text-wrapper {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.32px;
    margin: 0;
}

section.modelo-futtura .text-wrapper-8 {
    color: var(--dark-purple, #110C35);
    font-family: var(--spektral-font-family);
    font-size: 24px;
    font-style: var(--spektral-font-style);
    font-weight: 300;
    line-height: normal;
    text-align: center;
    display: block;
    width: 100%;
}

section.modelo-futtura .text-wrapper-8 strong {
    font-weight: 600;
}

@media screen and (max-width:1200px) {
    section.modelo-futtura {
        padding: 60px 0;
    }

    section.modelo-futtura .grid {
        flex-direction: column;
    }
}

section.capacidades {
    padding: 60px 0;
}

section.capacidades .container {
    display: flex;
    max-width: var(--container-width-md, 1080px);
    flex-direction: column;
    align-items: flex-start;
    gap: 41px;
    align-self: stretch;
}


section.capacidades .categories-grid {
    display: flex;
    min-height: 400px;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    width: 100%;
    max-width: var(--container-width-lg);
    margin: 0 auto;
    padding: 0;
}

section.capacidades.insight-categories .categories-grid {
    min-height: 303px;
}

section.capacidades .categories-grid .category-box {
    --background-image: url(../images/capacidades-1.jpg);
    position: relative;
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 18px;
    border: 1px solid var(--white-tech, #F8F8F8);
    background: linear-gradient(0deg, rgba(17, 12, 53, 0.58) 0%, rgba(17, 12, 53, 0.58) 100%), var(--background-image) lightgray 50% / cover no-repeat;
}

section.capacidades .categories-grid .category-box .btn-overall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

section.capacidades.insight-categories .categories-grid .category-box {
    display: flex;
    padding: 97px 30px 30px 30px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
}

section.capacidades .categories-grid .category-box .category-title {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.64px;
    margin: 0;
    display: block;
    width: 100%;
    text-wrap: nowrap;
}

section.capacidades.insight-categories .categories-grid .category-box .category-title {
    text-wrap: wrap;
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
}

section.capacidades .categories-grid .category-box .category-description {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    min-height: 171px;
}

section.capacidades .categories-grid .category-box .category-description p {
    margin: 0;
}

section.capacidades.insight-categories .categories-grid .category-box .category-description {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--inter-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    min-height: 105px;
}

section.capacidades .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

section.capacidades .button-wrapper a {
    display: inline-flex;
    width: fit-content;
}

@media screen and (max-width:1200px) {
    section.capacidades {
        padding: 30px 0;
    }

    section.capacidades .categories-grid {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    section.capacidades .categories-grid .category-box .category-title {
        font-size: 20px;
    }

    section.capacidades .categories-grid .category-box .category-description {
        font-size: 16px;
    }
}

section.steps-section {
    padding: 60px 0;
}

section.steps-section .container {
    display: flex;
    max-width: var(--container-width-md, 1080px);
    flex-direction: column;
    align-items: flex-start;
    gap: 49px;
    align-self: stretch;
}

section.steps-section .grid-steps {
    display: flex;
    min-height: 345px;
    justify-content: center;
    align-items: stretch;
    align-self: stretch;
}

section.steps-section .grid-steps .column-step {
    display: flex;
    width: 252px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    height: -webkit-fill-available;
    margin: 0 -14px;
}

section.steps-section .grid-steps .column-step:nth-child(even) {
    display: flex;
    width: 252px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    align-self: stretch;
    height: -webkit-fill-available;
}

section.steps-section .grid-steps .box-step {
    display: flex;
    min-height: 189px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 21px;
    background: var(--dark-purple, #110C35);
    position: relative;
}

section.steps-section .grid-steps .box-step .title-step {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--hanken-font-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.48px;
    width: 100%;
    margin: 0;
}

section.steps-section .grid-steps .box-step .text-step {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
    margin: 0;
}

section.steps-section .grid-steps .frame {
    position: absolute;
    left: -13px;
    top: -11px;
}

section.steps-section .grid-steps .frame .step-number {
    display: flex;
    width: 41px;
    height: 41px;
    padding: 0 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 22px;
    background: var(--color-5a27dc, #5A27DC);
    color: #FFF;
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
}

@media screen and (max-width:1200px) {
    section.steps-section {
        padding: 30px 0;
    }

    section.steps-section .grid-steps {
        flex-direction: column;
        gap: 24px;
    }

    section.steps-section .grid-steps .column-step,
    section.steps-section .grid-steps .column-step:nth-child(even) {
        width: 100%;
    }

    section.steps-section .grid-steps .box-step {
        padding: 24px;
    }

    section.steps-section .grid-steps .box-step .title-step {
        font-size: 20px;
    }

    section.steps-section .grid-steps .box-step .text-step {
        font-size: 16px;
    }

    section.steps-section .grid-steps .frame .step-number {
        font-size: 16px;
    }
}

/*** feature blog section ***/

section.feature-blog-section {
    padding: 60px 0;
}

section.feature-blog-section .container {
    display: flex;
    max-width: var(--container-width-md, 1080px);
    flex-direction: column;
    align-items: flex-start;
    gap: 49px;
    align-self: stretch;
}

section.feature-blog-section .grid-blog {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

section.feature-blog-section .grid-blog .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 21px;
    border: 1px solid var(--white-tech, #F8F8F8);
    background: var(--dark-purple, #110C35);
    overflow: hidden;
    max-width: 344px;
    position: relative;
}

section.feature-blog-section .grid-blog .box .image-holder {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

section.feature-blog-section .grid-blog .box .image-holder .img {
    object-fit: cover;
}

section.feature-blog-section .grid-blog .box .caption {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    position: relative;
}

section.feature-blog-section .grid-blog .box .btn-overall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

section.feature-blog-section .grid-blog .box .title-blog {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.96px;
    margin: 0;
}

section.feature-blog-section .grid-blog .box .text-blog {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
    margin: 0;
}

section.feature-blog-section .grid-blog .box .date-blog {
    color: var(--7947F1, #7947F1);
    font-family: var(--hanken-font-family);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.6px;
    margin: 0;
}

section.feature-blog-section .grid-blog .box .description-blog {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.64px;
    margin: 0;
}

@media screen and (max-width:1200px) {
    section.feature-blog-section .grid-blog {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    section.feature-blog-section .grid-blog::-webkit-scrollbar {
        display: none;
    }

    section.feature-blog-section .grid-blog .box {
        scroll-snap-align: center;
        flex: 0 0 85vw;
        max-width: 344px;
    }
}


/* --- Feature Rich Text --- */

section.feature-richt-text {
    display: flex;
    padding: 100px 24px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

section.feature-richt-text .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 41px;
    align-self: stretch;
}

section.feature-richt-text .caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

section.feature-richt-text .caption .title {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: var(--feature-richt-text-title-font-size);
    font-weight: 300;
    line-height: normal;
    letter-spacing: var(--feature-richt-text-title-letter-spacing);
    margin: 0;
    text-align: center;
    line-height: var(--feature-richt-text-title-line-height);
    width: 100%;

}

section.feature-richt-text .caption .title span {
    color: var(--white-tech, #F8F8F8);
    text-align: center;
    font-family: var(--spektral-font-family);
    font-style: var(--spektral-font-style);
    font-size: var(--feature-richt-text-title-font-size);
    font-weight: 300;
    line-height: normal;
    letter-spacing: var(--feature-richt-text-title-letter-spacing);
    line-height: var(--feature-richt-text-title-line-height);
}

section.feature-richt-text .caption .subtitle {
    color: var(--white-tech, #F8F8F8);
    text-align: center;
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.64px;
    display: block;
    width: 100%;
}

section.feature-richt-text.page-richt-text-section .caption .subtitle {
    color: var(--pale-purple, #A7A4FF);
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.96px;
}

section.feature-richt-text .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

section.feature-richt-text .button-wrapper a {
    display: inline-flex;
    width: fit-content;
}

@media screen and (max-width: 768px) {
    section.feature-richt-text {
        padding: 40px 24px;
    }

    section.feature-richt-text .container {
        gap: 24px;
    }

    section.feature-richt-text .caption {
        gap: 16px;
    }

    section.feature-richt-text .caption .button-primary {
        width: 100%;
    }
}

/**main-footer**/

footer {
    background-color: var(--dark);
    color: var(--BDA2F7, #BDA2F7);
    padding: 20px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

footer .copy-text {
    color: var(--BDA2F7, #BDA2F7);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.64px;
}

footer .social-links ul {
    display: flex;
    gap: 24px;
    list-style: none;
}

footer .social-links ul li a {
    color: var(--BDA2F7, #BDA2F7);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.64px;
}

@media screen and (max-width:1200px) {
    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .copy-text {
        text-align: center;
    }

    footer .social-links ul {
        text-align: center;
        justify-content: center;
    }

    footer .social-links,
    footer .social-links ul {
        margin: 0;
        padding: 0;
        width: 100%;
    }
}

/* --- Page Hero --- */

section.page-hero {
    display: flex;
    padding: 226px 24px 100px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

section.page-hero .container {
    display: flex;
    max-width: var(--container-width, 1080px);
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

section.page-hero .caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
}

section.page-hero h1 {
    color: var(--C6AFF8, #C6AFF8);
    text-align: center;
    font-family: var(--hanken-font-family);
    font-size: var(--hero-section-title-font-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--hero-section-title-line-height);
    letter-spacing: -2.4px;
    margin: 0;
}

section.page-hero h1 span {
    color: var(--C6AFF8, #C6AFF8);
    font-family: var(--spektral-font-family);
    font-size: var(--hero-section-title-font-size);
    font-style: var(--spektral-font-style);
    font-weight: 300;
    line-height: var(--hero-section-title-line-height);
    letter-spacing: -2.4px;
}

section.page-hero p {
    color: var(--white-tech, #F8F8F8);
    text-align: center;
    font-family: var(--hanken-font-family);
    font-size: var(--hero-section-subtitle-font-size);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.4px;
}

section.page-hero .caption .button-primary {
    display: inline-flex;
    width: fit-content;
}

/* Responsive */
@media screen and (max-width: 768px) {
    section.page-hero {
        padding: 100px 0 60px;
    }

    section.page-hero .caption {
        gap: 16px;
    }

    section.page-hero .caption .button-primary {
        width: 100%;
    }
}

/* --- Image with Text Section --- */

section.image-with-text {
    display: flex;
    padding: 100px 24px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

section.image-with-text .container {
    display: flex;
    max-width: var(--container-width-md, 1080px);
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    align-self: stretch;
}

section.image-with-text.reverse .container {
    flex-direction: row-reverse;
}

section.image-with-text .content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    flex: 1 0 0;
}

section.image-with-text .image-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    position: relative;
    max-width: 512px;
}

section.image-with-text .decoration-svg {
    position: absolute;
    right: 0;
    bottom: -0.498px;
    z-index: 1;
    width: 225px;
    height: 190px;
}

section.image-with-text .title {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--hanken-font-family);
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2.56px;
    margin: 0;
}

section.image-with-text .title span {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--spektral-font-family);
    font-size: 58px;
    font-style: var(--spektral-font-style);
    font-weight: 300;
    line-height: normal;
    letter-spacing: -2.56px;
}

section.image-with-text .subtitle {
    color: var(--light-purple, #866FFE);
    font-family: var(--hanken-font-family);
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.64px;
    margin: 0;
}

section.image-with-text .description {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.4px;
    margin: 0;
}

section.image-with-text .svg-mask-wrap {
    width: 513.5px;
    height: 514.502px;
}

section.image-with-text .svg-mask-wrap svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
    section.image-with-text {
        padding: 60px 24px;
    }

    section.image-with-text .container,
    section.image-with-text.reverse .container {
        flex-direction: column-reverse;
    }

    section.image-with-text .title {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    section.image-with-text .title .span {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    section.image-with-text .subtitle {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    section.image-with-text .description {
        font-size: 14px;
        letter-spacing: -0.56px;
    }

    section.image-with-text .svg-mask-wrap {
        width: 100%;
        height: auto;
    }

    section.image-with-text .decoration-svg {
        width: 150px;
        height: 125px;
    }

    section.image-with-text .container {
        gap: 24px;
    }
}

/* =========================================
   RICH TEXT SECTION
   ========================================= */

section.richt-text-section {
    display: flex;
    padding: 60px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

section.richt-text-section .container {
    display: flex;
    max-width: var(--container-width-md, 1080px);
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    align-self: stretch;
}

section.richt-text-section .title {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--hanken-font-family);
    font-size: var(--feature-richt-text-title-font-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--feature-richt-text-title-line-height);
    letter-spacing: -1.92px;
    margin: 0;
    text-align: center;
    width: 100%;
}

section.richt-text-section .title span {
    color: var(--pale-purple, #A7A4FF);
    font-family: var(--spektral-font-family);
    font-size: var(--feature-richt-text-title-font-size);
    font-style: var(--spektral-font-style);
    font-weight: 300;
    line-height: var(--feature-richt-text-title-line-height);
    letter-spacing: -1.92px;
}

section.richt-text-section .subtitle {
    color: var(--light-purple, #866FFE);
    font-family: var(--hanken-font-family);
    font-size: var(--subtitle-font-size);
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.64px;
    margin: 0;
    text-align: center;
    width: 100%;
}

section.richt-text-section .description {
    color: var(--white-tech, #F8F8F8);
    font-family: var(--hanken-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.4px;
    margin: 0;
    text-align: center;
}

section.richt-text-section .button-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
}


/* Responsive */
@media screen and (max-width: 768px) {
    section.richt-text-section {
        padding: 60px 24px;
    }

    section.richt-text-section .container {
        gap: 24px;
    }

    section.richt-text-section .description {
        font-size: 14px;
        letter-spacing: -0.56px;
    }
}

/* =========================================
   FAQS SECTION
   ========================================= */

section.faqs-section {
    padding: 80px 0;
}

section.faqs-section .container {
    max-width: var(--container-width-md, 1080px);
}

section.faqs-section .title-row {
    margin-bottom: 20px;
}

section.faqs-section .faqs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.faq-item {
    border-radius: 20px;
    background: var(--pale-purple);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(17, 12, 53, 0.05);
}

.background-pale-purple .faq-item {
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.background-dark-purple .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--dark-purple, #110C35);
    font-family: var(--hanken-font-family);
    font-size: 20px;
    font-weight: 600;
}

.background-dark-purple .faq-question {
    color: var(--white-tech, #F8F8F8);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--purple-glow, #662BF5);
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 4px;
}

.faq-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon::before {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::after {
    background: var(--dark-purple, #110C35);
}

.background-dark-purple .faq-item.active .faq-icon::after {
    background: var(--white-tech, #F8F8F8);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 30px;
    color: var(--dark-purple, #110C35);
    font-family: var(--hanken-font-family);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0s;
}

.background-dark-purple .faq-answer-inner {
    color: var(--white-tech, #F8F8F8);
    opacity: 0.8;
}

.background-dark-purple .faq-item.active .faq-answer-inner {
    opacity: 0.9;
}

.faq-item.active .faq-answer-inner {
    padding-bottom: 30px;
    opacity: 1;
    transition-delay: 0.2s;
}

.faq-answer-inner p {
    margin-bottom: 0;
    margin-top: 0;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .faq-question {
        font-size: 18px;
        padding: 20px;
    }

    .faq-answer-inner {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer-inner {
        padding-bottom: 20px;
    }
}