/* ═══════════════════════════════════════════════
   REDDITO IN RELAX — STYLESHEET PRINCIPALE
   ═══════════════════════════════════════════════ */

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

:root {
  --navy:      #1C2B3A;
  --navy-mid:  #2E3F52;
  --navy-dark: #141F2B;
  --tc:        #C4622D;
  --tc2:       #D97843;
  --white:     #FFFFFF;
  --offwhite:  #F2EFE9;
  --text-body: #374857;
  --text-muted:#6B7B8C;
  --text-lt:   rgba(255,255,255,0.72);
  --text-ltr:  rgba(255,255,255,0.44);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: #fff;
  overflow-x: hidden;
}


/* ═══════════ ELEMENTI CONDIVISI ═══════════ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.ey-ln {
  width: 28px;
  height: 0.5px;
  background: var(--tc);
  flex-shrink: 0;
}
.ey-tx {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 1.10;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
}
.section-title--light {
  color: #fff;
}
.section-title--light em {
  color: rgba(255,255,255,0.55);
}

.btn-tc {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--tc);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 15px 28px;
  border-radius: 2px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-tc:hover {
  background: var(--tc2);
  transform: translateY(-1px);
}
.btn-tc .arr {
  transition: transform 0.2s;
}
.btn-tc:hover .arr {
  transform: translateX(4px);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 17px 32px;
  border-radius: 2px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}
.btn-navy .arr {
  transition: transform 0.2s;
}
.btn-navy:hover .arr {
  transform: translateX(4px);
}

/* Dividers di transizione tra sezioni */
.div-navy-white  { height: 5px; background: linear-gradient(to bottom, var(--navy), var(--white)); }
.div-white-off   { height: 5px; background: linear-gradient(to bottom, var(--white), var(--offwhite)); }
.div-off-white   { height: 5px; background: linear-gradient(to bottom, var(--offwhite), var(--white)); }
.div-white-navy  { height: 5px; background: linear-gradient(to bottom, var(--white), var(--navy)); }
.div-navy-off    { height: 5px; background: linear-gradient(to bottom, var(--navy), var(--offwhite)); }
.div-off-navy    { height: 5px; background: linear-gradient(to bottom, var(--offwhite), var(--navy)); }


/* ═══════════ NAVBAR ═══════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 64px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(28,43,58,0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 40px;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-lt);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--tc);
  border: none;
  padding: 10px 22px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--tc2);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}


/* ═══════════ HERO ═══════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  padding: 120px 64px 80px;
  gap: 56px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--navy);
  background-image: url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=1920&q=85');
  background-size: cover;
  background-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(28,43,58,0.93) 0%,
    rgba(28,43,58,0.82) 42%,
    rgba(28,43,58,0.32) 72%,
    rgba(28,43,58,0.08) 100%
  );
}
.hero-left,
.hero-right {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.8vw, 70px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: rgba(232, 126, 12, 0.625);
}
.underline-tc {
  position: relative;
  display: inline-block;
}
.underline-tc::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tc);
  border-radius: 1px;
}
.hero .eyebrow {
  animation: fadeUp 0.8s ease both;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.68;
  color: var(--text-lt);
  max-width: 500px;
  margin-bottom: 46px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--tc);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 17px 30px;
  border-radius: 2px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
}
.btn-hero:hover {
  background: var(--tc2);
  transform: translateY(-1px);
}
.btn-hero .arr {
  transition: transform 0.2s;
}
.btn-hero:hover .arr {
  transform: translateX(4px);
}
.micro {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-ltr);
  line-height: 1.62;
  max-width: 400px;
  border-left: 1.5px solid rgba(196,98,45,0.45);
  padding-left: 14px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hcard {
  background: rgba(28,43,58,0.68);
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 22px 26px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.22s;
}
.hcard:hover {
  border-color: rgba(196,98,45,0.40);
}
.hcard-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-ltr);
  margin-bottom: 7px;
}
.hcard-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}
.hcard-val sup {
  font-size: 16px;
  vertical-align: super;
  color: var(--tc);
  margin-right: 2px;
}
.hcard-note {
  font-size: 11px;
  color: var(--text-ltr);
  margin-top: 5px;
  line-height: 1.5;
}
.hcard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hcard-row .hcard-val {
  font-size: 28px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(196,98,45,0.10);
  border: 0.5px solid rgba(196,98,45,0.35);
  border-radius: 4px;
  padding: 14px 18px;
  cursor: default;
  transition: background 0.2s;
}
.trust:hover {
  background: rgba(196,98,45,0.16);
}
.t-ico {
  width: 34px;
  height: 34px;
  background: rgba(196,98,45,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-ico svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--tc2);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.t-tx {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-lt);
  line-height: 1.45;
}
.t-tx strong {
  font-weight: 500;
  color: var(--tc2);
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-ltr);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUp 1s 0.7s ease both;
}
.s-ln {
  width: 36px;
  height: 0.5px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.s-ln::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--tc);
  animation: scan 2.2s ease infinite;
}


/* ═══════════ SEZIONE — PER CHI È ═══════════ */

.perchi {
  background: var(--white);
  padding: 110px 64px;
}
.perchi-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.perchi-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}
.perchi-secondary {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--text-muted);
}
.thin-rule {
  width: 36px;
  height: 0.5px;
  background: #E0DADA;
  margin: 30px 0;
}
.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy-mid);
  line-height: 1.55;
  padding-left: 18px;
  border-left: 2px solid var(--tc);
}
.req-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.req-list {
  list-style: none;
  margin-bottom: 36px;
}
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-body);
}
.req-list li:first-child {
  padding-top: 0;
}
.req-list li:last-child {
  border-bottom: none;
}
.req-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tc);
  flex-shrink: 0;
  margin-top: 9px;
}
.notfor {
  background: var(--offwhite);
  border-left: 2px solid var(--tc);
  border-radius: 2px;
  padding: 20px 22px;
  margin-bottom: 36px;
}
.notfor-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--tc);
  margin-bottom: 10px;
}
.notfor-txt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-body);
}


/* ═══════════ SEZIONE — IL PROBLEMA ═══════════ */

.problema {
  background: var(--offwhite);
  padding: 110px 64px;
}
.problema-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problema-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.problema-header .eyebrow {
  justify-content: center;
}
.problema-header .section-title {
  margin-bottom: 18px;
}
.problema-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}
.pain-card {
  background: rgba(255,255,255,0.55);
  border: 0.5px solid rgba(28,43,58,0.07);
  padding: 36px 32px;
  transition: background 0.22s;
}
.pain-card:hover {
  background: rgba(255,255,255,0.90);
}
.pain-icon {
  width: 42px;
  height: 42px;
  background: rgba(196,98,45,0.08);
  border: 0.5px solid rgba(196,98,45,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.pain-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--tc);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pain-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.pain-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-body);
}
.problema-close {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.problema-close-txt {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 10px;
}
.problema-close-txt strong {
  font-weight: 500;
  color: var(--navy);
}
.problema-close-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy-mid);
  line-height: 1.55;
  border-top: 0.5px solid rgba(28,43,58,0.10);
  padding-top: 28px;
  margin-top: 28px;
}


/* ═══════════ SEZIONE — COS'È ═══════════ */

.cosafacciamo {
  background: var(--white);
  padding: 110px 64px;
}
.cf-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.cf-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}
.cf-secondary {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.key-points {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid rgba(0,0,0,0.07);
  margin-bottom: 40px;
}
.kp {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.07);
}
.kp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--tc);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.75;
  min-width: 28px;
}
.kp-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.kp-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}
.brand-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 0.5px solid rgba(196,98,45,0.12);
  pointer-events: none;
}
.brand-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tc2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-lbl::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tc);
  flex-shrink: 0;
}
.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 18px;
}
.brand-title em {
  font-style: italic;
  color: rgba(255,255,255,0.58);
}
.brand-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.70;
  color: rgba(255,255,255,0.62);
}
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mini-card {
  background: var(--offwhite);
  border: 0.5px solid rgba(28,43,58,0.08);
  border-radius: 4px;
  padding: 20px 18px;
  transition: border-color 0.2s;
}
.mini-card:hover {
  border-color: var(--tc);
}
.mini-icon {
  width: 30px;
  height: 30px;
  background: rgba(196,98,45,0.08);
  border: 0.5px solid rgba(196,98,45,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.mini-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--tc);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mini-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 5px;
}
.mini-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.60;
  color: var(--text-muted);
}


/* ═══════════ SEZIONE — COME FUNZIONA ═══════════ */

.comefunziona {
  background: var(--offwhite);
  padding: 110px 64px;
}
.comefunziona-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cf2-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.cf2-header-note {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--text-body);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(28,43,58,0.08);
}
.step {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.22s;
}
.step:hover {
  background: #FAFAFA;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--tc);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.78;
}
.step-rule {
  width: 20px;
  height: 1px;
  background: var(--tc);
  margin-bottom: 16px;
  opacity: 0.50;
}
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--tc);
  background: rgba(196,98,45,0.08);
  border: 0.5px solid rgba(196,98,45,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.step-badge::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tc);
  flex-shrink: 0;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}
.step-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--text-body);
}
.step.cta-slot {
  background: var(--navy);
}
.step.cta-slot:hover {
  background: var(--navy-mid);
}
.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 24px;
}
.cta-slot-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tc);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-slot-btn:hover {
  background: var(--tc2);
}
.cf2-footer {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 44px;
  border-top: 0.5px solid rgba(28,43,58,0.10);
}
.cf2-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}


/* ═══════════ SEZIONE — USP / FIDUCIA ═══════════ */

.usp {
  background: var(--navy);
  padding: 110px 64px;
}
.usp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.usp-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-lt);
  margin-bottom: 24px;
}
.usp-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
  border-left: 2px solid var(--tc);
  padding-left: 18px;
  margin-bottom: 40px;
}
.usp-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.usp-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.22s, border-color 0.22s;
}
.usp-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,98,45,0.35);
}
.usp-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(196,98,45,0.12);
  border: 0.5px solid rgba(196,98,45,0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-card-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--tc2);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.usp-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}
.usp-card-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-lt);
  line-height: 1.60;
}


/* ═══════════ SEZIONE — TUTELA IMMOBILE ═══════════ */

.tutela {
  background: var(--white);
  padding: 110px 64px;
}
.tutela-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.tutela-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 24px;
}
.tutela-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy-mid);
  line-height: 1.55;
  border-left: 2px solid var(--tc);
  padding-left: 18px;
  margin-bottom: 40px;
}
.tutela-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tutela-item {
  background: var(--offwhite);
  border-radius: 4px;
  padding: 22px 20px;
  border: 0.5px solid rgba(28,43,58,0.07);
  transition: border-color 0.2s;
}
.tutela-item:hover {
  border-color: rgba(196,98,45,0.40);
}
.tutela-item-ico {
  width: 30px;
  height: 30px;
  background: rgba(196,98,45,0.08);
  border: 0.5px solid rgba(196,98,45,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.tutela-item-ico svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--tc);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tutela-item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 5px;
}
.tutela-item-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.60;
  color: var(--text-muted);
}


/* ═══════════ SEZIONE — ZONE (NUOVA) ═══════════ */

.zone {
  background: var(--navy);
  padding: 110px 64px;
  position: relative;
  overflow: hidden;
}

/* Decorazione sottile sullo sfondo */
.zone::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 0.5px solid rgba(196, 98, 45, 0.06);
  pointer-events: none;
}
.zone::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 0.5px solid rgba(196, 98, 45, 0.04);
  pointer-events: none;
}

.zone-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.zone-header {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.zone-header .eyebrow {
  justify-content: center;
}

.zone-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-lt);
  margin-bottom: 14px;
}

.zone-intro-secondary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.55;
}

/* ─── GRIGLIA DELLE ZONE ─── */

.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* L'ultima card (altre zone) occupa tutta la larghezza */
.zone-card--wide {
  grid-column: 1 / -1;
}

/* ─── SINGOLA CARD ZONA ─── */

.zone-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.zone-card:hover {
  border-color: rgba(196, 98, 45, 0.45);
  transform: translateY(-2px);
}

/* Immagine della card */
.zone-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.zone-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.zone-card:hover .zone-card-image img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* Overlay gradient navy → trasparente */
.zone-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 43, 58, 0.88) 0%,
    rgba(28, 43, 58, 0.25) 55%,
    rgba(28, 43, 58, 0.05) 100%
  );
  pointer-events: none;
}

/* Etichetta zona (numero + nome) sovrapposta */
.zone-card-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 60px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.zone-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--tc2);
  letter-spacing: 0.14em;
}

.zone-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

/* Indicatore "scopri di più" in basso a destra */
.zone-card-hint {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc2);
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.3s ease;
  z-index: 2;
}

.zone-card:hover .zone-card-hint {
  opacity: 1;
}

.zone-card-hint svg {
  transition: transform 0.3s ease;
}

/* ─── CONTENUTO — a riposo nascosto, si apre al click ─── */

.zone-card-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 0.5px solid rgba(255, 255, 255, 0);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

/* Quando la card è aperta */
.zone-card.open {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 98, 45, 0.50);
}

.zone-card.open .zone-card-content {
  max-height: 500px;
  opacity: 1;
  padding: 26px 28px 30px;
  border-top-color: rgba(196, 98, 45, 0.25);
}

.zone-card.open .zone-card-hint {
  opacity: 1;
  color: var(--tc2);
}

.zone-card.open .zone-card-hint svg {
  transform: rotate(180deg);
}

.zone-card.open .zone-card-image img {
  filter: brightness(1);
}

/* Testo del contenuto */
.zone-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(196, 98, 45, 0.14);
  border: 0.5px solid rgba(196, 98, 45, 0.35);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--tc2);
  margin-bottom: 14px;
}

.zone-card-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tc);
  flex-shrink: 0;
}

.zone-card-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-lt);
}

/* Bottone CTA nella card wide (altre zone) */
.zone-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--tc);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 11px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.zone-card-cta:hover {
  background: var(--tc2);
  transform: translateX(2px);
}

.zone-card-cta span {
  transition: transform 0.2s;
}

.zone-card-cta:hover span {
  transform: translateX(3px);
}


/* ═══════════ SEZIONE — GALLERIA ═══════════ */

.galleria {
  background: var(--offwhite);
  padding: 110px 64px;
}
.galleria-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.galleria-header {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}
.galleria-header .eyebrow {
  justify-content: center;
}
.galleria-header .section-title {
  margin-bottom: 18px;
}
.galleria-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--text-muted);
}

.gallery {
  position: relative;
}
.gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(28, 43, 58, 0.18);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Ken Burns effect — zoom lento quando la slide è attiva */
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.gallery-slide.active img {
  transform: scale(1);
}
.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 43, 58, 0) 40%,
    rgba(28, 43, 58, 0.35) 100%
  );
  pointer-events: none;
}

/* Frecce di navigazione */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.22s, transform 0.22s;
  opacity: 0.7;
}
.gallery-nav:hover {
  background: var(--tc);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}
.gallery-nav:hover svg {
  stroke: #fff;
}
.gallery-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.22s;
}
.gallery-prev {
  left: 20px;
}
.gallery-next {
  right: 20px;
}

/* Counter in basso a destra */
.gallery-counter {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.05em;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-current {
  font-size: 22px;
  color: var(--tc2);
}
.gallery-sep {
  opacity: 0.5;
}
.gallery-total {
  opacity: 0.72;
}

/* Caption sotto l'immagine */
.gallery-captions {
  position: relative;
  margin-top: 32px;
  min-height: 80px;
}
.gallery-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.gallery-caption.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.gallery-caption-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc);
  margin-bottom: 10px;
}
.gallery-caption-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy-mid);
  line-height: 1.55;
}

/* Puntini di navigazione */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.gallery-dot {
  width: 32px;
  height: 2px;
  background: rgba(28, 43, 58, 0.18);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.gallery-dot.active {
  background: var(--tc);
}
.gallery-dot:hover:not(.active) {
  background: rgba(28, 43, 58, 0.35);
}


/* ═══════════ SEZIONE — LEGALITÀ ═══════════ */

.legalita {
  background: var(--offwhite);
  padding: 110px 64px;
}
.legalita-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.legalita-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 28px;
}
.legal-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.legal-item-ico {
  width: 34px;
  height: 34px;
  background: rgba(196,98,45,0.15);
  border: 0.5px solid rgba(196,98,45,0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-item-ico svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--tc2);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.legal-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.legal-item-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-lt);
  line-height: 1.60;
}


/* ═══════════ SEZIONE — TESTIMONIANZE ═══════════ */

.testimonianze {
  background: var(--white);
  padding: 110px 64px;
}
.test-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.test-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.test-header .eyebrow {
  justify-content: center;
}
.test-header .section-title {
  margin-bottom: 16px;
}
.test-header p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--text-muted);
}
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.test-card {
  border: 0.5px solid rgba(28,43,58,0.10);
  border-radius: 4px;
  padding: 32px 30px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.test-card:hover {
  border-color: rgba(196,98,45,0.35);
  box-shadow: 0 4px 24px rgba(28,43,58,0.06);
}
.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.star {
  color: var(--tc);
  font-size: 14px;
}
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 22px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.test-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}
.test-info {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
}
.test-link {
  text-align: center;
}
.test-link a {
  font-size: 13px;
  font-weight: 400;
  color: var(--tc);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(196,98,45,0.40);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.test-link a:hover {
  border-color: var(--tc);
}


/* ═══════════ SEZIONE — TEAM ═══════════ */

.team {
  background: var(--white);
  padding: 110px 64px;
}
.team-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.team-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}
.team-header .eyebrow {
  justify-content: center;
}
.team-header .section-title {
  margin-bottom: 16px;
}
.team-header p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--text-muted);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.team-card {
  background: var(--offwhite);
  border: 0.5px solid rgba(28,43,58,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  border-color: rgba(196,98,45,0.30);
  box-shadow: 0 4px 24px rgba(28,43,58,0.06);
}
.team-photo {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  background: var(--offwhite);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(15%);
}
.team-card:hover .team-photo img {
  transform: scale(1.03);
  filter: grayscale(0%);
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,58,0) 60%, rgba(28,43,58,0.15) 100%);
  pointer-events: none;
}
.team-content {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--tc);
  background: rgba(196,98,45,0.08);
  border: 0.5px solid rgba(196,98,45,0.22);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  margin-bottom: 18px;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.team-role {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.team-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 24px;
}
.team-skills {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-skills li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-body);
}
.team-skills li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tc);
  flex-shrink: 0;
  margin-top: 7px;
}
.team-footer {
  text-align: center;
  margin-top: 48px;
}
.team-footer p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 20px;
}


/* ═══════════ SEZIONE — FAQ ═══════════ */

.faq {
  background: var(--offwhite);
  padding: 110px 64px;
  border-top: 0.5px solid rgba(28,43,58,0.06);
}
.faq-inner {
  max-width: 840px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-header .eyebrow {
  justify-content: center;
}
.faq-header .section-title {
  margin-bottom: 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 0.5px solid rgba(28,43,58,0.10);
}
.faq-item {
  border-bottom: 0.5px solid rgba(28,43,58,0.10);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.30;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--tc);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--tc);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%,-50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  display: none;
  padding: 0 0 24px 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-body);
}
.faq-item.open .faq-a {
  display: block;
}


/* ═══════════ SEZIONE — CTA FINALE ═══════════ */

.cta-finale {
  background: var(--navy);
  padding: 110px 64px;
}
.cta-finale-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-finale .eyebrow {
  justify-content: center;
}
.cta-finale .section-title {
  color: #fff;
  margin-bottom: 24px;
}
.cta-finale .section-title em {
  color: rgba(255,255,255,0.50);
}
.cta-finale-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-lt);
  margin-bottom: 40px;
}
.cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-finale .btn-tc {
  padding: 18px 36px;
  font-size: 14px;
}
.cta-micro {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-ltr);
  line-height: 1.60;
}


/* ═══════════ FOOTER ═══════════ */

footer {
  background: var(--navy-dark);
  padding: 48px 64px;
  border-top: 0.5px solid rgba(196,98,45,0.20);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  height: 42px;
}
.footer-logo img {
  height: 100%;
  width: auto;
  display: block;
}
.footer-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-lt);
  line-height: 1.6;
  max-width: 340px;
  text-align: center;
}
.footer-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tc2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-cta:hover {
  color: var(--tc);
}
.footer-sub {
  border-top: 0.5px solid rgba(255,255,255,0.06);
  margin-top: 24px;
  padding-top: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-ltr);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-ltr);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-lt);
}


/* ═══════════ ANIMAZIONI ═══════════ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scan {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}


/* ═══════════ RESPONSIVE — MOBILE ═══════════ */

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }
  nav.open .nav-cta {
    display: block;
    margin: 4px 24px 24px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }
  .hero-right {
    display: none;
  }
  .scroll-cue {
    left: 24px;
  }

  .perchi-inner,
  .cf-inner,
  .usp-inner,
  .tutela-inner,
  .legalita-inner,
  .team-grid,
  .test-grid,
  .cf2-header {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .perchi,
  .problema,
  .cosafacciamo,
  .comefunziona,
  .usp,
  .tutela,
  .galleria,
  .legalita,
  .testimonianze,
  .team,
  .zone,
  .faq,
  .cta-finale {
    padding: 80px 24px;
  }

  .pain-grid,
  .steps-grid,
  .mini-cards,
  .tutela-grid {
    grid-template-columns: 1fr;
  }
  .cf2-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Zone section mobile */
  .zone-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .zone-card-image {
    height: 220px !important;
  }
  .zone-name {
    font-size: 22px !important;
  }
  .zone-card-label {
    left: 18px !important;
    right: 50px !important;
    bottom: 18px !important;
  }
  .zone-card-hint {
    bottom: 18px !important;
    right: 16px !important;
  }
  .zone-card.open .zone-card-content {
    padding: 22px 20px 26px !important;
  }

  /* Gallery mobile adjustments */
  .gallery-stage {
    aspect-ratio: 4 / 3;
  }
  .gallery-nav {
    width: 40px;
    height: 40px;
  }
  .gallery-prev {
    left: 12px;
  }
  .gallery-next {
    right: 12px;
  }
  .gallery-counter {
    bottom: 14px;
    right: 16px;
    font-size: 15px;
  }
  .gallery-current {
    font-size: 18px;
  }
  .gallery-captions {
    min-height: 100px;
  }
  .gallery-caption-text {
    font-size: 17px;
  }

  footer {
    padding: 40px 24px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-note {
    text-align: left;
  }
  .footer-sub {
    flex-direction: column;
    align-items: flex-start;
  }
}
