:root {
    --bg-dark: #220010;
    --bg-dark-2: #32001c;
    --accent: #E5006B;
    --accent-dark: #d30067;
    --text-light: #f4f1f4;
    --text-soft: #d6ced5;
    --text-dark: #1f1020;
    --bg-light: #f1f1f1;
    --muted-badge: #6f5f68;
}

body{
    font-family: 'Inter Regular';
}

p{
    font-size: 17px;
}

h1, h2, h3, h4, h5{
    font-family: 'Inter Extra Bold';
}

.regular{
    font-family: 'Inter Regular';
}

.extra-bold{
    font-family: 'Bricolage Extra Bold';
}

.bold{
    font-family: 'Bricolage Bold';
}

.inter{
    font-family: 'Inter Extra Bold';
}

.light{
    font-family: 'Inter Light';
}

strong{
    font-family: 'Inter Bold';
}

a{
    color: currentColor;
    text-decoration: none !important;
}

a:hover{
    color: currentColor;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px !important;
    }
}


/* ===== HERO ===== */
.web-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: var(--text-light);
}

.hero-row {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.15);
    color: #efe8ee;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}


.fucsia {
    color: var(--accent);
}

.hero-text {
    max-width: 560px;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: #fff;
    border-radius: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    background-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Media hero */
.hero-media-wrapper {
    position: relative;
    max-width: 520px;
}

.hero-media-frame-2 {
    position: absolute;
    top: -20px;
    right: -15px;
    width: 110%;
    height: 106%;
    transform: skewX(-6deg);
    border: 3px solid rgba(255, 0, 122, 0.9);
    z-index: 0;
}

/* layer glow */
.hero-media-frame-2::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 0, 122, 0.9);

    box-shadow:
        0 0 20px rgba(255, 0, 122, 0.7),
        0 0 40px rgba(255, 0, 122, 0.6),
        0 0 80px rgba(255, 0, 122, 0.5);

    opacity: 0.7;
    animation: neonPulse 2.5s ease-in-out infinite;
}

/* animi SOLO opacity */
@keyframes neonPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
  
.hero-media-frame {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 102%;
    height: 102%;
    
    border: 3px solid rgba(255, 0, 122, 0.45);
    z-index: 0;

     box-shadow:
        0 0 5px rgba(255, 0, 122, 0.8),
        0 0 10px rgba(255, 0, 122, 0.8),
        0 0 20px rgba(255, 0, 122, 0.7),
        0 0 40px rgba(255, 0, 122, 0.6),
        0 0 80px rgba(255, 0, 122, 0.5);
}

.hero-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #000;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.hero-media-text {
    position: absolute;
    top: 48%;
    left: 52%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: serif;
    font-weight: 400;
}

.hero-icon-box {
    position: absolute;
    left: -28px;
    bottom: -28px;
    width: 96px;
    height: 96px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.hero-icon-box img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

/* Shape decorative */
  .hero-line {
    position: absolute;
    left: -41%;
    bottom: 15%;
    width: 150%;
    height: 340px;
    background: rgba(255, 0, 122, 0.08);
    transform: skewY(-20deg);
    z-index: 1;
    pointer-events: none;
}

/* ===== SEZIONE CHIARA ===== */
.web-value-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}


.value-text-box {
    position: relative;
}

.value-text-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 8px;
    height: 99%;
    background-color: var(--accent);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .web-hero-section {
        padding: 80px 0 90px;
    }

    .hero-media-wrapper {
        max-width: 460px;
    }

}

@media (max-width: 991.98px) {
    .web-hero-section {
        padding: 70px 0 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-media-wrapper {
        margin: 0 auto;
        max-width: 500px;
    }

    .hero-title {
        max-width: 100%;
    }

    .hero-text {
        max-width: 100%;
    }

    .web-value-section {
        padding: 80px 0;
    }


    .value-text-box::before {
        width: 6px;
        height: 99%;
    }
}

@media (max-width: 767.98px) {
    .web-hero-section {
        padding: 60px 0 70px;
    }

    .hero-badge {
        padding: 9px 14px;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-text {
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-media-wrapper {
        max-width: 100%;
    }

    .hero-media-frame {
        top: -12px;
        right: -12px;
    }

    .hero-icon-box {
        width: 78px;
        height: 78px;
        left: 12px;
        bottom: -18px;
    }

    .hero-icon-box img {
        width: 34px;
        height: 34px;
    }

    .web-value-section {
        padding: 65px 0;
    }


    .value-text-box {
        padding-left: 22px;
    }

    .value-text-box::before {
        width: 5px;
        height: 99%;
        top: 2px;
    }

    
}

@media (max-width: 575.98px) {
    .web-hero-section {
        padding: 48px 0 60px;
    }

    .hero-title br {
        display: none;
    }

    .hero-title {
        line-height: 1.1;
    }

    .hero-media {
        aspect-ratio: 4 / 4.8;
    }

    .value-title h2 br {
        display: none;
    }
}

.web-services-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    padding: 100px 0 90px;
    color: var(--text-light);
}

.services-heading {
    margin-bottom: 55px;
}

.services-heading h2 {
    text-transform: uppercase;
    color: var(--text-light);
}

.services-heading h2 span {
    color: var(--accent);
}

.services-heading-line {
    width: 110px;
    height: 14px;
    background-color: var(--accent);
    margin-top: 24px;
}

.services-cards-row {
    margin-bottom: 60px;
}

.service-card {
    background-color: rgba(58, 0, 29, 0.75);
    border: 1px solid rgba(255, 0, 122, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
}

.service-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-icon {
    margin-bottom: 22px;
}

.service-card-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.service-card h3 {
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}

.service-card p {
    line-height: 1.75;
    color: var(--text-soft);
    margin-bottom: 34px;
}

.service-card p strong {
    color: #ffffff;
    font-weight: 700;
}

.service-card-points {
    margin-top: auto;
}

.service-card-points h4 {
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    color: #ffffff;
}

.service-card-points ul {
    margin: 0 0 34px 0;
    padding: 0;
    list-style: none;
}

.service-card-points li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-soft);
}

.service-card-points li strong{
    color: white;
}

.service-card-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.service-card-link span {
    line-height: 1;
    display: inline-block; /* necessario per le trasformazioni */
    transition: transform 0.3s ease; /* transizione per la rotazione */
}

.service-card-link:hover {
    color: #ffffff;
}

.service-card-link:hover span:last-child {
    transform: rotate(90deg); /* ruota la freccia verso il basso */
}

.services-cta-box {
    border: 2px solid var(--accent);
    padding: 34px 20px 28px;
}

.services-cta-box p {
    margin: 0 0 12px 0;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
}

.services-cta-box a {
    color: #ffffff;
    text-decoration: underline;
}

/* responsive */
@media (max-width: 991.98px) {
    .web-services-section {
        padding: 80px 0 75px;
    }

    .services-heading {
        margin-bottom: 40px;
    }

    .service-card-body {
        padding: 24px;
    }


    .service-card p {
        margin-bottom: 28px;
    }
}

@media (max-width: 767.98px) {
    .web-services-section {
        padding: 65px 0 60px;
    }

    .services-heading-line {
        width: 80px;
        height: 10px;
        margin-top: 18px;
    }

    .services-cards-row {
        margin-bottom: 40px;
    }


    .services-cta-box {
        padding: 26px 16px 22px;
    }

}



.web-method-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    padding: 110px 0 90px;
    color: var(--text-light);
}

.method-heading-row {
    margin-bottom: 70px;
}

.method-title h2 {
    margin: 0;
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
}

.method-title h2 span {
    color: var(--accent);
}

.method-intro {
    position: relative;
    max-width: 540px;
    padding-left: 32px;
    margin-left: auto;
}

.method-intro::before {
    content: "";
    position: absolute;
    left: 0;
    top: -6px;
    width: 3px;
    height: 140px;
    background-color: var(--accent);
}

.method-intro p {
    margin: 0 0 26px 0;
    line-height: 1.5;
    color: var(--text-soft);
}

.method-intro p:last-child {
    margin-bottom: 0;
}

.method-intro strong {
    color: #ffffff;
    font-weight: 800;
}

.method-steps-row {
    margin-bottom: 55px;
}

.method-step {
    height: 100%;
}

.method-step-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-bottom: 4px solid var(--accent);
    margin-bottom: 28px;
    background: #12000a;
}

.method-step-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.method-step-body {
    padding-right: 10px;
}

.method-step-number {
    line-height: 1;
    font-weight: 800;
    color: rgba(255, 0, 122, 0.22);
    margin-bottom: 18px;
}

.method-step h3 {
    margin: 0 0 14px 0;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
}

.method-step-subtitle {
    margin-bottom: 24px;
    line-height: 1.4;
    font-style: italic;
    color: var(--accent);
}

.method-step p {
    margin: 0;
    line-height: 1.65;
    color: var(--text-soft);
    max-width: 260px;
}

.method-cta a {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    position: relative; /* necessario per ::after */
}

.method-cta a span {
    position: relative;
}

.method-cta a span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; /* distanza dalla linea di testo */
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.method-cta a:hover span::after {
    transform: scaleX(1);
}
/* .method-cta a:hover {
    color: #ffffff;
} */

/* responsive */
@media (max-width: 1199.98px) {

    .method-step p {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .web-method-section {
        padding: 85px 0 75px;
    }

    .method-heading-row {
        margin-bottom: 50px;
    }

    .method-intro {
        margin-left: 0;
        max-width: 100%;
    }

    .method-intro::before {
        height: 110px;
    }
}

@media (max-width: 767.98px) {
    .web-method-section {
        padding: 65px 0 55px;
    }

    .method-heading-row {
        margin-bottom: 40px;
    }

    .method-title h2 {
        line-height: 1;
    }

    .method-intro {
        padding-left: 22px;
    }

    .method-intro::before {
        width: 2px;
        height: 90px;
        top: 4px;
    }

    .method-intro p {
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .method-step-media {
        margin-bottom: 20px;
    }

    .method-step-number {
        margin-bottom: 12px;
    }

    .method-step h3 {
        margin-bottom: 10px;
    }

    .method-step-subtitle {
        margin-bottom: 16px;
    }

    .method-step p {
        line-height: 1.6;
    }

    .method-steps-row {
        margin-bottom: 35px;
    }
}

@media (max-width: 575.98px) {
    .method-title h2 br {
        display: none;
    }


    .method-step-media {
        aspect-ratio: 16 / 10;
    }
}


.web-why-section {
    padding: 110px 0 95px;
}

.why-heading {
    margin-bottom: 70px;
}

.why-heading h2 {
    margin: 0;
    color: var(--text-dark);
    line-height: 0.98;
    font-weight: 800;
    text-transform: uppercase;
}

.why-heading h2 span {
    color: var(--accent);
}

.why-heading-text {
    text-align: right;
}

.why-heading-text p {
    margin: 0;
    line-height: 1.25;
    color: var(--text-dark);
    font-weight: 700;
}

.why-heading-text .bold {
    display: block;
    line-height: 1.25;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
}

.why-points {
    margin-bottom: 70px;
}

.why-point-row {
    margin-bottom: 46px;
}

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

.why-label {
    position: relative !important;
    padding: 60px 46px;
    min-height: 150px;
    display: flex;
    align-items: center;
    overflow: visible; /* importante per mostrare lo skew */
}

.why-label span {
    display: block;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    z-index: 1; /* sopra lo sfondo */
}

.why-label-dark .why-bg {
    position: absolute;
    top: 0;
    width: 100%; 
    left: 2%;
    height: 100%;
    background-color: #7b0040;
    transform: skewX(6deg);
    z-index: 0;
}

.why-label-dark span,
.why-label-accent span,
.why-label-soft span {
    transform: skewX(6deg);
}

.why-label-accent {
    background-color: var(--accent);
    transform: skewX(-6deg);
    justify-content: flex-end;
}

.why-label-soft {
    background-color: #a79a94;
    transform: skewX(-7deg);
}

.why-label-soft span {
    transform: skewX(4deg);
}

.why-text {
    line-height: 1.45;
    color: #6a7488;
}



.why-bottom-cards {
    margin-bottom: 80px;
}

.why-info-card {
    position: relative;
    height: 100%;
    min-height: 230px;
    padding: 36px 38px;
    background-color: transparent;
    overflow: hidden;
}

.why-info-card h3 {
    margin: 0 0 24px 0;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    max-width: 420px;
}

.why-info-card p {
    margin: 0;
    max-width: 420px;
    line-height: 1.7;
    color: #6a7488;
}

.why-info-card-dark {
    border: 3px solid #6e0037;
}

.why-info-card-accent {
    border: 3px solid var(--accent);
}

.why-info-icon {
    position: absolute;
    right: 24px;
    bottom: 10px;
    line-height: 1;
    color: rgba(255, 0, 122, 0.12);
    pointer-events: none;
}

.why-info-card-dark .why-info-icon {
    color: rgba(110, 0, 55, 0.12);
}

.why-cta-btn {
    min-width: 370px;
    min-height: 86px;
    padding: 18px 34px;
    border-radius: 0;
    background-color: #7b0040;
    color: #fff;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
    transition: 0.25s ease;
}

.why-cta-btn:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* responsive */
@media (max-width: 991.98px) {
    .web-why-section {
        padding: 85px 0 75px;
    }

    .why-heading {
        margin-bottom: 50px;
    }

    .why-heading-text {
        text-align: left;
    }

    .why-label {
        min-height: 130px;
        padding: 30px 32px;
        
    }

    .why-point-row-right .why-text,
    .why-text {
        max-width: 100%;
    }

    .why-bottom-cards {
        margin-bottom: 60px;
    }

    .why-info-card {
        min-height: 210px;
        padding: 30px 28px;
    }

      .why-bg {
        transform: none !important;
    }
}

@media (max-width: 767.98px) {
    .web-why-section {
        padding: 65px 0 55px;
    }

    .why-heading {
        margin-bottom: 40px;
    }

    .why-heading h2 {
        line-height: 1.02;
    }

    .why-points {
        margin-bottom: 45px;
    }

    .why-point-row {
        margin-bottom: 30px;
    }

    .why-label {
        min-height: auto;
        padding: 24px 22px;
        transform: none !important;
    }

    .why-bg {
        transform: none !important;
    }

    .why-label span,
    .why-label-dark span,
    .why-label-accent span,
    .why-label-soft span {
        transform: none !important;
    }


    .why-label-accent {
        justify-content: flex-start;
    }


    .why-info-card {
        min-height: auto;
    }

   

    .why-cta-btn {
        min-width: 100%;
        width: 100%;
        min-height: 74px;
    }
}

@media (max-width: 575.98px) {
    .why-heading h2 br {
        display: none;
    }
}


.web-faq-section {
    background: #660033;
    padding: 110px 0 90px;
}

.faq-heading {
    margin-bottom: 60px;
}

.faq-heading h2 {
    margin: 0;
    color: #f5f2f5;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.faq-wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.web-faq-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-icon-width: 1.1rem;
    --bs-accordion-active-color: #ffffff;
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-btn-bg: #700039;
    --bs-accordion-active-bg: #700039;
}

.faq-item {
    background-color: #700039;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 18px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.web-faq-accordion .accordion-header {
    margin: 0;
}

.web-faq-accordion .accordion-button {
    background-color: #700039;
    color: #ffffff;
    padding: 28px 46px 28px 36px;
    line-height: 1.2;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: none;
    position: relative;
}

.web-faq-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.web-faq-accordion .accordion-button::after {
    background-image: none;
    font-family: 'Inter Bold';
    content: "›";
    width: auto;
    height: auto;
    font-weight: 400;
    color: #ffffff;
    transform: rotate(0deg);
    margin-left: auto;
    line-height: 1;
}

.web-faq-accordion .accordion-button:not(.collapsed)::after {
    content: "⌄";
    transform: none;
}

.web-faq-accordion .accordion-body {
    background-color: #700039;
    padding: 0 36px 30px 36px;
}

.web-faq-accordion .accordion-body p {
    margin: 0;
    max-width: 980px;
    color: #f2dfe8;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .web-faq-section {
        padding: 85px 0 75px;
    }

    .faq-heading {
        margin-bottom: 42px;
    }

    .web-faq-accordion .accordion-button {
        padding: 24px 64px 24px 26px;
    }

    .web-faq-accordion .accordion-body {
        padding: 0 26px 24px 26px;
    }

}

@media (max-width: 767.98px) {
    .web-faq-section {
        padding: 65px 0 55px;
    }

    .faq-heading {
        margin-bottom: 32px;
    }

    .web-faq-accordion .accordion-button {
        padding: 20px 52px 20px 18px;
        line-height: 1.3;
    }

    .web-faq-accordion .accordion-body {
        padding: 0 18px 20px 18px;
    }

    .web-faq-accordion .accordion-body p {
        line-height: 1.65;
    }

    .faq-item {
        margin-bottom: 12px;
    }
}



.web-final-message-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    padding: 110px 0 95px;
    color: var(--text-light);
}

.final-message-top {
    margin-bottom: 110px;
}

.final-message-top h2 {
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: -0.02em;
}





.final-message-top h2 .bg-fucsia{
    display: inline-block;
    margin-top: 10px;
    padding: 10px 14px 14px;
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
}

.final-message-content {
    max-width: 820px;
}

.final-message-content p {
    margin: 0 0 36px 0;
    line-height: 1.45;
    color: var(--text-soft);
}

.final-message-content p strong {
    color: #ffffff;
    font-weight: 800;
}

.final-message-highlight {
    margin-top: 26px;
    margin-bottom: 54px;
}

.final-message-highlight p {
    margin: 0 0 8px 0;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.final-message-highlight p:last-child {
    margin-bottom: 0;
}

.final-message-line {
    width: 100%;
    height: 1px;
    background-color: var(--accent);
}

/* responsive */
@media (max-width: 991.98px) {
    .web-final-message-section {
        padding: 85px 0 75px;
    }

    .final-message-top {
        margin-bottom: 70px;
    }

    .final-message-content {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .web-final-message-section {
        padding: 65px 0 55px;
    }

    .final-message-top {
        margin-bottom: 44px;
    }

    .final-message-top h2 {
        line-height: 1;
    }

    .final-message-top h2 strong {
        margin-top: 8px;
        padding: 8px 10px 10px;
    }

    .final-message-content p {
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .final-message-highlight {
        margin-top: 10px;
        margin-bottom: 34px;
    }

    .final-message-highlight p {
        margin-bottom: 4px;
    }
}

@media (max-width: 575.98px) {
    .final-message-top h2 br {
        display: none;
    }


    .final-message-top h2 strong {
        display: inline;
        padding: 4px 8px 6px;
        line-height: 1.2;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }
}


.web-contact-section {
    background: #660033;
    padding: 110px 0 35px;
}

.contact-heading {
    margin-bottom: 70px;
}

.contact-heading h2 {
    margin: 0 0 14px 0;
    color: #f5f2f5;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-form-wrap {
    max-width: 1080px;
    margin: 0 auto 110px;
}

.web-contact-form .form-label,
.web-contact-form .form-check-label,
.web-contact-form .form-floating > label {
    color: #ffffff;
}

.web-floating {
    position: relative;
}

.web-floating > .form-control,
.web-floating > .form-select {
    height: 74px;
    min-height: 74px;
    border-radius: 0;
    border: 0;
    background-color: #24000f;
    color: #ffffff;
    box-shadow: none;
    padding-left: 22px;
    padding-right: 22px;
}

.web-floating.web-floating-textarea > .form-control {
    height: auto;
    min-height: 220px;
    padding-top: 34px;
}

.web-floating > .form-control:focus,
.web-floating > .form-select:focus {
    background-color: #24000f;
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

.web-floating > label {
    padding-left: 22px;
    padding-right: 22px;
    color: rgba(255,255,255,0.95);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.web-floating > .form-control::placeholder,
.web-floating > .form-select::placeholder,
.contact-file-group .form-control::file-selector-button {
    color: rgba(255,255,255,0.35);
}

.web-floating > .form-control:not(:placeholder-shown),
.web-floating > .form-control:focus,
.web-floating > .form-select:focus {
    color: #ffffff;
}

.web-floating > .form-control:not(:placeholder-shown) ~ label,
.web-floating > .form-control:focus ~ label,
.web-floating > .form-select ~ label {
    color: rgba(255,255,255,0.7);
}

.contact-file-group .form-label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-file-group .form-control {
    border-radius: 0;
    border: 0;
    background-color: #24000f;
    color: rgba(255,255,255,0.75);
    min-height: 64px;
    padding: 18px 22px;
    box-shadow: none;
}

.contact-file-group .form-control:focus {
    background-color: #24000f;
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

.contact-file-group .form-control::file-selector-button {
    margin-right: 18px;
    border: 0;
    border-radius: 0;
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-checks .form-check {
    margin: 0;
    padding-left: 2rem;
}

.contact-checks .form-check-input {
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.4);
    background-color: transparent;
    box-shadow: none;
}

.contact-checks .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.contact-checks .form-check-input:focus {
    box-shadow: none;
}

.contact-checks .form-check-label {
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
}

.web-contact-btn {
    min-height: 92px;
    border: 0;
    border-radius: 0;
    background: var(--accent);
    color: #ffffff;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 18px 35px rgba(35, 0, 18, 0.28);
    transition: 0.25s ease;
}

.web-contact-btn:hover {
    background: #ff1988;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-alert {
    margin-bottom: 24px;
    border: 0;
    border-radius: 0;
    background-color: #24000f;
    color: #ffffff;
    padding: 18px 22px;
}

.contact-alert ul {
    margin: 0;
    padding-left: 18px;
}

.contact-error {
    margin-top: 8px;
    color: #ffd5e8;
}

.contact-footer {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.contact-footer-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.12);
    margin-bottom: 65px;
}

.contact-footer p {
    margin: 0;
    color: rgba(255,255,255,0.35);
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* responsive */
@media (max-width: 991.98px) {
    .web-contact-section {
        padding: 85px 0 75px;
    }

    .contact-heading {
        margin-bottom: 50px;
    }

    .contact-form-wrap {
        margin-bottom: 80px;
    }

    .web-contact-btn {
        min-height: 82px;
    }

    .contact-footer-line {
        margin-bottom: 45px;
    }
}

@media (max-width: 767.98px) {
    .web-contact-section {
        padding: 65px 0 55px;
    }

    .contact-heading {
        margin-bottom: 36px;
    }

    .contact-heading p {
        letter-spacing: 0.12em;
    }

    .contact-form-wrap {
        margin-bottom: 60px;
    }

    .web-floating > .form-control,
    .web-floating > .form-select {
        height: 66px;
        min-height: 66px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .web-floating.web-floating-textarea > .form-control {
        min-height: 180px;
        padding-top: 30px;
    }

    .web-floating > label {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-file-group .form-control {
        min-height: 58px;
        padding: 14px 16px;
    }


    .web-contact-btn {
        min-height: 72px;
    }

    .contact-footer-line {
        margin-bottom: 30px;
    }

    .contact-footer p {
        letter-spacing: 0.08em;
    }
}



.form-intro h2 {
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
}

.form-intro p {
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.form-box-custom {
    padding: 0;
}

.form-magenta {
    margin-bottom: 10px;
}

.form-magenta label {
    display: block !important;
    position: static !important;
    transform: none !important;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff !important;
}

.form-magenta .form-control {
    width: 100%;
    background: rgba(20, 0, 15, 0.75);
    border: 0;
    border-radius: 0;
    min-height: 40px;
    padding: 18px 22px;
    color: #ffffff;
    box-shadow: none !important;
}

.form-magenta textarea.form-control {
    min-height: 200px;
    resize: vertical;
    padding-top: 20px;
}

.form-magenta .form-control::placeholder {
    color: rgba(255,255,255,0.38);
}

.form-magenta .form-control:focus {
    background: rgba(20, 0, 15, 0.9);
    color: #ffffff;
    border: 0;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 0, 128, 0.18) !important;
}

.form-note {
    margin-top: 5px;
    margin-bottom: 25px;
}

.form-note p {
    margin: 0;
    text-align: center;
    color: rgba(255,255,255,0.75);
}

.privacy-check {
    margin-bottom: 12px;
    padding-left: 1rem;
    margin-top: 1rem;
}

.privacy-check .custom-control-label {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.privacy-check .custom-control-label::before {
    background-color: rgba(20, 0, 15, 0.75);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: none;
    border-radius: 0;
}

.privacy-check .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #ff0080;
    border-color: #ff0080;
}

.privacy-check a {
    color: #ffffff;
    text-decoration: underline;
}

.form-button-wrap {
    margin-top: 10px;
}

.form-btn-submit {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, #f4007c 0%, #ff007f 100%);
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
    transition: all 0.25s ease;
}

.form-btn-submit:hover,
.form-btn-submit:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.24);
}

.form-footer-custom {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.45);
    letter-spacing: 2px;
}

/* Override eventuali stili MDB */
.md-form input[type=text]:focus:not([readonly]),
.md-form input[type=email]:focus:not([readonly]),
.md-form input[type=tel]:focus:not([readonly]),
.md-form textarea.md-textarea:focus:not([readonly]) {
    box-shadow: 0 0 0 2px rgba(255, 0, 128, 0.18) !important;
    border-bottom: 0 !important;
}

.md-form input[type=text]:focus:not([readonly]) + label,
.md-form input[type=email]:focus:not([readonly]) + label,
.md-form input[type=tel]:focus:not([readonly]) + label,
.md-form textarea.md-textarea:focus:not([readonly]) + label {
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .form-section-magenta {
        padding: 70px 0 50px;
    }

    .form-intro p {
        letter-spacing: 2px;
    }

    .form-magenta .form-control {
        min-height: 62px;
    }

    .form-magenta textarea.form-control {
        min-height: 190px;
    }

    .form-btn-submit {
        min-height: 72px;
    }

}


.hero-line {
    position: absolute;
    left: -41%;
    bottom: 15%;
    width: 150%;
    height: 340px;
    background: rgba(255, 0, 122, 0.08);
    transform: skewY(-20deg);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Riflesso */
.hero-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent 30%,
        rgba(255,255,255,0.35) 50%,
        transparent 70%
    );

    transform: skewX(-20deg);
    opacity: 0;
}

/* Animazione SOLO hover */
.web-hero-section:hover .hero-line::after {
    animation: shineSmooth 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keyframes fluidi */
@keyframes shineSmooth {
    0% {
        left: -120%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    60% {
        left: 120%;
        opacity: 1;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}


    .custom-btn {
  color: #fff;
  padding: 10px 25px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.btn-6 {
  background: #E5006B;
  line-height: 40px;
  padding: 0;
  border: none;
  box-shadow: 0 0 5px #E5006B;
}
.btn-6 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-6:hover{
  background: transparent;
}
.btn-6:before,
.btn-6:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 2px;
  background: #E5006B;
 box-shadow: 0 0 5px #E5006B;
}
.btn-6:before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.btn-6:after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
.btn-6:hover:before {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6:hover:after {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6 span:before,
.btn-6 span:after {
  position: absolute;
  content: "";
  background: #E5006B;
  box-shadow: 0 0 5px #E5006B;
}
.btn-6 span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
  transition: all 500ms ease;
}
.btn-6 span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  transition: all 500ms ease;
}
.btn-6 span:hover:before {
  width: 100%;
}
.btn-6 span:hover:after {
  width: 100%;
}