/* assistenza-utenze.it — layout comparatore */
:root {
  --ink: #1a0f12;
  --ink-muted: #4a3d42;
  --surface: #faf7f2;
  --surface-2: #f0ebe3;
  --card: #ffffff;
  --accent: #b45309;
  --accent-soft: rgba(180, 83, 9, 0.12);
  --burgundy: #5c1f2e;
  --burgundy-deep: #3d121c;
  --line: rgba(26, 15, 18, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(61, 18, 28, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1080px;
  --sticky-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
}

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

a {
  color: var(--burgundy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Heroicons (Tailwind Labs, MIT) — icone outline inline */
.hi {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: inherit;
  vertical-align: middle;
}

.hi svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hi--sm {
  width: 1.1rem;
  height: 1.1rem;
}

.hi--md {
  width: 1.35rem;
  height: 1.35rem;
}

.hi--lg {
  width: 1.55rem;
  height: 1.55rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.65rem 1rem;
  background: var(--card);
  border-radius: 8px;
  z-index: 1000;
  box-shadow: var(--shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-nav-open {
  z-index: 10000;
  isolation: isolate;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  flex-wrap: nowrap;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin-left: auto;
  border: none;
  background: rgba(61, 18, 28, 0.06);
  border-radius: 10px;
  cursor: pointer;
  color: var(--burgundy-deep);
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.nav-toggle:hover {
  background: rgba(61, 18, 28, 0.1);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 1;
  padding: calc(4.25rem + env(safe-area-inset-top, 0px)) 1.25rem 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  backdrop-filter: blur(12px);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.28s ease, visibility 0.28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-header.is-nav-open .nav-drawer {
  transform: translateX(0);
  visibility: visible;
}

/* Barra logo + hamburger sopra al pannello menu; il pannello copre tutto il resto della pagina */
.site-header.is-nav-open .site-header__inner {
  position: relative;
  z-index: 3;
  background: rgba(250, 247, 242, 0.98);
}

.body--nav-open main {
  position: relative;
  z-index: 0;
}

.body--nav-open .hero .container {
  z-index: auto;
}

.nav-drawer__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

.nav-drawer__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.nav-drawer__close {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--burgundy-deep);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 18, 28, 0.12);
  flex-shrink: 0;
}

.nav-drawer__close:hover {
  background: var(--surface-2);
  color: var(--burgundy);
}

.nav-drawer__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav-drawer .nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  max-width: none;
  margin: 0;
}

.nav-drawer .nav a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--burgundy-deep);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

.nav-drawer .nav a:hover {
  color: var(--burgundy);
  background: #fff;
}

.body--nav-open {
  overflow: hidden;
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }

  .nav-drawer {
    position: static;
    inset: auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    max-height: none;
    height: auto;
    z-index: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    transform: none !important;
    visibility: visible !important;
    overflow: visible;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-drawer__scrim {
    display: none;
  }

  .nav-drawer__close {
    display: none !important;
  }

  .nav-drawer__panel {
    display: contents;
  }

  .nav-drawer .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    max-width: none;
    margin: 0;
  }

  .nav-drawer .nav a {
    display: inline;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-muted);
  }

  .nav-drawer .nav a:hover {
    color: var(--burgundy);
    background: none;
  }

  .header-tel.header-tel--desktop {
    display: inline-flex;
  }

  .site-header__inner {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(61, 18, 28, 0.18);
}

.brand__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.brand__text small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

@media (max-width: 879px) {
  .brand {
    flex: 1;
    min-width: 0;
  }
}

.nav {
  gap: 1.1rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink-muted);
}

.nav a:hover {
  color: var(--burgundy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--gold {
  background: linear-gradient(120deg, #d97706, #b45309);
  color: #fff;
  box-shadow: 0 8px 24px rgba(180, 83, 9, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-tel {
  display: inline-flex;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  flex-direction: column;
  line-height: 1.25;
  text-align: center;
}

.header-tel small {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  opacity: 0.95;
}

.header-tel.header-tel--desktop {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 20% 0%, #7c2940 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 20%, #3d121c 0%, transparent 50%),
    linear-gradient(165deg, var(--burgundy-deep) 0%, var(--burgundy) 45%, #4a2430 100%);
  color: #f8f4ef;
  padding: 3.25rem 0 3.5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fde68a;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 1rem;
}

.hero__subtitle {
  font-size: 1.12rem;
  opacity: 0.94;
  margin: 0 0 1.5rem;
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__note {
  font-size: 0.92rem;
  opacity: 0.85;
  margin: 0 0 1rem;
}

.hero__list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  opacity: 0.92;
}

.hero__hours {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-card__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card__row:last-of-type {
  border-bottom: none;
}

.hero-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(253, 230, 138, 0.15);
  color: #fde68a;
}

.hero-card__label {
  font-weight: 800;
  font-size: 0.95rem;
}

.hero-card__value {
  font-size: 0.88rem;
  opacity: 0.88;
  margin-top: 0.15rem;
}

.hero-card__foot {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

/* Banner */
.banner {
  background: linear-gradient(90deg, #fef3c7, #fde68a 40%, #fcd34d);
  color: var(--ink);
  border-block: 1px solid rgba(180, 83, 9, 0.25);
}

.banner__inner {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  align-items: flex-start;
}

.banner__icon {
  flex-shrink: 0;
  color: var(--burgundy-deep);
  line-height: 0;
  margin-top: 0.1rem;
}

.banner__inner strong {
  color: var(--burgundy-deep);
}

/* Sections */
.section {
  padding: 3.25rem 0;
}

.section--mist {
  background: var(--surface-2);
}

.section--paper {
  background: var(--card);
  box-shadow: inset 0 1px 0 var(--line);
}

.section__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--burgundy-deep);
}

.section__intro {
  margin: 0 0 2rem;
  color: var(--ink-muted);
  max-width: 70ch;
}

/* Cards servizi */
.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 820px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--card-accent, var(--burgundy));
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.card__sub {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.card__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}

.card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
}

.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.card__link {
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card__link:hover {
  gap: 0.55rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -0.25rem;
  right: 0.75rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
}

.step__icon {
  display: flex;
  align-items: center;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
  line-height: 0;
}

.step__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.step__text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Prose panorama */
.prose-block article {
  margin-bottom: 1.5rem;
}

.prose-block h3 {
  font-family: var(--font-display);
  color: var(--burgundy-deep);
  margin-bottom: 0.5rem;
}

.gestori__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
}

.gestori__lead {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.gestori__group-title {
  font-size: 1.05rem;
  margin: 2rem 0 1rem;
  color: var(--burgundy);
}

.supplier-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .supplier-grid--energy {
    grid-template-columns: repeat(2, 1fr);
  }

  .supplier-grid--telco {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .supplier-grid--energy {
    grid-template-columns: repeat(3, 1fr);
  }
}

.supplier-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 8px 22px rgba(61, 18, 28, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
}

.supplier-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.supplier-card__name {
  margin: 0;
  font-size: 1.02rem;
  font-family: var(--font-display);
  color: var(--burgundy-deep);
  line-height: 1.25;
}

.supplier-card__tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  white-space: nowrap;
}

.supplier-card__facts {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.supplier-card__facts strong {
  color: var(--burgundy-deep);
  font-weight: 700;
}

.supplier-card__lead {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.supplier-card__hl {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--burgundy);
}

.supplier-card__list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.supplier-card__note {
  margin: 0;
  font-size: 0.76rem;
  color: #92400e;
  padding: 0.45rem 0.55rem;
  background: #fffbeb;
  border-radius: 8px;
  border: 1px solid #fde68a;
}

.supplier-card__link {
  margin-top: auto;
  padding-top: 0.35rem;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
}

.supplier-card__link:hover {
  text-decoration: underline;
}

/* Chi siamo band */
.about-band {
  background: linear-gradient(120deg, #e7e5e4, #d6d3d1);
  border-block: 1px solid var(--line);
}

.about-band .section__title {
  color: var(--ink);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: var(--card);
}

.faq-item summary {
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item .faq-a {
  padding: 0 1.1rem 1.1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  margin: 0;
  padding-top: 0.85rem;
}

/* Contact / CTA */
.contact {
  background: linear-gradient(145deg, #292524, #1c1917);
  color: #fafaf9;
  padding: 3rem 0;
}

.contact__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 720px) {
  .contact__grid {
    grid-template-columns: 1fr auto;
  }
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.contact__text {
  margin: 0 0 1rem;
  opacity: 0.9;
  max-width: 48ch;
}

.contact__hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-weight: 600;
  opacity: 0.85;
}

.contact__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.35rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #fbbf24, #d97706);
  color: #1c1917;
  text-decoration: none;
  font-weight: 800;
  min-width: min(100%, 280px);
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}

.contact__cta:hover {
  transform: translateY(-3px);
  color: #1c1917;
}

.contact__cta span:last-child {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

/* Footer */
.footer {
  background: #0c0a0a;
  color: #d6d3d1;
  padding: 2.75rem 0 5rem;
  font-size: 0.9rem;
}

.footer a {
  color: #fde68a;
}

.footer__cols {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #a8a29e;
  margin: 0 0 0.85rem;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 0.45rem;
}

.footer__list a {
  text-decoration: none;
  color: #e7e5e4;
}

.footer__list a:hover {
  color: #fde68a;
}

.footer__policies {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__policies-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.footer__policy {
  font-weight: 600;
  text-decoration: none;
  color: #fde68a;
}

.footer__legal {
  margin-top: 2rem;
  color: #a8a29e;
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer__legal p {
  margin: 0 0 1rem;
}

.footer__legal a {
  color: #fcd34d;
}

/* Sticky CTA (stesso comportamento fashion: click-to-call) */
.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #0d9488, #0f766e);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.45);
  max-width: calc(100% - 2rem);
}

.sticky-cta:hover {
  color: #fff;
  transform: translateY(-2px);
}

.sticky-cta__icon {
  display: flex;
  align-items: center;
  line-height: 0;
  color: #fff;
}

.sticky-cta__lines {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-cta__small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
}

@media (min-width: 600px) {
  .sticky-cta__lines br {
    display: none;
  }
}

/* Pagine legali (privacy, cookie, termini) */
.legal-top {
  background: rgba(250, 247, 242, 0.96);
  border-bottom: 1px solid var(--line);
}

.legal-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.legal-top__inner a[href="/"] {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--burgundy-deep);
}

.legal-top__inner img {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(61, 18, 28, 0.12);
}

.legal-main {
  padding: 2.5rem 0 3.5rem;
  max-width: 720px;
}

.legal-main h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--burgundy-deep);
  margin: 0 0 1.25rem;
}

.legal-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--burgundy);
  margin: 0 0 0.35rem;
}

.legal__updated {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0 0 1.75rem;
}

.legal__footer-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
}

.breadcrumb-mini {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.breadcrumb-mini a {
  font-weight: 600;
}

.legal-main h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--burgundy);
  margin: 2rem 0 0.65rem;
}

.legal-main h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--burgundy-deep);
  margin: 1.25rem 0 0.5rem;
}

.legal-main p,
.legal-main li {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.legal-main ul {
  padding-left: 1.2rem;
}

.legal-main a {
  font-weight: 600;
}

.legal-footer {
  background: #0c0a0a;
  color: #a8a29e;
  padding: 1.75rem 0;
  font-size: 0.88rem;
}

.legal-footer a {
  color: #fde68a;
  font-weight: 600;
}

.legal-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
}
