html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.cursor-pointer{
    cursor: pointer;
}
/* =========================
   TWM Dark Navbar (Pricing)
   ========================= */

.twm-navbar--dark {
    /* effetto simile alla foto: nero + leggera vignetta */
    background: #212121;
    color: #fff;
}

/* link/navbar text */
.twm-navbar--dark .nav-link {
    color: rgba(255,255,255,0.92) !important;
}

.twm-navbar--dark .nav-link:hover {
    color: #ffffff !important;
}

/* dropdown */
.twm-navbar--dark .dropdown-menu {
    background: #0f0f10;
    border: 1px solid rgba(255,255,255,0.14) !important;
}

.twm-navbar--dark .dropdown-item {
    color: rgba(255,255,255,0.92) !important;
}

    .twm-navbar--dark .dropdown-item:hover {
        background: rgba(255,255,255,0.06);
        color: #fff !important;
    }

/* icone svg che usano currentColor */
.twm-navbar--dark svg path,
.twm-navbar--dark svg line {
    stroke: currentColor;
}

/* separatore sotto la navbar (come in foto) */
.twm-nav-separator {
    height: 1px;
    width: 50%;
    background: linear-gradient(38deg, rgb(255 255 255 / 0%), rgba(115, 105, 231, 0.95), rgba(64, 53, 228, 0.95), rgba(0, 0, 0, 0));
    opacity: 0.85;
}

/* bottoni Register / Login (come in foto) */
.twm-btn-register {
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff !important;
    background: transparent;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 500;
}

    .twm-btn-register:hover {
        border-color: rgba(255,255,255,0.85);
        background: rgba(255,255,255,0.06);
    }

.twm-btn-login {
    border: 1px solid #fff;
    background: #fff;
    color: #0b0b0c !important;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 500;
}

.twm-btn-login a{
    color: #0b0b0c !important;
}

    .twm-btn-login:hover {
        filter: brightness(0.95);
    }


.gradient-starttrading-text {
    background: linear-gradient(-215deg, #4035E4 5%, #fff 35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-starttrading-text-p {
    background: linear-gradient(171deg,rgba(64, 53, 228, 1) 0%, rgba(255, 255, 255, 1) 31%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.twm-card-gradient {
    background: linear-gradient(20deg, rgba(0, 0, 0, 1) 70%, rgba(64, 53, 228, 1) 100%);
    border: solid 1px rgb(64 53 228 / 70%);
}

.top-gradient {
    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(64, 53, 228, 1) 100%);
}

.bottom-gradient {
    background: linear-gradient(0deg,rgba(64, 53, 228, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.twm-video-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem; /* simile rounded-4 */
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.25);
    /* SCEGLI UNO DEI DUE: */
    /* A) altezza fissa/adattiva (semplice) 
    height: clamp(360px, 58vh, 640px);*/
    /* B) oppure ratio (più “cinema”), commenta la height sopra se usi questa */
     aspect-ratio: 16 / 9;
}

.twm-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* dark overlay come reference */
.twm-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 520px at 50% 55%, rgba(0,0,0,.10), rgba(0,0,0,.45) 70%), linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.32));
    z-index: 1;
    pointer-events: none;
}

.twm-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.twm-play-circle {
    width: 3em;
    height: 3em;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.20);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(6px);
}

.twm-video-title {
    font-weight: 600;
    text-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.twm-video-sub {
    opacity: .85;
    text-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.twm-video-card.is-playing .twm-video-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}


/* ===== MOBILE PRICING TABLE ===== */
.twm-pricing-mobile {
    --row-border: 1px solid rgba(255,255,255,.10);
    --panel-bg: #1f1f1f;
    --accent: #6f6ae8;
    --danger: #ff3b3b;
}

/* LEFT fixed column */
.twm-pricing-left {
    position: sticky;
    left: 0;
    z-index: 3;
}



/* Rows */
.twm-row {
    border-bottom: var(--row-border);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: .5em;
}

.twm-row-head {
    border-bottom: var(--row-border);
    height: 65px;
    display: flex;
    align-items: center;
    padding-right: .5em;
}

.twm-head {
    border-bottom: var(--row-border);
    height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 16px;
}

.twm-planhead .btn {
    margin-bottom: 16px;
    white-space: nowrap;
}


.twm-pricing-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.twm-pricing-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.twm-plan {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
}

.twm-pricing-scroll .twm-plan {
    scroll-snap-align: start;
}

.twm-planhead {
    padding: 0;
}

.twm-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
}

.twm-ico {
    width: 24px;
    height: 24px;
    display: inline-block;
}



/* Section wrapper background like your screenshot container */
.bg-dark-twm-2 {
    background: #212121;
}

/* Subtle border color like screenshot */
.border-white-10 {
    border-color: rgba(255,255,255,.10) !important;
}

/* Accent used in screenshot headings */
.text-accent {
    color: #7369E7 !important;
}

/* Card top glow / gradient */
.twm-why-card {
    background: radial-gradient(110% 55% at 50% 0%, rgba(115,105,231,.55), rgba(0,0,0,0) 60%), #1f1f1f;
}

/* Typography close to screenshot */
.twm-why-title {
    letter-spacing: .02em;
}

.twm-why-desc {
    line-height: 1.45;
}

/* Image sizing/placement */
.twm-why-img {
    width: 120px;
    height: auto;
    max-width: 40%;
    object-fit: contain;
}

/* On small screens keep image smaller */
@media (max-width: 575.98px) {
    .twm-why-img {
        width: 92px;
    }
}


/* === DESKTOP PRICING GRID (NO GAP YEARLY COLUMN) === */
.twm-desk {
    --line: rgba(255,255,255,.10);
    --yearly: #2f2e4f;
    display: grid;
    grid-template-columns: 25% repeat(4, 18.7%);
    border-radius: 18px;
}

.twm-desk-cell {
    padding: 5px 5px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    min-height: 65px;
}

    .twm-desk-cell.center {
        justify-content: center;
        text-align: center;
    }

.twm-desk-head {
    padding: 18px 12px;
    align-items: flex-end;
    min-height: 120px;
}

/* Continous Yearly column */
.twm-desk-cell.is-yearly {
    background: var(--yearly);
}

    /* Rounded corners only on the Yearly column */
    .twm-desk-cell.is-yearly.yearly-top {
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }

    .twm-desk-cell.is-yearly.yearly-bottom {
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        border-bottom: 0;
    }

/* last row borders off */
.twm-desk-cell.last-row {
    border-bottom: 0;
}

/* badge */
.twm-yearly-badge {
    border: 1px solid rgba(255,255,255,.35);
    color: rgba(255,255,255,.90);
    background: transparent;
    font-size: .70rem;
    letter-spacing: .05em;
}

.twm-yearly-price {
    font-size: 2.15rem;
    line-height: 1.05;
    font-weight: 700;
    color: #fff;
}

.twm-yearly-suffix {
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    padding-bottom: .22rem;
}
/* MOBILE - featured yearly card */
.twm-plan.twm-plan--yearly {
    background: #2f2e4f;
    border-radius: 18px;
    overflow: hidden; /* fondamentale: niente “tagli” ai bordi */
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* evita “strisce”/gap: tutto trasparente dentro la card */
.twm-plan--yearly .twm-head,
.twm-plan--yearly .twm-row,
.twm-plan--yearly .twm-cell {
    background: transparent !important;
}

/* badge */
.twm-plan--yearly .twm-save-badge {
    border: 1px solid rgba(255,255,255,.35);
    color: rgba(255,255,255,.90);
    background: transparent;
    font-size: .70rem;
}

/* price line */
.twm-plan--yearly .twm-yearly-price {
    font-size: 2.15rem;
    line-height: 1.05;
    font-weight: 700;
    color: #fff;
}

.twm-plan--yearly .twm-yearly-suffix {
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    padding-bottom: .22rem;
}

/* button */
.twm-plan--yearly .twm-yearly-btn {
    background: #fff !important;
    color: #2f2e4f !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    padding: .80rem 1.15rem !important;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    display: block;
}


.twm-hero-pills .twm-pill {
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.25);
    transition: background-color 200ms ease;
}

    .twm-hero-pills .twm-pill.is-active {
        background: #fff;
    }

#twmHeroRight {
    min-height: var(--twm-hero-right-minh, auto);
}

html, body {
    background-color:#212121;
    font-family: Inter, sans-serif;
}

.hero-image {
    bottom: 0;
    right: 0;
    max-width: 67%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

@media (min-width: 2560px) {
    .hero-image {
        max-width: 52%;
    }
}

.gradient-page-white {
    background: linear-gradient(-215deg, #4035E4 5%, #fff 35%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    display: inline-block;
}

.gradient-page-black {
    background: linear-gradient(-215deg, #4035E4 5%, #333333 50%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    display: inline-block;
}

.fade-edges {
    -webkit-mask-image: linear-gradient( to right, transparent 0%, black 30%, black 70%, transparent 100% );
    mask-image: linear-gradient( to right, transparent 0%, black 30%, black 70%, transparent 100% );
}

.fw-extrabold {
    font-weight: 800 !important;
}

.fs-4 {
    font-size: 1.5rem !important;
    line-height: 1.6;
}


.fs-18 {
    font-size: 1.125rem !important; /* 18px */
}

.fs-20 {
    font-size: 1.25rem !important; /* 20px */
}


.fs-22 {
    font-size: 1.375rem !important; /* 22px */
}

.fs-24 {
    font-size: 1.5rem !important; /* 24px */
}

.fs-26 {
    font-size: 1.625rem !important; /* 26px */
}

.fs-28, .fs-28-md {
    font-size: 1.75rem !important; /* 28px */
}

.fs-32 {
    font-size: 2rem !important; /* 32px */
}

.fs-36 {
    font-size: 2.25rem !important; /* 36px */
}

.fs-40 {
    font-size: 2.5rem !important; /* 40px */
}


.fs-52 {
    font-size: 3.25rem !important;
}

.fs-72 {
    font-size: 4.5rem !important;
}



@media (min-width: 992px) {
    .w-lg-50 {
        width: 50% !important;
    }

    .fs-lg-72 {
        font-size: 4.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .fs-28, .fs-28-md {
        font-size: 1.5rem !important; /* 24px */
    }

    .last-timeline-element {
        transform: translateY(0rem) !important;
    }
}

.text-gray-600 {
    color: #b0b0b0 !important;
}

.text-gray-700 {
    color: #4a4a4a !important;
}

.text-purple-200 {
    color: #8890E5 !important;
}

.text-blue-highlight {
    color: #609FFF;
    font-weight: 500;
}

.cta-glass-button {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: none;
}

    .cta-glass-button::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50rem;
        padding: 1.5px;
        background: linear-gradient( to top right, #515EE7 0%, #515EE7 15%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.25) 100% );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

/* Responsive font sizes for CTA */
@media (min-width: 768px) {
    .fs-md-24 {
        font-size: 1.5rem !important;
    }
}

/***********************************
    CTA Glass Button Mobile Styles
***********************************/

/* Mobile adjustments for CTA glass button */
@media (max-width: 767.98px) {
    .cta-glass-button {
        flex-direction: column;
        padding: 0.75rem !important;
        gap: 0.5rem;
        width: 100%;
    }

        .cta-glass-button .btn {
            font-size: 1.125rem !important;
            padding: 0.75rem 1.5rem !important;
            margin-right: 0 !important;
            width: 100%;
        }

        .cta-glass-button span {
            font-size: 1rem !important;
            margin: 0 !important;
        }

    /* Hero section CTA - keep inline but smaller */
    .text-white .cta-glass-button {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
    }

        .text-white .cta-glass-button .btn {
            width: auto;
            margin-right: 0.5rem !important;
        }
}

@media (max-width: 575.98px) {
    .cta-glass-button {
        padding: 0.5rem !important;
    }

        .cta-glass-button .btn {
            font-size: 1rem !important;
            padding: 0.625rem 1.25rem !important;
        }

        .cta-glass-button span {
            font-size: 0.875rem !important;
        }
}

.comparison-list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.light-half::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100vw;
    bottom: 0;
    width: 100vw;
    background-color: #fff;
    z-index: -1;
}

.light-half .comparison-list-item {
    border-color: rgba(0, 0, 0, 0.1);
}

.comparison-list-item:last-of-type {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.list-number {
    font-size: 1.75rem;
    color: #4035E4;
    min-width: 3rem;
}


/***********************************
    Courses/Roadmap Section 
***********************************/
.timeline-track {
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 15%;
    height: 3px;
    background-color: rgba(81, 94, 231, 0.2);
    border-radius: 1.5px;
    z-index: 0;
}

.timeline-dot {
    position: absolute;
    top: 4.5rem;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: block;
}

.timeline-track::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    border-radius: 1.5px;
    background: linear-gradient(to right, #515EE7, #C6CAF8);
}


.roadmap-card {
    position: relative;
    z-index: 2;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.4);
    min-height: 300px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

    .roadmap-card.active {
        position: relative;
        z-index: 2;
        background: rgba(30, 30, 30, 0.8);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-left: none;
        border-right: none;
    }

        .roadmap-card.active::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 1.5px;
            border-radius: 1rem 0 0 1rem;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, #515EE7 50%, rgba(255, 255, 255, 0.1) 100%);
            pointer-events: none;
        }

        .roadmap-card.active::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            width: 1.5px;
            border-radius: 0 1rem 1rem 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, #515EE7 50%, rgba(255, 255, 255, 0.1) 100%);
            pointer-events: none;
        }


.roadmap-nav-btn {
    padding: 0;
    background: transparent;
    border: none;
    color: white;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
}

    .roadmap-nav-btn:hover {
        opacity: 0.8;
    }

.roadmap-item h3 {
    padding-bottom: 4rem;
}

.roadmap-item {
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}


/*****************************************
    CTA Section
*******************************************/
.feature-card-final {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #b0b0b0;
    height: 100%;
    text-align: left;
}


.access-includes-card {
    position: relative;
    max-width: 600px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}


/*    .access-includes-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 1px;
        background: linear-gradient(120deg, #515EE7 0%, rgba(255, 255, 255, 0.1) 19.71%, rgba(255, 255, 255, 0.1) 81.73%, #515EE7 100%);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }*/


.access-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #515EE7;
    box-shadow: 0 0 12px rgba(81, 94, 231, 0.9);
    display: inline-block;
    flex-shrink: 0;
}

.access-includes-list li {
    margin-bottom: 0.75rem;
}

    .access-includes-list li:last-child {
        margin-bottom: 0;
    }


/************************************
    Bottom CTA Section
**************************************/
.access-benefits {
    max-width: 980px;
}

.access-benefits-pill,
.access-benefits-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.access-benefits-pill {
    border-radius: 16px;
}

.access-benefits-card {
    border-radius: 16px;
}

    .access-benefits-pill::before,
    .access-benefits-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1.5px;
        background: linear-gradient(to top right, #515EE7 0%, rgba(255, 255, 255, 0.5) 100%);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.access-benefits-list li {
    margin-bottom: 0.85rem;
}

    .access-benefits-list li:last-child {
        margin-bottom: 0;
    }

@media (max-width: 575.98px) {
    .access-benefits-card {
        padding: 1.5rem !important;
    }
}



/***********************************
    FAQ Accordion Custom Styles 
*************************************/
.faq-container .accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.faq-container .accordion-button {
    background-color: #ECF0FB;
    border-radius: 34px !important;
    color: #232323;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    padding-right: 5rem;
    box-shadow: none !important;
    font-weight: 600;
}

    .faq-container .accordion-button:not(.collapsed) {
        background-color: #fff;
        color: #232323;
        box-shadow: none;
        border: 1px solid #EBECEC;
        border-bottom: none;
        border-radius: 32px 32px 0 0 !important;
    }

    .faq-container .accordion-button::after {
        display: none;
    }

    .faq-container .accordion-button::before {
        content: "";
        position: absolute;
        right: 0.3rem;
        width: 56px;
        height: 56px;
        background-color: #fff;
        border-radius: 50%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='%23232323' stroke-width='1.5' stroke-linecap='round' d='M12 6v12M18 12H6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        transition: background-color 0.2s ease-in-out;
    }

    .faq-container .accordion-button:not(.collapsed)::before {
        background-color: #ECF0FB;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='%23000' stroke-width='1.5' stroke-linecap='round' d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E");
    }



    .faq-container .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

.faq-container .accordion-collapse {
    background-color: #fff;
    border: 1px solid #EBECEC;
    border-top: none;
    border-radius: 0 0 32px 32px;
}

.faq-container .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #1E1E1E;
}

.faq-container .accordion-item:has(.accordion-collapse.show) {
    border: 1px solid #EBECEC;
    border-radius: 32px;
    overflow: hidden;
}

    .faq-container .accordion-item:has(.accordion-collapse.show) .accordion-button {
        background-color: #fff;
        border: none;
        border-radius: 32px 32px 0 0 !important;
    }

    .faq-container .accordion-item:has(.accordion-collapse.show) .accordion-collapse {
        border: none;
        border-radius: 0;
    }


/****************************************
    Review Section Styles 
******************************************/
.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    min-height: 318px;
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .review-card .stars {
        margin-bottom: 1rem;
        color: #515EE7;
    }

    .review-card .review-text {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #E0E0E0;
        margin-bottom: 1.5rem;
    }

    .review-card .reviewer-name {
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: #FFFFFF;
    }

    .review-card .review-date {
        font-size: 0.9rem;
        color: #b0b0b0;
        margin-bottom: 0;
    }


.review-card-cta {
    position: relative;
    background: linear-gradient(180deg, #3429B5 0%, #515EE7 100%);
    border-radius: 1rem;
    min-height: 318px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
}

.review-card-lifted {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-4rem) rotate(-2.61deg);
    min-height: 318px;
    height: calc(100% - 2rem);
    background: linear-gradient(180deg, #1e1e1e 0%, #1B1B1B 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/****************************************
    See Real Systems Section 
******************************************/
.system-card {
    background-color: #262629;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    color: #E0E0E0;
    height: 100%;
}

.system-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}


/**************************************
    Value section with timeline 
***************************************/
.access-timeline {
    position: relative;
    --access-line-highlight-end: 100%;
}



.access-row {
    margin-bottom: 2.5rem;
}

    .access-row:last-child {
        margin-bottom: 0;
    }

.access-item {
    max-width: 550px;
}

.access-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(81, 94, 231, 0.45);
    box-shadow: 0 0 0 6px rgba(81, 94, 231, 0.08);
}

.access-end-dot {
    position: absolute;
    left: 50%;
    bottom: -1.25rem;
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .access-timeline::before {
        content: "";
        position: absolute;
        top: 0.5rem;
        bottom: 0.5rem;
        left: 50%;
        width: 6px;
        background: linear-gradient(to bottom, #515EE7 0 var(--access-line-highlight-end), #DCDFFA var(--access-line-highlight-end) 100%);
        transform: translateX(-50%);
        z-index: 0;
    }

    .access-row {
        position: relative;
        z-index: 1;
    }
}

.last-timeline-element {
    transform: translateY(5rem);
}



/****************************************
    Sign Up Page Styles
******************************************/
.form-control-gradient {
    position: relative;
    background: rgba(0, 0, 0, 0.01);
    border: none;
    border-radius: 16px;
    color: #fff;
}

    .form-control-gradient::placeholder {
        color: #808080;
    }

.form-control-gradient-wrapper {
    position: relative;
}

    .form-control-gradient-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 1px;
        background: linear-gradient(to top right, #515EE7 0%, rgba(255, 255, 255, 0.1) 100%);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }


.form-control-gradient-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.01);
    border-radius: 16px;
}

    .form-control-gradient-group::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 1px;
        background: linear-gradient(to top right, #515EE7 0%, rgba(255, 255, 255, 0.1) 100%);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .form-control-gradient-group .form-control {
        background: transparent;
        border: none;
        color: #fff;
        flex: 1;
    }

        .form-control-gradient-group .form-control::placeholder {
            color: #808080;
        }

        .form-control-gradient-group .form-control:focus {
            box-shadow: none;
            outline: none;
        }

    .form-control-gradient-group .btn-toggle-password {
        background: transparent;
        border: none;
        color: #808080;
        padding: 0 1.25rem;
        cursor: pointer;
    }

        .form-control-gradient-group .btn-toggle-password:hover {
            color: #b0b0b0;
        }


/***************************************
    Paymen Info Page Styles
****************************************/
.pricing-card {
    position: relative;
}

    .pricing-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 1px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 25%);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }


.form-control-dark {
    background-color: #1D1F1E;
    border: 1px solid #474747;
    border-radius: 16px;
    color: #fff;
}

    .form-control-dark::placeholder {
        color: #808080;
    }

    .form-control-dark:focus {
        background-color: #1D1F1E;
        border-color: #515EE7;
        box-shadow: none;
        color: #fff;
    }


.form-select-dark {
    background-color: #1D1F1E;
    border: 1px solid #474747;
    border-radius: 16px;
    color: #808080;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.25781L6.548 7.11411C7.337 7.94681 8.663 7.94681 9.452 7.11411L15 1.25781' stroke='%23E5E5E5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px 8px;
}

    .form-select-dark:focus {
        background-color: #1D1F1E;
        border-color: #515EE7;
        box-shadow: none;
        color: #fff;
    }

    .form-select-dark option {
        background-color: #1D1F1E;
        color: #fff;
    }


/********************************
        Promotion page classes
    ***********************************/

/* Promotion page Hero Feature Card Styles */
.feature-card {
    max-width: 604px;
}

.feature-card-inner {
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Promo Banner Timer Styles */
.promo-banner .countdown-box {
    min-width: 100px;
    height: 76px;
}

/* .promo-icon-box {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        } */

@media (max-width: 991.98px) {
    .promo-banner .countdown-box {
        min-width: 80px;
        height: 60px;
    }

        .promo-banner .countdown-box .fs-3 {
            font-size: 1.5rem !important;
        }
}


/* Offer Card */
.offer-card-v2 {
    background: #272727;
    border: 1px solid transparent;
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    background-clip: padding-box;
}

    .offer-card-v2::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 32px;
        padding: 1px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 25%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.offer-badge-v2 {
    display: inline-block;
    width: fit-content;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid transparent;
    color: #fff;
    font-weight: 500;
    font-size: 1.25rem;
    position: relative;
}

    .offer-badge-v2::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 999px;
        padding: 1.5px;
        background: linear-gradient( 225deg, #515EE7 0%, #515EE7 20%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.1) 100% );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.offer-price-old-v2 {
    font-size: 2rem;
    font-weight: 600;
    color: #808080;
    text-decoration: line-through;
}

.offer-price-v2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
}

.offer-divider-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-star-icon {
    flex: 0 0 auto;
    margin-top: 0.35rem;
    color: #ffffff;
}

.offer-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

    .offer-list-v2 li {
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
        color: #ffffff;
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .offer-list-v2 li:last-child {
            margin-bottom: 0;
        }

.offer-star-icon {
    flex: 0 0 auto;
    margin-top: 0.35rem;
    color: #ffffff;
}

.text-accent-blue {
    color: #609FFF;
}

.offer-btn-v2 {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    background: rgba(30, 30, 30, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    mix-blend-mode: normal;
}

    /* Glassy border effect */
    .offer-btn-v2::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 1px;
        background: rgba(255, 255, 255, 0.2);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        mix-blend-mode: luminosity;
        pointer-events: none;
    }

    /* Bottom glow/reflection effect */
    .offer-btn-v2::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 26px;
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
        filter: blur(12px);
        pointer-events: none;
    }

    .offer-btn-v2:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

        .offer-btn-v2:hover::after {
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
        }


/* Primary filled button variant */
.offer-btn-v2-primary {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    background: #515EE7;
    border: none;
    color: #ffffff;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

    /* Bottom glow effect */
    .offer-btn-v2-primary::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 26px;
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
        filter: blur(12px);
        pointer-events: none;
    }

    .offer-btn-v2-primary:hover {
        background: #6370ea;
        color: #ffffff;
    }

        .offer-btn-v2-primary:hover::after {
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, transparent 70%);
        }


.promo-banner .countdown-box .fs-40 {
    font-variant-numeric: tabular-nums;
    min-width: 2ch;
    display: inline-block;
    text-align: center;
}

/* Mobile responsive fixes for offers section */
@media (max-width: 767.98px) {
    #offers-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

        #offers-section .container-fluid {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        #offers-section .p-4 {
            padding: 0.5rem !important;
        }

        #offers-section .col-12.p-4 {
            padding: 0.75rem !important;
        }

        #offers-section h2.fs-52 {
            font-size: 2rem !important;
        }

    .offer-card-v2 {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .offer-badge-v2 {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .offer-price-old-v2 {
        font-size: 1.5rem;
    }

    .offer-price-v2 {
        font-size: 2rem;
    }

    .offer-list-v2 li {
        margin-bottom: 1rem;
    }

        .offer-list-v2 li .fs-22 {
            font-size: 1rem !important;
        }

    .offer-star-icon {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .offer-btn-v2,
    .offer-btn-v2-primary {
        padding: 0.875rem 1.25rem;
        font-size: 1rem !important;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    #offers-section .container-fluid {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    #offers-section h2.fs-52 {
        font-size: 2.5rem !important;
    }

    .offer-list-v2 li .fs-22 {
        font-size: 1.1rem !important;
    }
}


/* Disabled state for offer buttons */
.offer-btn-v2.disabled,
.offer-btn-v2.disabled:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.85;
    background: rgba(30, 30, 30, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.offer-btn-v2-primary.disabled,
.offer-btn-v2-primary.disabled:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.85;
    background: #515EE7;
    color: #ffffff;
}


/***********************************
    Orientation Page Styles
***********************************/


.orientation-card {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.orientation-card-inner {
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.orientation-bg-image {
    -webkit-mask-image: linear-gradient(to right, transparent 50%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 50%, black 95%, transparent 100%);
}

.all-courses-bg-image {
    -webkit-mask-image: linear-gradient(to right, transparent 10%, black 55%, black 100%);
    mask-image: linear-gradient(to right, transparent 10%, black 55%, black 100%);
}

.all-extensions-bg-image {
    -webkit-mask-image: linear-gradient(to right, transparent 1%, black 40%, black 100%);
    mask-image: linear-gradient(to right, transparent 1%, black 40%, black 100%);
}



/***********************************
    Orientation Page Mobile Styles
***********************************/

/* Mobile adjustments for orientation page */
@media (max-width: 767.98px) {
    /* Navbar mobile */
    .navbar .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .navbar .gap-4 {
        gap: 1rem !important;
    }

    /* Hero section mobile */
    .fs-72 {
        font-size: 2.5rem !important;
    }

    .fs-52 {
        font-size: 1.75rem !important;
    }


    .fs-24 {
        font-size: 1.125rem !important;
    }

    .fs-28, .fs-28-md {
        font-size: 1.5rem !important; /* 24px */
    }

    .fs-22 {
        font-size: 1rem !important;
    }

    .fs-20 {
        font-size: 1rem !important;
    }

    /* Feature card mobile */
    .feature-card {
        max-width: 100%;
    }

    .feature-card-inner {
        padding: 1.5rem;
        border-radius: 20px;
    }

    /* Orientation cards mobile */
    .orientation-card {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .orientation-card-inner {
        padding: 1.5rem;
        border-radius: 20px;
    }

    /* CTA glass button mobile */
    .cta-glass-button {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 0.75rem !important;
        gap: 0.75rem;
    }

        .cta-glass-button .btn {
            font-size: 1rem !important;
            padding: 0.75rem 1.5rem !important;
            width: 100%;
            text-align: center;
        }

        .cta-glass-button span.fs-24 {
            font-size: 0.875rem !important;
            margin-left: 0 !important;
        }

    /* Offers section mobile */
    #offers_section .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Footer section mobile */
    #footer_section .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    #footer_section svg {
        width: 100%;
        height: auto;
    }
}

/* Small mobile adjustments */
@media (max-width: 575.98px) {
    .fs-72 {
        font-size: 2rem !important;
    }

    .fs-52 {
        font-size: 1.5rem !important;
    }

    #promotionOfferBtn span {
        font-size: 0.875rem;
    }
}



.btn {
    transition: all 0.2s ease;
}

    /* Hover */
    .btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.08);
    }

    /* Click */
    .btn:active {
        transform: scale(0.96);
        filter: brightness(0.6);
    }

    /* Focus (accessibilità + mobile tap highlight) */
    .btn:focus {
        box-shadow: 0 0 0 2px rgba(111,106,232,0.4);
    }


.nav-item {
    transition: all 0.2s ease;
}

/* Hover */
.nav-item:hover, .nav-item:focus {
    opacity: 0.6;
}

/* Stato base */
.nav-item {
    opacity: 1;
}

.twm-hero-layer3 {
    touch-action: pan-y;
}



.twm-pricing-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.twm-pricing-scroll .twm-plan {
    scroll-snap-align: start;
}



.twm-hero-bg {
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center bottom;
    filter: blur(0.002px) brightness(0.72) saturate(1.05) contrast(1.08);
    transform: scale(1.06);
    transition: background-image 500ms ease, background-position 500ms ease, filter 350ms ease;
    will-change: transform, filter, background-image;
}

@media (max-width: 991.98px) {
    .twm-hero-bg {
        background-size: 80vw;
    }
}

.twm-hero-premium-overlay {
    pointer-events: none;
    background: radial-gradient(120% 65% at 50% 35%, rgba(111, 106, 232, .18) 0%, rgba(111, 106, 232, 0) 93%), linear-gradient(to top, rgba(10, 10, 14, 0) 0%, rgba(10, 10, 14, 0) 55%, rgba(10, 10, 14, .35) 75%, rgba(10, 10, 14, .75) 90%, #0b0b0c 100%);
}

.twm-hero-layer3 {
    position: relative;
    z-index: 3;
    touch-action: pan-y;
}