/* ===========================================
   WIZARD LANDING PAGE STYLES
   Landing page "Il Mago del Codice"
   =========================================== */

/* ===========================================
   CSS VARIABLES - Colori Centralizzati
   =========================================== */
:root {
  /* Colori Brand Primari */
  --color-primary-orange: #FF6B35;
  --color-primary-gold: #F7931E;
  /* Gradient */
  --gradient-primary: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-primary-gold) 100%);
  /* Colori Testo */
  --color-text-dark: #1a1a1a;
  --color-text-medium: #2d2d2d;
  --color-text-gray: #4a5568;
  --color-text-light: #e0e0e0;
  --color-text-white: #ffffff;
  /* Colori Background */
  --color-bg-white: #ffffff;
  --color-bg-light: #f9fafb;
  --color-bg-dark: #1a1a1a;
  --color-bg-darker: #2d2d2d;
  /* Colori Status */
  --color-success: #10b981;
  --color-success-light: rgba(16, 185, 129, 0.1);
  --color-danger: #ef4444;
  --color-danger-light: rgba(239, 68, 68, 0.1);
  --color-error: #CA0000;
  /* Spacing Standard */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-orange: 0 4px 15px rgba(255, 107, 53, 0.3);
  /* Max Width */
  --max-width-narrow: 42rem;
  --max-width-medium: 56rem;
  --max-width-wide: 72rem;
}

/* ===========================================
   SCROLL BEHAVIOR - Disabilitato per usare JS
   =========================================== */
html {
  scroll-behavior: auto !important; /* Disabilita scroll nativo */
}

/* Scroll margin per elementi con ID (target di anchor) */
[id] {
  scroll-margin-top: 6rem;
}

/* Scroll margin specifici per sezioni principali */
#form,
#webinar-list {
  scroll-margin-top: 6rem;
}

/* ===========================================
   PREHEADLINE BAR
   =========================================== */
.wizard-preheadline {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 0.75rem 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

  .wizard-preheadline .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .wizard-preheadline p {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin: 0;
  }

@media (min-width: 768px) {
  .wizard-preheadline p {
    font-size: 1rem;
  }
}

/* ===========================================
   WIZARD HERO SECTION
   =========================================== */
.wizard-hero {
  /*background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);*/
  background: url('/images/bg-dark.webp') center/cover;
  color: white;
  position: relative;
  overflow: hidden;
}

  .wizard-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }

  .wizard-hero .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }

  .wizard-hero .hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
  }

  .wizard-hero .hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.1;
  }

  .wizard-hero .title-highlight {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }

  .wizard-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #f5f5f5;
  }

  .wizard-hero .subtitle-emphasis {
    color: #FF6B35;
    font-weight: 700;
  }

  .wizard-hero .hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e0e0e0;
  }

  .wizard-hero .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .wizard-hero .cta-button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    text-transform: uppercase;
    text-decoration: none;
  }

    .wizard-hero .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    }

  .wizard-hero .cta-subtext {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    opacity: 0.9;
  }

  .wizard-hero .arrow-animated {
    color: #FF6B35;
    animation: bounce 2s infinite;
  }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.wizard-hero .hero-visual {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.wizard-hero .wizard-illustration {
  width: 200px;
  height: 200px;
}

.wizard-hero .wizard-icon {
  color: #FF6B35;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.wizard-hero .star-icon {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

@media (min-width: 768px) {
  .wizard-hero {
    padding: 1.2rem 0 1.2rem;
  }

    .wizard-hero .hero-title {
      font-size: 4rem;
    }

    .wizard-hero .hero-subtitle {
      font-size: 1.875rem;
    }

    .wizard-hero .hero-subheadline {
      font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
  .wizard-hero .hero-title {
    font-size: 5rem;
  }
}

/* ===========================================
   REGISTRATION FORM SECTION
   =========================================== */
.registration-section {
  background: white;
  padding: 4rem 0;
  scroll-margin-top: 5rem;
}

  .registration-section .container {
    max-width: 52rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .registration-section .form-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #FF6B35;
  }

  .registration-section .form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.4;
  }

  .registration-section .registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .registration-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

    .registration-section .form-group label {
      font-weight: 600;
      color: #2d2d2d;
      font-size: 0.875rem;
    }

  .registration-section .form-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

    .registration-section .form-input:focus {
      outline: none;
      border-color: #FF6B35;
      box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }

  .registration-section .checkbox-group {
    flex-direction: row;
    align-items: flex-start;
  }

  .registration-section .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #2d2d2d;
  }

  .registration-section .form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    cursor: pointer;
  }

  .registration-section .checkbox-label a {
    color: #FF6B35;
    text-decoration: underline;
  }

  .registration-section .submit-button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

    .registration-section .submit-button:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    }

    .registration-section .submit-button:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

  .registration-section .spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.registration-section .form-footer-text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: #2d2d2d;
  line-height: 1.6;
}

  .registration-section .form-footer-text span {
    color: #FF6B35
  }

.registration-section .alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  text-align: center;
}

.registration-section .alert-error {
  background: #fee;
  color: #c00;
  border: 1px solid #fcc;
}

.registration-section .alert-success {
  background: #efe;
  color: #060;
  border: 1px solid #cfc;
}

.registration-section .validation-message {
  color: #c00;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .registration-section .form-header h3 {
    font-size: 1.75rem;
  }
}

/* ===========================================
   WHAT YOU WILL LEARN SECTION
   =========================================== */
.what-learn-section {
  background: linear-gradient(to bottom, #f9fafb 0%, white 100%);
  padding: 3rem 0;
}

.what-learn-section.p-0 {
  padding: 3rem 0;
}

  .what-learn-section .container {
    max-width: 52rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .what-learn-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.3;
  }

@media (min-width: 768px) {
  .what-learn-section .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .what-learn-section .section-title {
    font-size: 2.5rem;
  }
}

  .what-learn-section .learn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .what-learn-section .learn-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }

@media (min-width: 768px) {
  .what-learn-section .learn-card {
    flex-direction: row;
    padding: 2rem;
    gap: 1.5rem;
  }
}

    .what-learn-section .learn-card:hover {
      border-color: #FF6B35;
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
    }

  .what-learn-section .learn-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FF6B35;
  }

@media (min-width: 768px) {
  .what-learn-section .learn-icon {
    width: 4rem;
    height: 4rem;
  }
}

  .what-learn-section .learn-content {
    flex: 1;
  }

  .what-learn-section .learn-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
  }

  .what-learn-section .learn-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
  }

@media (min-width: 768px) {
  .what-learn-section .learn-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .what-learn-section .learn-card p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.calendar-button-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 100%;
  margin-top: 1.5rem;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.cta-button, .cta-button.secondary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: auto
}

  .cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
  }

@media (min-width: 768px) {
  .what-learn-section .section-title {
    font-size: 2.5rem;
  }
}

/* ===========================================
   WHY CHANGE CAREER SECTION
   =========================================== */
.why-change-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 5rem 0;
}

  .why-change-section .container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .why-change-section .section-title-large {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
  }

  .why-change-section .highlight {
    color: #FF6B35;
  }

  .why-change-section .content-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-change-section .lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e0e0e0;
  }

  .why-change-section .emphasis-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FF6B35;
    font-style: italic;
    text-align: center;
    margin: 1rem 0;
  }

  .why-change-section .highlight-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #FF6B35;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
  }

  .why-change-section .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding-left: 1rem;
  }

  .why-change-section .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: #e0e0e0;
  }

    .why-change-section .benefit-item svg {
      color: #FF6B35;
      flex-shrink: 0;
    }

  .why-change-section .cta-highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid rgba(255, 107, 53, 0.3);
  }

  .why-change-section .box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
  }

  .why-change-section .box-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FF6B35;
  }

  .why-change-section .cta-section {
    text-align: center;
    margin-top: 3rem;
  }

@media (min-width: 768px) {
  .why-change-section .section-title-large {
    font-size: 2.5rem;
  }

  .why-change-section .box-title {
    font-size: 2rem;
  }
}

/* ===========================================
   RIGHT TOOLS SECTION
   =========================================== */
.right-tools-section {
  background: white;
  padding: 5rem 0;
}

  .right-tools-section .container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 1rem;
  }

  .right-tools-section .tools-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 107, 53, 0.2);
    max-width: var(--max-width-wide);
    margin: 0 auto;
  }

  .right-tools-section .tools-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .right-tools-section .icon-large {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }

  .right-tools-section .tools-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
  }

  .right-tools-section .tools-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .right-tools-section .intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d2d2d;
  }

  .right-tools-section .subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
  }

  .right-tools-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .right-tools-section .benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .right-tools-section .benefit-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    margin-bottom: 1rem;
  }

  .right-tools-section .benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
  }

  .right-tools-section .benefit-card p {
    color: #4a5568;
    line-height: 1.6;
  }

  .right-tools-section .closing-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FF6B35;
    text-align: center;
    margin-top: 1rem;
  }

  .right-tools-section .cta-section {
    text-align: center;
    margin-top: 3rem;
  }

/* ===========================================
   RIGHT GUIDE SECTION
   =========================================== */
.right-guide-section {
  background: linear-gradient(to bottom, #f9fafb 0%, white 100%);
  padding: 5rem 0;
}

  .right-guide-section .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .right-guide-section .guide-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: var(--max-width-wide);
    margin: 0 auto;
  }

  .right-guide-section .profile-title-with-bullet {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
  }

    .right-guide-section .profile-title-with-bullet::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--color-primary-orange);
      font-weight: bold;
      font-size: 1.5rem;
    }

  .right-guide-section .guide-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .right-guide-section .icon-large {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }

  .right-guide-section .guide-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: auto
  }

  .right-guide-section .profile-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .right-guide-section .profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Fix mobile: occupi tutta la larghezza */
  }

  .right-guide-section .image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    margin: 0 auto; /* Centra in mobile */
  }

  .right-guide-section .profile-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
  }

  .right-guide-section .bio-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

    .right-guide-section .bio-content li, .right-guide-section .profile-details p {
      font-size: 1.125rem;
      line-height: 1.8;
      color: #2d2d2d;
      position: relative;
      margin-bottom: 1.2rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .right-guide-section .bio-content li {
      padding-left: 1.5rem;
      padding-right: 0.5rem;
    }

      .right-guide-section .bio-content li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #FF6B35;
        font-weight: bold;
        font-size: 1.5rem;
      }

  .right-guide-section .achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .right-guide-section .achievement-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 107, 53, 0.1);
    /* FIX MOBILE: Previeni overflow */
    min-width: 0; /* Permetti shrink */
    overflow: hidden; /* Nascondi overflow */
  }

  .right-guide-section .achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.5rem;
    word-wrap: break-word; /* FIX: previeni taglio 25+ */
  }

    .right-guide-section .achievement-number::after {
      content: "+";
      font-size: 1.8rem;
    }

  .right-guide-section .achievement-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    word-wrap: break-word; /* FIX: previeni taglio */
  }

/* FIX MOBILE: Responsive per piccoli schermi */
@media (max-width: 480px) {
  .right-guide-section .profile-title-with-bullet {
    font-size: 1.5rem; /* Riduci font su mobile */
    padding-left: 1.5rem;
    padding-right: 0.5rem;
  }

  .right-guide-section .bio-content li {
    font-size: 1.125rem;
    padding-left: 1.5rem;
    padding-right: 1rem;
  }

  /* ACHIEVEMENT CARDS IN VERTICALE SU MOBILE */
  .right-guide-section .achievements-grid {
    grid-template-columns: 1fr; /* 1 colonna invece di 3 */
    gap: 1rem; /* Riduci gap */
    max-width: 300px; /* Limita larghezza per evitare card troppo larghe */
    margin-left: auto;
    margin-right: auto;
  }

  .right-guide-section .achievement-card {
    padding: 1rem; /* Riduci padding */
  }

  .right-guide-section .achievement-number {
    font-size: 2rem; /* Riduci dimensione numero */
  }

  .right-guide-section .achievement-label {
    font-size: 0.75rem; /* Riduci label */
  }
}

@media (min-width: 768px) {
  .right-guide-section .profile-section {
    grid-template-columns: 200px 1fr;
  }
}

/* ===========================================
   WHY NOT MISS SECTION
   =========================================== */
.why-not-miss-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 5rem 0;
}

  .why-not-miss-section .container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .why-not-miss-section .section-title-emphasis {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
  }

  .why-not-miss-section .highlight {
    color: #FF6B35;
  }

  .why-not-miss-section .content-flow {
    display: flex;
    flex-direction: column;
  }

  .why-not-miss-section .lead-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e0e0e0;
  }

  .why-not-miss-section .emphasis {
    font-weight: 600;
    color: white;
  }

  .why-not-miss-section .emphasis-large {
    font-weight: 700;
    color: darkorange;
    margin-bottom: 1.2rem;
  }

  .why-not-miss-section .highlight-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #FF6B35;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
  }

    .why-not-miss-section .highlight-box p {
      font-size: 1.125rem;
      line-height: 1.8;
    }

  .why-not-miss-section .warning-box {
    background: rgba(247, 147, 30, 0.15);
    border: 2px solid rgba(247, 147, 30, 0.3);
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
  }

  .why-not-miss-section .warning-text {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: white;
  }

  .why-not-miss-section .stat-box {
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
  }

    .why-not-miss-section .stat-box strong {
      color: #FF6B35
    }

  .why-not-miss-section .stat-text {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: left;
  }

  .why-not-miss-section .two-paths {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .why-not-miss-section .path-card {
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid;
  }

    .why-not-miss-section .path-card p {
      font-size: 1.25rem;
      line-height: 1.8;
    }

    .why-not-miss-section .path-card.success {
      background: rgba(16, 185, 129, 0.1);
      border-color: rgba(16, 185, 129, 0.3);
    }

    .why-not-miss-section .path-card.danger {
      background: rgba(239, 68, 68, 0.1);
      border-color: rgba(239, 68, 68, 0.3);
    }

  .why-not-miss-section .path-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .why-not-miss-section .path-card.success .path-icon {
    color: #10b981;
  }

  .why-not-miss-section .path-card.danger .path-icon {
    color: #ef4444;
  }

  .why-not-miss-section .historical-example {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1rem;
    margin: 3rem 0;
  }

    .why-not-miss-section .historical-example h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #FF6B35;
      margin-bottom: 2rem;
      text-align: center;
    }

  .why-not-miss-section .example-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .why-not-miss-section .example-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid;
  }

    .why-not-miss-section .example-card p {
      font-size: 1.25rem;
      line-height: 1.8;
    }

    .why-not-miss-section .example-card.positive {
      background: rgba(16, 185, 129, 0.05);
      border-color: rgb(16 185 129);
    }

    .why-not-miss-section .example-card.negative {
      background: rgba(239, 68, 68, 0.05);
      border-color: rgba(239, 68, 68, 0.2);
    }

  .why-not-miss-section .conclusion-text {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    color: #FF6B35;
  }

  .why-not-miss-section .final-cta-box {
    /*background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);*/
    padding: 2.5rem;
    border-radius: 1rem;
    /*margin: 3rem 0;*/
  }

  .why-not-miss-section .final-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .why-not-miss-section .value-propositions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .why-not-miss-section .value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

    .why-not-miss-section .value-item p {
      font-size: 1.25rem;
      line-height: 1.8;
    }

    .why-not-miss-section .value-item svg {
      color: #10b981;
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

  .why-not-miss-section .urgency-box {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.3);
    padding: 2rem;
    border-radius: 0.75rem;
    /*margin: 3rem 0;*/
    text-align: center;
  }

  .why-not-miss-section .urgency-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .why-not-miss-section .urgency-conclusion {
    font-size: 1.375rem;
    font-weight: 700;
    color: #FF6B35;
    margin-top: 1.5rem;
  }

  .why-not-miss-section .recurring-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1rem;
    margin: 3rem 0;
  }

    .why-not-miss-section .recurring-info h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #FF6B35;
      margin-bottom: 1.5rem;
      text-align: center;
    }

  .why-not-miss-section .info-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
  }

    .why-not-miss-section .info-text.final {
      font-weight: 600;
      color: white;
      margin-top: 1.5rem;
    }

  .why-not-miss-section .cta-section {
    text-align: center;
    margin-top: 3rem;
  }

@media (min-width: 768px) {
  .why-not-miss-section .section-title-emphasis {
    font-size: 2.5rem;
  }

  .why-not-miss-section .two-paths {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-not-miss-section .example-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */
.testimonials-section {
  background: white;
  padding: 5rem 0;
}

  .testimonials-section .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .testimonials-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    line-height: 1.3;
  }

  .testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .testimonials-section .testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

    .testimonials-section .testimonial-card:hover {
      border-color: #FF6B35;
      box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
    }

  .testimonials-section .testimonial-header {
    margin-bottom: 1.5rem;
  }

  .testimonials-section .company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
  }

  .testimonials-section .logo-placeholder {
    font-weight: 700;
    color: #2d2d2d;
    font-size: 1.125rem;
  }

  .testimonials-section .stars {
    display: flex;
    gap: 0.25rem;
    color: #F7931E;
  }

  .testimonials-section.minimal .testimonial-content {
    background: transparent;
    padding-left: 1.5rem;
    border-left-width: 3px;
    border-left-color: #e0e0e0;
    box-shadow: none;
  }

    .testimonials-section.minimal .testimonial-content:hover {
      border-left-color: #4a90e2;
      transform: none;
    }

  .testimonials-section .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d2d2d;
    font-style: italic;
  }

    .testimonials-section .testimonial-text p {
      margin-bottom: 0.8rem;
    }

  .testimonials-section .testimonial-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
  }

  .testimonials-section .author-name {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
  }

  .testimonials-section .author-role {
    font-size: 0.875rem;
    color: #4a5568;
  }

  .testimonials-section .video-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
  }

  .testimonials-section .video-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-section .play-button {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

    .testimonials-section .play-button:hover {
      transform: scale(1.1);
    }

  .testimonials-section .video-placeholder p {
    font-weight: 600;
    color: #2d2d2d;
  }

  .testimonials-section .cta-section {
    text-align: center;
    margin-top: 3rem;
  }

@media (min-width: 768px) {
  .testimonials-section .section-title {
    font-size: 2.5rem;
  }
}

/* ===========================================
   TESTIMONIALS PHOTO & VIDEO MODERN STYLES
   =========================================== */
.testimonial-header-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-photo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-photo-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(255,107,53,0.12);
  border: 3px solid #fff;
  background: #fff;
}

.testimonial-photo-placeholder.testimonial-photo-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2.2rem;
  color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255,107,53,0.12);
  border: 3px solid #fff;
}

.testimonial-author-info {
  text-align: center;
}

  .testimonial-author-info .author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
  }

  .testimonial-author-info .author-role {
    font-size: 1rem;
    color: #4a5568;
  }

@media (min-width: 768px) {
  .testimonial-header-flex {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-photo-large {
    width: 100px;
    height: 100px;
  }

  .testimonial-photo-placeholder.testimonial-photo-large {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .testimonial-author-info {
    text-align: left;
  }

    .testimonial-author-info .author-name {
      font-size: 1.125rem;
    }

    .testimonial-author-info .author-role {
      font-size: 1rem;
    }
}

.stars {
  margin-bottom: 1rem;
}

/* Video Player Modern */
.video-player-modern {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255,107,53,0.18);
  background: #000;
}

.video-iframe-modern {
  width: 100%;
  height: 320px;
  border-radius: 1.2rem;
  border: none;
  background: #000;
  display: block;
}

.video-player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.video-play-icon {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.video-player-modern:hover .video-play-icon {
  opacity: 1;
}

@media (min-width: 768px) {
  .video-iframe-modern {
    height: 420px;
  }
}

/* --- FINE STILI TESTIMONIALS MODERNI --- */

/* ===========================================
   GLOBAL WIZARD LANDING UTILITIES
   =========================================== */
.wizard-landing {
  overflow-x: hidden;
}

  .wizard-landing section {
    scroll-margin-top: 4rem;
  }

/* CTA Button generico - usabile come link o button */
.cta-button {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white !important;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  text-decoration: none;
}

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    color: white !important;
  }

  .cta-button.secondary {
    font-size: 1.125rem;
  }

/* ===========================================
   ACTIVECAMPAIGN FORM STYLES
   =========================================== */
.registration-form input._has_error {
  border: 2px solid #F37C7B !important;
  background-color: #FFF5F5 !important;
}

.registration-form .field-required {
  color: #FF0000;
  margin-left: 2px;
}

.registration-form .field-error {
  color: #CA0000;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

.registration-form ._form-thank-you {
  padding: 2rem;
  background: #ff9026;
  color: #fff;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.registration-form ._form_error {
  padding: 1rem;
  background: #FFDDDD;
  color: #CA0000;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Submit button centrato */
.registration-form .submit-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 1.5rem;
}

/* Spinner per submit button */
.submit-button .spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin-ac 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin-ac {
  to {
    transform: rotate(360deg);
  }
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===========================================
   WEBINAR COUNTDOWN
   =========================================== */
.webinar-countdown {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-primary-orange);
}

.countdown-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.countdown-unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .countdown-value {
    font-size: 2rem;
  }

  .countdown-item {
    min-width: 60px;
  }
}

/* ===========================================
   STICKY CTA BAR - Bottom Fixed
   =========================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
  border-top: 3px solid var(--color-primary-orange);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-container {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 250px;
}

.sticky-cta-text {
  color: white;
}

.sticky-cta-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: white;
}

.sticky-cta-subtitle {
  font-size: 0.875rem;
  margin: 0;
  color: var(--color-text-light);
}

.sticky-countdown {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.sticky-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 45px;
}

.sticky-countdown-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-orange);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sticky-countdown-unit {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sticky-cta-button {
  background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-primary-gold) 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-orange);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

  .sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
  }

  .sticky-cta-button:active {
    transform: translateY(0);
  }

@media (max-width: 768px) {
  .sticky-cta-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }

  .sticky-cta-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .sticky-cta-title {
    font-size: 1rem;
  }

  .sticky-cta-subtitle {
    font-size: 0.75rem;
  }

  .sticky-countdown {
    gap: 0.5rem;
  }

  .sticky-countdown-item {
    min-width: 40px;
  }

  .sticky-countdown-value {
    font-size: 1.25rem;
  }

  .sticky-countdown-unit {
    font-size: 0.5625rem;
  }

  .sticky-cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 0.875rem;
  }
}

/* ===========================================
   CLIENTS SECTION
   =========================================== */
.clients-section {
  background: var(--color-bg-white);
  padding: 3rem 0;
  border-top: 1px solid #e5e7eb;
}

  .clients-section .container {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
  }

.clients-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-medium);
  margin-bottom: 2rem;
}

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

.clients-image {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===========================================
   DARK FOOTER
   =========================================== */
.dark-footer {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
  color: var(--color-text-light);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--color-primary-orange);
}

.footer-container {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
}

.footer-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin: 0;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

  .footer-link:hover {
    color: var(--color-primary-orange);
  }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.footer-link-inline {
  color: var(--color-text-light);
  text-decoration: underline;
  transition: color 0.3s ease;
}

  .footer-link-inline:hover {
    color: var(--color-primary-orange);
  }

/* ===========================================
   THANK YOU PAGE SPECIFIC STYLES
   =========================================== */

/* Hero Thank You - SFONDO CHIARO per leggibilità */
.thankyou-hero-light {
  background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
  padding: 1rem 0;
  position: relative;
}

  .thankyou-hero-light .container {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding: 0 1rem;
  }

  .thankyou-hero-light .hero-content {
    text-align: center;
  }

.success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.thankyou-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-medium);
  margin-bottom: 2rem;
  line-height: 1.4;
}

  .thankyou-subtitle .subtitle-emphasis {
    color: var(--color-primary-orange);
    font-weight: 700;
  }

.date-highlight-box {
  background: white;
  border: 3px solid var(--color-primary-orange);
  border-radius: var(--radius-lg);
  padding: 1.5rem; /* FIX: padding ridotto su mobile */
  margin: 2.5rem auto;
  max-width: 100%; /* FIX: non superare la larghezza del container */
  display: flex;
  align-items: center;
  gap: 1rem; /* FIX: gap ridotto su mobile */
  box-shadow: var(--shadow-orange);
  flex-direction: column; /* FIX: verticale su mobile */
}

.date-icon {
  width: 3rem; /* FIX: ridotto su mobile */
  height: 3rem; /* FIX: ridotto su mobile */
  background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-primary-gold) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.date-info {
  flex: 1;
  text-align: center; /* FIX: centrato su mobile */
  word-wrap: break-word; /* FIX: previeni overflow */
  overflow-wrap: break-word; /* FIX: previeni overflow */
}

.date-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.date-value {
  font-size: 1.25rem; /* FIX: ridotto su mobile */
  font-weight: 700;
  color: var(--color-primary-orange);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .date-highlight-box {
    flex-direction: row; /* Desktop: orizzontale */
    padding: 2rem;
    gap: 1.5rem;
    max-width: 600px;
  }

  .date-icon {
    width: 4rem;
    height: 4rem;
  }

  .date-info {
    text-align: left;
  }

  .date-value {
    font-size: 1.5rem;
  }
}

.intro-message {
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

  .intro-message p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 1rem;
  }

@media (max-width: 640px) {
  .thankyou-title {
    font-size: 1.75rem; /* FIX: ridotto ulteriormente */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thankyou-subtitle {
    font-size: 1.125rem; /* FIX: ridotto ulteriormente */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .date-highlight-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .date-info {
    text-align: center;
  }

  .date-value {
    font-size: 1.125rem; /* FIX: ridotto ulteriormente */
  }

  .rocket-icon {
    width: 32px; /* FIX: ridotto */
    height: 32px;
  }

  .intro-message p {
    font-size: 1rem; /* FIX: ridotto */
  }

  .wizard-preheadline p {
    font-size: 0.75rem; /* FIX: ridotto per evitare overflow */
    line-height: 1.3;
  }

  .email-warning {
    padding: 1rem; /* FIX: padding ridotto */
  }

  .email-warning p {
    font-size: 0.875rem; /* FIX: testo ridotto */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .calendar-button {
    font-size: 0.875rem; /* FIX: testo ridotto */
    padding: 0.625rem 1rem; /* FIX: padding ridotto */
  }
}

/* Benefits Grid Recap (sezione scura) */
.benefits-grid-recap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.benefit-card-recap {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

  .benefit-card-recap:hover {
    border-color: var(--color-primary-orange);
    transform: translateY(-4px);
  }

  .benefit-card-recap .benefit-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-orange);
    margin-bottom: 1rem;
  }

  .benefit-card-recap p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
  }

.closing-text {
  text-align: center;
}

  .closing-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 1rem;
  }

  .closing-text .signature-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-orange);
    margin-top: 2rem;
  }

@media (min-width: 768px) {
  .thankyou-title {
    font-size: 4rem;
  }

  .thankyou-subtitle {
    font-size: 1.875rem;
  }
}

.rocket-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  color: var(--color-primary-orange);
  animation: rocketFloat 2s ease-in-out infinite;
}

@keyframes rocketFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(-5deg);
  }

  50% {
    transform: translateY(-15px) rotate(0deg);
  }

  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@media (max-width: 640px) {
  .rocket-icon {
    width: 40px;
    height: 40px;
  }
}

/* Intro emphasis */
.intro-emphasis {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Email Warning Box */
.email-warning {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--color-primary-orange);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

  .email-warning h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .email-warning p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-bottom: 0.75rem;
  }

.email-warning-final {
  margin-bottom: 0;
}

/* Social Buttons */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.social-button-linkedin,
.social-button-youtube {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.social-icon {
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .social-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Step titles più evidenti */
.learn-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .learn-content h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

/* Recap intro */
.recap-intro {
  text-align: center;
  margin-bottom: 2rem;
}

/* Closing wait */
.closing-wait {
  font-size: 1.25rem;
  margin-top: 2rem;
  font-weight: 700;
}

.closing-text .signature-name {
  margin-top: 2rem;
}

/* Social Buttons con larghezza uguale */
.social-button-linkedin,
.social-button-youtube {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  height: auto;
  padding: 1.25rem 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .social-button-linkedin,
  .social-button-youtube {
    width: 350px;
    height: 60px;
    padding: 1.25rem 2.5rem;
  }
}

.email-warning-final a {
  color: var(--color-primary-orange);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-primary-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

  .email-warning-final a:hover {
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-primary-gold) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
  }

.whatsapp-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

/* Calendar Button */
.calendar-button-wrap {
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 100%;
}

.calendar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: white;
  color: #1a73e8;
  border: 2px solid #1a73e8;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.15);
}

  .calendar-button:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
  }

  .calendar-button:active {
    transform: translateY(0);
  }

.calendar-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .calendar-button {
    font-size: 0.875rem;
    padding: 0.875rem 1.5rem;
    gap: 0.5rem;
  }

  .calendar-icon {
    width: 18px;
    height: 18px;
  }
}
