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

:root {
  --accent: #990099;
  --dark-bg: #333333;
  --light-bg: #f2f2f2;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #888;
  --max-width: 1200px;
  --nav-height: 88px;
  --footer-height: 97px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
}

/* ── Центрирующая обёртка ── */
.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════
   ЛЕНТА 1 — навигация
══════════════════════════════ */
.band-nav {
  background: var(--white);
  position: relative;
  z-index: 10;
}

.band-nav .inner {
  height: var(--nav-height);
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #666666;
  text-decoration: none;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 36px;
}

nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #666666;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

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

.btn-message {
  background: #990099;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-message:hover {
  background: #770077;
  transform: translateY(-1px);
}

/* ══════════════════════════════
   ЛЕНТА 2 — герой
══════════════════════════════ */
.band-hero {
  background-color: var(--light-bg);
  background-image: url('img/parallax-bg.png');
  background-repeat: no-repeat;
  background-position: center 0px;
  position: relative;
  overflow: visible;
  min-height: 585px;
}

.band-hero .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 585px;
  padding-bottom: 0;
}

.hero-text {
  flex: 1;
  padding: 0 0 0 0;
  max-width: 580px;
}

.hero-title {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.05;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 8px;
}

.hero-desc {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
}

.hero-whatsapp {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #888;
  margin-top: 14px;
}

.hero-figure {
  flex-shrink: 0;
  width: 433px;
  position: relative;
  align-self: flex-end;
  margin-top: calc(-1 * var(--nav-height) - 60px);
  z-index: 200;
  pointer-events: none;
}

.hero-figure img {
  display: block;
  width: 433px;
  height: 616px;
  vertical-align: bottom;
}

/* Заглушка вместо фото */
.figure-placeholder {
  width: 100%;
  height: 599px;
  background: linear-gradient(160deg, #d0d0d0 0%, #c4c4c4 100%);;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  text-align: center;
  gap: 8px;
}

.figure-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

/* ══════════════════════════════
   ЛЕНТА 3 — тёмная полоска
══════════════════════════════ */
.band-footer {
  background: var(--dark-bg);
}

.band-footer .inner {
  height: var(--footer-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.band-footer-left,
.band-footer-right {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 24px;
  color: #aaa;
  font-weight: 400;
  letter-spacing: 0;
}

.band-footer-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.band-footer-right svg {
  width: 39px;
  height: 39px;
  fill: #aaa;
}

/* ══════════════════════════════
   БУРГЕР
══════════════════════════════ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #666666;
  border-radius: 2px;
  transition: all 0.3s;
}

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

/* Мобильное меню */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  padding: 8px 0;
}

.mobile-nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #666666;
  text-decoration: none;
  padding: 12px 32px;
  transition: background 0.15s, color 0.15s;
}

.mobile-nav a:hover {
  background: #f5f5f5;
  color: #990099;
}

.mobile-nav.open {
  display: flex;
}

/* ══════════════════════════════
   АДАПТИВ
══════════════════════════════ */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .btn-message {
    display: none;
  }

  .burger {
    display: flex;
  }

  .band-hero .inner {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .hero-text {
    order: 1;
    padding: 40px 0 24px;
    max-width: 100%;
    text-align: center;
  }

  .hero-figure {
    order: 2;
    width: 261px;
    margin-top: 0;
    align-self: center;
    position: relative;
    left: -30px;
  }

  .hero-figure img {
    width: 261px;
    height: auto;
  }

  .band-footer .inner {
    flex-direction: column;
    height: auto;
    padding: 12px 32px;
    gap: 4px;
  }
}
/* ══════════════════════════════
   БЛОК УСЛУГ
══════════════════════════════ */
.band-services {
  background: var(--white);
  padding: 64px 0 72px;
}

.services-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.services-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.services-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-text h3 {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.5;
}

.service-text h3 a {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.service-text h3 a:hover {
  color: #990099;
}

.service-text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.services-title a {
  color: inherit;
  text-decoration: none;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    gap: 32px;
  }

  .services-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
}

/* ══════════════════════════════
   БЛОК ГЕО
══════════════════════════════ */
.band-geo {
  display: flex;
  width: 100%;
}

.band-geo-photo {
  width: 50%;
  min-height: 320px;
  background-color: #c8c8c8;
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.band-geo-text {
  width: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  padding: 56px 64px;
}

.band-geo-text-inner {
  max-width: 480px;
}

.band-geo-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 28px;
}

.band-geo-text p.geo-cities {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #dddddd;
  line-height: 1.5;
  margin-bottom: 20px;
}

.band-geo-text p.geo-note {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #999999;
}

@media (max-width: 768px) {
  .band-geo {
    flex-direction: column;
  }

  .band-geo-photo {
    width: 100%;
    min-height: 220px;
  }

  .band-geo-text {
    width: 100%;
    padding: 40px 32px;
  }

  .band-geo-text h2 {
    font-size: 24px;
  }

  .band-geo-text p.geo-cities {
    font-size: 18px;
  }
}

/* ══════════════════════════════
   БЛОК ЧИ СОНО
══════════════════════════════ */
.band-about {
  background: var(--light-bg);
  padding: 72px 0 80px;
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.about-top {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 72px;
}

.about-bio {
  flex: 1;
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
}

.about-photo {
  flex-shrink: 0;
  width: 400px;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.about-features {
  display: flex;
  gap: 40px;
}

.about-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-feature-icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  border-radius: 50%;
  background: #990099;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.about-feature-icon img {
  width: 54px;
  height: 54px;
  display: block;
}

.about-feature h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.about-feature p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-top {
    flex-direction: column;
  }

  .about-photo {
    width: 100%;
  }

  .about-features {
    flex-direction: column;
    gap: 40px;
  }

  .about-title {
    font-size: 28px;
  }
}

/* ══════════════════════════════
   БЛОК СТАТИСТИКИ
══════════════════════════════ */
.band-stats {
  background-color: #5a7a8a;
  background-image: url('img/stat-bg.jpg');
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 56px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  width: 75px;
  height: 58px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.stat-icon img {
  width: 75px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #bac5ca;
  line-height: 0.8;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .stat-item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .stat-icon {
    display: none;
  }

  .stat-number {
    font-size: 28px;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .stat-label {
    font-size: 20px;
    line-height: 1.3;
    text-align: left;
    white-space: normal;
  }

  .stat-label br {
    display: inline;
  }
}

/* ══════════════════════════════
   БЛОК ЦЕН
══════════════════════════════ */
.band-prezzi {
  background: var(--light-bg);
  padding: 72px 0 80px;
}

.prezzi-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.prezzi-top {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.prezzi-intro {
  flex: 1;
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
}

.prezzi-intro p + p {
  margin-top: 16px;
}

.prezzi-table {
  flex: 1.4;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 16px 24px;
}

.prezzi-row {
  display: flex;
  align-items: center;
  padding: 20px 16px;
  border-bottom: 1px solid #eeeeee;
  gap: 16px;
}

.prezzi-row:last-child {
  border-bottom: none;
}

.prezzi-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.prezzi-service {
  flex: 1;
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #444;
}

.prezzi-price {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #006600;
  white-space: nowrap;
}

.prezzi-bottom {
  text-align: center;
  margin-bottom: 32px;
}

.prezzi-note {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.prezzi-btn {
  display: inline-block;
  background: #990099;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 14px 48px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.prezzi-btn:hover {
  background: #770077;
  transform: translateY(-1px);
}

.prezzi-whatsapp-note {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .prezzi-top {
    flex-direction: column;
    gap: 32px;
  }

  .prezzi-title {
    font-size: 28px;
  }

  .prezzi-row {
    padding: 14px 20px;
  }

  .prezzi-service,
  .prezzi-price {
    font-size: 17px;
  }
}

/* ══════════════════════════════
   БЛОК КОНТАКТОВ
══════════════════════════════ */
.band-contatti-top {
  background: var(--light-bg);
  padding: 72px 0 0;
}

.contatti-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.contatti-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 32px;
}

.contatti-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-top: 4px;
}

.contatti-form-intro {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: center;
}

.contatti-form-wrap {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 55px 63px;
  position: relative;
  z-index: 10;
  margin-bottom: -160px;
}

.form-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-label {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #444;
  white-space: nowrap;
  min-width: 220px;
}

.form-input {
  flex: 1;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 20px;
  color: #333;
  padding: 6px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-bottom-color: #990099;
}

.form-textarea {
  flex: 1;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 20px;
  color: #333;
  padding: 6px 0;
  background: transparent;
  resize: none;
  height: 100px;
  transition: border-color 0.2s;
}

.form-textarea:focus {
  border-bottom-color: #990099;
}

.form-note {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-align: center;
  margin-top: 20px;
}

/* Тёмная нижняя часть */
.band-contatti-bottom {
  background: #12151e;
  padding: 200px 0 56px;
  text-align: center;
}

.contatti-submit-wrap {
  margin-bottom: 48px;
}

.contatti-btn {
  display: inline-block;
  background: #990099;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 14px 56px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.contatti-btn:hover {
  background: #770077;
  transform: translateY(-1px);
}

.contatti-or {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 24px;
}

.contatti-contacts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.contatti-call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.contatti-call-btn:hover {
  background: rgba(255,255,255,0.08);
}

.contatti-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.contatti-wa-btn:hover {
  background: #1da851;
}

/* Футер */
.band-footer-bottom {
  background: #000000;
  padding: 18px 0;
  text-align: center;
}

.band-footer-bottom .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-piva {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 16px;
  color: #666;
}

.footer-geo {
  font-family: 'Source Sans 3', 'Myriad Pro', 'Myriad', sans-serif;
  font-size: 13px;
  color: #444;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 8px;
  }

  .form-label {
    min-width: unset;
  }

  .contatti-call-btn {
    font-size: 22px;
    padding: 12px 18px;
  }

  .contatti-wa-btn {
    width: 54px;
    height: 54px;
  }

  .contatti-title {
    font-size: 28px;
  }
}

/* ══════════════════════════════
   БЛОК COME FUNZIONA
══════════════════════════════ */
.band-come-funziona {
  background: #5c7d8c;
  padding: 60px 0 72px;
}

.come-funziona-title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.come-funziona-steps {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.cfz-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cfz-number {
  width: 52px;
  height: 52px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -26px;
  position: relative;
  z-index: 2;
}

.cfz-box {
  width: 100%;
  border: 1px solid transparent;
  border-image-source: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='rgba(255,255,255,0.75)' stroke-width='1.5' stroke-dasharray='6,10' stroke-dashoffset='0'/%3E%3C/svg%3E");
  border-image-slice: 1;
  border-radius: 6px;
  padding: 44px 24px 28px;
  text-align: center;
}

.cfz-box h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.cfz-box p {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .come-funziona-steps {
    flex-direction: column;
    gap: 20px;
  }
  .come-funziona-title {
    font-size: 36px;
  }
  .cfz-number {
    display: none;
  }
  .cfz-box {
    border: none;
    padding: 0;
    text-align: left;
  }
  .cfz-step {
    align-items: flex-start;
    flex-direction: row;
    gap: 16px;
  }
  .cfz-box h3::before {
    content: attr(data-n) ". ";
  }
}
