/* ── FONT FACES ── */
@font-face {
  font-family: 'Solaria';
  src: url('FONT/solaria.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Solaria';
  src: url('FONT/solaria italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'DINOT';
  src: url('FONT/DINOT.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'DINOT';
  src: url('FONT/DINOT-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'DINOT';
  src: url('FONT/DINOT-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'DINOT';
  src: url('FONT/DINOT-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'DINOT';
  src: url('FONT/DINOT-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'DINOT';
  src: url('FONT/DINOT-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'DINOT';
  src: url('FONT/DINOT-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

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

:root {
  --beige: #eedec6;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray: #aaaaaa;
  --gray-light: #666666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DINOT', sans-serif;
  font-weight: 400;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: 'DINOT', sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-label {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 1rem;
}

.section-label--light {
  color: rgba(245, 236, 218, 0.45);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border: 2px solid var(--beige);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.btn--primary {
  background-color: var(--beige);
  color: var(--black);
}
.btn--primary:hover {
  background-color: transparent;
  color: var(--beige);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background-color: var(--beige);
  color: var(--black);
  border-color: var(--beige);
}

.btn--inverted {
  background-color: var(--beige);
  color: var(--black);
  border-color: var(--beige);
}
.btn--inverted:hover {
  background-color: transparent;
  color: var(--beige);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5rem;
  background-color: var(--black);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.navbar__logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-family: 'DINOT', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.navbar__link:hover {
  opacity: 1;
}

.navbar__cta {
  white-space: nowrap;
}

/* Hamburger */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.navbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .navbar {
    padding: 0.75rem 1.5rem;
  }
  .navbar__burger {
    display: flex;
  }
  .navbar__nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, box-shadow 0.3s;
    box-shadow: none;
  }
  .navbar__nav.open {
    max-height: 400px;
    padding: 1.25rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .navbar__link {
    font-size: 0.9rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 1;
  }
  .navbar__cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  .navbar__logo img {
    height: 52px;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/images/hero.jpeg');
  background-size: cover;
  background-position: center top;
  padding-top: 72px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(20, 18, 16, 0.62);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 780px;
}

.hero__brand {
  font-family: 'Solaria', serif;
  font-style: italic;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--white);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.92;
}

.hero__eyebrow {
  font-family: 'DINOT', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: 'Solaria', serif;
  font-style: italic;
  letter-spacing: 0;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.9;
  opacity: 0.85;
}

.hero__cta {
  font-size: 0.9rem;
}

/* ── NUMBERS STRIP ── */
.numbers {
  background-color: var(--black);
  padding: 3rem 2rem;
}

.numbers__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(245, 236, 218, 0.15);
}

.numbers__item:last-child {
  border-right: none;
}

.numbers__value {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--beige);
  line-height: 1;
}

.numbers__label {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.45;
  line-height: 1.4;
}

.numbers__divider {
  display: none;
}

@media (max-width: 640px) {
  .numbers__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers__item {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(245, 236, 218, 0.15);
  }
  .numbers__item:nth-child(odd) {
    border-right: 1px solid rgba(245, 236, 218, 0.15);
  }
  .numbers__item:nth-child(even) {
    border-right: none;
  }
  .numbers__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 400px;
  overflow: hidden;
}

.photo-strip__img {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  overflow: hidden;
}

.photo-strip__img:hover {
  transform: scale(1.04);
  z-index: 1;
}

@media (max-width: 700px) {
  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 200px;
  }
  .photo-strip__img:nth-child(4),
  .photo-strip__img:nth-child(5) {
    display: none;
  }
}

/* ── IL METODO ── */
.metodo {
  padding: 8rem 2rem;
  background-color: var(--black);
}

.metodo__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.metodo__header {
  text-align: center;
  max-width: 620px;
}

.metodo__title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.metodo__body {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 1.75rem;
}

.metodo__cta {
  display: inline-block;
}

.metodo__photo {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  background-size: cover;
  background-position: center 20%;
  overflow: hidden;
}

.metodo__pillars {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.metodo__pillar {
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.75rem;
}

.metodo__pillar-num {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.metodo__pillar-title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.metodo__pillar-body {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .metodo__pillars {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* ── USP ── */
.usp {
  padding: 7rem 2rem;
  background-color: var(--black);
}

.usp__header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.usp__heading {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-top: 0.5rem;
}

.usp__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.usp__card {
  border: 1.5px solid rgba(245, 236, 218, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.usp__number {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--beige);
  opacity: 0.35;
}

.usp__title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--beige);
  line-height: 1.2;
}

.usp__body {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--beige);
  opacity: 0.6;
}

.usp__footer {
  max-width: 1100px;
  margin: 3rem auto 0;
  text-align: center;
}

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

.come-funziona__cta {
  display: inline-block;
  margin-top: 3rem;
}

/* ── COME FUNZIONA ── */
.come-funziona {
  padding: 0;
  background-color: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.come-funziona__photo {
  background-size: cover;
  background-position: center;
  min-height: 560px;
}

.come-funziona__inner {
  padding: 6rem 4rem;
}

.come-funziona__title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.3rem);
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  align-items: start;
}

.step__connector {
  width: 1px;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  margin-left: 1.9rem;
}

.step__number {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step__content {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.step__title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.step__body {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

@media (max-width: 860px) {
  .come-funziona {
    grid-template-columns: 1fr;
  }
  .come-funziona__photo {
    min-height: 260px;
  }
  .come-funziona__inner {
    padding: 4rem 1.5rem;
  }
}

/* ── FULL PHOTO ── */
.full-photo {
  height: 500px;
  background-size: cover;
  background-position: center 35%;
}

@media (max-width: 768px) {
  .full-photo {
    height: 260px;
  }
}

/* ── PER CHI ── */
.perchi {
  padding: 8rem 2rem;
  background-color: var(--black);
}

.perchi__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.perchi__cta {
  display: inline-block;
  margin-bottom: 3rem;
}

.perchi__title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.3rem);
  color: var(--beige);
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

.perchi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.perchi__card {
  border: 1.5px solid rgba(245, 236, 218, 0.15);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.perchi__card--featured {
  border-color: var(--beige);
  grid-column: span 1;
}

.perchi__icon {
  font-size: 1.5rem;
  color: var(--beige);
  opacity: 0.35;
  line-height: 1;
}

.perchi__card-title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--beige);
}

.perchi__card-body {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--beige);
  opacity: 0.6;
  line-height: 1.7;
}

.perchi__tag {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background-color: var(--beige);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 0.25rem;
}

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

@media (max-width: 560px) {
  .perchi__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .perchi__card {
    padding: 1.2rem 1rem;
    gap: 0.5rem;
  }
  .perchi__icon {
    font-size: 1.1rem;
  }
  .perchi__card-title {
    font-size: 0.95rem;
  }
  .perchi__card-body {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  .perchi__tag {
    font-size: 0.58rem;
    padding: 0.2rem 0.5rem;
  }
}

/* ── OFFER ── */
.offer {
  background-color: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 7rem 2rem;
  text-align: center;
}

.offer__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.offer__label {
  font-family: 'DINOT', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-light);
}

.offer__headline {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.15;
}

.offer__headline s {
  font-size: 0.75em;
  opacity: 0.45;
  text-decoration: line-through;
  margin-right: 0.2em;
}

.offer__price {
  font-size: 1.35em;
  font-style: italic;
  font-weight: 400;
  color: var(--beige);
}

.offer__detail {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.offer__note {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 400px;
  line-height: 1.65;
}

.offer__cta {
  margin-top: 0.5rem;
}

/* ── FAQ ── */
.faq {
  padding: 8rem 2rem;
  background-color: var(--black);
}

.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq__title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.3rem);
  margin-bottom: 3rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}

.faq__item:first-child {
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

.faq__question {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 1.5rem 2rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  font-style: normal;
  line-height: 1.4;
  transition: opacity 0.2s;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.25s;
}

.faq__item.open .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding-bottom: 0;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding-bottom: 1.75rem;
}

/* ── FORM + OFFERTA ── */
.form-section {
  padding: 7rem 2rem;
  background-color: var(--black);
}

.form-offer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Pannello offerta */
.offer-panel {
  padding: 3.5rem 3rem;
  border: 1.5px solid rgba(245, 236, 218, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}

.offer-panel .offer__label {
  color: rgba(245, 236, 218, 0.45);
}

.offer-panel .offer__headline {
  color: var(--beige);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.offer-panel .offer__price {
  color: var(--beige);
}

.offer-panel .offer__detail {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--beige);
  opacity: 0.7;
}

.offer__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.offer__bullets li {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--beige);
  opacity: 0.7;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.offer__bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.form-section__inner {
  border: 1.5px solid rgba(245, 236, 218, 0.2);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  background-color: transparent;
}

@media (max-width: 860px) {
  .form-offer-wrap {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .offer-panel {
    position: static;
  }
}

.form-section__title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--beige);
}

.form-section__sub {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--beige);
  opacity: 0.6;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.lead-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lead-form__group label {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--beige);
}

.lead-form__group input,
.lead-form__group select {
  font-family: 'DINOT', sans-serif;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(245, 236, 218, 0.3);
  border-radius: 10px;
  background-color: rgba(245, 236, 218, 0.06);
  color: var(--beige);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s;
}

.lead-form__group input:focus,
.lead-form__group select:focus {
  border-color: var(--beige);
}

.lead-form__group input::placeholder {
  color: rgba(245, 236, 218, 0.3);
  font-weight: 300;
}

.lead-form__group select option {
  background-color: var(--black);
  color: var(--beige);
}

.lead-form__submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  border: 2px solid var(--beige);
  background-color: var(--beige);
  color: var(--black);
}

.lead-form__submit:hover {
  background-color: transparent;
  color: var(--beige);
}

.form-section__wa {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 236, 218, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.form-section__wa p {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--beige);
  opacity: 0.5;
}

.form-section__wa .btn--outline {
  color: var(--beige);
  border-color: rgba(245, 236, 218, 0.4);
}

.form-section__wa .btn--outline:hover {
  background-color: var(--beige);
  color: var(--black);
}

@media (max-width: 480px) {
  .form-section__inner {
    padding: 2.5rem 1.5rem;
  }
  .lead-form__row {
    grid-template-columns: 1fr;
  }
}

/* ── IL TEAM ── */
.team {
  padding: 8rem 2rem;
  background-color: var(--black);
}

.team__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.team__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--white);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.team__sub {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 4rem;
}

.team__photo-wrap {
  width: 100%;
}

.team__group-photo {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  background-size: cover;
  background-position: center 40%;
}

@media (max-width: 768px) {
  .team__group-photo {
    height: 260px;
    background-position: center 40%;
  }
}

.team__name {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team__role {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 0.75rem;
}

.team__bio {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .team__photo {
    aspect-ratio: 4/3;
  }
}

/* ── FOOTER ── */
.footer {
  background-color: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 2rem 2.5rem;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.footer__address,
.footer__hours {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

.footer__wa {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  transition: opacity 0.2s;
}

.footer__wa:hover {
  opacity: 0.65;
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'DINOT', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal-link {
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: var(--white);
}

.footer__copy {
  font-family: 'DINOT', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ── LEGAL PAGE ── */
.legal-page {
  padding: 10rem 2rem 6rem;
  background-color: var(--black);
}

.legal-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-page__title {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.legal-page__updated {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: 'DINOT', sans-serif;
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-family: 'DINOT', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0.5rem;
}

.legal-section p {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section li {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

.legal-section a {
  color: var(--beige);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section code {
  font-family: monospace;
  font-size: 0.88em;
  background: rgba(255,255,255,0.08);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 5.5rem;
  z-index: 300;
  background-color: var(--black);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text p {
  font-family: 'DINOT', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--beige);
  line-height: 1.65;
  opacity: 0.85;
}

.cookie-banner__link {
  color: var(--beige);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__reject {
  color: var(--beige);
  border-color: rgba(245,236,218,0.35);
  font-size: 0.78rem;
  padding: 0.6rem 1.2rem;
}

.cookie-banner__reject:hover {
  background-color: var(--beige);
  color: var(--black);
}

.cookie-banner__accept {
  background-color: var(--beige);
  color: var(--black);
  border-color: var(--beige);
  font-size: 0.78rem;
  padding: 0.6rem 1.2rem;
}

.cookie-banner__accept:hover {
  background-color: transparent;
  color: var(--beige);
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
  }
  .footer__info {
    text-align: center;
  }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 3.25rem;
  height: 3.25rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  /* already round, no change needed */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.28);
}

.wa-float svg {
  width: 1.6rem;
  height: 1.6rem;
}

/* ── RESPONSIVE FINE-TUNING ── */
@media (max-width: 400px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .offer__headline {
    font-size: 1.9rem;
  }
  .usp__card {
    padding: 2rem 1.25rem;
  }
}
