/* ═══════════════════════════════════════════════
   ClickCasa — CSS Principale
   Design: istituzionale · rassicurante · concreto
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ─── Variabili ─── */
:root {
  --cc-white:       #FAFAF8;
  --cc-sage:        #6B8F71;
  --cc-sage-light:  #E8F0E9;
  --cc-sage-dark:   #4A6B50;
  --cc-blue:        #2C4A6E;
  --cc-blue-light:  #EAF0F8;
  --cc-blue-mid:    #3D6491;
  --cc-ink:         #1A2332;
  --cc-muted:       #5A6472;
  --cc-border:      #DEE5E0;
  --cc-warm:        #F5F2EE;
  --cc-amber:       #D4A853;
  --cc-amber-light: #FBF4E6;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(26,35,50,.08);
  --shadow-md:  0 4px 16px rgba(26,35,50,.10);
  --shadow-lg:  0 12px 40px rgba(26,35,50,.13);
  --shadow-card: 0 2px 8px rgba(26,35,50,.07), 0 0 0 1px rgba(26,35,50,.04);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cc-white);
  color: var(--cc-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
}

a { color: var(--cc-sage-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cc-blue); }

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

/* ─── Utilities ─── */
.text-sage     { color: var(--cc-sage) !important; }
.text-blue     { color: var(--cc-blue) !important; }
.text-muted-cc { color: var(--cc-muted) !important; }
.bg-sage-light { background: var(--cc-sage-light) !important; }
.bg-blue-light { background: var(--cc-blue-light) !important; }
.bg-warm       { background: var(--cc-warm) !important; }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cc-sage);
}

/* ─── Bottoni ─── */
.btn-cc-primary {
  background: var(--cc-sage);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(107,143,113,.30);
}
.btn-cc-primary:hover {
  background: var(--cc-sage-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(107,143,113,.38);
}

.btn-cc-blue {
  background: var(--cc-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(44,74,110,.25);
}
.btn-cc-blue:hover {
  background: var(--cc-blue-mid);
  color: #fff;
  transform: translateY(-1px);
}

.btn-cc-outline {
  background: transparent;
  color: var(--cc-blue);
  border: 1.5px solid var(--cc-blue);
  border-radius: var(--radius-md);
  padding: .72rem 1.72rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  transition: all .2s;
}
.btn-cc-outline:hover {
  background: var(--cc-blue);
  color: #fff;
}

.btn-cc-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius-md);
  padding: .72rem 1.72rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.btn-cc-ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

/* ─── Navbar ─── */
.cc-navbar {
  background: rgba(250,250,248,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cc-border);
  padding: .85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.cc-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(26,35,50,.10);
}

.cc-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--cc-ink);
}
.cc-logo span { color: var(--cc-sage); }

.cc-navbar .nav-link {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  color: var(--cc-muted);
  padding: .4rem .85rem;
  transition: color .2s;
}
.cc-navbar .nav-link:hover { color: var(--cc-ink); }

/* ─── Hero ─── */
.cc-hero {
  background: linear-gradient(135deg, var(--cc-blue) 0%, #1E3550 55%, #2A4A3A 100%);
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.cc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(107,143,113,.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 80% at 5% 80%, rgba(44,74,110,.30) 0%, transparent 60%);
  pointer-events: none;
}

.cc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.cc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(107,143,113,.22);
  border: 1px solid rgba(107,143,113,.35);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  margin-bottom: 1.8rem;
}
.cc-hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--cc-sage);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.cc-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.cc-hero h1 em {
  font-style: italic;
  color: rgba(232,240,233,.85);
}

.cc-hero .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 2.4rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

.cc-hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat {
  text-align: center;
}
.hero-stat .value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat .label {
  font-size: .78rem;
  color: rgba(255,255,255,.60);
  margin-top: .3rem;
  letter-spacing: .02em;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
  margin: 0 .5rem;
}

/* ─── Trust Bar ─── */
.cc-trust {
  background: var(--cc-warm);
  border-bottom: 1px solid var(--cc-border);
  padding: 1.1rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .83rem;
  color: var(--cc-muted);
  font-weight: 400;
}
.trust-item .icon {
  color: var(--cc-sage);
  font-size: 1rem;
}

/* ─── Sezione Problemi ─── */
.cc-problems {
  padding: 6rem 0;
  background: var(--cc-white);
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--cc-ink);
}
.section-header p {
  color: var(--cc-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  height: 100%;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cc-sage), var(--cc-blue));
  opacity: 0;
  transition: opacity .25s;
}
.problem-card:hover {
  border-color: var(--cc-sage);
  box-shadow: 0 8px 32px rgba(107,143,113,.15);
  transform: translateY(-3px);
}
.problem-card:hover::before { opacity: 1; }

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--cc-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: background .25s;
}
.problem-card:hover .problem-icon { background: var(--cc-sage); }
.problem-card:hover .problem-icon svg path { fill: #fff; }

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cc-ink);
  margin-bottom: .5rem;
}
.problem-card p {
  font-size: .88rem;
  color: var(--cc-muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── Come Funziona ─── */
.cc-howto {
  padding: 6rem 0;
  background: var(--cc-blue);
  position: relative;
  overflow: hidden;
}
.cc-howto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 50%, rgba(107,143,113,.15) 0%, transparent 65%);
}
.cc-howto .section-label { color: rgba(255,255,255,.55); }
.cc-howto h2 { color: #fff; }
.cc-howto .section-header p { color: rgba(255,255,255,.65); }

.step-card {
  position: relative;
  padding: 2rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  transition: background .25s, border-color .25s;
}
.step-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,.08);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  transition: color .25s;
}
.step-card:hover .step-number { color: rgba(255,255,255,.13); }

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cc-sage);
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
}
.step-card h3 {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: .5rem;
}
.step-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.60);
  margin: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2.5rem;
  color: rgba(255,255,255,.25);
  font-size: 1.3rem;
}

/* ─── Perché ClickCasa ─── */
.cc-why {
  padding: 6rem 0;
  background: var(--cc-warm);
}

.why-visual {
  background: linear-gradient(135deg, var(--cc-sage-light), var(--cc-blue-light));
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236B8F71' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-big-number {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--cc-sage);
  opacity: .18;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}
.why-tag {
  display: inline-block;
  background: var(--cc-sage);
  color: #fff;
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1rem;
  position: relative;
}
.why-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cc-ink);
  line-height: 1.35;
  position: relative;
}

.why-content h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }

.why-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
  transition: box-shadow .2s;
}
.why-pillar:hover { box-shadow: var(--shadow-md); }
.why-pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.why-pillar-icon.green { background: var(--cc-sage-light); }
.why-pillar-icon.blue  { background: var(--cc-blue-light); }
.why-pillar-icon.amber { background: var(--cc-amber-light); }

.why-pillar h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .2rem;
  color: var(--cc-ink);
}
.why-pillar p {
  font-size: .84rem;
  color: var(--cc-muted);
  margin: 0;
}

/* ─── Form ─── */
.cc-form {
  padding: 6rem 0;
  background: var(--cc-white);
}

.form-container {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cc-sage), var(--cc-blue), var(--cc-sage));
}

.form-sidebar {
  padding: 2.5rem;
  background: linear-gradient(160deg, var(--cc-blue) 0%, #1E3550 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  height: 100%;
}
.form-sidebar h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
.form-sidebar p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
}

.sidebar-benefit {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}
.sidebar-benefit .check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--cc-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #fff;
}

.form-step-indicator {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
}
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cc-border);
  transition: background .3s, width .3s;
}
.step-dot.active {
  background: var(--cc-sage);
  width: 24px;
  border-radius: 4px;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cc-ink);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--cc-border);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.form-section-title .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cc-sage-light);
  color: var(--cc-sage-dark);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.cc-label {
  font-size: .83rem;
  font-weight: 500;
  color: var(--cc-ink);
  margin-bottom: .4rem;
}
.cc-input, .cc-select, .cc-textarea {
  width: 100%;
  border: 1.5px solid var(--cc-border);
  border-radius: var(--radius-md);
  padding: .65rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--cc-ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.cc-input:focus, .cc-select:focus, .cc-textarea:focus {
  border-color: var(--cc-sage);
  box-shadow: 0 0 0 3px rgba(107,143,113,.12);
}
.cc-textarea { resize: vertical; min-height: 90px; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.radio-pill input { display: none; }
.radio-pill label {
  display: inline-block;
  padding: .45rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--cc-border);
  font-size: .83rem;
  font-weight: 400;
  color: var(--cc-muted);
  cursor: pointer;
  transition: all .2s;
  background: #fff;
}
.radio-pill input:checked + label {
  border-color: var(--cc-sage);
  background: var(--cc-sage-light);
  color: var(--cc-sage-dark);
  font-weight: 500;
}
.radio-pill label:hover {
  border-color: var(--cc-sage);
  color: var(--cc-sage-dark);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--cc-muted);
}
.checkbox-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--cc-sage);
  cursor: pointer;
}

.form-privacy {
  font-size: .78rem;
  color: var(--cc-muted);
  line-height: 1.5;
}
.form-privacy a { color: var(--cc-sage); }

/* ─── FAQ ─── */
.cc-faq {
  padding: 6rem 0;
  background: var(--cc-sage-light);
}
.cc-faq h2 { color: var(--cc-ink); }

.faq-item {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--cc-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-question:hover { color: var(--cc-sage-dark); }
.faq-question .arrow {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--cc-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--cc-sage-dark);
  transition: transform .25s, background .2s;
}
.faq-question[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
  background: var(--cc-sage);
  color: #fff;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .9rem;
  color: var(--cc-muted);
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

/* ─── Footer ─── */
.cc-footer {
  background: var(--cc-ink);
  padding: 4rem 0 2rem;
}
.cc-footer .cc-logo { color: #fff; }

.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  margin-top: .6rem;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-link {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
  transition: color .2s;
}
.footer-link:hover { color: rgba(255,255,255,.9); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 2.5rem 0 1.5rem;
}
.footer-bottom {
  font-size: .8rem;
  color: rgba(255,255,255,.30);
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(107,143,113,.15);
  border: 1px solid rgba(107,143,113,.25);
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ─── Success Page ─── */
.cc-success {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
.success-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cc-border);
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--cc-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .cc-hero { padding: 5rem 0 4rem; min-height: auto; }
  .cc-hero-card { margin-top: 3rem; }
  .step-connector { display: none; }
  .form-container { padding: 2rem 1.5rem; }
  .form-sidebar { margin-top: 2rem; }
  .why-visual { min-height: 260px; }
}

@media (max-width: 575px) {
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn { width: 100%; text-align: center; }
  .form-container { padding: 1.5rem 1rem; }
  .success-card { padding: 2.5rem 1.5rem; }
}

/* ─── Animazioni Entrata ─── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-delay="100"] { transition-delay: .1s; }
[data-aos][data-delay="200"] { transition-delay: .2s; }
[data-aos][data-delay="300"] { transition-delay: .3s; }
[data-aos][data-delay="400"] { transition-delay: .4s; }
[data-aos][data-delay="500"] { transition-delay: .5s; }
