/* =========================================================
   LUACHEIA.ORG
   HOME - HEADER + HERO
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #2c2140;
    background: #fbf8f1;
}

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

button {
    font: inherit;
}


/* =========================================================
   COLORI
========================================================= */

:root {
    --avorio: #fbf8f1;
    --avorio-chiaro: #fffdf8;

    --viola: #542080;
    --viola-scuro: #30104f;
    --viola-profondo: #1b0a31;

    --oro: #d8ad45;
    --oro-chiaro: #f1d889;

    --testo: #332743;
    --bianco: #ffffff;

    --header-height: 82px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    height: var(--header-height);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: rgba(255, 253, 248, 0.97);
    border-bottom: 1px solid rgba(216, 173, 69, 0.32);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    width: min(94%, 1450px);
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.logo-link {
    display: flex;
    align-items: center;

    margin-right: 55px;

    flex-shrink: 0;
}

.site-logo {
    display: block;
    width: 210px;
    height: auto;
}


/* =========================================================
   NAVIGAZIONE
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;

    height: 100%;
}

.main-nav > a,
.nav-dropdown-toggle {
    position: relative;

    border: 0;
    background: transparent;

    color: #30253b;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.7px;

    cursor: pointer;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.main-nav > a:hover,
.nav-dropdown-toggle:hover {
    color: var(--viola);
}


/* linea oro hover */

.main-nav > a::after,
.nav-dropdown-toggle::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -10px;

    width: 0;
    height: 2px;

    background: var(--oro);

    transform: translateX(-50%);

    transition: width 0.25s ease;
}

.main-nav > a:hover::after,
.nav-dropdown-toggle:hover::after {
    width: 100%;
}


/* =========================================================
   DROPDOWN SERVIZI
========================================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 15px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 22px);
    left: 50%;

    width: 210px;

    padding: 10px;

    background: var(--avorio-chiaro);

    border: 1px solid rgba(216, 173, 69, 0.35);
    border-radius: 12px;

    box-shadow:
        0 14px 35px rgba(35, 13, 59, 0.15);

    transform:
        translateX(-50%)
        translateY(-8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}

.nav-dropdown-menu a {
    display: block;

    padding: 11px 13px;

    border-radius: 8px;

    color: var(--testo);

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    color: var(--viola);
    background: rgba(84, 32, 128, 0.07);
}


/* =========================================================
   AZIONI HEADER
========================================================= */

.header-actions {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 11px;
}


/* =========================================================
   LINGUA
========================================================= */

.language-selector {
    position: relative;
}

.language-button {
    height: 42px;

    padding: 0 13px;

    display: flex;
    align-items: center;
    gap: 6px;

    border: 1px solid rgba(84, 32, 128, 0.2);
    border-radius: 8px;

    background: transparent;

    color: var(--viola);

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.language-button:hover {
    background: rgba(84, 32, 128, 0.05);
    border-color: rgba(84, 32, 128, 0.45);
}

.language-icon {
    font-size: 15px;
}

.language-menu {
    position: absolute;

    top: calc(100% + 9px);
    right: 0;

    min-width: 160px;

    padding: 8px;

    background: var(--avorio-chiaro);

    border: 1px solid rgba(216, 173, 69, 0.35);
    border-radius: 10px;

    box-shadow:
        0 12px 30px rgba(35, 13, 59, 0.15);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-6px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.language-selector:hover .language-menu,
.language-selector:focus-within .language-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.language-menu button {
    width: 100%;

    padding: 10px 12px;

    border: 0;
    border-radius: 7px;

    background: transparent;

    color: var(--testo);

    text-align: left;

    cursor: pointer;
}

.language-menu button:hover {
    background: rgba(84, 32, 128, 0.07);
    color: var(--viola);
}


/* =========================================================
   LOGIN / SIGN UP
========================================================= */

.btn-login,
.btn-signup {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.7px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn-login {
    color: var(--viola);

    border: 1px solid rgba(84, 32, 128, 0.3);
}

.btn-login:hover {
    background: rgba(84, 32, 128, 0.06);
}

.btn-signup {
    color: var(--bianco);

    background: linear-gradient(
        135deg,
        #542080,
        #71349d
    );

    box-shadow:
        0 5px 16px rgba(84, 32, 128, 0.22);
}

.btn-signup:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(84, 32, 128, 0.3);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.mobile-menu-button {
    width: 42px;
    height: 42px;

    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 0;
    border-radius: 8px;

    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    width: 23px;
    height: 2px;

    background: var(--viola);

    border-radius: 5px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 760px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-top: var(--header-height);

    background-image:
    linear-gradient(
        90deg,
        rgba(12, 5, 27, 0.72) 0%,
        rgba(18, 7, 38, 0.48) 38%,
        rgba(18, 7, 38, 0.12) 67%,
        rgba(18, 7, 38, 0.03) 100%
    ),
    url("../images/heroLuaCheia.jpg");

background-size: auto 100%;
background-position: center right;
background-repeat: no-repeat;
}


/* bagliore / luna provvisoria */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
    linear-gradient(
        90deg,
        rgba(13, 5, 27, 0.30) 0%,
        rgba(20, 7, 40, 0.10) 50%,
        transparent 75%
    );

    pointer-events: none;
}

.hero-container {
    width: min(90%, 1320px);

    margin: 0 auto;

    position: relative;
    z-index: 3;
}

.hero-content {
    width: min(700px, 58%);
}


/* =========================================================
   HERO TESTI
========================================================= */

.hero-eyebrow {
    margin-bottom: 22px;

    color: var(--oro-chiaro);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.hero h1 {
    max-width: 700px;

    margin: 0;

    color: var(--bianco);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(44px, 4.2vw, 66px);
    line-height: 1.03;
    font-weight: 500;

    letter-spacing: -2px;
}

.hero-description {
    max-width: 590px;

    margin-top: 26px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-buttons {
    margin-top: 35px;

    display: flex;
    align-items: center;
    gap: 14px;

    flex-wrap: wrap;
}

.hero-primary-button,
.hero-secondary-button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    padding: 0 25px;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.hero-primary-button {
    gap: 8px;

    color: #2b1740;

    background:
        linear-gradient(
            135deg,
            #f1d889,
            #d4a83f
        );

    box-shadow:
        0 8px 24px rgba(216, 173, 69, 0.25);
}

.hero-primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 11px 28px rgba(216, 173, 69, 0.35);
}

.hero-secondary-button {
    color: var(--bianco);

    border: 1px solid rgba(255, 255, 255, 0.55);

    background: rgba(255, 255, 255, 0.05);
}

.hero-secondary-button:hover {
    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.12);
}

.hero-bonus {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
}

/* =========================================================
   TRUST / BENEFITS BAR
========================================================= */

.trust-bar {
    width: 100%;

    background: var(--avorio-chiaro);

    border-top: 1px solid rgba(216, 173, 69, 0.18);
    border-bottom: 1px solid rgba(216, 173, 69, 0.22);
}

.trust-container {
    width: min(92%, 1400px);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 110px;

    padding: 20px 28px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    position: relative;
}

.trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    width: 1px;
    height: 50%;

    background: rgba(84, 32, 128, 0.14);
}

.trust-icon {
    flex-shrink: 0;

    color: var(--oro);

    font-size: 30px;
    line-height: 1;
}

.trust-text h3 {
    margin: 0 0 6px;

    color: var(--viola-scuro);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.7px;
}

.trust-text p {
    margin: 0;

    color: #6d6475;

    font-size: 13px;
    line-height: 1.45;
}

/* =========================================================
   EXPLORE LUACHEIA
========================================================= */

.explore-section {
    position: relative;

    padding: 90px 0 75px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(216, 173, 69, 0.08),
            transparent 30%
        ),
        var(--avorio);
}

.explore-container {
    width: min(90%, 1320px);

    margin: 0 auto;
}


/* TITOLO SEZIONE */

.explore-heading {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-eyebrow {
    margin-bottom: 12px;

    color: var(--oro);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.explore-heading h2 {
    margin: 0;

    color: var(--viola-scuro);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.1;

    font-weight: 500;
}

.explore-intro {
    margin: 17px auto 0;

    color: #6d6475;

    font-size: 16px;
    line-height: 1.6;
}


/* GRIGLIA */

.experience-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* CARD */

.experience-card {
    overflow: hidden;

    background: var(--avorio-chiaro);

    border: 1px solid rgba(216, 173, 69, 0.28);
    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(38, 16, 60, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-7px);

    border-color: rgba(216, 173, 69, 0.65);

    box-shadow:
        0 20px 45px rgba(38, 16, 60, 0.14);
}


/* IMMAGINE */

.experience-image {
    position: relative;

    width: 100%;
    height: 430px;

    overflow: hidden;

    background: var(--viola-profondo);
}

.experience-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 68%,
            rgba(20, 7, 35, 0.18) 100%
        );

    pointer-events: none;
}

.experience-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.025);
}


/* CONTENUTO */

.experience-content {
    padding: 27px 29px 30px;
}

.experience-category {
    display: block;

    margin-bottom: 8px;

    color: var(--oro);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.experience-content h3 {
    margin: 0 0 13px;

    color: var(--viola-scuro);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    font-weight: 500;
}

.experience-content p {
    min-height: 72px;

    margin: 0;

    color: #6b6271;

    font-size: 14px;
    line-height: 1.65;
}


/* LINK */

.experience-link {
    margin-top: 22px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--viola);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.experience-arrow {
    color: var(--oro);

    font-size: 18px;

    transition: transform 0.25s ease;
}

.experience-link:hover .experience-arrow {
    transform: translateX(5px);
}


/* ALTRE ESPERIENZE */

.explore-more {
    margin-top: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    text-align: center;
}

.explore-more p {
    margin: 0;

    color: #716778;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;
    font-style: italic;
}

.explore-more-star {
    color: var(--oro);

    font-size: 16px;
}

/* =========================================================
   LUACHEIA UNIVERSE
========================================================= */

.universe-section {
    position: relative;
    overflow: hidden;

    padding: 75px 0;

    background-image:
        linear-gradient(
            90deg,
            #170826 0%,
            #1c0a2e 35%,
            rgba(28, 10, 46, 0.92) 43%,
            rgba(28, 10, 46, 0.45) 58%,
            rgba(28, 10, 46, 0.08) 78%
        ),
        url("../images/universo-luacheiaAi.png");

background-size: cover;
background-position: center right;
background-repeat: no-repeat;
}

.universe-container {
    width: min(92%, 1450px);
    margin: 0 auto;
}

.universe-content {
    position: relative;
    z-index: 3;

    max-width: 720px;
}

.universe-visual {
    display: none;
}

.universe-section .section-eyebrow {
    color: var(--oro-chiaro);
}

.universe-content h2 {
    max-width: 600px;

    margin: 0;

    color: var(--bianco);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 3.6vw, 54px);
    line-height: 1.08;
    font-weight: 500;

    letter-spacing: -1px;
}

.universe-description {
    max-width: 610px;

    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.7;
}

.universe-points {
    margin-top: 32px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.universe-point {
    display: block;
}

.universe-point-icon {
    display: block;

    margin-bottom: 8px;

    color: var(--oro);

    font-size: 17px;
}

.universe-point h3 {
    margin: 0 0 5px;

    color: var(--oro-chiaro);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.universe-point p {
    margin: 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 12px;
    line-height: 1.45;
}

/* =========================================================
   START EXPLORING FOR FREE
========================================================= */

.start-free-section {
    position: relative;
    padding: 90px 0 85px;

    background: #fbf8f2;

    border-top: 1px solid rgba(213, 169, 65, 0.22);
}

.start-free-container {
    width: min(90%, 1450px);
    margin: 0 auto;
}


/* TITOLO */

.start-free-heading {
    max-width: 720px;
    margin: 0 auto 50px;

    text-align: center;
}

.start-free-heading .section-eyebrow {
    color: #c89327;
}

.start-free-heading h2 {
    margin: 0;

    color: #35115c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 500;

    letter-spacing: -1px;
}

.start-free-heading > p:last-child {
    max-width: 620px;

    margin: 20px auto 0;

    color: #675b70;

    font-size: 16px;
    line-height: 1.7;
}


/* PASSAGGI */

.start-free-steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    max-width: 1300px;
    margin: 0 auto;

    border-top: 1px solid rgba(94, 40, 125, 0.15);
    border-bottom: 1px solid rgba(94, 40, 125, 0.15);
}

.start-step {
    position: relative;

    min-height: 235px;

    padding: 38px 34px 34px;
}

.start-step:not(:last-child) {
    border-right: 1px solid rgba(94, 40, 125, 0.15);
}

.start-step-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: rgba(53, 17, 92, 0.10);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
}

.start-step-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    border: 1px solid rgba(200, 147, 39, 0.55);
    border-radius: 50%;

    color: #c89327;

    font-size: 20px;
}

.start-step h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 10px;

    color: #35115c;

    font-size: 15px;
    font-weight: 800;
}

.start-step p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: #746879;

    font-size: 14px;
    line-height: 1.6;
}


/* CTA */

.start-free-cta {
    margin-top: 48px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 13px;
}

.btn-start-free {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;

    padding: 0 34px;

    border-radius: 9px;

    background: linear-gradient(
        135deg,
        #f3d77a 0%,
        #d9aa3e 100%
    );

    color: #28103e;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.7px;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(160, 112, 27, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-start-free:hover {
    transform: translateY(-2px);

    box-shadow: 0 14px 30px rgba(160, 112, 27, 0.25);
}

.start-free-cta span {
    color: #817486;

    font-size: 12px;
}

/* =========================================================
   HOME FAQ
========================================================= */

.home-faq-section {
    padding: 65px 0 70px;

    background:
        linear-gradient(
            135deg,
            #1a092b 0%,
            #2d1048 100%
        );
}

.home-faq-container {
    width: min(90%, 1320px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    gap: 90px;

    align-items: start;
}


/* INTRO */

.home-faq-intro {
    position: sticky;
    top: 130px;
}

.home-faq-intro .section-eyebrow {
    color: var(--oro-chiaro);
}

.home-faq-intro h2 {
    max-width: 430px;

    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 3.5vw, 54px);
    line-height: 1.08;
    font-weight: 500;

    letter-spacing: -1px;
}

.home-faq-intro > p:last-child {
    max-width: 390px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.7;
}


/* FAQ */

.home-faq-list {
    border-top: 1px solid rgba(225, 185, 84, 0.35);
}

.home-faq-item {
    border-bottom: 1px solid rgba(225, 185, 84, 0.25);
}

.home-faq-question {
    width: 100%;

    padding: 25px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border: 0;

    background: transparent;

    color: #ffffff;

    font-family: inherit;

    font-size: 16px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.home-faq-question:hover {
    color: #f0cd6a;
}

.home-faq-plus {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(225, 185, 84, 0.55);
    border-radius: 50%;

    color: #f0cd6a;

    font-size: 21px;
    font-weight: 300;

    transition: transform 0.25s ease;
}


/* RISPOSTA CHIUSA */

.home-faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding 0.35s ease;
}

.home-faq-answer p {
    max-width: 720px;

    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 1.7;
}


/* RISPOSTA APERTA */

.home-faq-item.active .home-faq-answer {
    max-height: 220px;

    padding: 0 55px 25px 0;

    opacity: 1;
}

.home-faq-item.active .home-faq-plus {
    transform: rotate(45deg);
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 70px 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(224, 176, 65, 0.13),
            transparent 35%
        ),
        #fbf8f2;

    border-top: 1px solid rgba(211, 166, 61, 0.20);
}

.final-cta-inner {
    width: min(88%, 1320px);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.final-cta-text {
    max-width: 680px;
}

.final-cta-text .section-eyebrow {
    color: #c89327;
}

.final-cta-text h2 {
    margin: 0;

    color: #35115c;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 3.6vw, 54px);
    line-height: 1.08;
    font-weight: 500;

    letter-spacing: -1px;
}

.final-cta-text > p:last-child {
    margin: 18px 0 0;

    color: #6f6275;

    font-size: 15px;
    line-height: 1.7;
}

.final-cta-action {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 11px;
}

.btn-final-cta {
    min-height: 58px;

    padding: 0 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #f3d77a 0%,
            #d9aa3e 100%
        );

    color: #28103e;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.7px;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(160, 112, 27, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-final-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(160, 112, 27, 0.25);
}

.final-cta-action span {
    color: #817486;

    font-size: 12px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background:
        linear-gradient(
            120deg,
            #160824 0%,
            #26103d 100%
        );

    color: #ffffff;
}

.footer-main {
    width: min(90%, 1450px);
    margin: 0 auto;

    padding: 65px 0 55px;

    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);

    gap: 55px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: block;

    width: 220px;
    max-width: 100%;
    height: auto;

    margin-bottom: 22px;

    padding: 10px 14px;

   background: rgba(255, 253, 248, 0.88);

box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12);

    border-radius: 12px;
}

.footer-brand > p {
    margin: 0 0 8px;

    color: #e7c55e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.footer-brand > span {
    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}

.footer-column h3 {
    margin: 4px 0 8px;

    color: #e7c55e;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #f0cf70;
}


/* FOOTER BOTTOM */

.footer-bottom {
    width: min(90%, 1450px);
    margin: 0 auto;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(226, 184, 75, 0.20);
}

.footer-bottom > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;

    gap: 25px;
}

.footer-socials {
    display: flex;

    gap: 9px;
}

.footer-socials a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(226, 184, 75, 0.45);
    border-radius: 50%;

    color: #e7c55e;

    font-size: 13px;

    text-decoration: none;
}

.footer-socials a:hover {
    border-color: #e7c55e;

    background: rgba(226, 184, 75, 0.08);
}

.footer-language {
    min-height: 38px;

    padding: 0 15px;

    border: 1px solid rgba(226, 184, 75, 0.35);
    border-radius: 7px;

    background: transparent;

    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;

    cursor: pointer;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;
}


/* Il menu viene mostrato solo quando è aperto */
.mobile-menu.active {
    display: block;
}


@media (max-width: 980px) {

    .mobile-menu {
        position: fixed;

        top: 78px;
        left: 0;
        right: 0;

        z-index: 999;

        max-height: calc(100vh - 78px);
        overflow-y: auto;

        background: #fbf8f2;

        border-top: 1px solid rgba(65, 25, 95, 0.10);

        box-shadow:
            0 18px 35px rgba(31, 8, 47, 0.12);
    }


    .mobile-nav {
        width: min(88%, 520px);
        margin: 0 auto;

        padding: 25px 0 35px;

        display: flex;
        flex-direction: column;
    }


    /* LINK PRINCIPALI */

    .mobile-nav > a,
    .mobile-services-title {
        padding: 15px 2px;

        border-bottom: 1px solid rgba(65, 25, 95, 0.10);

        color: #28103e;

        font-size: 13px;
        font-weight: 800;

        letter-spacing: 0.8px;
        text-transform: uppercase;

        text-decoration: none;
    }


    /* SERVIZI */

    .mobile-services {
        display: flex;
        flex-direction: column;
    }

    .mobile-services-title {
        display: block;
    }

    .mobile-services-links {
        padding: 8px 0 10px 18px;

        display: flex;
        flex-direction: column;

        border-bottom: 1px solid rgba(65, 25, 95, 0.10);
    }

    .mobile-services-links a {
        padding: 9px 0;

        color: #6a5771;

        font-size: 13px;

        text-decoration: none;
    }

    .mobile-services-links a:hover {
        color: #6b2594;
    }


    /* LOGIN + SIGN UP */

    .mobile-menu-account {
        padding-top: 24px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .mobile-menu-account a {
        min-height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 8px;

        font-size: 12px;
        font-weight: 800;

        letter-spacing: 0.6px;
        text-transform: uppercase;

        text-decoration: none;
    }

    .mobile-login {
        border: 1px solid rgba(80, 35, 110, 0.25);

        color: #4c1c70;

        background: transparent;
    }

    .mobile-signup {
        border: 1px solid #6b2594;

        color: #ffffff;

        background: #6b2594;

        box-shadow:
            0 8px 18px rgba(89, 29, 125, 0.18);
    }

}

/* blocca lo scroll della pagina quando il menu mobile è aperto */

body.mobile-menu-open {
    overflow: hidden;
}


/* hamburger -> X */

.mobile-menu-button span {
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .main-nav {
        gap: 20px;
    }

    .logo-link {
        margin-right: 30px;
    }

    .main-nav > a,
    .nav-dropdown-toggle {
        font-size: 11px;
    }

    .btn-login,
    .btn-signup {
        padding: 0 14px;
    }

}


/* TABLET / MOBILE */

@media (max-width: 980px) {

    :root {
        --header-height: 72px;
    }

    .header-container {
        width: 92%;
    }

    .main-nav {
        display: none;
    }

    .btn-login {
        display: none;
    }

    .logo-link {
        margin-right: 0;
    }

    .site-logo {
    width: 175px;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        width: 60%;
    }

    .hero::after {
        width: 390px;
        height: 390px;

        right: -3%;
    }
    
        .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2)::after {
        display: none;
    }

    .trust-item {
        border-bottom: 1px solid rgba(84, 32, 128, 0.10);
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }
    
        .explore-section {
        padding: 70px 0 60px;
    }

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

    .experience-card:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 14px);

        justify-self: center;
    }
    
        .universe-section {
        padding: 65px 0;
    }

    .universe-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .universe-content {
        max-width: 760px;

        margin: 0 auto;
    }

    .universe-visual {
        min-height: auto;
    }

    .universe-visual::after {
        display: none;
    }

    .universe-visual img {
        position: relative;

        width: 100%;
        height: auto;

        left: auto;
        top: auto;

        transform: none;
    }

}

/* SMARTPHONE */

@media (max-width: 700px) {

    .site-header {
        height: 72px;
        background: rgba(255, 253, 248, 0.98);
    }

.header-container {
    width: var(--larghezza-mobile);
    height: 72px;
    padding: 0 16px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .logo-link {
        margin: 0;
        width: fit-content;
    }

.site-logo {
    display: block;
    width: 125px;
    height: auto;
}

.header-actions {
    margin-left: auto;

    display: flex !important;
    align-items: center;
    gap: 6px;
}

.main-nav {
        display: none;
    }

    .btn-login,
    .btn-signup {
        display: none;
    }

    .language-selector {
        display: block !important;
    }

    .language-button {
        display: flex !important;

        height: 40px;
        padding: 0 9px;

        align-items: center;
        gap: 5px;
    }

    .mobile-menu-button {
        display: flex !important;

        width: 40px;
        height: 40px;

        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }


    .hero {
    min-height: 760px;

    align-items: flex-start;

    padding-top: calc(var(--header-height) + 80px);

    text-align: center;

    background-size: auto 100%;
    background-position: 62% center;
    background-repeat: no-repeat;
}


/* =========================================================
   LUACHEIA UNIVERSE - SMARTPHONE
========================================================= */

.universe-section {
    padding: 55px 0;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(216, 173, 69, 0.10),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #170826 0%,
            #220b38 100%
        );
}

.universe-container {
    width: 88%;

    margin: 0 auto;

    display: block;
}

.universe-visual {
    display: none;
}

.universe-content {
    width: 100%;
    max-width: none;

    margin: 0;
}

.universe-section .section-eyebrow {
    margin-bottom: 14px;

    color: var(--oro-chiaro);

    font-size: 11px;
    line-height: 1.4;

    letter-spacing: 2px;
}

.universe-content h2 {
    max-width: none;

    margin: 0;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.06;

    letter-spacing: -0.5px;
}

.universe-description {
    max-width: none;

    margin: 23px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;
    line-height: 1.65;
}

.universe-points {
    margin-top: 34px;

    display: grid;
    grid-template-columns: 1fr;

    gap: 24px;
}

.universe-point {
    display: block;
}

.universe-point-icon {
    display: block;

    margin-bottom: 6px;

    color: var(--oro);

    font-size: 16px;
}

.universe-point h3 {
    margin: 0 0 5px;

    color: var(--oro-chiaro);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.universe-point p {
    margin: 0;

    color: rgba(255, 255, 255, 0.66);

    font-size: 12px;
    line-height: 1.5;
}

    .hero-container {
        width: 88%;
    }

    .hero-content {
        width: 100%;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero h1 {
        max-width: 520px;
        margin: 0 auto;

        font-size: clamp(40px, 12vw, 57px);
        letter-spacing: -1.5px;
    }

    .hero-description {
        max-width: 500px;

        margin-left: auto;
        margin-right: auto;

        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
        max-width: 330px;
    }

    .trust-container {
        width: 92%;
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: auto;

        padding: 22px 10px;

        justify-content: flex-start;

        border-bottom: 1px solid rgba(84, 32, 128, 0.10);
    }

    .trust-item::after {
        display: none !important;
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .trust-icon {
        width: 42px;
        text-align: center;
    }

    .explore-section {
        padding: 58px 0 50px;
    }

    .explore-heading {
        margin-bottom: 35px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .experience-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .experience-image {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .experience-content {
        padding: 23px 23px 26px;
    }

    .experience-content p {
        min-height: auto;
    }

    .explore-more {
        margin-top: 32px;
    }

    .universe-section {
        padding: 55px 0;
    }

    .universe-content h2 {
        font-size: clamp(37px, 11vw, 50px);
    }

    .universe-description {
        font-size: 15px;
    }

    .universe-points {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    /* =========================================================
   START EXPLORING - SMARTPHONE
========================================================= */

.start-free-section {
    padding: 60px 0 55px;
}

.start-free-container {
    width: 88%;
}

.start-free-heading {
    margin-bottom: 38px;
}

.start-free-heading h2 {
    font-size: 42px;
    line-height: 1.08;
}

.start-free-heading > p:last-child {
    font-size: 15px;
    line-height: 1.65;
}

.start-free-steps {
    grid-template-columns: 1fr;

    border-top: 1px solid rgba(94, 40, 125, 0.15);
    border-bottom: 1px solid rgba(94, 40, 125, 0.15);
}

.start-step {
    min-height: auto;

    padding: 30px 18px 30px;
}

.start-step:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(94, 40, 125, 0.15);
}

.start-step-number {
    top: 24px;
    right: 18px;
}

.start-free-cta {
    margin-top: 38px;
}

.btn-start-free {
    width: 100%;
    max-width: 330px;

    min-height: 58px;

    padding: 0 22px;

    text-align: center;
}


/* =========================================================
   FAQ - SMARTPHONE
========================================================= */

.home-faq-section {
    padding: 55px 0 60px;
}

.home-faq-container {
    width: 88%;

    grid-template-columns: 1fr;

    gap: 35px;
}

.home-faq-intro {
    position: static;
}

.home-faq-intro h2 {
    max-width: none;

    font-size: 42px;
}

.home-faq-intro > p:last-child {
    max-width: none;
}

.home-faq-question {
    width: 100%;

    padding: 22px 0;

    gap: 18px;

    font-size: 15px;
}

.home-faq-answer p {
    max-width: none;
}

.home-faq-item.active .home-faq-answer {
    padding: 0 0 22px 0;
}


/* =========================================================
   FINAL CTA - SMARTPHONE
========================================================= */

.final-cta {
    padding: 55px 0;
}

.final-cta-inner {
    width: 88%;

    flex-direction: column;
    align-items: stretch;

    gap: 32px;
}

.final-cta-text {
    max-width: none;
}

.final-cta-text h2 {
    font-size: 42px;
}

.final-cta-action {
    width: 100%;

    align-items: center;
}

.btn-final-cta {
    width: 100%;
    max-width: 330px;

    padding: 0 22px;

    text-align: center;
}


/* =========================================================
   FOOTER - SMARTPHONE
========================================================= */

.footer-main {
    width: 88%;

    padding: 48px 0 42px;

    grid-template-columns: 1fr 1fr;

    gap: 35px 24px;
}

.footer-brand {
    grid-column: 1 / -1;

    max-width: none;
}

.footer-logo {
    width: 145px;
}

.footer-column {
    gap: 10px;
}

.footer-bottom {
    width: 88%;

    min-height: auto;

    padding: 25px 0;

    flex-direction: column;
    align-items: flex-start;

    gap: 22px;
}

.footer-bottom-right {
    width: 100%;

    justify-content: space-between;

    gap: 18px;

    flex-wrap: wrap;
}

}

/* =========================================================
   COOKIE CONSENT
========================================================= */

.luacheia-cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;

    display: flex;
    justify-content: center;

    pointer-events: none;
}

.luacheia-cookie-inner {
    width: min(1180px, 100%);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 24px 28px;

    background:
        linear-gradient(
            135deg,
            rgba(45, 16, 73, 0.98),
            rgba(66, 22, 99, 0.98)
        );

    border: 1px solid rgba(226, 184, 75, 0.35);
    border-radius: 22px;

    box-shadow:
        0 18px 50px rgba(30, 10, 50, 0.28);

    pointer-events: auto;
}

.luacheia-cookie-text {
    max-width: 760px;
}

.luacheia-cookie-text h2 {
    margin: 0 0 8px;

    color: #fffaf0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.luacheia-cookie-text p {
    margin: 0;

    color: rgba(255, 250, 240, 0.82);

    font-size: 14px;
    line-height: 1.65;
}

.luacheia-cookie-text a {
    display: inline-block;

    margin-top: 9px;

    color: #e2b84b;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.luacheia-cookie-text a:hover {
    text-decoration: underline;
}


/* =========================================================
   COOKIE BUTTONS
========================================================= */

.luacheia-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.luacheia-cookie-actions button {
    min-width: 116px;

    padding: 12px 20px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.luacheia-cookie-reject {
    background: transparent;

    color: #fffaf0;

    border:
        1px solid rgba(255, 250, 240, 0.40);
}

.luacheia-cookie-reject:hover {
    border-color: rgba(255, 250, 240, 0.75);

    transform: translateY(-1px);
}

.luacheia-cookie-accept {
    background: #e2b84b;

    color: #2d1049;

    border: 1px solid #e2b84b;
}

.luacheia-cookie-accept:hover {
    transform: translateY(-1px);
}


/* =========================================================
   COOKIE PREFERENCES
========================================================= */

.luacheia-cookie-preferences {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 99990;

    padding: 8px 13px;

    background: rgba(255, 250, 240, 0.96);

    color: #4b2369;

    border: 1px solid rgba(98, 51, 135, 0.20);
    border-radius: 999px;

    box-shadow:
        0 8px 24px rgba(53, 16, 92, 0.10);

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.luacheia-cookie-preferences:hover {
    border-color: rgba(98, 51, 135, 0.40);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .luacheia-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .luacheia-cookie-inner {
        display: block;

        padding: 20px 18px;

        border-radius: 18px;
    }

    .luacheia-cookie-text h2 {
        font-size: 21px;
    }

    .luacheia-cookie-text p {
        font-size: 12px;
        line-height: 1.6;
    }

    .luacheia-cookie-text a {
        font-size: 12px;
    }

    .luacheia-cookie-actions {
        margin-top: 18px;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .luacheia-cookie-actions button {
        width: 100%;
        min-width: 0;

        padding: 11px 14px;

        font-size: 12px;
    }

    .luacheia-cookie-preferences {
        left: 12px;
        bottom: 12px;

        font-size: 10px;
    }

}