/* ============================================================
   CORENVEM HUB - Main Stylesheet
   Color system: oklch color-mix derived palette
   BEM naming convention throughout
   ============================================================ */


:root {
  --primary: #0A4D68;
  --secondary: #05C2C9;
  --accent: #F0A500;
  --bg-light: #F4F8FA;
  --text-dark: #0D1F2D;
  --text-body: #2C4A5A;
  --white: #FAFCFD;

  
  --primary-light: color-mix(in oklch, var(--primary), white 85%);
  --primary-mid: color-mix(in oklch, var(--primary), white 60%);
  --primary-dark: color-mix(in oklch, var(--primary), black 25%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 80%);
  --accent-light: color-mix(in oklch, var(--accent), white 80%);
  --accent-dark: color-mix(in oklch, var(--accent), black 20%);

  
  --shadow-sm: 0 1px 4px color-mix(in oklch, var(--primary), transparent 85%), 0 2px 8px color-mix(in oklch, var(--primary), transparent 92%);
  --shadow-md: 0 4px 16px color-mix(in oklch, var(--primary), transparent 80%), 0 8px 32px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-lg: 0 8px 32px color-mix(in oklch, var(--primary), transparent 72%), 0 16px 64px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-accent: 0 4px 20px color-mix(in oklch, var(--accent), transparent 55%), 0 8px 40px color-mix(in oklch, var(--accent), transparent 75%);

  
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 999px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-light);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: var(--primary);
}

.section--mid {
  background: color-mix(in oklch, var(--primary), white 94%);
}

.section--accent {
  background: color-mix(in oklch, var(--accent), white 90%);
}


.section__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section__header--light { color: var(--white); }

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  background: color-mix(in oklch, var(--secondary), white 88%);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.85rem;
  border: 1px solid color-mix(in oklch, var(--secondary), white 70%);
}

.section__label--light {
  color: var(--accent);
  background: color-mix(in oklch, var(--accent), transparent 80%);
  border-color: color-mix(in oklch, var(--accent), transparent 60%);
}

.section__label--dark {
  color: var(--primary);
  background: color-mix(in oklch, var(--primary), white 88%);
  border-color: color-mix(in oklch, var(--primary), white 70%);
}

.section__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.section__title--light { color: var(--white); }

.section__desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}


.iso-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.iso-decor--tl {
  width: 280px;
  height: 280px;
  background: color-mix(in oklch, var(--secondary), transparent 80%);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  top: -80px;
  left: -80px;
  border-radius: var(--r-md);
}

.iso-decor--br {
  width: 220px;
  height: 220px;
  background: color-mix(in oklch, var(--accent), transparent 80%);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  bottom: -60px;
  right: -60px;
  border-radius: var(--r-md);
}

.iso-decor--center {
  width: 340px;
  height: 340px;
  background: color-mix(in oklch, var(--primary), transparent 85%);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  top: 50%;
  right: -100px;
  translate: 0 -50%;
  border-radius: var(--r-md);
}

.iso-decor--cta-r {
  width: 200px;
  height: 200px;
  background: color-mix(in oklch, var(--secondary), transparent 80%);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  top: -60px;
  right: 10%;
  border-radius: var(--r-md);
}

.iso-decor--cta-l {
  width: 150px;
  height: 150px;
  background: color-mix(in oklch, var(--accent), transparent 80%);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  bottom: -40px;
  left: 5%;
  border-radius: var(--r-sm);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn--primary {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  background: color-mix(in oklch, var(--accent), white 12%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px color-mix(in oklch, var(--accent), transparent 35%), 0 16px 48px color-mix(in oklch, var(--accent), transparent 55%);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid color-mix(in oklch, var(--white), transparent 45%);
}

.btn--outline:hover {
  background: color-mix(in oklch, var(--white), transparent 88%);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  color: var(--text-dark);
  border-color: color-mix(in oklch, var(--text-dark), transparent 60%);
}

.btn--outline-dark:hover {
  background: color-mix(in oklch, var(--text-dark), transparent 90%);
  border-color: var(--text-dark);
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  background: transparent;
}

.nav--solid {
  background: var(--primary);
  box-shadow: var(--shadow-lg);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 40px;
  width: 40px;
  transition: transform 0.3s;
}

.nav__logo:hover .nav__logo-img { transform: rotate(-5deg) scale(1.05); }

.nav__logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav__link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}

.nav__link:hover {
  background: color-mix(in oklch, var(--white), transparent 80%);
}

.nav__link--active {
  background: color-mix(in oklch, var(--white), transparent 88%);
}

.nav__link--cta {
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 12px color-mix(in oklch, var(--accent), transparent 60%);
}

.nav__link--cta:hover {
  background: color-mix(in oklch, var(--accent), white 15%);
  color: var(--text-dark);
  box-shadow: 0 4px 20px color-mix(in oklch, var(--accent), transparent 45%);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  background: var(--primary);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid color-mix(in oklch, var(--white), transparent 85%);
  animation: mobileSlideDown 0.25s ease;
}

@keyframes mobileSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav__mobile.is-open { display: block; }

.nav__mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__mobile-link {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav__mobile-link:hover {
  background: color-mix(in oklch, var(--white), transparent 85%);
}

.nav__mobile-link--cta {
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 0.5rem;
  border-radius: var(--r-pill);
}

.nav__mobile-link--cta:hover {
  background: color-mix(in oklch, var(--accent), white 15%);
}


.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, color-mix(in oklch, var(--primary), var(--secondary) 40%) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero__iso-1,
.hero__iso-2,
.hero__iso-3 {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

.hero__iso-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  top: -80px;
  right: 10%;
  border-radius: var(--r-md);
  animation: isoFloat 8s ease-in-out infinite;
}

.hero__iso-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  bottom: 15%;
  left: 5%;
  border-radius: var(--r-md);
  animation: isoFloat 10s ease-in-out infinite reverse;
}

.hero__iso-3 {
  width: 150px;
  height: 150px;
  background: var(--white);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  top: 20%;
  left: 15%;
  border-radius: var(--r-sm);
  animation: isoFloat 12s ease-in-out infinite;
}

@keyframes isoFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -20px; }
}

.hero__content {
  text-align: center;
  max-width: 760px;
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.8s ease both;
}

.hero__label {
  display: inline-block;
  background: color-mix(in oklch, var(--accent), transparent 75%);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
  border: 1px solid color-mix(in oklch, var(--accent), transparent 50%);
}

.hero__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__title span { color: var(--accent); }

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: color-mix(in oklch, var(--white), transparent 20%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.8s ease 0.2s both;
}

.hero-card {
  background: color-mix(in oklch, var(--white), transparent 88%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklch, var(--white), transparent 80%);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: left;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hero-card:hover {
  background: color-mix(in oklch, var(--white), transparent 82%);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px color-mix(in oklch, var(--primary), transparent 70%);
}

.hero-card__icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.hero-card__text {
  font-size: 0.82rem;
  color: color-mix(in oklch, var(--white), transparent 30%);
  line-height: 1.55;
}

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


.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border: 2px solid color-mix(in oklch, var(--accent), transparent 50%);
  box-shadow: var(--shadow-md), 0 0 0 1px color-mix(in oklch, var(--accent), transparent 70%);
}

.service-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card__img { transform: scale(1.04); }

.service-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.05em;
}

.service-card__badge--accent {
  background: var(--accent);
  color: var(--text-dark);
}

.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.65rem;
}

.service-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.service-card__link:hover {
  gap: 0.7rem;
  color: var(--secondary);
}


.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: color-mix(in oklch, var(--white), transparent 90%);
  border: 1px solid color-mix(in oklch, var(--white), transparent 80%);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}

.why-card:hover {
  background: color-mix(in oklch, var(--white), transparent 85%);
  transform: translateY(-3px);
}

.why-card__iso {
  position: absolute;
  width: 80px;
  height: 80px;
  background: color-mix(in oklch, var(--secondary), transparent 70%);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  top: -20px;
  right: -20px;
  border-radius: var(--r-sm);
  pointer-events: none;
}

.why-card__icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.why-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.why-card__text {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--white), transparent 20%);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}


.benefits__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.benefits__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.benefits__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefits__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.benefits__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.benefits__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: color-mix(in oklch, var(--secondary), white 80%);
  color: var(--secondary);
  border-radius: var(--r-md);
  font-size: 0.9rem;
}

.benefits__item strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.benefits__item p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}


.abbonamento__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.abbonamento__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abbonamento__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.abbonamento__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.abbonamento__img-wrap {
  position: relative;
}

.abbonamento__img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.abbonamento__iso-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--accent);
  opacity: 0.15;
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  bottom: -30px;
  right: -30px;
  border-radius: var(--r-md);
  pointer-events: none;
}


.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.process-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-step__iso {
  position: absolute;
  width: 60px;
  height: 60px;
  background: color-mix(in oklch, var(--secondary), white 80%);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  top: -15px;
  right: -15px;
  border-radius: 4px;
  pointer-events: none;
}

.process-step__num {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: color-mix(in oklch, var(--primary), white 75%);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.05em;
}

.process-step__title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.process-step__text {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

.process-step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in oklch, var(--primary), white 60%);
  font-size: 1.1rem;
  padding-top: 2rem;
  flex-shrink: 0;
}


.team__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team__img-col {
  position: relative;
}

.team__img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.team__img-iso {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  opacity: 0.15;
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  bottom: -25px;
  left: -25px;
  border-radius: var(--r-md);
  pointer-events: none;
}

.team__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}


.cta-band {
  background: var(--primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-band__sub {
  color: color-mix(in oklch, var(--white), transparent 25%);
  font-size: 1rem;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}


.footer {
  background: var(--text-dark);
  margin-top: auto;
}

.footer__top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid color-mix(in oklch, var(--white), transparent 90%);
}

.footer__top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo {
  height: 44px;
  width: 44px;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: color-mix(in oklch, var(--white), transparent 35%);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--white), transparent 35%);
  line-height: 1.9;
}

.footer__address a {
  color: color-mix(in oklch, var(--white), transparent 20%);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer__address i {
  color: var(--secondary);
  margin-right: 0.4rem;
  width: 14px;
}

.footer__nav-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-list a {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--white), transparent 35%);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer__bottom {
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 0.78rem;
  color: color-mix(in oklch, var(--white), transparent 55%);
  line-height: 1.7;
  max-width: 70%;
}

.footer__copy {
  font-size: 0.78rem;
  color: color-mix(in oklch, var(--white), transparent 55%);
  white-space: nowrap;
}


.breadcrumb {
  background: color-mix(in oklch, var(--primary), white 92%);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid color-mix(in oklch, var(--primary), white 80%);
}

.breadcrumb__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-body);
  flex-wrap: wrap;
}

.breadcrumb__link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.breadcrumb__link:hover { color: var(--secondary); }

.breadcrumb__sep {
  color: color-mix(in oklch, var(--text-body), white 40%);
  font-size: 0.75rem;
}


.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), var(--secondary) 40%));
  position: relative;
  overflow: hidden;
}

.page-hero__iso {
  position: absolute;
  width: 220px;
  height: 220px;
  background: var(--secondary);
  opacity: 0.08;
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  top: -60px;
  right: 8%;
  border-radius: var(--r-md);
  pointer-events: none;
}

.page-hero__content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.page-hero__sub {
  color: color-mix(in oklch, var(--white), transparent 25%);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.65;
}


.storia__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 0;
}

.storia__intro-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.storia__intro-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.storia__img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.valori__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.valore-card {
  background: color-mix(in oklch, var(--white), transparent 90%);
  border: 1px solid color-mix(in oklch, var(--white), transparent 80%);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background 0.3s, transform 0.3s;
}

.valore-card:hover {
  background: color-mix(in oklch, var(--white), transparent 85%);
  transform: translateY(-3px);
}

.valore-card__icon {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.valore-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.valore-card p {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--white), transparent 20%);
  line-height: 1.65;
}

.approccio__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approccio__img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.approccio__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approccio__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

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

.team-role-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.team-role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-role-card__icon {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.team-role-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.team-role-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}


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

.preventivo__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.preventivo__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--r-md);
}

.preventivo__step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.preventivo__step p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

.preventivo__piani {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid color-mix(in oklch, var(--primary), white 85%);
}

.preventivo__piani-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.piano-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: color-mix(in oklch, var(--primary), white 94%);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--secondary);
  transition: background 0.2s;
}

.piano-card:hover {
  background: color-mix(in oklch, var(--primary), white 90%);
}

.piano-card__icon {
  font-size: 1.3rem;
  color: var(--secondary);
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.piano-card strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.piano-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6
; }


.chat-form {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-form__header {
  background: var(--primary);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chat-form__avatar {
  width: 44px;
  height: 44px;
  background: color-mix(in oklch, var(--secondary), var(--primary) 30%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.chat-form__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.chat-form__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: color-mix(in oklch, var(--white), transparent 25%);
}

.chat-form__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-form__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.chat-bubble {
  max-width: 85%;
  margin-bottom: 0.75rem;
}

.chat-bubble--company {
  align-self: flex-start;
  background: color-mix(in oklch, var(--primary), white 90%);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--r-md) var(--r-md) var(--r-md);
  font-size: 0.88rem;
  line-height: 1.55;
}

.chat-bubble--company p { margin: 0; }

.chat-bubble--user {
  align-self: flex-end;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.chat-bubble--privacy {
  background: color-mix(in oklch, var(--accent), white 90%);
  padding: 0.75rem 1rem;
  border-radius: var(--r-md) 0 var(--r-md) var(--r-md);
}

.chat-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid color-mix(in oklch, var(--primary), white 80%);
  border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: color-mix(in oklch, var(--primary), white 96%);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.chat-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--secondary), transparent 80%);
  background: var(--white);
}

.chat-input--textarea {
  resize: vertical;
  min-height: 100px;
}

.chat-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

.chat-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.chat-privacy a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.chat-form__send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  margin-top: 0.5rem;
  min-height: 48px;
}

.chat-form__send:hover {
  background: color-mix(in oklch, var(--primary), black 15%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}


.zone__intro {
  max-width: 720px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.zone__intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.zone__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.zone-area {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid color-mix(in oklch, var(--secondary), white 60%);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zone-area:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.zone-area--main {
  border-top-color: var(--secondary);
  background: color-mix(in oklch, var(--secondary), white 92%);
}

.zone-area--check {
  border-top-color: var(--accent);
  background: color-mix(in oklch, var(--accent), white 92%);
}

.zone-area__icon {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.zone-area--main .zone-area__icon { color: var(--secondary); }
.zone-area--check .zone-area__icon { color: var(--accent); }

.zone-area__title {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.zone-area p {
  font-size: 0.83rem;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}

.zone-area__badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.zone-info__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.zone-info__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zone-info__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.zone-info__img-el {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}


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

.contact-method-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 3px solid color-mix(in oklch, var(--primary), white 70%);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-method-card--featured {
  border-top-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.contact-method-card__icon {
  font-size: 1.8rem;
  color: var(--secondary);
}

.contact-method-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-method-card__when {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

.contact-method-card__link {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-method-card__link:hover { color: var(--secondary); }

.contact-method-card__hours {
  font-size: 0.8rem;
  color: color-mix(in oklch, var(--text-body), white 30%);
}

.contact-form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.contact-info-item i {
  color: var(--secondary);
  width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-item a:hover { color: var(--secondary); }

.contact-form-section__info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form-section__info p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.map-section__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.legal-page {
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-2xl);
}

.legal-meta {
  background: color-mix(in oklch, var(--primary), white 93%);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-meta strong { color: var(--text-dark); }

.legal-intro {
  max-width: 860px;
  margin-bottom: 2.5rem;
}

.legal-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
}

.accordion__item {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--primary), white 88%);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: background 0.2s;
  min-height: 60px;
}

.accordion__trigger:hover {
  background: color-mix(in oklch, var(--primary), white 95%);
}

.accordion__item.is-open .accordion__trigger {
  background: color-mix(in oklch, var(--primary), white 93%);
  color: var(--primary);
}

.accordion__icon {
  font-size: 0.85rem;
  color: var(--secondary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion__body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-body);
}

.accordion__body ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion__body li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
}

.accordion__body a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s;
}

.accordion__body a:hover { color: var(--secondary); }

.cookie-manage-btn-wrap {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid color-mix(in oklch, var(--primary), white 88%);
  max-width: 900px;
}

.cookie-manage-btn-wrap p {
  font-size: 0.95rem;
  color: var(--text-body);
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-24px);
}

.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(24px);
}

.reveal--right.is-visible {
  transform: translateX(0);
}


@media (max-width: 1100px) {
  .footer__top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .zone__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__steps {
    flex-wrap: wrap;
  }

  .process-step__connector {
    display: none;
  }

  .process__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .nav__list { display: none; }
  .nav__hamburger { display: flex; }

  .hero__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .benefits__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .abbonamento__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .storia__intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .valori__grid {
    grid-template-columns: 1fr;
  }

  .approccio__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-dettaglio__grid {
    grid-template-columns: 1fr;
  }

  .preventivo__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .zone-info__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-methods__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  :root {
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
  }

  .container { padding: 0 1.25rem; }

  .section { padding: 3rem 0; }

  .hero { padding: 7rem 1.25rem 3rem; }

  .hero__ctas { flex-direction: column; align-items: center; }

  .hero__cards { grid-template-columns: 1fr; }

  .zone__grid { grid-template-columns: 1fr 1fr; }

  .footer__top-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__legal { max-width: 100%; }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .abbonamento__ctas {
    flex-direction: column;
  }

  .cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-band__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .accordion__trigger {
    font-size: 0.88rem;
    padding: 1rem 1.25rem;
  }

  .accordion__body {
    padding: 0 1.25rem 1.25rem;
  }
}

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

  .hero__title { font-size: 1.9rem; }
}