:root {
  --navy-deep: #042c53;
  --blue-dark: #185fa5;
  --blue-medium: #378add;
  --blue-light: #85b7eb;
  --blue-pale: #c8ddef;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray: #888780;
  --charcoal: #2c2c2a;
  --border-soft: rgba(4, 44, 83, 0.12);
  --shadow-soft: 0 30px 70px rgba(4, 44, 83, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media (min-width: 1025px) {
  html.browser-chrome {
    font-size: 17px;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(133, 183, 235, 0.35), transparent 28%),
    linear-gradient(180deg, #eef4f9 0%, var(--off-white) 24%, #ffffff 100%);
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(4, 44, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 44, 83, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 64px;
}

/* La landing v2 termina con un footer full-bleed scuro: azzera il padding-bottom
   della page-shell che altrimenti lascerebbe una banda bianca sotto il footer.
   Scopato alla sola v2 (non tocca la index.html v1). */
.page-shell:has(.landing-v2) {
  padding-bottom: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0 14px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 14px;
}

.brand-logo-img {
  display: block;
  width: clamp(230px, 26vw, 400px);
  height: auto;
}

.brand-text {
  display: grid;
  gap: 2px;
  padding-top: 1px;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.brand-mark span {
  display: block;
  width: 14px;
  background: var(--navy-deep);
  border-radius: 7px 7px 2px 2px;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}

.brand-mark span:nth-child(1) { height: 16px; }
.brand-mark span:nth-child(2) { height: 22px; }
.brand-mark span:nth-child(3) { height: 28px; }
.brand-mark span:nth-child(4) { height: 34px; }
.brand-mark span:nth-child(5) { height: 40px; }

.brand-name,
.brand-claim,
.eyebrow,
.card-label,
.step-index,
.site-nav a {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-name,
.brand-claim,
.eyebrow,
.card-label,
.site-nav a {
  font-size: 0.78rem;
}

.brand-name,
.brand-claim {
  margin: 0;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.16em;
  color: var(--navy-deep);
}

.brand-claim {
  color: var(--navy-deep);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 0;
}

.site-nav a {
  color: var(--navy-deep);
  text-decoration: none;
}

.site-nav .nav-v2-button {
  padding: 8px 20px;
  border-radius: 20px;
  background: #378add;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(55, 138, 221, 0.24);
}

.site-nav .nav-v2-button:hover,
.site-nav .nav-v2-button:focus-visible {
  color: #ffffff;
  background: #185fa5;
}

.hero,
.section {
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.section {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 30px;
  padding: 34px;
}

.hero-copy {
  padding: 10px 6px 10px 4px;
}

.eyebrow,
.card-label,
.step-index {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-weight: 700;
}

h1,
h2,
h3,
.social-proof-number {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  max-width: 10ch;
  margin-top: 12px;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--navy-deep);
}

h3 {
  font-size: 1.26rem;
  line-height: 1.1;
  color: var(--navy-deep);
}

.hero-text,
.problem-lines p,
.step-card p,
.cta-copy p,
.form-note,
.social-proof-text {
  font-size: 0.98rem;
  line-height: 1.68;
}

.hero-kicker {
  margin: 0;
  max-width: 46ch;
  color: var(--blue-dark);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 700;
}

.hero-text {
  max-width: 35rem;
  margin: 0;
  color: #4b6280;
  font-size: 1.08rem;
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  list-style: none;
  max-width: 34ch;
  border-top: 1px solid rgba(4, 44, 83, 0.12);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-deep);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-medium);
  flex: 0 0 auto;
}

.hero-form-card,
.social-proof-card,
.step-card {
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.hero-form-card {
  padding: 22px 22px 18px;
  scroll-margin-top: 20px;
  border-radius: 28px;
  border-color: rgba(4, 44, 83, 0.22);
  background:
    radial-gradient(circle at 88% 14%, rgba(120, 176, 235, 0.38), transparent 28%),
    radial-gradient(circle at 14% 86%, rgba(20, 57, 103, 0.28), transparent 34%),
    linear-gradient(145deg, #173c69 0%, #2f5d96 48%, #234979 100%);
  color: var(--white);
}

.hero-form-card .card-label,
.hero-form-card h2,
.hero-form-card .form-note,
.hero-form-card label {
  color: var(--white);
}

.hero-form-card h2 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  line-height: 1.06;
  max-width: 15ch;
}

.lead-form {
  display: grid;
  gap: 10px;
}

.lead-form label {
  display: grid;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.lead-form label.is-invalid input,
.lead-form label.is-invalid select {
  border-color: rgba(196, 81, 74, 0.85);
  box-shadow: 0 0 0 4px rgba(196, 81, 74, 0.22) !important;
  background: rgba(255, 247, 247, 0.98);
}

.lead-form label.is-valid input,
.lead-form label.is-valid select {
  border-color: rgba(63, 154, 95, 0.85);
  box-shadow: 0 0 0 4px rgba(63, 154, 95, 0.2) !important;
  background: rgba(247, 255, 249, 0.98);
}

.lead-form label.is-invalid {
  color: #ffd7d1;
}

.lead-form label.is-valid {
  color: #d8f2e0;
}

.lead-form-inline label.is-invalid {
  color: #c4514a;
}

.lead-form-inline label.is-valid {
  color: #2f8451;
}

.field-hint {
  min-height: 1.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(4, 44, 83, 0.5);
}

.lead-form label.is-invalid .field-hint {
  color: #c4514a;
}

.lead-form label.is-valid .field-hint {
  color: #3f9a5f;
}

.consent-checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

.consent-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.consent-checkbox span {
  color: inherit;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(4, 44, 83, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--charcoal);
  font: inherit;
}

.hero-form-card .lead-form select {
  min-height: 54px;
  padding: 0 16px;
  font-size: 0.94rem;
}

.lead-form input::placeholder {
  color: #7d8791;
}

.form-status {
  min-height: 1.2rem;
  margin: 2px 0 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-status.is-success {
  color: #d6f0dc;
}

.form-status.is-error {
  color: #ffd5d0;
}

.lead-form-inline .form-status {
  grid-column: span 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button:disabled {
  opacity: 0.78;
  cursor: wait;
  transform: none;
}

.thankyou-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.thankyou-modal.is-open {
  display: block;
}

.thankyou-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 44, 83, 0.5);
  backdrop-filter: blur(6px);
}

.thankyou-modal-card {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: min(14vh, 120px) auto 0;
  padding: 32px 30px 28px;
  border: 1px solid rgba(4, 44, 83, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(255, 255, 255, 1));
  box-shadow: 0 32px 70px rgba(8, 33, 63, 0.22);
}

.thankyou-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(133, 183, 235, 0.16);
  color: var(--navy-deep);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.thankyou-modal-card h2 {
  margin: 0;
  max-width: 16ch;
}

.thankyou-modal-text {
  margin: 16px 0 0;
  max-width: 46ch;
  color: rgba(4, 44, 83, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.thankyou-modal-button {
  margin-top: 22px;
  min-width: 180px;
}

.button-primary {
  background: var(--navy-deep);
  color: var(--white);
}

.hero-form-card .button-primary {
  background: #ffffff;
  color: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(4, 44, 83, 0.22);
}

.form-button {
  width: 100%;
  margin-top: 8px;
  font-size: 0.92rem;
}

.form-note {
  margin: 6px 0 0;
  opacity: 0.72;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  max-width: 34rem;
}

.hero-proof article {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(4, 44, 83, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-proof strong {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.hero-proof span {
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(44, 44, 42, 0.8);
}

.section {
  margin-top: 22px;
  padding: 42px;
}




.problem-heading {
  display: grid;
  grid-template-columns: minmax(0, 66ch) minmax(300px, 360px);
  gap: 28px;
  align-items: start;
  justify-content: space-between;
  max-width: none;
}

.problem-section .problem-copy {
  max-width: 66ch;
}

.problem-heading h2 {
  margin-bottom: 18px;
}

.problem-intro {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  max-width: 58ch;
}

.problem-intro p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.68;
  color: rgba(4, 44, 83, 0.76);
}

.problem-prelude p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.68;
  color: rgba(4, 44, 83, 0.76);
}

.problem-section .problem-bill-image {
  width: 100%;
  max-width: 360px;
  justify-self: end;
  align-self: start;
  display: block;
  margin-top: 72px;
  pointer-events: none;
}



.problem-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.problem-metric-card {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.problem-metric-number {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--navy-deep);
}

.problem-metric-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.problem-takeaway {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 940px;
  margin: 30px auto 0;
  padding: 28px 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #0f3460 0%, #21477f 55%, #2c5c96 100%);
  color: #fff;
  box-shadow: 0 28px 56px rgba(8, 33, 63, 0.14);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.problem-takeaway-arrow {
  font-size: 2rem;
  line-height: 1;
  color: rgba(120, 176, 235, 0.95);
}

.problem-takeaway-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 215, 251, 0.95);
}

.problem-takeaway-copy p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: inherit;
}

@media (max-width: 900px) {
  .problem-metrics {
    grid-template-columns: 1fr;
  }

  .problem-heading {
    grid-template-columns: 1fr;
  }

  .problem-section .problem-bill-image {
    justify-self: center;
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .problem-takeaway {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 20px, 100%);
    padding: 14px 0 42px;
  }

  .site-header {
    justify-content: center;
    padding: 4px 0 18px;
  }

  .brand-logo-img {
    width: clamp(240px, 66vw, 320px);
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
    font-size: 0.74rem;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(2.25rem, 9.8vw, 3rem);
    margin-top: 0;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-form-card {
    padding: 22px 18px 20px;
    scroll-margin-top: 12px;
    border-radius: 24px;
  }

  .hero-form-card h2 {
    max-width: 12ch;
    margin-bottom: 12px;
    font-size: 1.34rem;
    line-height: 1.02;
  }

  .lead-form {
    gap: 8px;
  }

  .lead-form label {
    font-size: 0.78rem;
  }

  .lead-form input,
  .lead-form select {
    min-height: 44px;
    border-radius: 12px;
  }

  .hero-form-card .lead-form select {
    min-height: 48px;
    font-size: 0.94rem;
  }

  .consent-checkbox {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .hero-form-card .button-primary {
    min-height: 50px;
  }

  .form-note {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .section {
    margin-top: 18px;
    padding: 30px 18px;
  }

  .consequences-intro-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consequences-intro-visual {
    display: block;
    width: 100%;
    max-width: none;
    margin: 8px auto 12px;
  }

  .consequences-intro-visual-mobile {
    display: none;
  }

  .consequences-intro-visual img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
  }

  .consequences-intro {
    max-width: none;
    text-align: center;
  }

  .consequences-chain {
    padding: 22px 18px;
  }

  .consequences-chain::before {
    display: none;
  }

  .consequence-step {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0 14px;
    padding: 16px 0 18px;
  }

  .consequence-arrow {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.88rem;
  }

  .consequence-step-copy h3 {
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .consequence-step-copy p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .europe-section .histogram-card {
    padding: 16px 16px 14px;
  }

  .europe-section .histogram-head {
    align-items: start;
    gap: 10px;
  }

  .europe-section .histogram-chart {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .europe-section .histogram-scale {
    display: none;
  }

  .europe-section .histogram-plot {
    height: 250px;
  }

  .europe-section .histogram-bars,
  .europe-section .histogram-label-row {
    gap: 6px;
  }

  .europe-section .histogram-label-row {
    grid-template-columns: repeat(4, 40px);
    justify-content: space-between;
  }

  .europe-section .histogram-column-stage {
    gap: 6px;
  }

  .europe-section .histogram-bar {
    width: 100%;
    max-width: 40px;
    border-radius: 16px 16px 6px 6px;
  }

  .europe-section .histogram-value {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .europe-section .histogram-country {
    margin-top: 6px;
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .europe-section .histogram-context {
    display: none;
  }

  .europe-section .histogram-country-desktop {
    display: none;
  }

  .europe-section .histogram-country-mobile {
    display: inline;
  }

  .europe-section .histogram-note {
    margin-top: 8px;
    font-size: 0.74rem;
    line-height: 1.4;
  }
}

.problem-takeaway:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 64px rgba(8, 33, 63, 0.18);
}

.problem-takeaway:focus-visible {
  outline: 3px solid rgba(120, 176, 235, 0.9);
  outline-offset: 4px;
}


/* Europe section layout recovery */
.europe-chart-panel {
  display: grid;
  gap: 18px;
}

.chart-card {
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.chart-impact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.chart-impact h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 12ch;
  margin: 0;
}

.chart-kicker,
.europe-card-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.histogram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.histogram-card {
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.histogram-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.histogram-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.histogram-head strong {
  font-size: 0.78rem;
  color: var(--gray);
}

.histogram-chart {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.histogram-scale {
  position: relative;
  height: 500px;
}

.histogram-scale span {
  position: absolute;
  right: 0;
  transform: translateY(50%);
  padding-right: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gray);
}

.histogram-plot {
  position: relative;
  height: 500px;
  border-bottom: 1px solid rgba(4, 44, 83, 0.12);
}

.histogram-grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(4, 44, 83, 0.08);
}

.histogram-bars {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.histogram-col {
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  justify-items: center;
  height: 100%;
}

.histogram-column-stage {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.histogram-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-align: center;
  white-space: nowrap;
}

.histogram-bar {
  display: block;
  width: 108px;
  min-height: 0;
  border-radius: 24px 24px 8px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 18px 28px rgba(4, 44, 83, 0.12);
}

.histogram-bar-dark { background: linear-gradient(180deg, #113a67, #042c53); }
.histogram-bar-mid { background: linear-gradient(180deg, #2f6fbc, #24548b); }
.histogram-bar-light { background: linear-gradient(180deg, #5a98e6, #3d7fd0); }
.histogram-bar-pale { background: linear-gradient(180deg, #b8d7fb, #84b3e8); }
.histogram-bar-italy { background: linear-gradient(180deg, #d84d4d, #b62323); }

.histogram-country {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-align: center;
}

.histogram-context {
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--gray);
  text-align: center;
  font-weight: 700;
}

.histogram-col-italy .histogram-country,
.histogram-col-italy .histogram-value,
.histogram-col-italy .histogram-context {
  color: #b62323;
}

.histogram-note {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.italy-callout {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(4, 44, 83, 0.08), rgba(133, 183, 235, 0.18));
}

.italy-callout-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.italy-callout p {
  margin: 0;
  max-width: 72ch;
}

.europe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.europe-card {
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 247, 244, 0.92), rgba(255, 255, 255, 0.95));
  box-shadow: var(--shadow-soft);
}

.europe-card-featured {
  background: linear-gradient(145deg, #0f3460 0%, #21477f 55%, #2c5c96 100%);
  color: #fff;
  border-color: rgba(4, 44, 83, 0.18);
}

.europe-card-featured h3,
.europe-card-featured p,
.europe-card-featured .europe-card-label {
  color: inherit;
}

.europe-card p {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-source {
  margin: 16px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--gray);
}

@media (max-width: 1100px) {
  .chart-impact,
  .europe-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .histogram-scale {
    display: none;
  }

  .histogram-chart {
    grid-template-columns: 1fr;
  }

  .histogram-plot,
  .histogram-scale {
    height: 400px;
  }

  .histogram-bar {
    width: 68px;
  }
}


/* Lower sections layout recovery */
.planning-grid,
.timing-grid,
.steps-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.planning-card,
.timing-card,
.step-card,
.faq-item,
.about-copy,
.about-point,
.after-card,
.problem-metric-card,
.benefit-card {
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.planning-card h3,
.timing-card h3,
.step-card h3,
.faq-item h3,
.about-point h3,
.after-card h3,
.benefit-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.planning-card p,
.timing-card p,
.step-card p,
.faq-item p,
.about-copy p,
.about-point p,
.after-card p,
.benefit-card p {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.68;
}

.timing-card {
  display: grid;
  align-content: start;
}

.timing-card-icon {
  display: block;
  width: min(100%, 104px);
  height: auto;
  margin: 0 auto 16px;
}

.timing-card-highlight,
.after-card-featured,
.benefit-card-featured {
  background: linear-gradient(145deg, #0f3460 0%, #21477f 55%, #2c5c96 100%);
  color: #fff;
  border-color: rgba(4, 44, 83, 0.18);
}

.timing-card-highlight h3,
.timing-card-highlight p,
.after-card-featured h3,
.after-card-featured p,
.after-card-featured .after-card-label,
.benefit-card-featured h3,
.benefit-card-featured p,
.benefit-card-featured .benefit-kicker {
  color: inherit;
}

.after-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.after-card-label,
.benefit-kicker,
.step-index {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.after-card-featured .after-card-label,
.benefit-card-featured .benefit-kicker {
  color: rgba(184, 215, 251, 0.95);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  align-items: stretch;
}

.about-copy {
  padding: 32px;
}

.about-points {
  display: grid;
  gap: 20px;
}

.benefits-stack {
  display: grid;
  gap: 20px;
}

.benefits-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 32px 38px;
  border: 1px solid rgba(4, 44, 83, 0.18);
  border-radius: 30px;
  background: linear-gradient(145deg, #0f3460 0%, #21477f 55%, #2c5c96 100%);
  box-shadow: 0 30px 60px rgba(8, 33, 63, 0.16);
}

.benefits-featured-icon-shell {
  align-self: start;
  order: 2;
}

.benefits-featured-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
}

.benefits-featured-icon-image {
  display: block;
  width: 100%;
  max-width: 82px;
  max-height: 82px;
  height: auto;
  object-fit: contain;
}

.benefits-featured-copy .benefit-kicker {
  color: rgba(152, 196, 247, 0.95);
}

.benefits-featured-copy h3 {
  margin: 8px 0 0;
  max-width: none;
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.benefits-featured-copy p {
  margin: 18px 0 0;
  max-width: 42ch;
  color: rgba(226, 237, 251, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.58;
}

.benefits-card-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.benefits-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefits-card-grid-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefits-card-standard {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 32px 38px;
  border: 1px solid rgba(4, 44, 83, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 245, 0.94));
  box-shadow: var(--shadow-soft);
}

.benefits-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.benefits-card-head-copy {
  display: grid;
  gap: 8px;
}

.benefits-card-icon-shell {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  order: 2;
  justify-self: end;
  flex: 0 0 auto;
  overflow: visible;
}

.benefits-card-icon {
  display: block;
  width: auto;
  max-width: 62px;
  max-height: 62px;
  height: auto;
  object-fit: contain;
}

.benefits-card-standard .benefit-kicker {
  margin-top: 0;
  color: var(--blue-medium);
}

.benefits-card-standard h3 {
  margin: 0;
  max-width: 10ch;
  font-size: 1.78rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.benefits-card-standard p {
  margin: 0;
  color: rgba(44, 44, 42, 0.86);
  font-size: 1rem;
  line-height: 1.68;
}

.benefits-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px 40px;
  margin-top: 8px;
  border: 1px solid rgba(4, 44, 83, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(110, 171, 238, 0.22), transparent 24%),
    radial-gradient(circle at 16% 84%, rgba(39, 92, 151, 0.18), transparent 34%),
    linear-gradient(145deg, #11345f 0%, #21477f 55%, #2f5d96 100%);
  box-shadow: 0 30px 60px rgba(8, 33, 63, 0.16);
}

.benefits-cta-copy h3 {
  margin: 0;
  font-size: clamp(1.82rem, 2.9vw, 3.05rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  max-width: 9ch;
  color: #fff;
}

.benefits-cta-copy p {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.benefits-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 18px 30px;
  border-radius: 18px;
  border: 0;
  text-decoration: none;
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(8, 33, 63, 0.18);
}

.cta-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(4, 44, 83, 0.08), rgba(133, 183, 235, 0.18));
  box-shadow: var(--shadow-soft);
}

.cta-copy h2 {
  max-width: 12ch;
  margin-bottom: 16px;
}

.cta-copy p {
  margin: 0;
  max-width: 48ch;
}

.final-cta-button {
  justify-self: end;
  align-self: center;
  min-width: min(100%, 340px);
  padding-inline: 28px;
}

.lead-form-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.lead-form-inline label:last-of-type,
.lead-form-inline .form-button {
  grid-column: span 2;
}

@media (max-width: 1320px) {
}

@media (max-width: 1100px) {
  .about-grid,
  .after-grid,
  .benefits-cta,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .final-cta-button {
    justify-self: start;
  }
}

@media (max-width: 1040px) {
  .planning-grid,
  .timing-grid,
  .steps-grid,
  .faq-list,
  .after-grid,
  .about-grid,
  .cta-section,
  .lead-form-inline {
    grid-template-columns: 1fr;
  }

  .planning-card h3,
  .timing-card h3,
  .step-card h3,
  .faq-item h3,
  .about-point h3,
  .after-card h3,
  .benefit-card h3 {
    max-width: none;
  }

  .lead-form-inline label:last-of-type,
  .lead-form-inline .form-button {
    grid-column: span 1;
  }

  .lead-form-inline .form-status {
    grid-column: span 1;
  }

  .benefits-featured-card,
  .benefits-card-grid-2,
  .benefits-card-grid-3 {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .benefits-card-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Targeted section recovery: problem, Europe, timing, benefits */
.problem-section .problem-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.problem-section .problem-metric-card,
.europe-section .chart-card,
.europe-section .histogram-card,
.europe-section .europe-card,
.timing-section .timing-card,
.benefits-section .benefit-card {
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.problem-section .problem-takeaway {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: 30px 34px;
  text-decoration: none;
}

.europe-section .europe-chart-panel {
  display: grid;
  gap: 18px;
}

.europe-section .chart-impact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.europe-section .histogram-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.europe-section .histogram-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.europe-section .histogram-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.europe-section .histogram-chart {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.europe-section .histogram-visual {
  display: grid;
  gap: 14px;
}

.europe-section .histogram-scale {
  position: relative;
  height: 500px;
}

.europe-section .histogram-scale span {
  position: absolute;
  right: 0;
  transform: translateY(50%);
  padding-right: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gray);
}

.europe-section .histogram-plot {
  position: relative;
  height: 500px;
  border-bottom: 1px solid rgba(4, 44, 83, 0.12);
}

.europe-section .histogram-grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(4, 44, 83, 0.08);
}

.europe-section .histogram-bars {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.europe-section .histogram-col {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
}

.europe-section .histogram-column-stage {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.europe-section .histogram-label-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.europe-section .histogram-label-col {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.europe-section .histogram-country-mobile {
  display: none;
}

.europe-section .histogram-bar {
  display: block;
  width: 108px;
  border-radius: 24px 24px 8px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 18px 28px rgba(4, 44, 83, 0.12);
}

.europe-section .europe-grid,
.timing-section .timing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefits-section .benefits-stack {
  display: grid;
  gap: 20px;
}

.benefits-section .benefits-card-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.benefits-section .benefits-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefits-section .benefits-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-section .benefits-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px 40px;
  border: 1px solid rgba(4, 44, 83, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(110, 171, 238, 0.22), transparent 24%),
    radial-gradient(circle at 16% 84%, rgba(39, 92, 151, 0.18), transparent 34%),
    linear-gradient(145deg, #11345f 0%, #21477f 55%, #2f5d96 100%);
  box-shadow: 0 30px 60px rgba(8, 33, 63, 0.16);
}

@media (max-width: 1100px) {
  .problem-section .problem-metrics,
  .europe-section .europe-grid,
  .timing-section .timing-grid,
  .benefits-section .benefits-card-grid-3,
  .benefits-section .benefits-cta,
  .europe-section .chart-impact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .benefits-section .benefits-card-grid-2,
  .problem-section .problem-metrics,
  .europe-section .histogram-chart {
    grid-template-columns: 1fr;
  }

  .europe-section .histogram-scale {
    display: none;
  }
}

/* Final recovery for featured dark cards */
.europe-section .europe-card-featured,
.timing-section .timing-card-highlight,
.benefits-section .benefit-card-featured,
.after-section .after-card-featured {
  background: linear-gradient(145deg, #0f3460 0%, #21477f 55%, #2c5c96 100%);
  color: #ffffff;
  border-color: rgba(4, 44, 83, 0.18);
}

.europe-section .europe-card-featured h3,
.europe-section .europe-card-featured p,
.europe-section .europe-card-featured .europe-card-label,
.timing-section .timing-card-highlight h3,
.timing-section .timing-card-highlight p,
.benefits-section .benefit-card-featured h3,
.benefits-section .benefit-card-featured p,
.benefits-section .benefit-card-featured .benefit-kicker,
.after-section .after-card-featured h3,
.after-section .after-card-featured p,
.after-section .after-card-featured .after-card-label {
  color: inherit;
}

.timing-section .timing-final-box {
  margin-top: 28px;
  padding: 32px 34px;
  border-radius: 26px;
  background: linear-gradient(145deg, #0f3460 0%, #21477f 55%, #2c5c96 100%);
  box-shadow: 0 30px 60px rgba(8, 33, 63, 0.16);
}

.timing-section .timing-final-box p {
  margin: 0;
  max-width: 48ch;
  color: #fff;
  font-family: "Liberation Serif", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.timing-section .section-heading h2 {
  max-width: 18ch;
}



@media (max-width: 1100px) {
  .europe-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .europe-reasons {
    grid-template-columns: 1fr;
  }
}

.about-section .section-heading h2 {
  max-width: 24ch;
}

.about-section .about-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  max-width: 72ch;
}

.about-section .about-copy p {
  max-width: 62ch;
}

/* Expandable benefits cards */
.benefit-card-expand summary {
  display: grid;
  gap: 16px;
  list-style: none;
  cursor: pointer;
}

.benefit-card-expand summary::-webkit-details-marker {
  display: none;
}

.benefit-card-expand h3 {
  margin: 0;
}

.benefit-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.benefit-toggle::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
}

.benefit-card-expand[open] .benefit-toggle::after {
  content: '−';
}

.benefit-card-expand .benefit-body {
  margin-top: 18px;
}

.benefit-card-expand .benefit-body p {
  margin: 0;
}

.benefit-card-expand.benefit-card-featured .benefit-toggle {
  color: rgba(184, 215, 251, 0.95);
}

/* Roberto quote final alignment */
.about-quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 340px;
  padding: 36px 36px 54px;
}

.about-quote-card p {
  max-width: 34ch;
  margin: 0 auto;
  text-align: center;
}

.about-quote-card p::before {
  content: '“';
  display: block;
  margin: 0 auto 14px;
  font-size: 2.4rem;
  line-height: 0.8;
  width: fit-content;
  color: rgba(184, 215, 251, 0.9);
}

.about-quote-card p::after {
  content: '”';
  display: inline-block;
  margin-left: 0.08em;
  font-size: 2.4rem;
  line-height: 0.8;
  vertical-align: -0.2em;
  color: rgba(184, 215, 251, 0.9);
}

.about-quote-label {
  position: absolute;
  right: 30px;
  bottom: 24px;
  margin: 0;
}

/* Center benefit expand buttons */
.benefit-toggle {
  justify-self: center;
  text-align: center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: start;
}

.about-pillars {
  display: grid;
  gap: 16px;
  padding-top: 2px;
}

.about-pillar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.about-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(133, 183, 235, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-dark);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-pillar h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.18;
  color: var(--navy-deep);
}

.about-pillar p {
  margin: 0;
  color: rgba(4, 44, 83, 0.72);
  font-size: 0.94rem;
  line-height: 1.58;
}

.about-divider {
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(90deg, rgba(133, 183, 235, 0.75), transparent 100%);
}

.about-profile {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.about-profile-visual {
  position: relative;
}

.about-profile-placeholder {
  width: 146px;
  height: 180px;
  border-radius: 14px;
  background: linear-gradient(160deg, #85b7eb 0%, #185fa5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-profile-badge {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-quote-card {
  min-width: 0;
}

.about-quote-mark {
  display: block;
  margin-bottom: 2px;
  color: rgba(133, 183, 235, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  line-height: 0.8;
}

.about-quote-card p {
  margin: 0;
  max-width: 35ch;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.6vw, 1.38rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.about-quote-meta {
  display: grid;
  gap: 2px;
  margin-top: 20px;
}

.about-quote-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.about-quote-role {
  font-size: 0.82rem;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.about-stat {
  padding: 22px 24px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.about-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.3vw, 2.15rem);
  line-height: 1;
}

.about-stat span {
  display: block;
  color: rgba(4, 44, 83, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .about-intro-grid,
  .about-profile,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-profile-visual {
    justify-self: center;
  }

  .about-quote-card p {
    max-width: none;
  }

  .about-stats {
    gap: 12px;
    margin-top: 18px;
  }

  .about-stat {
    padding: 10px 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .about-stat strong {
    margin-bottom: 8px;
    font-size: 2rem;
  }

  .about-stat span {
    font-size: 0.88rem;
    line-height: 1.42;
  }
}

/* Chi siamo: align the imported structure with the landing visual system. */
.about-section {
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(52px, 7vw, 86px);
}

.about-section .section-heading {
  max-width: 760px;
}

.about-section .section-heading h2 {
  max-width: 20ch;
}

.about-intro-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 28px;
  align-items: start;
}

.about-section .about-copy {
  max-width: 58ch;
}

.about-section .about-copy p {
  margin: 0;
  max-width: 56ch;
  color: rgba(4, 44, 83, 0.78);
  font-size: 1.04rem;
  line-height: 1.68;
}

.about-section .about-copy p + p {
  margin-top: 18px;
}

.about-side-panel {
  display: grid;
  gap: 16px;
  margin-top: clamp(-90px, -6vw, -52px);
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(133, 183, 235, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 56px rgba(8, 33, 63, 0.1);
}

.about-side-kicker {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-profile {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(24px, 4vw, 42px);
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(133, 183, 235, 0.24), transparent 28%),
    linear-gradient(145deg, #0f3460 0%, #21477f 58%, #2c5c96 100%);
  box-shadow: 0 32px 72px rgba(8, 33, 63, 0.2);
  margin-top: 32px;
}

.about-profile-placeholder {
  width: 124px;
  height: 150px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.about-profile-photo {
  display: block;
  width: 248px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 40px rgba(2, 20, 43, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.about-profile-badge {
  background: #ffffff;
  color: var(--navy-deep);
}

.about-quote-card {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #ffffff;
}

.about-quote-mark,
.about-quote-card p::before,
.about-quote-card p::after {
  display: none;
}

.about-quote-card p {
  max-width: 48ch;
  margin: 0;
  text-align: left;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.36;
  letter-spacing: 0;
}

.about-quote-meta {
  margin-top: 22px;
}

.about-quote-name {
  color: #ffffff;
}

.about-quote-role {
  color: rgba(200, 221, 239, 0.92);
}

.about-stats {
  gap: 18px;
  margin-top: 0;
  grid-template-columns: 1fr;
}

.about-stat {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 54px rgba(8, 33, 63, 0.1);
  text-align: left;
  padding: 20px 22px;
}

.about-stat strong {
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 2.4vw, 2.35rem);
}

@media (max-width: 960px) {
  .about-intro-grid,
  .about-profile {
    gap: 22px;
  }

  .about-side-panel {
    margin-top: 0;
    padding: 20px 18px;
  }

  .about-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-profile-visual {
    justify-self: center;
  }

  .about-quote-card p {
    max-width: none;
    text-align: center;
  }

  .about-stats {
    gap: 18px;
  }

  .about-stat {
    padding: 18px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(8, 33, 63, 0.09);
    text-align: center;
  }
}

/* FAQ horizontal rows */
.faq-section .section-heading {
  max-width: 760px;
}

.faq-section .section-heading h2 {
  max-width: 19ch;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(4, 44, 83, 0.14);
}

.faq-item {
  display: grid;
  grid-template-columns: auto minmax(280px, 0.95fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(4, 44, 83, 0.14);
  background: transparent;
  box-shadow: none;
}

.faq-item h3 {
  margin: 4px 0 0;
  max-width: 12ch;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.65vw, 1.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-item p {
  max-width: 54ch;
  margin: 0;
  padding-top: 4px;
  color: rgba(4, 44, 83, 0.76);
  font-size: 1rem;
  line-height: 1.66;
}

.faq-index {
  display: inline-flex;
  width: 2.4rem;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.45rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(64, 133, 214, 0.1);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 1180px) {
  .faq-item {
    grid-template-columns: auto minmax(240px, 0.9fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .faq-list {
    margin-top: 22px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .faq-item h3 {
    max-width: none;
    font-size: 1.3rem;
    margin-top: 0;
  }

  .faq-item p {
    font-size: 0.98rem;
    padding-top: 0;
  }
}

.problem-section .problem-metric-card:nth-child(1) .problem-metric-number {
  color: #3f9a5f;
}

.problem-section .problem-metric-card:nth-child(2) .problem-metric-number {
  color: #c4514a;
}

.problem-section .problem-metric-card:nth-child(3) .problem-metric-number {
  color: #d2a83b;
}



.consequences-heading {
  max-width: none;
}

.consequences-heading > .eyebrow {
  max-width: 72ch;
}

.consequences-heading > h2 {
  max-width: 46rem;
}

.consequences-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.consequences-problem-card {
  padding: 24px;
  border: 1px solid #c8ddef;
  border-radius: 14px;
  background: #f5f9fd;
}

.consequences-card-number {
  display: block;
  margin-bottom: 18px;
  color: #c8ddef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 0.9;
}

.consequences-problem-card h3 {
  margin: 0;
  color: #042c53;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.consequences-problem-card p {
  margin: 12px 0 0;
  color: #5a6878;
  font-size: 0.98rem;
  line-height: 1.55;
}

.consequences-strip-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 24px 26px;
  border-left: 4px solid #378add;
  border-radius: 0 14px 14px 0;
  background: #f0f7fd;
}

.consequences-strip-cta p {
  margin: 0;
  color: #042c53;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
}

.consequences-strip-button {
  flex: 0 0 auto;
}

.consequences-intro-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: end;
  margin-top: 10px;
}

.consequences-intro {
  max-width: 58ch;
  margin-top: 0;
  display: grid;
  gap: 10px;
}

.consequences-intro-visual {
  margin: 0;
  align-self: end;
  justify-self: center;
  width: min(100%, 440px);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.consequences-intro-visual img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.consequences-intro-visual-mobile {
  display: none;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.consequences-intro-visual-mobile img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.consequences-intro-visual-mobile {
  display: none;
  margin: 0;
}

@media (max-width: 900px) {
  .consequences-intro-visual {
    display: block;
    width: 100%;
    max-width: none;
    margin: 8px auto 12px;
  }

  .consequences-intro-visual-mobile {
    display: none;
  }
}

.consequences-intro p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.68;
  color: rgba(4, 44, 83, 0.76);
}

.consequences-chain-lead {
  margin: 30px 0 0;
  color: var(--navy-deep);
  font-family: "Liberation Serif", Georgia, serif;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.consequences-chain {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 34px;
  padding: 30px 34px;
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 8%, rgba(64, 133, 214, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.86));
  box-shadow: 0 30px 70px rgba(8, 33, 63, 0.12);
  overflow: hidden;
}

.consequences-chain::before {
  content: "";
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 56px;
  width: 2px;
  background: linear-gradient(180deg, rgba(64, 133, 214, 0.12), rgba(64, 133, 214, 0.55), rgba(64, 133, 214, 0.12));
}

.consequence-step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.consequence-step + .consequence-step {
  border-top: 1px solid rgba(4, 44, 83, 0.08);
}

.consequence-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(64, 133, 214, 0.22);
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(8, 33, 63, 0.1);
}

.consequence-step-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(1.28rem, 1.45vw, 1.7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.consequence-step-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(4, 44, 83, 0.78);
}

.consequences-final-card {
  margin-top: 24px;
  padding: 30px 32px;
  border-radius: 26px;
  background: linear-gradient(145deg, #0f3460 0%, #21477f 55%, #2c5c96 100%);
  box-shadow: 0 30px 60px rgba(8, 33, 63, 0.16);
}

.consequences-final-card p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.55vw, 1.65rem);
  line-height: 1.42;
}

.consequences-final-card p + p {
  margin-top: 6px;
}

.consequences-cta-wrap {
  margin-top: 22px;
}

.consequences-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(4, 44, 83, 0.22);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.consequences-cta:hover,
.consequences-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(4, 44, 83, 0.26);
}

.consequences-cta span {
  color: var(--blue);
}

@media (max-width: 900px) {
  .consequences-chain::before {
    display: none;
  }

  .consequence-step {
    grid-template-columns: 1fr;
  }

  .consequence-arrow {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 2px;
    font-size: 1rem;
  }
}

.problem-question-list {
  margin: 6px 0 0;
  padding-left: 1.2rem;
  list-style: disc;
  max-width: 58ch;
}

.problem-question-list li {
  margin: 0 0 0.55rem;
  padding: 0;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: rgba(4, 44, 83, 0.82);
  font-size: 1.02rem;
  line-height: 1.55;
}

.problem-question-list li::before {
  content: none !important;
}

.definition-section {
  background: transparent;
}

.definition-layout {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.definition-section .section-heading h2 {
  max-width: 46rem;
}

.definition-lead {
  margin: 28px 0 0;
  padding-left: 22px;
  border-left: 4px solid #378add;
  background: transparent;
  box-shadow: none;
}

.definition-lead p {
  margin: 0;
  color: rgba(4, 44, 83, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.definition-lead strong {
  color: #042c53;
}

.definition-explainer {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  max-width: 58ch;
}

.definition-explainer p {
  margin: 0;
  color: rgba(4, 44, 83, 0.74);
  font-size: 0.98rem;
  line-height: 1.62;
}

.definition-cta-button {
  margin-top: 24px;
  min-width: 240px;
}

.definition-process {
  position: relative;
  display: grid;
  gap: 26px;
  margin-top: 74px;
  padding-left: 58px;
}

.definition-process::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  width: 2px;
  background: linear-gradient(180deg, #c8ddef 0%, #042c53 100%);
}

.definition-step {
  position: relative;
  display: grid;
  gap: 8px;
}

.definition-step-index {
  position: absolute;
  top: 0;
  left: -58px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #85b7eb;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(4, 44, 83, 0.12);
}

.definition-step:nth-child(2) .definition-step-index {
  background: #5d9ddd;
}

.definition-step:nth-child(3) .definition-step-index {
  background: #378add;
}

.definition-step:nth-child(4) .definition-step-index {
  background: #185fa5;
}

.definition-step:nth-child(5) .definition-step-index {
  background: #042c53;
}

.definition-step h3 {
  margin: 3px 0 0;
  color: #042c53;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.12;
}

.definition-step p {
  margin: 6px 0 0;
  max-width: 48ch;
  color: rgba(4, 44, 83, 0.72);
  font-size: 0.88rem;
  line-height: 1.38;
}

.definition-step-output {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #ebf3fc;
  color: #185fa5;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .definition-layout {
    grid-template-columns: 1fr;
  }

  .definition-process {
    margin-top: 0;
    padding-left: 50px;
  }

  .definition-step-index {
    left: -50px;
  }
}



.consequences-error-map {
  margin-top: 26px;
}

.consequences-map-intro {
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(4, 44, 83, 0.82);
}

.consequences-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.consequences-map-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.consequences-map-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(64, 133, 214, 0.12);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.consequences-map-item h3 {
  margin: 0 0 6px;
  font-size: 1.22rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.consequences-map-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: rgba(4, 44, 83, 0.78);
}

@media (max-width: 900px) {
  .consequences-map-grid {
    grid-template-columns: 1fr;
  }
}


.hero-copy h1 {
  margin-bottom: 1.2rem;
}


.consequences-final-copy {
  display: grid;
  gap: 0.35rem;
}

.consequences-cta-wrap-inline {
  margin-top: 1.5rem;
  justify-content: center;
}

.consequences-cta-inverse {
  color: var(--navy-deep);
}

.consequences-cta-inverse:hover,
.consequences-cta-inverse:focus-visible {
  color: var(--navy-deep);
  background: #f4f8ff;
}


.consequences-final-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-top: 52px;
}

.consequences-final-pair .consequences-final-card {
  margin-top: 0;
  min-height: 100%;
}

/* Final benefits layout recovery */
.benefits-section .benefits-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-section .benefits-card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.benefits-section .benefits-card-standard {
  width: 100%;
  min-width: 0;
  align-self: start;
  justify-self: stretch;
}

.benefits-section .benefits-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.benefits-section .benefits-card-icon-shell {
  width: 60px;
  height: 60px;
  justify-self: end;
  align-self: start;
  overflow: visible;
}

.benefits-section .benefits-card-icon {
  width: auto;
  max-width: 50px;
  max-height: 50px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .consequences-card-grid {
    grid-template-columns: 1fr;
  }

  .consequences-strip-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .consequences-strip-button {
    width: 100%;
  }

  .benefits-section .benefits-card-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .benefits-section .benefits-card-grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
    align-items: start !important;
  }

  .benefits-section .benefits-card-grid-2 > .benefits-card-standard {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    align-self: start;
  }
}

.consequences-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.consequences-cta-kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consequences-cta-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.consequences-cta-copy {
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1rem !important;
  line-height: 1.62 !important;
}

@media (max-width: 900px) {
  .consequences-final-pair {
    grid-template-columns: 1fr;
  }
}


.consequences-final-stack {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.consequences-quote-block {
  max-width: 42rem;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: left;
  align-self: center;
}

.consequences-quote-block p {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 600;
  line-height: 1.42;
}

.consequences-quote-block p + p {
  margin-top: 0.35rem;
}

.consequences-quote-block footer {
  margin-top: 1rem;
  color: rgba(4, 44, 83, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consequences-cta-card-single {
  max-width: 32rem;
  width: 100%;
  margin: 0 auto;
}

.consequences-cta-card-single .consequences-cta-wrap-inline {
  margin-top: 1.25rem;
}

/* Europe section: planning rationale + volatility */
.europe-heading {
  max-width: 62rem;
  margin-bottom: 28px;
}

.europe-heading h2 {
  max-width: 15ch;
}

.europe-heading p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(4, 44, 83, 0.78);
  font-size: 1.05rem;
  line-height: 1.68;
}

.europe-section .chart-impact h3 {
  max-width: 15ch;
}

.europe-section .italy-callout {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(4, 44, 83, 0.08), rgba(133, 183, 235, 0.18));
}

.europe-section .italy-callout p {
  max-width: 68ch;
  color: rgba(4, 44, 83, 0.86);
  font-weight: 700;
}

.europe-section .europe-compare-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: start;
}

.europe-section .europe-compare-copy {
  display: grid;
  gap: 20px;
  align-content: start;
  align-self: start;
  padding-top: 0;
}

.europe-section .europe-compare-copy .chart-impact {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 0;
}

.europe-section .europe-compare-copy .chart-impact h3 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.europe-section .europe-compare-copy .chart-impact strong {
  font-size: 0.98rem;
  color: var(--charcoal);
}

.volatility-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.volatility-copy h3 {
  margin: 0;
  max-width: 13ch;
  color: var(--navy-deep);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.volatility-copy p {
  margin: 18px 0 0;
  color: rgba(4, 44, 83, 0.78);
  font-size: 1rem;
  line-height: 1.68;
}

.pun-chart {
  padding: 22px 24px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.pun-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--navy-deep);
}

.pun-chart-head strong {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pun-chart-head span {
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 800;
}

.pun-chart svg {
  display: block;
  width: 100%;
  height: 330px;
}

.pun-grid {
  stroke: rgba(4, 44, 83, 0.08);
  stroke-width: 1;
}

.pun-axis {
  stroke: rgba(4, 44, 83, 0.16);
  stroke-width: 1.2;
}

.pun-area {
  fill: url(#punAreaGradient);
}

.pun-line {
  fill: none;
  stroke: url(#punLineGradient);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pun-dot-hot {
  fill: #d84d4d;
  stroke: #fff;
  stroke-width: 3;
}

.pun-threshold {
  stroke: rgba(216, 77, 77, 0.45);
  stroke-width: 2;
  stroke-dasharray: 8 8;
}

.pun-scale,
.pun-year,
.pun-label-hot,
.pun-threshold-label {
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  fill: rgba(4, 44, 83, 0.58);
}

.pun-label-hot {
  fill: #b62323;
}

.pun-threshold-label {
  fill: rgba(182, 35, 35, 0.86);
}

.europe-final-box {
  margin-top: 28px;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px 34px;
  border-radius: 26px;
  background: linear-gradient(145deg, #0f3460 0%, #21477f 55%, #2c5c96 100%);
  box-shadow: 0 30px 60px rgba(8, 33, 63, 0.16);
}

.europe-final-box p {
  margin: 0;
  max-width: 62ch;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pun-chart-source {
  margin: 14px 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.europe-final-cta {
  background: #ffffff;
  color: var(--navy-deep);
  box-shadow: 0 16px 30px rgba(4, 44, 83, 0.22);
  white-space: nowrap;
}

.europe-final-cta:hover,
.europe-final-cta:focus-visible {
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 900px) {
  .europe-section .europe-compare-card,
  .volatility-card {
    grid-template-columns: 1fr;
  }

  .europe-final-box {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .pun-chart svg {
    height: 260px;
  }
}

/* Compact Europe price chart block */
.europe-section .chart-card {
  padding: 22px 28px;
}

.europe-section .chart-impact {
  margin-bottom: 16px;
}

.europe-section .histogram-card {
  padding: 18px 22px 16px;
}

.europe-section .histogram-head {
  margin-bottom: 10px;
}

.europe-section .histogram-chart {
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
}

.europe-section .histogram-scale,
.europe-section .histogram-plot {
  height: 390px;
}

.europe-section .histogram-column-stage {
  gap: 8px;
}

.europe-section .histogram-bars,
.europe-section .histogram-label-row {
  gap: 16px;
}

.europe-section .histogram-value {
  font-size: 1.02rem;
}

.europe-section .histogram-bar {
  width: 82px;
  border-radius: 20px 20px 7px 7px;
}

.europe-section .histogram-country {
  margin-top: 10px;
}

.europe-section .histogram-context {
  margin-top: 3px;
}

.europe-section .histogram-note {
  margin-top: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.europe-section .italy-callout {
  margin-top: 14px;
  padding: 16px 20px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .europe-section .histogram-chart {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .europe-section .histogram-scale {
    display: none;
  }

  .europe-section .histogram-plot {
    height: 250px;
  }

  .europe-section .histogram-bars {
    gap: 6px;
  }

  .europe-section .histogram-label-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .europe-section .histogram-column-stage {
    gap: 6px;
  }

  .europe-section .histogram-bar {
    width: 100%;
    max-width: 40px;
    border-radius: 16px 16px 6px 6px;
  }

  .europe-section .histogram-value {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .europe-section .histogram-country {
    margin-top: 6px;
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .europe-section .histogram-context {
    display: none;
  }

  .europe-section .histogram-country-desktop {
    display: none;
  }

  .europe-section .histogram-country-mobile {
    display: inline;
  }
}

/* Make the problem result link read clearly as a CTA */
.problem-section .problem-takeaway {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 64px rgba(8, 33, 63, 0.2);
}

.problem-section .problem-takeaway::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.problem-section .problem-takeaway-arrow {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: transform 160ms ease, background 160ms ease;
}

.problem-takeaway-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.problem-section .problem-takeaway:hover,
.problem-section .problem-takeaway:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 40px 76px rgba(8, 33, 63, 0.26);
}

.problem-section .problem-takeaway:hover .problem-takeaway-arrow,
.problem-section .problem-takeaway:focus-visible .problem-takeaway-arrow {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.2);
}

.site-footer {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 10%, rgba(133, 183, 235, 0.2), transparent 28%),
    linear-gradient(145deg, #0f3460 0%, #21477f 58%, #2c5c96 100%);
  color: #ffffff;
  box-shadow: 0 34px 76px rgba(8, 33, 63, 0.22);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr) minmax(280px, 0.85fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.footer-brand img {
  display: block;
  width: min(340px, 74vw);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-cta p,
.footer-bottom p {
  margin: 0;
  color: rgba(232, 243, 255, 0.82);
  line-height: 1.6;
}

.footer-brand p {
  max-width: 34ch;
  margin-top: 18px;
  font-size: 1.02rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-nav h2 {
  margin: 0 0 14px;
  color: rgba(200, 221, 239, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  width: fit-content;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-nav a + a {
  margin-top: 10px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--blue-pale);
}

.footer-cta {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-cta-title {
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1 !important;
}

.footer-cta p + p {
  margin-top: 12px;
}

.footer-button {
  margin-top: 18px;
  min-height: 48px;
  padding: 0 20px;
  background: #ffffff;
  color: var(--navy-deep);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(8, 33, 63, 0.22);
}

.footer-button:hover,
.footer-button:focus-visible {
  transform: translateY(-2px);
  background: #f3f8ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-brand,
  .footer-cta {
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav a {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}

/* Landing 2.0 */
.landing-v2 {
  margin-top: 0;
  color: var(--navy-deep);
  scroll-margin-top: 24px;
}

.landing-v2 .v2-section + .v2-section {
  margin-top: 0;
}

.landing-v2 .v2-guarantee-section + .v2-why-section,
.landing-v2 .v2-scarcity-section + .v2-form-section {
  margin-top: 0;
}

.landing-v2-divider {
  display: grid;
  place-items: center;
  min-height: 54px;
  margin-bottom: 28px;
  border-radius: 28px;
  background: #042c53;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.v2-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 0 18px;
  border: 1px solid rgba(4, 44, 83, 0.16);
  border-radius: 999px;
  color: #042c53;
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
}

.v2-section {
  padding: 76px 54px;
  border-radius: 0;
}

.v2-page-header {
  margin: -14px calc(50% - 50vw) 0;
  padding: 18px max(16px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(4, 44, 83, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(4, 44, 83, 0.08);
}

.v2-page-header .brand-logo-img {
  width: clamp(260px, 25vw, 360px);
}

.v2-eyebrow {
  margin: 0 0 16px;
  color: #378add;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v2-section h2,
.v2-hero h1 {
  margin: 0;
  color: #042c53;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 0.95;
}

.v2-hero {
  position: relative;
  display: grid;
  width: 100vw;
  min-height: 760px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  place-items: center;
  overflow: hidden;
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(rgba(4, 44, 83, 0.72), rgba(4, 44, 83, 0.82)),
    url("./assets/planning-factory-wide.webp?v=20260610-webp") center / cover no-repeat;
}

.v2-hero-content {
  width: min(980px, 100%);
  text-align: left;
  color: #ffffff;
}

.v2-hero .v2-eyebrow,
.v2-hero h1,
.v2-hero h2,
.v2-hero-subtitle {
  color: #ffffff;
}

.v2-hero h1,
.v2-hero h2 {
  font-size: 3.15rem;
  max-width: none;
}

.v2-hero-subtitle {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: 1.16rem;
  line-height: 1.55;
}

.v2-hero-good-news {
  max-width: 760px;
  margin-top: 14px;
  font-weight: 900;
}

.v2-hero-credential {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.v2-hero-situations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.v2-hero-situations li {
  position: relative;
  min-height: 76px;
  padding: 18px 20px 18px 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.v2-hero-situations li::before {
  content: "✗";
  position: absolute;
  top: 18px;
  left: 20px;
  color: #ff6b6b;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.v2-hero-economics {
  max-width: 880px;
  margin-top: 26px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #042c53;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.42;
  box-shadow: none;
}

.v2-hero-question {
  margin: 28px 0 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.05;
}

.v2-guarantee-inline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.35;
}

.v2-hero-cta,
.v2-scarcity-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  margin-top: 32px;
  padding: 0 34px;
  border-radius: 8px;
  background: #378add;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: none;
}

.v2-hero-cta:hover,
.v2-hero-cta:focus-visible,
.v2-scarcity-cta:hover,
.v2-scarcity-cta:focus-visible {
  background: #185fa5;
}

.v2-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.v2-hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.v2-hero-stats strong,
.v2-hero-stats span {
  display: block;
}

.v2-hero-stats strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1;
}

.v2-hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.35;
}

.v2-guarantee-section {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background: #042c53;
  box-shadow: none;
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
}

.v2-guarantee-box {
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  text-align: center;
  box-shadow: none;
}

.v2-guarantee-box h2 {
  color: #ffffff;
}

.v2-guarantee-box p {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.08rem;
  line-height: 1.58;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.v2-badge-row,
.v2-number-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.v2-badge-row {
  margin-top: 28px;
}

.v2-badge-row span {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 900;
}

.v2-guarantee-box .v2-guarantee-note {
  max-width: 760px;
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
}

.v2-problem-section {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  background: #0d3d6e;
  color: #ffffff;
  box-shadow: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
}

.v2-problem-section h2,
.v2-problem-section p {
  color: #ffffff;
}

.v2-problem-section h2 {
  max-width: 820px;
}

.v2-problem-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-top: 34px;
}

.v2-problem-columns p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
  line-height: 1.58;
}

.v2-red-list,
.v2-compare-card ul,
.v2-form-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-red-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.v2-red-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 800;
}

.v2-red-list li::before {
  content: "✗";
  position: absolute;
  left: 18px;
  color: #ef4444;
  font-weight: 900;
}

.v2-entrepreneurs-section {
  background: #f5f9fd;
  border-radius: 0;
}

.v2-entrepreneurs-section > h2 {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.v2-comparison-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.v2-comparison-grid::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: #c8ddef;
  transform: translateX(-50%);
}

.v2-compare-card {
  position: relative;
  z-index: 1;
  padding: 34px;
  border: 1px solid #c8ddef;
  border-radius: 8px;
  box-shadow: none;
}

.v2-compare-card h3 {
  margin: 0;
  color: #042c53;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.v2-compare-card li {
  position: relative;
  margin-top: 15px;
  padding-left: 28px;
  color: #34465a;
  font-weight: 700;
  line-height: 1.45;
}

.v2-compare-card-negative,
.v2-compare-card-positive {
  background: #ffffff;
}

.v2-compare-card-negative li::before,
.v2-compare-card-positive li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.v2-compare-card-negative li::before {
  content: "✗";
  color: #dc2626;
}

.v2-compare-card-positive li::before {
  content: "✓";
  color: #16a34a;
}

.v2-comparison-line {
  margin: 34px 0 0;
  color: #042c53;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.15;
}

.v2-why-section {
  background: #0d3d6e;
  box-shadow: none;
}

.v2-why-section,
.v2-scarcity-section,
.v2-form-section {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
}

.v2-why-section > h2 {
  max-width: 860px;
  color: #ffffff;
}

.v2-why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
  margin-top: 38px;
}

.v2-roberto-placeholder {
  display: grid;
  gap: 18px;
  min-height: 360px;
  place-items: center;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.v2-roberto-placeholder img {
  display: block;
  width: min(250px, 82%);
  height: auto;
  aspect-ratio: 1;
  border: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: none;
}

.v2-roberto-placeholder strong {
  display: inline-flex;
  margin-top: 0;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-why-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.62;
}

.v2-why-copy p + p {
  margin-top: 18px;
}

.v2-number-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.v2-number-strip div {
  text-align: center;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.v2-number-strip strong,
.v2-number-strip span {
  display: block;
}

.v2-number-strip strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.v2-number-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.v2-method-section {
  position: relative;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 118px max(24px, calc((100vw - 1180px) / 2));
  border-radius: 0;
  box-shadow: none;
  background: #f5f9fd;
}

.v2-method-intro {
  max-width: 760px;
  margin-bottom: 40px;
}

.v2-method-subtitle {
  max-width: 640px;
  margin: 14px 0 0;
  color: #5a6878;
  font-size: 1.14rem;
  line-height: 1.55;
}

.v2-steps-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  padding: 0;
}

.v2-flow-step {
  display: grid;
  justify-items: center;
  text-align: center;
}

.v2-flow-step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #185fa5;
}

.v2-flow-step-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v2-flow-step:nth-child(2) .v2-flow-step-icon {
  color: #185fa5;
}

.v2-flow-step:nth-child(3) .v2-flow-step-icon {
  color: #0e4f93;
}

.v2-flow-step:nth-child(4) .v2-flow-step-icon {
  border-color: transparent;
  background: transparent;
  color: #2f72b8;
}

.v2-flow-step:nth-child(5) .v2-flow-step-icon {
  border-color: transparent;
  background: transparent;
  color: #042c53;
}

.v2-flow-step h3 {
  max-width: 210px;
  margin: 0;
  color: #042c53;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}

.v2-flow-step p {
  max-width: 210px;
  margin: 12px 0 0;
  color: #5a6878;
  font-size: 0.98rem;
  line-height: 1.5;
}

.v2-flow-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 16px;
  padding: 0 16px;
  border: 1px solid #bfd7f0;
  border-radius: 8px;
  background: #ebf3fc;
  color: #185fa5;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
}

.v2-flow-step-pill-solid {
  border-color: #042c53;
  background: #042c53;
  color: #ffffff;
}

.v2-scarcity-section {
  background: #ffffff;
  border-radius: 0;
}

.v2-scarcity-box {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #042c53;
  text-align: left;
  box-shadow: none;
}

.v2-scarcity-box h2,
.v2-scarcity-box p {
  color: #042c53;
}

.v2-scarcity-box h2 {
  max-width: 780px;
  margin-top: 0;
  font-size: 2.55rem;
}

.v2-scarcity-box p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #456483;
  line-height: 1.58;
}

.v2-scarcity-box .v2-eyebrow {
  margin: 0 0 16px;
  color: #378add;
}

.v2-scarcity-section .v2-scarcity-cta {
  background: #378add;
  color: #ffffff;
}

.v2-form-section {
  background: #ffffff;
  box-shadow: none;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: start;
}

.v2-form-copy h2 {
  max-width: 520px;
  color: #042c53;
}

.v2-form-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: #456483;
  font-size: 1.06rem;
  line-height: 1.6;
}

.v2-form-copy ul {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.v2-form-copy li {
  position: relative;
  padding-left: 28px;
  color: #042c53;
  font-weight: 900;
}

.v2-form-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
}

.v2-step-form {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(133, 183, 235, 0.2), transparent 34%),
    linear-gradient(145deg, #245f9b 0%, #174675 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(4, 44, 83, 0.16);
}

.v2-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 30px;
  color: #c8ddef;
}

.v2-progress::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16.666%;
  left: 16.666%;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.v2-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(232, 243, 255, 0.6);
}

.v2-progress b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: #24568c;
  color: #ffffff;
  font-size: 0.86rem;
}

.v2-progress small {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-progress span.is-active,
.v2-progress span.is-complete {
  color: #ffffff;
}

.v2-progress span.is-active b,
.v2-progress span.is-complete b {
  border-color: #ffffff;
  background: #ffffff;
  color: #185fa5;
}

.v2-step-form input,
.v2-step-form select {
  border-radius: 8px;
  min-height: 54px;
  padding-right: 46px;
  padding-left: 18px;
  border: 1px solid rgba(4, 44, 83, 0.14);
  background-color: rgba(255, 255, 255, 0.97);
  color: #173b60;
  font-size: 0.96rem;
  box-shadow: 0 7px 18px rgba(4, 44, 83, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.v2-step-form input:focus,
.v2-step-form select:focus {
  border-color: #85b7eb;
  box-shadow: 0 0 0 4px rgba(133, 183, 235, 0.24), 0 8px 20px rgba(4, 44, 83, 0.1);
  outline: 0;
}

.v2-form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.v2-form-step.is-active {
  display: grid;
  gap: 20px;
}

.v2-form-step legend {
  margin-bottom: 18px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.v2-step-form label:not(.consent-checkbox) {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
}

.v2-form-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.v2-form-next,
.v2-step-form .form-button {
  width: 100%;
  min-height: 56px;
  margin-top: 10px;
  border: 1px solid rgba(4, 44, 83, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #042c53;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(4, 44, 83, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.v2-form-next:hover,
.v2-form-next:focus-visible,
.v2-step-form .form-button:hover,
.v2-step-form .form-button:focus-visible {
  transform: translateY(-2px);
  background: #f2f8ff;
  box-shadow: 0 14px 28px rgba(4, 44, 83, 0.22);
}

.v2-form-reassurance {
  margin: -8px 0 0;
  color: rgba(232, 243, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

.v2-form-confirmation {
  min-height: 280px;
  place-content: center;
  text-align: center;
}

.v2-form-confirmation strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.v2-form-confirmation p {
  max-width: 360px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

/* V2 section theme: white throughout, with the guarantee as the sole dark section. */
.landing-v2 .v2-section:not(.v2-guarantee-section):not(.v2-hero) {
  background: #ffffff;
}

.landing-v2 .v2-hero {
  min-height: 760px;
  background:
    linear-gradient(rgba(4, 44, 83, 0.72), rgba(4, 44, 83, 0.82)),
    url("./assets/planning-factory-wide.webp?v=20260610-webp") center / cover no-repeat;
}

.landing-v2 .v2-problem-section,
.landing-v2 .v2-problem-section h2,
.landing-v2 .v2-problem-section p {
  color: #042c53;
}

.landing-v2 .v2-problem-columns p {
  color: #456483;
}

.landing-v2 .v2-red-list li {
  border-color: #c8ddef;
  background: #f5f9fd;
  color: #042c53;
}

.landing-v2 .v2-entrepreneurs-section,
.landing-v2 .v2-method-section {
  background: #ffffff;
}

.landing-v2 .v2-why-section > h2,
.landing-v2 .v2-why-copy p {
  color: #042c53;
}

.landing-v2 .v2-roberto-placeholder,
.landing-v2 .v2-number-strip div {
  border-color: #c8ddef;
  background: #f5f9fd;
}

.landing-v2 .v2-roberto-placeholder strong {
  border-color: #c8ddef;
  background: #ffffff;
  color: #042c53;
}

.landing-v2 .v2-number-strip strong {
  color: #042c53;
}

.landing-v2 .v2-number-strip span {
  color: #456483;
}

/* Keep every V2 section on the same 980px axis as the hero content. */
.landing-v2 .v2-section:not(.v2-hero) {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: max(24px, calc((100vw - 980px) / 2));
  padding-left: max(24px, calc((100vw - 980px) / 2));
}

.landing-v2 .v2-problem-section > h2,
.landing-v2 .v2-entrepreneurs-section > h2,
.landing-v2 .v2-guarantee-box > h2,
.landing-v2 .v2-why-section > h2,
.landing-v2 .v2-method-intro,
.landing-v2 .v2-scarcity-box {
  width: min(980px, 100%);
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.landing-v2 .v2-form-copy {
  margin-left: 0;
}

.landing-v2 .v2-scarcity-box p {
  max-width: 680px;
  margin-left: 0;
}

.landing-v2 .v2-guarantee-box {
  text-align: left;
}

.landing-v2 .v2-guarantee-box p {
  margin-left: 0;
}

/* Sezione "Il problema italiano" (confronto immediato Italia vs Spagna) + FAQ,
   incorniciate nel look v2. La FAQ riusa gli stili .faq-* gia presenti. */
.landing-v2 .v2-context-head,
.landing-v2 .v2-faq-head {
  width: min(980px, 100%);
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

/* FAQ accordion: righe pulite con divisori e indicatore +/-. */
.landing-v2 .v2-faq-list {
  width: min(820px, 100%);
  margin: 38px auto 0;
  border-top: 1px solid #d7e6f4;
}

.landing-v2 .v2-faq-item {
  border-bottom: 1px solid #d7e6f4;
}

.landing-v2 .v2-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  color: #042c53;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
}

.landing-v2 .v2-faq-item summary::-webkit-details-marker {
  display: none;
}

.landing-v2 .v2-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef4f9;
  color: #378add;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.landing-v2 .v2-faq-item[open] summary::after {
  content: "\2212";
  background: #042c53;
  color: #ffffff;
}

.landing-v2 .v2-faq-item summary:hover {
  color: #185fa5;
}

.landing-v2 .v2-faq-item > p {
  margin: 0;
  padding: 0 2px 24px;
  max-width: 660px;
  color: #456483;
  font-size: 1rem;
  line-height: 1.6;
}

/* Due card affiancate: il divario di prezzo europeo + la volatilita.
   Ogni card comunica un solo concetto, leggibile in un colpo d'occhio. */
.landing-v2 .v2-context-cards {
  width: min(980px, 100%);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.landing-v2 .v2-context-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #d7e6f4;
  border-radius: 16px;
  background: #f5f9fd;
}

.landing-v2 .v2-context-card-label {
  margin: 0 0 8px;
  color: #378add;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-v2 .v2-context-card-lead {
  margin: 0 0 24px;
  color: #042c53;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.18;
}

.landing-v2 .v2-context-card-source {
  margin: 18px 0 0;
  font-size: 0.78rem;
  color: #888780;
}

/* CTA di sezione riutilizzabile: Blue Medium (accento brand) su sfondo bianco. */
.landing-v2 .v2-section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 8px;
  background: #378add;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
}

.landing-v2 .v2-section-cta:hover,
.landing-v2 .v2-section-cta:focus-visible {
  background: #185fa5;
}

/* Bottoni del form (Continua + Calcola il tuo risparmio): stesso accento brand. */
.v2-form-section .button-primary,
.v2-form-section .form-button {
  background: #378add;
  color: #ffffff;
}

.v2-form-section .button-primary:hover,
.v2-form-section .button-primary:focus-visible,
.v2-form-section .form-button:hover,
.v2-form-section .form-button:focus-visible {
  background: #185fa5;
  color: #ffffff;
}

.landing-v2 .v2-cta-center {
  margin-top: 36px;
  text-align: center;
}

.landing-v2 .v2-guarantee-box .v2-section-cta {
  margin-top: 26px;
}

/* Tutte le CTA centrate orizzontalmente sulla pagina (asse 980px).
   Scenario/Come funziona/FAQ usano gia .v2-cta-center; qui centriamo
   hero, "Perche ora" e Garanzia che erano allineate a sinistra. */
.landing-v2 .v2-hero-cta,
.landing-v2 .v2-scarcity-cta,
.landing-v2 .v2-guarantee-box .v2-section-cta {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Animazione hover unificata per tutte le CTA principali =====
   Sollevamento + ombra (transform/box-shadow, accelerati dalla GPU) e
   freccia che scorre a destra. Pattern UX ad alta conversione. */
.landing-v2 .v2-section-cta,
.v2-hero-cta,
.v2-scarcity-cta,
.v2-footer .v2-footer-button,
.site-nav .nav-v2-button {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.landing-v2 .v2-section-cta:hover,
.landing-v2 .v2-section-cta:focus-visible,
.v2-hero-cta:hover,
.v2-hero-cta:focus-visible,
.v2-scarcity-cta:hover,
.v2-scarcity-cta:focus-visible,
.v2-footer .v2-footer-button:hover,
.v2-footer .v2-footer-button:focus-visible,
.site-nav .nav-v2-button:hover,
.site-nav .nav-v2-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(4, 44, 83, 0.22);
}

.landing-v2 .v2-section-cta:active,
.v2-hero-cta:active,
.v2-scarcity-cta:active,
.v2-footer .v2-footer-button:active,
.site-nav .nav-v2-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(4, 44, 83, 0.18);
}

.landing-v2 .v2-section-cta span,
.v2-hero-cta span,
.v2-scarcity-cta span,
.v2-footer .v2-footer-button span {
  transition: transform 0.22s ease;
}

.landing-v2 .v2-section-cta:hover span,
.landing-v2 .v2-section-cta:focus-visible span,
.v2-hero-cta:hover span,
.v2-hero-cta:focus-visible span,
.v2-scarcity-cta:hover span,
.v2-scarcity-cta:focus-visible span,
.v2-footer .v2-footer-button:hover span,
.v2-footer .v2-footer-button:focus-visible span {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .landing-v2 .v2-section-cta,
  .v2-hero-cta,
  .v2-scarcity-cta,
  .v2-footer .v2-footer-button,
  .site-nav .nav-v2-button,
  .landing-v2 .v2-section-cta span,
  .v2-hero-cta span,
  .v2-scarcity-cta span,
  .v2-footer .v2-footer-button span {
    transition: none;
  }

  .landing-v2 .v2-section-cta:hover,
  .v2-hero-cta:hover,
  .v2-scarcity-cta:hover,
  .v2-footer .v2-footer-button:hover,
  .site-nav .nav-v2-button:hover,
  .landing-v2 .v2-section-cta:hover span,
  .v2-hero-cta:hover span,
  .v2-scarcity-cta:hover span,
  .v2-footer .v2-footer-button:hover span {
    transform: none;
  }
}

/* Fascia prova sociale / track record dello studio di ingegneria. */
.landing-v2 .v2-proof-stats {
  width: min(980px, 100%);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.landing-v2 .v2-proof-stat {
  padding: 26px 24px;
  border: 1px solid #d7e6f4;
  border-radius: 16px;
  background: #f5f9fd;
}

.landing-v2 .v2-proof-stat strong {
  display: block;
  color: #042c53;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1;
}

.landing-v2 .v2-proof-stat span {
  display: block;
  margin-top: 10px;
  color: #456483;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .landing-v2 .v2-proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  .landing-v2 .v2-proof-stat {
    padding: 22px 18px;
  }

  .landing-v2 .v2-proof-stat strong {
    font-size: 1.8rem;
  }
}

/* Confronto costo energia: due barre, due numeri. */
.landing-v2 .v2-cost-compare {
  width: 100%;
  margin: auto 0 0;
  display: grid;
  gap: 16px;
}

.landing-v2 .v2-cost-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 14px;
}

.landing-v2 .v2-cost-label {
  font-size: 1rem;
  font-weight: 800;
  color: #042c53;
}

.landing-v2 .v2-cost-bar {
  height: 30px;
  border-radius: 8px;
  background: #e4eef8;
  overflow: hidden;
}

.landing-v2 .v2-cost-fill {
  display: block;
  height: 100%;
  border-radius: 8px;
}

.landing-v2 .v2-cost-fill-low {
  background: #85b7eb;
}

.landing-v2 .v2-cost-fill-high {
  background: #d84d4d;
}

.landing-v2 .v2-cost-value {
  min-width: 92px;
  text-align: right;
  font-size: 1.45rem;
  font-weight: 900;
  color: #042c53;
}

.landing-v2 .v2-cost-row-italy .v2-cost-value {
  color: #d84d4d;
}

.landing-v2 .v2-cost-value small {
  font-size: 0.72rem;
  font-weight: 700;
  color: #888780;
}

/* Mini-curva volatilita: solo la forma (basso, picco 2022, resta alto). */
.landing-v2 .v2-spark {
  margin-top: auto;
}

.landing-v2 .v2-spark svg {
  display: block;
  width: 100%;
  height: 132px;
}

.landing-v2 .v2-spark-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #888780;
}

@media (max-width: 760px) {
  .landing-v2 .v2-context-cards {
    grid-template-columns: 1fr;
  }
}

.v2-footer {
  width: 100vw;
  max-width: 100vw;
  margin-top: 32px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 38px max(24px, calc((100vw - 1180px) / 2)) 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(133, 183, 235, 0.18), transparent 24%),
    linear-gradient(145deg, #062746 0%, #0d3d6e 58%, #0f4c87 100%);
  color: #ffffff;
}

.v2-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.95fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.v2-footer-brand .brand-logo-img {
  width: min(320px, 100%);
  height: auto;
  filter: brightness(0) invert(1);
}

.v2-footer-brand p,
.v2-footer-cta p,
.v2-footer-bottom p {
  margin: 0;
  color: rgba(232, 243, 255, 0.82);
  line-height: 1.6;
}

.v2-footer-brand p {
  max-width: 34ch;
  margin-top: 18px;
  font-size: 1rem;
}

.v2-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.v2-footer-nav h2,
.v2-footer-cta-label {
  margin: 0 0 14px;
  color: rgba(200, 221, 239, 0.94);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-footer-nav a {
  display: block;
  width: fit-content;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.45;
}

.v2-footer-nav a + a {
  margin-top: 10px;
}

.v2-footer-nav a:hover,
.v2-footer-nav a:focus-visible {
  color: #c8ddef;
}

.v2-footer-cta {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.v2-footer-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 1.05;
}

.v2-footer-cta p {
  margin-top: 12px;
}

.v2-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 8px;
  background: #378add;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
}

.v2-footer .v2-footer-button:hover,
.v2-footer .v2-footer-button:focus-visible {
  background: #185fa5;
}

/* Contatti, social e badge di certificazione nel footer. */
.v2-footer-contacts {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.v2-footer-contacts li {
  color: rgba(232, 243, 255, 0.82);
  font-size: 0.95rem;
}

.v2-footer-contacts a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.v2-footer-contacts a:hover,
.v2-footer-contacts a:focus-visible {
  color: #c8ddef;
}

.v2-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 20px;
}

.v2-footer-social {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.v2-footer-social:hover,
.v2-footer-social:focus-visible {
  color: #c8ddef;
}

.v2-footer-cert {
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(200, 221, 239, 0.9);
}

.v2-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.v2-footer-bottom .v2-footer-legal-info strong {
  font-weight: 800;
  color: #ffffff;
}

.v2-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.v2-footer-legal a {
  color: rgba(232, 243, 255, 0.82);
  text-decoration: none;
}

.v2-footer-legal a:hover,
.v2-footer-legal a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav .nav-v2-button {
    padding: 8px 14px;
  }

  .v2-section {
    padding: 58px 34px;
  }

  .v2-hero-stats,
  .v2-hero-situations,
  .v2-badge-row,
  .v2-number-strip {
    grid-template-columns: 1fr;
  }

  .v2-why-grid,
  .v2-form-section,
  .v2-steps-flow,
  .v2-footer-main {
    grid-template-columns: 1fr;
  }

  .v2-method-section {
    padding: 84px 34px;
  }
}

@media (max-width: 720px) {
  .landing-v2 {
    margin-top: 0;
  }

  .v2-section {
    padding: 44px 22px;
  }

  .v2-section h2,
  .v2-hero h1,
  .v2-hero h2 {
    font-size: 2.05rem;
  }

  .v2-hero h1 {
    font-size: 1.95rem;
    line-height: 1.12;
  }

  .v2-hero {
    min-height: auto;
    padding: 64px 22px;
  }

  .v2-method-section {
    padding: 54px 22px;
  }

  .v2-hero-content {
    text-align: left;
  }

  .v2-hero-situations {
    gap: 10px;
    margin-top: 26px;
  }

  .v2-hero-situations li {
    min-height: 0;
    padding: 15px 16px 15px 42px;
    border-radius: 8px;
    font-size: 0.92rem;
  }

  .v2-hero-situations li::before {
    top: 16px;
    left: 17px;
  }

  .v2-hero-economics {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .v2-hero-question {
    font-size: 1.42rem;
  }

  .v2-guarantee-inline {
    align-items: flex-start;
    border-radius: 18px;
    text-align: left;
  }

  .v2-hero-stats,
  .v2-problem-columns,
  .v2-red-list,
  .v2-comparison-grid,
  .v2-form-two-cols {
    grid-template-columns: 1fr;
  }

  .v2-comparison-grid::before {
    display: none;
  }

  .v2-method-subtitle {
    font-size: 1rem;
  }

  .v2-steps-flow {
    gap: 26px;
    padding-top: 0;
  }

  .v2-flow-step {
    justify-items: start;
    padding-left: 0;
    text-align: left;
  }

  .v2-flow-step-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .v2-flow-step h3,
  .v2-flow-step p {
    max-width: none;
  }

  .v2-flow-step-pill {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .v2-guarantee-box,
  .v2-step-form,
  .v2-footer {
    padding: 28px 22px;
  }

  .v2-scarcity-box {
    padding: 0;
  }

  .v2-compare-card {
    padding: 26px;
  }

  .v2-footer-brand,
  .v2-footer-cta,
  .v2-footer-nav {
    text-align: center;
  }

  .v2-footer-brand .brand-logo-img,
  .v2-footer-nav a,
  .v2-footer-button {
    margin-left: auto;
    margin-right: auto;
  }

  .v2-footer-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}
