/* Reset e stili di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --black: #111111;
    --dark-gray: #333333;
    --light-gray: #EDE8E4;
    --white: #FFFFFF;
    --font-primary: 'Raleway', sans-serif;
}

/* Utilità */
.text-gold {
    color: var(--gold);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--black);
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

section {
    padding: 80px 0;
}

/* Bottoni */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    color: var(--black);
}

.btn-submit {
    width: 100%;
    background-color: #000;
    color: var(--white);
    font-size: 18px;
    padding: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 60px;
}









/* layout */


.hero-layout {
  height: 100vh;
  display: flex;
  align-items: stretch;
  flex-direction: column; /* default verticale per sicurezza */
}

.hero-row {
  display: flex;
  width: 100%;
  flex: 1;
}

/* LEFT / IMG */
.img-header {
  flex: 0 0 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT / FORM */
.form-header {
  flex: 0 0 50%;
  background-color: #f8f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
	overflow: hidden;
}

/* Interni */
.hero-left,
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
	
}

.hero-text {
  max-width: 600px;
  text-align: left;
  width: 100%;
}

/* Desktop */
@media (min-width: 999px) {
  .hero-layout {
    flex-direction: row;
  }

  .hero-row {
    flex-direction: row;
    height: 100vh;
  }

  .img-header,
  .form-header {
    height: 100%;
  }
	
	
}




@media (max-width: 1200px) {


/* LEFT / IMG */
.img-header {
  flex: 0 0 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT / FORM */
.form-header {
  flex: 0 0 50%;
  background-color: #f8f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
	overflow: hidden;
}

	
	
 }



/* Tablet e mobile */
@media (max-width: 999px) {
  .hero-layout {
    height: auto;
  }

  .hero-row {
    flex-direction: column;
  }

  .img-header {
    width: 100%;
    padding-top: 200px; padding-bottom: 200px
  }

  .form-header {
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }
}

/* Mobile più stretto */
@media (max-width: 600px) {
  .img-header {
    padding: 160px 0px 160px 0px;
  }

  .form-header {
    padding: 25px 25px;
  }
	
	
	
}











/* icone header */


  .features-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
	  font-size: 20px;
	  color: #ae957c;
	  font-weight: 600;
  }

  .features-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
  }

  .features-list li:nth-child(1) {
    animation-delay: 0.2s;
  }
  .features-list li:nth-child(2) {
    animation-delay: 0.4s;
  }
  .features-list li:nth-child(3) {
    animation-delay: 0.6s;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .features-list i {
    color: #2e86de;
  }









/* logo */



 .brand { display: block; margin: auto; padding-bottom: 20px; width: 140px; }

.titolo  { font-size: 40px; line-height: 45px; text-align: center; }

.mobile { display: none!important;}

 

@media (max-width: 999px) {
	
.brand { display: block; margin: auto; padding-bottom: 20px; width: 120px; }

	.titolo  { font-size: 20px; line-height: 25px; margin-bottom: 0px; color:#ae957c; font-style: italic; font-weight: 600}
}



@media (max-width: 600px) {
.no-mobile { display: none!important;}
	
	.mobile { display: block!important;}

	
	
	.welcome-description {
    color: #000!important;
		padding-bottom: 10px;
}

	
}






/* freccia */


.arrow-container {
  margin-top: 2rem;	display: block; 
}

/* Nascondi entrambe di default */
.arrow-desktop,
.arrow-mobile {
  display: none;
  color: #fff;
}

/* DESKTOP: mostra freccia → */
@media (min-width: 1000px) {
  .arrow-container {
    text-align: left; }

  .arrow-desktop {
    display: inline-block;
    margin-top: 18px;
    animation: arrowMoveRight 0.5s infinite alternate; }

  @keyframes arrowMoveRight {
    0%   { transform: translateX(0); }
    100% { transform: translateX(10px); }
  }
}

/* MOBILE: mostra freccia ↓ */
@media (max-width: 999px) {
  .arrow-container {
    text-align: center;
  }

  .arrow-mobile {
    display: inline-block;
    animation: arrowMoveDown 0.5s infinite alternate;
  }

  @keyframes arrowMoveDown {
    0%   { transform: translateY(0); }
    100% { transform: translateY(10px); }
  }
}






/* recensioni */



.recensioni-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            max-width: 400px;
            margin: 0 auto;
        }

        /* Recensioni Button */
        .recensioni-button {
            display: inline-block;
            padding: 15px 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid transparent;
            min-width: 140px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            flex: 1;
        }

        .recensioni-button:hover {
            transform: translateY(-5px);
        }

        /* Recensioni Platform Name */
        .recensioni-platform-name {
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 6px;
            color: #333;
        }

        /* Recensioni Rating */
        .recensioni-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-bottom: 6px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .recensioni-rating-number {
            font-weight: bold;
            color: #333;
            font-size: 16px;
            white-space: nowrap;
        }

        /* Recensioni Stars */
        .recensioni-stars {
            color: #FFC107;
            display: flex;
            gap: 1px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .recensioni-reviews-count {
            color: #666;
            font-size: 12px;
            font-weight: 500;
        }

        .recensioni-star {
            font-size: 14px;
            flex-shrink: 0;
        }

        /* Recensioni Mobile ottimizzazione */
        @media (max-width: 480px) {
            .recensioni-container {
                gap: 10px;
                max-width: 350px;
            }
            
            .recensioni-button {
                padding: 12px 15px;
                min-width: 120px;
            }
            
            .recensioni-platform-name {
                font-size: 13px;
            }
            
            .recensioni-rating {
                gap: 3px;
            }
            
            .recensioni-rating-number {
                font-size: 14px;
            }
            
            .recensioni-star {
                font-size: 12px;
            }
            
            .recensioni-reviews-count {
                font-size: 11px;
            }
        }

        /* Recensioni Extra small mobile */
        @media (max-width: 360px) {
            .recensioni-container {
                gap: 8px;
                max-width: 320px;
            }
            
            .recensioni-button {
                padding: 10px 12px;
                min-width: 110px;
            }
            
            .recensioni-rating {
                gap: 2px;
            }
            
            .recensioni-stars {
                gap: 0;
            }
        }











/* modal */


		
		        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Blocca lo scroll quando la modale è attiva */
        body.modal-open {
            overflow: hidden;
        }
        
        .modal {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 480px;
            padding: 40px 35px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(30px) scale(0.95);
            transition: transform 0.4s ease;
            position: relative;
            text-align: center;
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0) scale(1);
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #888;
            transition: color 0.2s;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-btn:hover {
            background-color: #f5f5f5;
            color: #333;
        }
        
        .modal-icon {
            width: 70px;
            height: 70px;
            background: #f8f5f2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #ae957c;
            font-size: 30px;
            border: 2px solid #f0e6dc;
        }
        
        .modal-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }
        
        .modal-text {
            font-size: 23px;
            line-height: 27px;
            color: #666;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .action-btn {
            padding: 16px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
						width: 100%;

        }
        
        .whatsapp-btn {
            background: #25D366;
            color: white;
        }
        
        .whatsapp-btn:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }
        
        .call-btn {
            background: #000;
            color: white;
        }
        
        .call-btn:hover {
            background: #9c826a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(174, 149, 124, 0.3);
        }
        
        .btn-icon {
            font-size: 20px;
        }
        
        .alternative-text {
            font-size: 14px;
            color: #888;
            margin-top: 10px;
            text-align: center;
        }
        
        .alternative-text a {
            color: #ae957c;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }
        
        .alternative-text a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 480px) {
            .modal {
                padding: 30px 25px;
            }
            
            .action-buttons {
                gap: 12px;
            }
            
            .action-btn {
                padding: 14px 16px;
                font-size: 15px;
            }
            
            .modal-title {
                font-size: 22px;
            }
        }

		
        
























/* slide */



    .slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
		background-color: #000;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      z-index: 0;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  padding: 20px 40px;           /* padding verticale 20px, orizzontale 40px */
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2;
  display: inline-block;        /* larghezza si adatta al testo + padding */
  max-width: 90vw;              /* per evitare che diventi troppo largo su schermi piccoli */
  white-space: nowrap;          /* evita che il testo vada a capo */
}

    .overlay.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }


.img01 {background-image: url('../img/hero-bg.jpg');}

.img02 {background-image: url('../img/hero-bg.jpg');}

.img03 {background-image: url('../img/hero-bg.jpg');}

.img04 {background-image: url('../img/hero-bg.jpg');}

	
	
	
	

@media (max-width: 999px) {


	
	
	    .slider {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
		background-color: #000;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      z-index: 0;
		
    }

	
	.img-header {
  flex: 0 0 100%;
  background: #000;
		padding: 25px 0px 25px 0px;
}

.form-header {
  flex: 0 0 100%;
  background-color:#f8f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

	
	
.overlay {
  font-size: 1.2rem;
}
	
}





/* Testo */

.text-50 { font-size: 50px; line-height: 60px; font-weight: 300; color: #FFFFFF;}

.text-30 { font-size: 30px; line-height: 40px; font-weight: 300; color: #FFFFFF;}

.text-18 { font-size: 18px; line-height: 25px;}


@media (max-width: 1299px) {   
	
	.text-18 { font-size: 16px; line-height: 23px; }
      }


@media (max-width: 999px) { 

.text-50 { font-size: 40px; line-height: 50px; text-align: center; }
	
.text-30 { font-size: 25px; line-height: 30px; text-align: center; }
	
	.hero-text {  text-align: center; padding: 0 20px; }
	

}



@media (max-width: 480px) {  

.text-50 { font-size: 30px; line-height: 35px; text-align: center; }
	
.text-30 { font-size: 22px; line-height: 27px; text-align: center; }

.text-18 { font-size: 16px; line-height: 21px; }

	
}






/* Hero Section */
.hero {
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Nuovi stili per i badges di fiducia */
.hero-trust {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px auto 20px;
}

.trust-badge {
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    position: relative;
    border-bottom: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    display: block;
}

.badge-text {
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    opacity: 0.9;
    display: block;
}

.badge-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .hero-trust {
        gap: 15px;
        margin: 30px auto 10px;
    }
    
    .trust-badge {
        min-width: 90px;
        padding: 8px 10px;
    }
    
    .badge-number {
        font-size: 22px;
    }
    
    .badge-text {
        font-size: 11px;
    }
    
    .badge-stars {
        font-size: 12px;
    }
    
    /* Nascondi Rating Text su Mobile */
    .rating-text {
        display: none !important;
    }
}

.cta-button {
    margin-top: 30px;
}

/* Form Multistep */
.form-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: var(--dark-gray);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.form-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-header {
    margin-bottom: 25px;
    padding-bottom: 55px;
}

.step-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 10px;
}

.step-container:before {
    content: '';
    position: absolute;
    top: 16px;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
}

.step.active .step-number {
    background-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.step.completed .step-number {
    background-color: var(--gold);
    position: relative;
}

.step.completed .step-number:after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
}

.step-title {
    font-size: 15px;
    color: #000!important;
    transition: all 0.3s ease;
    opacity: 1;
	font-weight: 600
}

.step.active .step-title {
    color: var(--gold);
    font-weight: 600;
    opacity: 1;
}

.step.completed .step-title {
    color: var(--gold);
    opacity: 0.9;
}

.form-step {
    display: none;
    padding: 15px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Welcome Step */
.welcome-step {
    text-align: center;
}

.welcome-title {
    color: #ae957c;
    font-size: 30px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.welcome-description {
    margin-bottom: 15px;
    font-size: 23px;
    line-height: 28px;;
    color: var(--dark-gray);
}

/* Step Header */
.step-header {
    text-align: center;
    margin-bottom: 20px;
}

.step-title {
    font-size: 21px;
    color: #000 !important;
    margin-bottom: 8px;
    font-weight: 800;
}

.step-description {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.form-fields-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.form-fields-vertical .form-group {
    margin-bottom: 0;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.required-mark {
    color: #e74c3c;
    margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.helper-text {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 4px;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none !important;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.error-message:not(:empty) {
    display: block !important;
    visibility: visible;
    height: auto;
    overflow: visible;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.checkbox-group input[type="checkbox"]:checked:after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.checkbox-group input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.checkbox-label {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

/* Info Box */
.info-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 15px 0;
    border-left: 3px solid var(--gold);
}

.info-box i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 2px;
}

.info-box p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.info-box.success {
    border-left-color: #27ae60;
    background-color: rgba(39, 174, 96, 0.05);
}

.info-box.success i {
    color: #27ae60;
}

/* Step 2 specifico */
.form-step[data-step="2"] {
    margin-bottom: 0;
}

.form-step[data-step="2"] .form-fields-vertical {
    margin-bottom: 10px;
}

.form-step[data-step="2"] .form-fields-vertical .form-group {
    margin-bottom: 0;
    gap: 10px;
}

.form-step[data-step="2"] .privacy-text {
    margin: 8px 0;
    line-height: 1.4;
}

.form-step[data-step="2"] .info-box {
    margin-bottom: 10px;
    padding: 12px 15px;
}

.form-step[data-step="2"] .helper-text {
    font-size: 11px;
    margin-top: 4px;
}

/* Problem Selector */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.problem-box {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 18px 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.problem-box i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.problem-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.problem-box.selected {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.08);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.problem-box.selected i {
    transform: scale(1.2);
}

.problem-content {
    text-align: center;
}

.problem-title {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--black);
}

.problem-benefit {
    display: block;
    font-size: 12px;
    color: var(--dark-gray);
}

.hidden {
    display: none;
}

/* Duration Selector */
.duration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.duration-box {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 18px 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.duration-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.duration-box.selected {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.08);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.duration-value {
    font-weight: 600;
    color: var(--black);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.action-button-container {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

/* Nuova classe specifica per il pulsante dello step 0 */
.btn-welcome {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 18px 30px;
    font-size: 18px;
    border-radius: 50px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
	background: #000;
}

.btn-welcome:hover {
    transform: translateY(-5px);
}

.btn-welcome i {
    font-size: 16px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-welcome:hover i {
    transform: translateX(5px);
}

/* Modifica il pulsante nel welcome step per usare la nuova classe */
.welcome-step + .form-actions .action-button-container {
    justify-content: center;
    width: 100%;
}

/* Rimuovi lo stile vecchio per evitare conflitti */
.welcome-step + .form-actions .btn-next {
    display: none; /* Nascondiamo il pulsante originale quando è attivo il welcome step */
}

.back-button-container {
    flex: 0 0 auto;
}

.btn-back {
    background-color: #fff;
    color: #000;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 170px;
}

.btn-back:hover {
    background-color: #000;
	    color: #fff;

}

.btn-next, 
.btn-submit {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 300px;
    margin-left: auto;
}

.btn-next:hover, 
.btn-submit:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-next:active, 
.btn-submit:active {
    transform: translateY(1px);
}

.btn-next:after,
.btn-submit:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color:rgba(255,255,255,0.29);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

.btn-next:hover:after,
.btn-submit:hover:after {
    transform: scaleX(1);
}

.mobile-call-btn-wrapper {
    margin: 0;
    display: none; /* Nascosto per impostazione predefinita */
    flex-direction: column;
    align-items: center;
}

.call-text {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--dark-gray);
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 16px 32px;
    margin: 5px auto;
    transition: all 0.3s ease;
    font-size: 17px;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.4);
}

.btn-call:active {
    transform: translateY(1px);
}

.btn-call i {
    animation: pulse 1.5s infinite;
    font-size: 18px;
}

@media (max-width: 767px) {
    .mobile-call-btn-wrapper.business-open {
        display: flex; /* Visibile solo su mobile quando è nelle ore di apertura */
    }
    
    .mobile-call-btn-wrapper {
        display: none; /* Manteniamo nascosto di default, anche su mobile */
    }
}

@media (min-width: 768px) {
    .mobile-call-btn-wrapper {
        display: none; /* Manteniamo questa regola per sicurezza */
    }
}

/* Treatments Section */
.treatments {
    background-color: var(--light-gray);
    text-align: center;
}

.treatments h2 {
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--black);
}

.treatments h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.treatment-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.treatment-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
}

.treatment-icon {
    margin-bottom: 20px;
}

.treatment-icon i {
    font-size: 48px;
    color: var(--gold);
}

.treatment-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.treatment-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.treatment-link {
    display: inline-block;
    color: var(--gold);
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.treatment-link:hover {
    color: var(--gold-light);
}

/* Problems Section */
.problems {
    text-align: center;
}

.problems h2 {
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.problems h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.problem-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.problem-card {
    flex: 1;
    min-width: 250px;
    max-width: calc(50% - 10px);
    background-color: var(--light-gray);
    padding: 30px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 0;
    background-color: var(--gold);
    left: 0;
    top: 0;
    transition: height 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.problem-card:hover::before {
    height: 100%;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
}

.problem-card p {
    font-size: 16px;
}

/* Fondo marroncino condiviso: Cosa valutiamo + Tecnologie e protocolli */
.section-warm-brown {
    background-color: #f8f5f3;
    padding: 80px 0;
}

/* Tecnologie e protocolli: card chiare su fondo warm (invertiti rispetto al grigio chiaro delle card) */
.section-technologies-cards .problem-card {
    background-color: #ffffff;
    border: 1px solid rgba(174, 149, 124, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.section-technologies-cards .problem-card h3 {
    color: #ae957c;
}

.section-technologies-cards .problem-card p {
    color: #4a433c;
}

.section-technologies-cards .problem-card::before {
    background-color: #ae957c;
}

.section-technologies-cards .problem-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.section-technologies-cards .dynamic-module-title {
    color: #1f1c19;
}

.section-technologies-cards .dynamic-module-title::after {
    background: #ae957c;
}

.section-technologies-cards .dynamic-module-intro,
.section-technologies-cards .prima-intro {
    color: #4a433c;
}

/* Cosa valutiamo (tabs): titoli e testi leggibili sul fondo warm */
.section-warm-brown.treatments .dynamic-module-title {
    color: #1f1c19;
}

.section-warm-brown.treatments .dynamic-module-title::after {
    background: #ae957c;
}

.section-warm-brown.treatments .dynamic-module-intro {
    color: #4a433c;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
    text-align: center;
    color: var(--dark-gray);
    padding: 100px 0;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--black);
}

.testimonials h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.review-slider {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    min-height: 200px;
    border: 1px solid rgba(174, 149, 124, 0.2);
}

.review {
    display: none;
}

.review.active {
    display: block;
}

.review-stars {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 20px;
}

.review-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.review-author {
    font-weight: 600;
    color: #ae957c;
}

.review-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.review-controls button {
    background-color: transparent;
    border: 2px solid #ae957c;
    color: #ae957c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-controls button:hover {
    background-color: #ae957c;
    color: var(--white);
}

.review-sources {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(174, 149, 124, 0.2);
    min-width: 280px;
}

.review-source:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    background-color: rgba(174, 149, 124, 0.05);
}

.review-source i {
    font-size: 28px;
}

.source-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.source-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.source-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFD700;
    font-size: 14px;
}

.rating-text {
    color: var(--dark-gray);
    opacity: 0.7;
    margin-left: 5px;
    font-size: 13px;
}

.review-source .fa-google {
    color: #4285F4;
}

.review-source .fa-spa {
    color: #00B67A;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 70px 0;
    }
    
    .review-slider {
        padding: 30px 20px;
    }
    
    .review-content {
        font-size: 16px;
    }
    
    .review-stars {
        font-size: 20px;
    }
    
    .review-sources {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .review-source {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: none;
    }
    
    .source-content {
        align-items: center;
        text-align: center;
    }
    
    .review-source i {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .source-name {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .source-stars {
        justify-content: center;
    }
    
    .rating-text {
        font-size: 14px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .review-source {
        min-width: auto;
        width: 90%;
        margin: 0 auto;
    }
    
    .source-stars {
        font-size: 16px;
    }
    
    .rating-text {
        font-weight: 500;
    }
    
    .review-slider {
        padding: 25px 15px;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--gold);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 0;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 30px;
}

.address, .phone, .email {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.address i, .phone i, .email i {
    color: var(--gold);
    font-size: 24px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy input {
    width: auto;
    margin-top: 5px;
}

.privacy label {
    font-size: 14px;
}

.success-message {
    background-color: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-message {
    background-color: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Footer migliorato */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-title {
    color: #ae957c;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #ae957c;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-info {
    margin: 0;
}

.footer-info p {
    margin: 10px 0;
    font-size: 14px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info p i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.footer-info a {
    color: var(--gold);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-info a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer-links-grid a {
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links-grid a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    color: #aaa;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    color: #ae957c;
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    margin-bottom: 15px;
}

.footer-policies {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-policies a {
    color: #888;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-policies a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo-column {
        align-items: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-info p {
        justify-content: center;
    }
}

/* Thank You Page */
.thank-you {
    margin-top: 90px;
    padding: 60px 0;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you-content h1 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 32px;
}

.confirmation-message {
    font-size: 18px;
    margin-bottom: 30px;
}

.confirmation-details {
    text-align: left;
    margin: 20px auto;
    max-width: 500px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.confirmation-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.confirmation-details i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 20px;
}

/* Simple Footer for Thank You Page */
.simple-footer {
    background-color: var(--light-gray);
    padding: 30px 0;
    text-align: center;
}

.simple-footer .footer-logo {
    margin-bottom: 15px;
}

.simple-footer .footer-logo img {
    height: 60px;
}

.simple-footer .footer-basic-info {
    margin: 15px auto;
}

.simple-footer .footer-basic-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark-gray);
}

.simple-footer .footer-basic-info a {
    color: var(--gold);
    font-weight: 500;
}

.simple-footer .footer-basic-info a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.simple-footer .copyright {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.simple-footer .copyright p {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.what-next {
    margin: 50px 0 0 0 ;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.what-next h2 {
    margin-bottom: 30px;
    color: var(--black);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.what-next h2:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    margin: 0 auto 15px;
}

.step p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Il form appare per primo (in alto) */
    .form-wrapper {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Il contenuto testuale appare dopo (in basso) */
    .hero-content {
        order: 2;
        text-align: center;
        max-width: 100%;
        margin-top: 40px;
    }
    
    .hero-trust {
        margin: 30px auto 0;
        justify-content: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid, .duration-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        margin-top: 30px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .form-step-title {
        font-size: 20px;
    }
    
    .problem-box {
        padding: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .treatment-card, .problem-card {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .contact-info, .contact-form {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links, .footer-social {
        justify-content: center;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }
    
    .action-button-container,
    .back-button-container {
        width: 100%;
    }
    
    .btn-back,
    .btn-next,
    .btn-submit {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Form Animations */
.form-step {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Error Styles */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 18px;
    display: block;
}

/* Form Validation Styles */
input.error, 
select.error, 
textarea.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05);
}

input:focus, 
select:focus, 
textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    outline: none;
}

/* Field Success Style */
input:valid:not(:placeholder-shown),
select:valid:not([value=""]),
textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
    background-color: rgba(39, 174, 96, 0.05);
}

/* Button Animation Styles */
.btn {
    transition: all 0.2s ease-in-out;
}

.btn:active {
    transform: scale(0.95);
}

/* Problem and Duration Box Selected State */
.problem-box.selected,
.duration-box.selected {
    background-color: rgba(52, 152, 219, 0.1);
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Checkbox Animation */
.checkbox-group {
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    position: relative;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked + label {
    color: #2c3e50;
}

.checkbox-group input[type="checkbox"]:focus + label {
    color: var(--gold);
}

/* Better Responsive Layout for Form */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid,
    .duration-grid {
        grid-template-columns: 1fr;
    }
}

.privacy-text {
    font-size: 10px !important;
    line-height: 1.5;
    color: #666;
    margin: 15px 0;
    padding: 0 5px;
}

.privacy-link {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
}

.privacy-link:hover {
    color: var(--gold-light);
}

/* Nuovo layout a tabs per i trattamenti */
.treatments-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.treatments-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.treatment-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    color: var(--dark-gray);
}

.treatment-tab i {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.treatment-tab span {
    font-weight: 600;
    font-size: 14px;
}

.treatment-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.treatment-tab.active {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.treatment-tab.active i,
.treatment-tab.active span {
    color: var(--gold);
}

.treatments-content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.treatment-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.treatment-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.treatment-content-inner {
    padding: 40px;
}

.treatment-content h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.treatment-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Media queries per i tabs */
@media (max-width: 768px) {
    .treatments-nav {
        gap: 8px;
    }
    
    .treatment-tab {
        min-width: calc(50% - 10px);
        padding: 10px;
    }
    
    .treatment-content-inner {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .treatment-tab {
        min-width: calc(50% - 5px);
        padding: 10px 5px;
    }
    
    .treatment-tab i {
        font-size: 20px;
    }
    
    .treatment-tab span {
        font-size: 12px;
    }
}

/* SPA SECTION */
.spa-section {
    padding: 120px 0;
    background-color: var(--white);
    color: var(--dark-gray);
}

.spa-section h2 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--black);
    font-size: 32px;
}

.spa-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.spa-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.spa-intro {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.spa-intro p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.video-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    overflow: hidden;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .spa-content-wrapper {
        flex-direction: column;
    }
    
    .spa-intro, 
    .video-container {
        max-width: 100%;
    }
    
    .video-container {
        margin-top: 20px;
    }
    
    .spa-intro {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .video-container {
        margin: 30px auto;
        width: 100%;
        max-width: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .video-container video {
        width: 100%;
        display: block;
        border-radius: 6px;
        height: auto;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Pulsante per i trattamenti */
.btn-treatment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--gold);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(174, 149, 124, 0.2);
    text-transform: none;
    letter-spacing: 0;
}

.btn-treatment:hover {
    background-color: var(--gold-light);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(174, 149, 124, 0.3);
}

.btn-treatment i {
    font-size: 18px;
}

/* Nuovi stili per la card della promo - versione pulsante */
.promo-card-wrapper {
    margin: 25px 0 30px;
    display: flex;
    justify-content: center;
}

.promo-card {
    background-color: var(--gold);
    padding: 12px 25px;
    width: auto;
    display: inline-block;
    position: relative;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    border: none;
}

.promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    background-color: var(--gold-light);
}

.promo-card:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.promo-content {
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.promo-description {
    font-size: 15px;
    margin: 0 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.promo-card:hover:after {
    right: 12px;
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .promo-card {
        padding: 10px 25px 10px 20px;
    }
    
    .promo-description {
        font-size: 14px;
    }
    
}

/* VIDEO SECTION */
.video-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.video-container {
    max-width: 900px;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

/* APPROACH SECTION */
.approach-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    position: relative;
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--black);
    font-size: 32px;
}

.approach-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.approach-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.approach-row {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.approach-row:hover {
    transform: translateX(7px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.approach-content {
    flex: 1;
    padding-left: 25px;
}

.approach-content h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.approach-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.approach-content p {
    line-height: 1.6;
    font-size: 15px;
}

.approach-icon {
    font-size: 26px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(174, 149, 124, 0.1);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.approach-row:hover .approach-icon {
    background-color: var(--gold);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .spa-section {
        padding: 80px 0;
    }
    
    .spa-section h2,
    .approach-section h2 {
        margin-bottom: 40px;
        font-size: 28px;
    }
    
    .approach-section {
        padding: 80px 0;
    }
    
    .approach-rows {
        gap: 15px;
    }
    
    .approach-row {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .approach-content {
        padding-left: 0;
        padding-top: 15px;
    }
    
    .approach-icon {
        height: 60px;
        width: 60px;
        font-size: 24px;
    }
    
    .approach-content h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .approach-content h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .approach-content p {
        font-size: 14px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(30, 30, 30, 0.85), rgba(30, 30, 30, 0.85)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 10px 0;
    justify-content: center;
}

.cta-btn-primary {
    background-color:#000;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background-color: #ae957c;
    color: #fff;
    transform: translateY(-5px);
}

.cta-btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.cta-btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.cta-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(50% - 15px);
}

.cta-benefit i {
    color: var(--gold);
    font-size: 18px;
}

.cta-benefit span {
    font-size: 16px;
    font-weight: 500;
}



@media (max-width: 480px) {
    .spa-section {
        padding: 40px 0;
    }
	
	    .prima-section {
        padding: 40px 0;
    }

}


@media (max-width: 999px) {


    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

}


@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
    
    .cta-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-benefit {
        width: 100%;
    }
    
    .problem-card {
        max-width: 100%;
    }
}














/* prima e dopo */
.prima-section {
    padding: 100px 0;
    background-color: #f8f5f3;
}



.prima-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--dark-gray);
}

.prima-container {
    max-width: 900px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .prima-section {
        padding: 70px 0;
    }
    
    .prima-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    
}




/* call to action */



.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1 1 50%;
  font-size: 30px;
	line-height: 37px;
  color: #000;
	font-weight: 400;
}




.action-section {
    padding: 50px 30px;
    background-color: #fff;
}

.action-section .cta-text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.action-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
    margin-bottom: 14px;
}

.action-copy {
    font-size: 18px;
    line-height: 1.7;
    color: #3f3a34;
    margin-bottom: 12px;
}

.action-final-copy {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0;
}



.action-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 25px;
    color: var(--dark-gray);
}

.action-container {
    max-width: 1200px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .action-section {
        padding: 40px 30px;
    }
    
    .action-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
	
	  .cta-row {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .cta-text {
  font-size: 25px;
	line-height: 33px;
  }

  .action-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .action-copy {
    font-size: 17px;
    line-height: 1.65;
  }

  .action-final-copy {
    font-size: 19px;
  }

    
    
}

















/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f8f5f3;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--gold);
    margin: 0 auto 15px;
    display: block;
    font-weight: 700;
}

.faq-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--dark-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ae957c;
    transition: width 0.3s ease;
}

.faq-question:hover::after {
    width: 100%;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 14px;
    color: #ae957c;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 25px;
}

.faq-answer p {
    margin: 0;
    padding: 20px 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: rgba(255, 255, 255, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0;
    }
    
    .faq-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question, 
    .faq-answer p {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-cta {
        padding: 20px;
        margin-top: 30px;
    }
    
    .faq-cta p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

/* CTA button in gold style */
.cta-btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.cta-btn-gold:hover {
    background-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
} 



.prima-dopo {
    padding: 100px 0;
    background-color: #f8f5f3;
}

/* Dynamic landing modules */
.hero-bullets-list,
.trust-bar-list,
.dynamic-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-bullets-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
    max-width: 680px;
    list-style: none !important;
    padding-left: 0 !important;
}

.hero-bullets-list li {
    color: #f7f4f2;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    padding: 2px 0 2px 34px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    list-style: none !important;
    display: block;
}

.hero-bullets-list li::marker {
    content: '' !important;
}

.hero-bullets-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ae957c;
    position: absolute;
    left: 0;
    top: 4px;
}

.trust-bar-list {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none !important;
    padding-left: 0 !important;
}

.trust-bar-list li {
    color: #3d372f;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    position: relative;
    padding: 2px 0 2px 26px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    list-style: none !important;
}

.trust-bar-list li::marker {
    content: '' !important;
}

.trust-bar-list li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ae957c;
    position: absolute;
    left: 0;
    top: 2px;
}

.dynamic-module-section {
    padding: 94px 0 78px;
    background: linear-gradient(180deg, #f8f5f3 0%, #ffffff 100%);
}

.dynamic-module-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-bottom: 50px;
}

.dynamic-module-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: #ae957c;
    border-radius: 999px;
    margin: 18px auto 0;
}

.dynamic-module-intro {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.dynamic-card-list {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    list-style: none !important;
}

#symptomsItems,
#analysisBullets,
#technologiesItems {
    margin-top: 30px;
}

#technologiesIntro {
    max-width: 900px;
    margin-bottom: 52px;
}

.dynamic-card-list li {
    background: #ffffff;
    border: 1px solid rgba(174, 149, 124, 0.24);
    border-radius: 12px;
    padding: 18px 18px 18px 52px;
    font-size: 17px;
    line-height: 1.45;
    color: #2f2a25;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    list-style: none !important;
}

.dynamic-card-list li::marker {
    content: '';
}

.dynamic-info-card {
    padding: 0 !important;
    overflow: hidden;
    border-left: none;
}

.dynamic-info-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 20px 20px;
    min-height: 245px;
    text-align: center;
}

.dynamic-info-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ae957c;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(174, 149, 124, 0.3);
}

.dynamic-info-icon i {
    font-size: 30px;
}

.dynamic-info-content {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: center;
}

.dynamic-info-title {
    font-size: 29px;
    line-height: 1.15;
    color: #1f1c19;
    font-weight: 700;
    max-width: 95%;
}

.dynamic-info-description {
    font-size: 17px;
    line-height: 1.4;
    color: #6d6053;
    font-weight: 500;
    margin-top: 2px;
    max-width: 95%;
}

.dynamic-problem-section {
    padding: 70px 0 56px;
    background: #ffffff;
}

@media (min-width: 1400px) {
    .dynamic-card-list {
        max-width: 1300px;
    }

    .dynamic-info-title {
        font-size: 30px;
    }
}

.dynamic-problem-section .spa-content-wrapper {
    justify-content: center;
}

.dynamic-problem-section .spa-intro {
    max-width: 980px;
    background: #fff;
    border: 1px solid rgba(174, 149, 124, 0.24);
    border-radius: 14px;
    padding: 28px 30px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.dynamic-problem-title {
    font-size: 38px;
    line-height: 1.12;
    font-weight: 700;
    color: #ae957c;
    margin-bottom: 14px;
}

@media (max-width: 999px) {
    .hero-bullets-list {
        margin: 20px auto 0;
        max-width: 100%;
    }

    .hero-bullets-list li {
        font-size: 17px;
        text-align: left;
    }

    .trust-bar-list {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 14px auto 0;
        text-align: left;
    }

    .dynamic-module-section {
        padding: 74px 0 62px;
    }

    .dynamic-module-title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .dynamic-card-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .dynamic-problem-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .dynamic-module-section {
        padding: 54px 0 46px;
    }

    .hero-bullets-list li {
        font-size: 15px;
        line-height: 1.35;
        padding: 2px 0 2px 28px;
    }

    .hero-bullets-list li::before {
        left: 0;
        top: 4px;
    }

    .trust-bar-list li {
        font-size: 13px;
        padding: 2px 0 2px 22px;
    }

    .dynamic-module-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .dynamic-module-intro {
        margin-bottom: 30px;
    }

    #technologiesIntro {
        margin-bottom: 36px;
    }

    .dynamic-card-list li {
        font-size: 15px;
        padding: 0 !important;
    }

    .dynamic-info-body {
        min-height: auto;
        padding: 18px 14px;
        gap: 14px;
    }

    .dynamic-info-icon {
        width: 56px;
        height: 56px;
    }

    .dynamic-info-icon i {
        font-size: 24px;
    }

    .dynamic-info-title {
        font-size: 24px;
    }

    .dynamic-info-description {
        font-size: 15px;
    }

    .dynamic-problem-section .spa-intro {
        padding: 22px 18px;
    }

    .dynamic-problem-title {
        font-size: 28px;
    }

    .dynamic-card-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dynamic-info-body {
        padding: 16px 14px;
        min-height: 0;
    }

    .dynamic-info-icon {
        width: 50px;
        height: 50px;
    }

    .dynamic-info-icon i {
        font-size: 21px;
    }

    .dynamic-info-title {
        font-size: 21px;
    }

    .dynamic-info-description {
        font-size: 14px;
    }
}

/* Check-up reason micro cards */
.checkup-reason-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 12px 0 20px;
}

.checkup-reason-card {
    background: #ffffff;
    border: 1px solid rgba(174, 149, 124, 0.28);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.checkup-reason-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f1c19;
    margin-bottom: 8px;
}

.checkup-reason-copy {
    font-size: 15px;
    line-height: 1.45;
    color: #4c433a;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .checkup-reason-cards {
        grid-template-columns: 1fr;
    }
}
