/* FutureTouch Theme — main.css */

/* ── Quiz Typeform ───────────────────────────────────────────── */
.ft-quiz-section {
  background: #ffffff;
  padding: 80px 200px;
}
@media (max-width: 1024px) { .ft-quiz-section { padding: 60px 80px; } }
@media (max-width: 768px)  { .ft-quiz-section { padding: 48px 24px; } }
.typeform {
  background: white;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d83322;
  padding-bottom: 20px;
}
.step {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  margin: 20px;
}
.step.active {
  display: flex !important;
  flex-direction: column;
  opacity: 1;
  gap: 5px;
}
.my-progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px;
  padding: 20px;
}
.my-progress-bar-container {
  flex: 1;
  height: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
}
.my-progress-bar {
  height: 100%;
  width: 0;
  background-color: #d83322;
  border-radius: 10px;
  transition: width 0.8s ease;
}
.my-progress-percentage {
  min-width: 40px;
  font-weight: bold;
  color: #333;
  text-align: right;
}
.button-typeform {
  padding: 20px;
}
.loading p {
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
}
.typeform .step {
  text-align: center;
  margin-bottom: 2rem;
}
.typeform label.question {
  font-size: 25px;
  text-align: left;
  width: 100%;
  padding: 20px;
}
.typeform .answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.typeform .answers input[type="radio"],
.typeform .answers input[type="checkbox"] {
  display: none;
}
.typeform .answers label {
  display: block;
  padding: 15px 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: left;
  font-size: 18px;
  width: 100%;
}
.typeform .answers label:hover {
  background-color: #d83322;
  color: white;
  border-color: #999;
}
.typeform .answers label:has(input:checked) {
  background-color: #d83322;
  color: white;
  border-color: #0056b3;
}
.typeform input[type="text"],
.typeform input[type="email"],
.typeform input[type="tel"] {
  display: block;
  padding: 15px 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  cursor: text;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: left;
  font-size: 18px;
  width: 100%;
  margin: 10px auto;
}
.typeform input[type="checkbox"][name="privacy"] {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}
.typeform label.privacy-label {
  font-size: 14px;
  text-align: left;
  display: block;
  margin-top: 10px;
}
.button-typeform br { display: none; }
.button-typeform button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #d83322;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.button-typeform button:hover { background-color: #0035cc; }
.button-typeform [type="submit"] {
  font-size: 24px;
  font-weight: 700;
  background: #d83322;
}

:root {
  --ft-red: #d83423;
  --ft-red-dark: #cc0000;
  --ft-black: #0a0a0a;
  --ft-text: #1e1e1e;
  --ft-gray: #666;
  --ft-bg: #f6f6f6;
  --ft-white: #ffffff;
  --ft-icon-bg: #ffe0e0;
  --ft-gold: #a28535;
  --ft-border: #e8e8e8;
  --ft-shadow: 2px 2px 10px 0px rgba(162,133,53,0.6);
  --ft-green: #009900;
  --ft-progress-bg: #d5d5d5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ft-black);
  background: var(--ft-white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ─────────────────────────────────────────────────── */
.ft-container {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.ft-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ft-red);
  color: var(--ft-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 24px 40px;
  box-shadow: var(--ft-shadow);
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: opacity .2s;
}
.ft-btn:hover { opacity: .9; color: var(--ft-white); text-decoration: none; }
.ft-btn .ft-arrow {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.ft-btn .ft-arrow img { width: 100%; height: 100%; }
.ft-btn--outline {
  background: transparent;
  color: var(--ft-red);
  border: 2px solid var(--ft-red);
  box-shadow: none;
}
.ft-btn--mixed { text-transform: none; font-weight: 600; font-size: 18px; }
.ft-btn--outline:hover { background: var(--ft-red); color: var(--ft-white); }
.ft-btn--sm { font-size: 16px; padding: 16px 28px; }

.ft-micro {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--ft-black);
  text-align: center;
  margin-top: 8px;
}

/* ── Social proof dots ───────────────────────────────────────── */
.ft-social-proof {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.ft-social-proof__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ft-black);
}
.ft-social-proof__text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: var(--ft-black);
  margin-left: 4px;
}

/* ── Header ──────────────────────────────────────────────────── */
.ft-header {
  background: var(--ft-red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 27px 140px;
  width: 100%;
}
.ft-header__logo { display: block; height: 46px; }
.ft-header__logo img { height: 46px; width: auto; }

/* ── Hero ────────────────────────────────────────────────────── */
.ft-hero {
  position: relative;
  padding: 150px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ft-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ft-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ft-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.ft-hero__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ft-hero__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ft-black);
}
.ft-hero__h1 {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 55px;
  line-height: 49px;
  color: var(--ft-black);
  max-width: 900px;
}
.ft-hero__h1--lg { font-size: 50px; line-height: 0.95; }
.ft-hero__h1 .ft-accent { color: var(--ft-red); }
.ft-hero__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ft-black);
  max-width: 780px;
}
.ft-hero__desc--sm { font-size: 18px; max-width: 684px; }
.ft-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── Analisi2 FAQ ────────────────────────────────────────────── */
.ft-a2faq {
  background: var(--ft-bg);
  padding: 80px 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.ft-a2faq__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ft-black);
  text-align: center;
}
.ft-a2faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 700px;
}
.ft-a2faq-item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
}
.ft-a2faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
}
.ft-a2faq-q__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ft-black);
  line-height: 1.3;
}
.ft-a2faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.ft-a2faq__icon::before,
.ft-a2faq__icon::after {
  content: '';
  position: absolute;
  background: var(--ft-red);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform .3s ease;
}
.ft-a2faq__icon::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.ft-a2faq__icon::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.ft-a2faq-item.open .ft-a2faq__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.ft-a2faq-item.open .ft-a2faq__icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.ft-a2faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 24px;
}
.ft-a2faq-item.open .ft-a2faq-a { max-height: 400px; }
.ft-a2faq-a p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  line-height: 1.65;
  padding-bottom: 20px;
}

@media (max-width: 1024px) {
  .ft-a2faq { padding: 60px 80px; }
}
@media (max-width: 768px) {
  .ft-a2faq { padding: 48px 24px; }
  .ft-a2faq__title { font-size: 28px; }
  .ft-a2faq__list { max-width: 100%; }
}

/* ── Analisi2 Steps ──────────────────────────────────────────── */
.ft-a2steps {
  background: #ffffff;
  padding: 100px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.ft-a2steps__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 860px;
}
.ft-a2steps__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ft-black);
  font-weight: 700;
}
.ft-a2steps__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ft-black);
  max-width: 680px;
}
.ft-a2steps__steps {
  display: flex;
  width: 100%;
  border-top: 1px solid var(--ft-border);
}
.ft-a2steps__step {
  flex: 1;
  padding: 40px;
  border-right: 1px solid var(--ft-border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ft-a2steps__step:last-child { border-right: none; }
.ft-a2steps__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ft-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tilt Warp', sans-serif;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
}
.ft-a2steps__step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ft-black);
  line-height: 1.3;
}
.ft-a2steps__step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ft-black);
}

@media (max-width: 1024px) {
  .ft-a2steps { padding: 80px 80px; }
}
@media (max-width: 768px) {
  .ft-a2steps { padding: 60px 24px; }
  .ft-a2steps__title { font-size: 28px; }
  .ft-a2steps__steps { flex-direction: column; border-top: none; }
  .ft-a2steps__step { border-right: none; border-bottom: 1px solid var(--ft-border); padding: 32px 0; }
  .ft-a2steps__step:last-child { border-bottom: none; }
}

/* ── Analisi2 Results ────────────────────────────────────────── */
.ft-a2res {
  background: #ffffff;
  padding: 100px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.ft-a2res__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 860px;
}
.ft-a2res__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-a2res__title-black {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ft-black);
  font-weight: 700;
}
.ft-a2res__title-red {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ft-red);
  font-weight: 700;
}
.ft-a2res__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ft-black);
  max-width: 760px;
}
.ft-a2res__cards {
  display: flex;
  gap: 14px;
  width: 100%;
}
.ft-a2res__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

@media (max-width: 1200px) {
  .ft-a2res { padding: 80px 80px; }
  .ft-a2res__cards { flex-wrap: wrap; }
  .ft-a2res__cards .ft-res__card { flex: 1 1 calc(33% - 10px); }
}
@media (max-width: 768px) {
  .ft-a2res { padding: 60px 24px; }
  .ft-a2res__title-black,
  .ft-a2res__title-red { font-size: 28px; }
  .ft-a2res__cards { flex-direction: column; }
}

/* ── Analisi2 CRI ────────────────────────────────────────────── */
.ft-cri {
  background: #ffffff;
  padding: 80px 140px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.ft-cri__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ft-cri__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-cri__num {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(216, 52, 35, 0.40);
  font-weight: 700;
}
.ft-cri__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 32px;
  line-height: 1.1;
  color: var(--ft-black);
  font-weight: 700;
}
.ft-cri__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ft-black);
  line-height: 1.3;
}
.ft-cri__cols {
  display: flex;
  gap: 32px;
}
.ft-cri__col {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ft-black);
}
.ft-cri__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ft-cri__right {
  flex: 1;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
}
.ft-cri__right .ft-cri__img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none;
}
.ft-cri__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: #e8e8e8;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .ft-cri { padding: 60px 80px; flex-direction: column; gap: 48px; }
  .ft-cri__right { width: 100%; min-height: 300px; }
}
@media (max-width: 768px) {
  .ft-cri { padding: 48px 24px; }
  .ft-cri__num { font-size: 52px; }
  .ft-cri__title { font-size: 24px; }
  .ft-cri__cols { flex-direction: column; gap: 20px; }
}

/* ── Analisi2 Intro ──────────────────────────────────────────── */
.ft-a2i {
  background: #ffffff;
  padding: 100px 200px;
  display: flex;
  justify-content: center;
}
.ft-a2i__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  max-width: 860px;
  width: 100%;
}
.ft-a2i__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-a2i__title-black {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ft-black);
  font-weight: 700;
}
.ft-a2i__title-red {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ft-red);
  font-weight: 700;
}
.ft-a2i__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ft-black);
  max-width: 720px;
}
.ft-a2i__desc strong { font-weight: 700; }
.ft-a2i__desc em     { font-style: italic; }

@media (max-width: 1024px) {
  .ft-a2i { padding: 80px 80px; }
}
@media (max-width: 768px) {
  .ft-a2i { padding: 60px 24px; }
  .ft-a2i__title-black,
  .ft-a2i__title-red { font-size: 28px; }
}

/* ── Analisi2 Hero ───────────────────────────────────────────── */
.ft-a2h {
  position: relative;
  padding: 150px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ft-a2h__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ft-a2h__bg img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ft-a2h__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
}
.ft-a2h__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.ft-a2h__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ft-a2h__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ft-black);
}
.ft-a2h__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 52px;
  line-height: 1.1;
  color: var(--ft-black);
  max-width: 980px;
}
.ft-a2h__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ft-black);
  max-width: 680px;
}
.ft-a2h__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (max-width: 1024px) {
  .ft-a2h { padding: 100px 80px; }
  .ft-a2h__title { font-size: 38px; }
}
@media (max-width: 768px) {
  .ft-a2h { padding: 60px 24px; }
  .ft-a2h__title { font-size: 28px; }
  .ft-a2h__desc { font-size: 15px; }
}

/* ── Protezione2 Quiz Benefits ───────────────────────────────── */
.ft-qb {
  background: #ffffff;
  padding: 100px 200px 0;
  display: flex;
  justify-content: center;
}
.ft-qb__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  max-width: 860px;
  width: 100%;
}
.ft-qb__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 40px;
  line-height: 1.15;
  color: var(--ft-black);
  font-weight: 700;
}
.ft-qb__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ft-black);
  max-width: 680px;
}
.ft-qb__desc strong { font-weight: 700; }
.ft-qb__list-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--ft-black);
  margin-top: -8px;
}
.ft-qb__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: fit-content;
}
.ft-qb__item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.ft-qb__bullet {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ft-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ft-qb__bullet img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.ft-qb__item strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ft-black);
  line-height: 1.3;
}
.ft-qb__footer {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ft-black);
  font-style: italic;
  margin-top: -8px;
}

@media (max-width: 1024px) {
  .ft-qb { padding: 80px 80px 0; }
}
@media (max-width: 768px) {
  .ft-qb { padding: 60px 24px 0; }
  .ft-qb__title { font-size: 28px; }
  .ft-qb__item strong { font-size: 15px; }
}

/* ── Protezione2 Testimonials ────────────────────────────────── */
.ft-testi {
  background: #ffffff;
  padding: 80px 200px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ft-testi__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.ft-testi__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ft-black);
  font-weight: 700;
}
.ft-testi__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ft-black);
  max-width: 640px;
}

@media (max-width: 1024px) {
  .ft-testi { padding: 60px 80px 48px; }
}
@media (max-width: 768px) {
  .ft-testi { padding: 48px 24px 36px; }
  .ft-testi__title { font-size: 28px; }
}

/* ── Protezione2 CTA Dark ────────────────────────────────────── */
.ft-cta-dark {
  background:
    radial-gradient(ellipse 55% 90% at 5% 50%,  rgba(140, 22, 8, 0.88) 0%, transparent 60%),
    radial-gradient(ellipse 50% 85% at 96% 50%, rgba(130, 18, 6, 0.80) 0%, transparent 55%),
    #060202;
  padding: 120px 200px;
  display: flex;
  justify-content: center;
}
.ft-cta-dark__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  max-width: 860px;
  width: 100%;
}
.ft-cta-dark__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  color: #ffffff;
  font-weight: 700;
}
.ft-cta-dark__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
}
.ft-cta-dark__desc strong { font-weight: 700; color: #ffffff; }
.ft-cta-dark__desc em     { font-style: italic; }
.ft-cta-dark__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ft-cta-dark__social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}
.ft-cta-dark__social em { font-style: italic; }

@media (max-width: 1024px) {
  .ft-cta-dark { padding: 80px 80px; }
}
@media (max-width: 768px) {
  .ft-cta-dark { padding: 60px 24px; }
  .ft-cta-dark__title { font-size: 28px; }
}

/* ── Protezione2 FAQ ─────────────────────────────────────────── */
.ft-p2-faq {
  background: var(--ft-bg);
  padding: 80px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.ft-p2-faq__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ft-black);
  text-align: center;
}
.ft-faq--p2 { max-width: 900px; width: 100%; }
.ft-faq--p2 .ft-faq-item {
  background: #ffffff;
  border: none;
  border-radius: 10px;
}
.ft-faq--p2 .ft-faq-q { padding: 28px 24px; }
.ft-faq--p2 .ft-faq-q__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ft-black);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ft-p2-faq__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ft-black);
  flex-shrink: 0;
}
.ft-faq--p2 .ft-faq-a p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ft-gray);
  line-height: 1.6;
  padding-bottom: 24px;
  padding-left: 24px;
}

@media (max-width: 1024px) {
  .ft-p2-faq { padding: 60px 80px; }
}
@media (max-width: 768px) {
  .ft-p2-faq { padding: 48px 24px; }
  .ft-p2-faq__title { font-size: 28px; }
  .ft-faq--p2 .ft-faq-q__text { font-size: 15px; }
}

/* ── Protezione2 Stats ───────────────────────────────────────── */
.ft-stats {
  background: #ffffff;
  padding: 100px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.ft-stats__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 820px;
}
.ft-stats__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  color: var(--ft-black);
}
.ft-stats__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ft-black);
  max-width: 680px;
}
.ft-stats__desc strong { font-weight: 700; }
.ft-stats__cards {
  display: flex;
  gap: 16px;
  width: 100%;
}
.ft-stats__card {
  flex: 1;
  background: linear-gradient(135deg, #ffffff 30%, #fde8e6 100%);
  border: 1px solid rgba(216, 52, 35, 0.32);
  border-radius: 12px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-stats__num {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: var(--ft-black);
  font-weight: 700;
}
.ft-stats__card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ft-black);
}

@media (max-width: 1024px) {
  .ft-stats { padding: 80px 80px; }
  .ft-stats__cards { flex-wrap: wrap; }
  .ft-stats__card { flex: 1 1 calc(50% - 8px); }
}
@media (max-width: 768px) {
  .ft-stats { padding: 60px 24px; }
  .ft-stats__title { font-size: 28px; }
  .ft-stats__cards { flex-direction: column; }
  .ft-stats__num { font-size: 44px; }
}

/* ── Protezione2 Fit ─────────────────────────────────────────── */
.ft-fit {
  background: #ffffff;
  padding: 100px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.ft-fit__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 820px;
}
.ft-fit__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  color: var(--ft-black);
}
.ft-fit__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ft-black);
  max-width: 720px;
}
.ft-fit__cols {
  display: flex;
  gap: 24px;
  width: 100%;
}
.ft-fit__card {
  flex: 1;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ft-fit__card--yes { border-left: 3px solid #27ae60; }
.ft-fit__card--no  { border-left: 3px solid var(--ft-red); }
.ft-fit__card-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ft-black);
  line-height: 1.3;
}
.ft-fit__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ft-fit__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ft-fit__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.ft-fit__item span {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ft-black);
}

@media (max-width: 1024px) {
  .ft-fit { padding: 80px 80px; }
}
@media (max-width: 768px) {
  .ft-fit { padding: 60px 24px; gap: 40px; }
  .ft-fit__title { font-size: 28px; }
  .ft-fit__cols { flex-direction: column; }
}

/* ── Protezione2 Results ─────────────────────────────────────── */
.ft-res {
  background: #ffffff;
  padding: 100px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.ft-res__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 900px;
}
.ft-res__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ft-red);
}
.ft-res__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ft-black);
}
.ft-res__cards {
  display: flex;
  gap: 16px;
  width: 100%;
}
.ft-res__card {
  flex: 1;
  background: linear-gradient(145deg, #2a0c08 0%, #180705 50%, #0a0303 100%);
  border: 1px solid rgba(180, 50, 25, 0.45);
  border-radius: 14px;
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-res__card-icon {
  width: 44px;
  height: 44px;
  background: rgba(180, 50, 25, 0.28);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-res__card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.ft-res__num {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.ft-res__num--red { color: var(--ft-red); }
.ft-res__card-title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 4px;
}
.ft-res__card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.ft-res__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

@media (max-width: 1024px) {
  .ft-res { padding: 80px 80px; }
  .ft-res__cards { flex-wrap: wrap; }
  .ft-res__card { flex: 1 1 calc(50% - 8px); }
}
@media (max-width: 768px) {
  .ft-res { padding: 60px 24px; }
  .ft-res__title { font-size: 28px; }
  .ft-res__cards { flex-direction: column; }
  .ft-res__card { flex: 1 1 100%; }
}

/* ── Protezione2 Problems ────────────────────────────────────── */
.ft-p2p {
  background: #ffffff;
  padding: 100px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.ft-p2p__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 900px;
}
.ft-p2p__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ft-black);
}
.ft-p2p__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ft-black);
  max-width: 780px;
}
.ft-p2p__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ft-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #d0d0d0;
  border-radius: 100px;
  padding: 8px 20px;
}
.ft-rating-badge__stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
}
.ft-rating-badge__text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ft-black);
}

@media (max-width: 1024px) {
  .ft-p2p { padding: 80px 80px; }
}
@media (max-width: 768px) {
  .ft-p2p { padding: 60px 24px; }
  .ft-p2p__title { font-size: 28px; }
}

/* ── Protezione Intro ────────────────────────────────────────── */
.ft-intro {
  background: #ffffff;
  padding: 100px 200px;
  display: flex;
  justify-content: center;
}
.ft-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  max-width: 900px;
  width: 100%;
}
.ft-intro__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ft-black);
}
.ft-intro__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ft-black);
  max-width: 780px;
}
.ft-intro__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ft-intro__social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ft-black);
}
.ft-intro__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ft-red);
  flex-shrink: 0;
  animation: ft-pulse 1.8s ease-in-out infinite;
}
@keyframes ft-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216,52,35,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(216,52,35,0); }
}
.ft-intro__social em { font-style: italic; }

@media (max-width: 1024px) {
  .ft-intro { padding: 80px 80px; }
}
@media (max-width: 768px) {
  .ft-intro { padding: 60px 24px; }
  .ft-intro__title { font-size: 30px; }
  .ft-intro__desc { font-size: 15px; }
}

/* ── Quiz ────────────────────────────────────────────────────── */
.ft-quiz-wrap {
  padding: 80px 200px;
  background: var(--ft-white);
}
.ft-quiz {
  border: 2px solid var(--ft-border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.ft-quiz__progress-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ft-quiz__bar {
  flex: 1;
  height: 14px;
  background: var(--ft-progress-bg);
  border-radius: 100px;
  overflow: hidden;
}
.ft-quiz__bar-fill {
  height: 100%;
  background: var(--ft-green);
  border-radius: 100px;
  width: 0%;
  transition: width .4s ease;
}
.ft-quiz__percent {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ft-text);
  white-space: nowrap;
}
.ft-quiz__question {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--ft-black);
  text-align: center;
  line-height: 1.1;
}
.ft-quiz__options {
  display: flex;
  flex-direction: column;
}
.ft-quiz__option {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s;
}
.ft-quiz__option:hover { background: rgba(216,52,35,.05); }
.ft-quiz__option.selected { background: rgba(216,52,35,.08); }
.ft-quiz__option.selected .ft-quiz__radio { background-image: url('../../assets/icons/icon-radio-checked.svg'); }
.ft-quiz__radio {
  width: 20px; height: 20px;
  flex-shrink: 0;
  background-image: url('../../assets/icons/icon-radio.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.ft-quiz__option-text {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: var(--ft-black);
  line-height: 1.2;
}
.ft-quiz__footer { display: flex; }

/* ── Section generic ─────────────────────────────────────────── */
.ft-section {
  padding: 80px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}
.ft-section--light { background: var(--ft-white); }
.ft-section--100 { padding: 100px 200px; }
.ft-section__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.ft-section__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 40px;
  color: var(--ft-black);
  line-height: 1.05;
  max-width: 979px;
}
.ft-section__title--xl { font-size: 48px; }
.ft-section__title .ft-accent { color: var(--ft-red); }
.ft-section__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ft-black);
  max-width: 900px;
}

/* ── Problem Cards 2x2 ───────────────────────────────────────── */
.ft-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.ft-cards__row {
  display: flex;
  gap: 12px;
}
.ft-card {
  flex: 1;
  background: var(--ft-bg);
  border-top: 3px solid var(--ft-border);
  border-radius: 10px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ft-card__icon {
  width: 50px; height: 50px;
  background: var(--ft-icon-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  flex-shrink: 0;
}
.ft-card__icon img { width: 24px; height: 24px; }
.ft-card__body { display: flex; flex-direction: column; gap: 24px; }
.ft-card__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 40px;
  color: var(--ft-black);
  line-height: 1.1;
}
.ft-card__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ft-gray);
}

/* ── 3-Steps ─────────────────────────────────────────────────── */
.ft-steps {
  display: flex;
  width: 100%;
}
.ft-step {
  flex: 1;
  padding: 40px;
  border-right: 1px solid rgba(216,52,35,0.3);
  display: flex;
  flex-direction: column;
  gap: 37px;
}
.ft-step:last-child { border-right: none; }
.ft-step__num {
  width: 50px; height: 50px;
  background: var(--ft-red-dark);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ft-step__num span {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 20px;
  color: var(--ft-white);
  line-height: 1;
}
.ft-step__body { display: flex; flex-direction: column; gap: 12px; }
.ft-step__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 24px;
  color: var(--ft-black);
  line-height: 1.1;
}
.ft-step__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ft-gray);
}

/* ── FAQ Accordion ───────────────────────────────────────────── */
.ft-faq { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.ft-faq-item {
  background: var(--ft-white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ft-border);
}
.ft-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  gap: 16px;
}
.ft-faq-q__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ft-black);
  text-align: left;
  line-height: 1.3;
}
.ft-faq-q__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform .3s;
}
.ft-faq-item.open .ft-faq-q__icon { transform: rotate(180deg); }
.ft-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 24px;
}
.ft-faq-a p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ft-gray);
  line-height: 1.6;
  padding-bottom: 20px;
}
.ft-faq-item.open .ft-faq-a { max-height: 500px; }

/* ── Gold badge ──────────────────────────────────────────────── */
.ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--ft-gold);
  border-radius: 100px;
  padding: 6px 16px;
  margin-top: 8px;
}
.ft-badge__star { width: 15px; height: 15px; }

/* ── CTA Section ─────────────────────────────────────────────── */
.ft-cta-section {
  padding: 80px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.ft-cta-section__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 48px;
  line-height: 1.05;
  color: var(--ft-black);
}
.ft-cta-section__title .ft-accent { color: var(--ft-red); }
.ft-cta-section__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ft-black);
  max-width: 800px;
}
.ft-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── Service blocks (CRI / EVA) ──────────────────────────────── */
.ft-service {
  padding: 50px 200px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.ft-service__badge {
  height: 71px;
  width: auto;
  object-fit: contain;
}
.ft-service__row {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.ft-service__content { flex: 1; display: flex; flex-direction: column; gap: 32px; }
.ft-service__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 40px;
  color: var(--ft-black);
  line-height: 1.1;
}
.ft-service__subtitle {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 28px;
  color: var(--ft-black);
  line-height: 1.1;
}
.ft-service__cols {
  display: flex;
  gap: 24px;
}
.ft-service__col {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ft-black);
}
.ft-service__cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.ft-service__img {
  flex: 1;
  align-self: stretch;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
}
.ft-service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Problem statement section ───────────────────────────────── */
.ft-problem {
  padding: 80px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}
.ft-problem__head { text-align: center; max-width: 979px; }
.ft-problem__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 40px;
  line-height: 1.05;
  color: var(--ft-black);
}
.ft-problem__title .ft-accent { color: var(--ft-red); }
.ft-problem__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ft-black);
  margin-top: 24px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.ft-footer {
  background: var(--ft-red);
  padding: 60px 140px;
  color: var(--ft-white);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ft-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ft-footer__logo { height: 46px; }
.ft-footer__logo img { height: 46px; width: auto; }
.ft-footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.ft-footer__social a { display: block; width: 32px; height: 32px; }
.ft-footer__social img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.ft-footer__certs {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ft-footer__cert { height: 40px; width: auto; }
.ft-footer__cert img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.ft-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ── Thank You page ──────────────────────────────────────────── */
.ft-thankyou {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}
.ft-thankyou__inner {
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.ft-thankyou__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ft-red);
  color: white;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-thankyou__title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 48px;
  color: var(--ft-black);
}
.ft-thankyou__text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: var(--ft-gray);
  line-height: 1.5;
}

/* ── Scroll reveal ───────────────────────────────────────────── */
[data-r] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-r].visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ft-hero { padding: 100px 80px; }
  .ft-hero__h1 { font-size: 42px; line-height: 1.1; }
  .ft-section, .ft-cta-section, .ft-problem { padding: 60px 80px; }
  .ft-service { padding: 50px 80px; }
  .ft-footer { padding: 50px 80px; }
  .ft-header { padding: 20px 80px; }
  .ft-quiz-wrap { padding: 60px 80px; }
  .ft-service__row { flex-direction: column; }
}

@media (max-width: 768px) {
  .ft-hero { padding: 60px 24px; }
  .ft-hero__h1 { font-size: 32px; line-height: 1.2; }
  .ft-hero__h1--lg { font-size: 28px; }
  .ft-hero__desc { font-size: 16px; }
  .ft-btn { font-size: 16px; padding: 18px 28px; }
  .ft-section, .ft-cta-section, .ft-problem { padding: 48px 24px; }
  .ft-service { padding: 40px 24px; }
  .ft-footer { padding: 40px 24px; }
  .ft-header { padding: 20px 24px; }
  .ft-quiz-wrap { padding: 40px 24px; }
  .ft-quiz { padding: 24px; }
  .ft-quiz__question { font-size: 22px; }
  .ft-quiz__option-text { font-size: 16px; }
  .ft-cards__row { flex-direction: column; }
  .ft-steps { flex-direction: column; }
  .ft-step { border-right: none; border-bottom: 1px solid rgba(216,52,35,0.3); }
  .ft-step:last-child { border-bottom: none; }
  .ft-section__title { font-size: 28px; }
  .ft-section__title--xl { font-size: 32px; }
  .ft-cta-section__title { font-size: 32px; }
  .ft-card__title { font-size: 28px; }
  .ft-footer__top { flex-direction: column; align-items: flex-start; }
  .ft-service__cols { flex-direction: column; }
  .ft-service__title { font-size: 28px; }
  .ft-service__subtitle { font-size: 22px; }
}

@media (max-width: 480px) {
  .ft-hero__h1 { font-size: 26px; }
  .ft-btn { font-size: 14px; padding: 16px 20px; }
  .ft-section__title { font-size: 24px; }
}

/* Analisi-2 icon-box bullet: cerchio rosso con freccia destra */
.ft-quiz-bullet .elementor-icon-box-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ft-quiz-bullet .elementor-icon-box-icon {
  background: #d83423;
  border-radius: 50%;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ft-quiz-bullet .elementor-icon-box-icon .elementor-icon {
  color: #fff;
  font-size: 14px !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-quiz-bullet .elementor-icon-box-icon .elementor-icon i,
.ft-quiz-bullet .elementor-icon-box-icon .elementor-icon svg {
  color: #fff;
  fill: #fff;
}
