/* =========================================
   ITFusionModel Analytics – Custom Styles
   ========================================= */

/* ----- CSS variables (palette & spacing) ----- */

:root {
  --bg-body: #050910;
  --bg-elevated: #0b111d;
  --bg-elevated-soft: #101827;
  --bg-alt: #060b15;
  --bg-alt-soft: #0c1422;

  --accent: #c6ff2f;
  --accent-soft: rgba(198, 255, 47, 0.12);
  --accent-strong: #d6ff6a;

  --border-subtle: rgba(255, 255, 255, 0.08);

  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;

  --danger: #f97373;
  --warning: #fbbf24;
  --success: #4ade80;

  --radius-lg: 1.25rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --shadow-card: 0 14px 35px rgba(0, 0, 0, 0.55);
}

/* ----- Base typography (минимум 16px) ----- */

html {
  font-size: 18px; /* базовый размер */
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #081423, #020309 55%);
}

small,
.small {
  font-size: 0.9rem; /* тоже ≥ 16px */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.section-padding {
  padding: 4rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #0c1723 0, #050910 60%);
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 40rem;
}

.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* ----- Header / Navbar ----- */

.site-header {
  background: linear-gradient(90deg, #050910, #071b23);
}

.navbar {
  background: transparent;
}

.navbar-brand {
  color: var(--text-main);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  padding-inline: 0.9rem;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: #f9fafb;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.24);
}

.navbar-toggler-icon {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.7));
}

/* Логотип */

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, var(--accent-soft), #050910);
  box-shadow: 0 0 16px rgba(198, 255, 47, 0.45);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(198, 255, 47, 0.9);
}

.text-muted-contrast {
  color: var(--text-soft) !important;
}

/* ----- Buttons ----- */

.btn-accent {
  --bs-btn-color: #020617;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent-strong);
  --bs-btn-hover-border-color: var(--accent-strong);
  --bs-btn-active-bg: #e7ff9b;
  --bs-btn-active-border-color: #e7ff9b;
  --bs-btn-focus-shadow-rgb: 198, 255, 47;
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 1.8rem;
  box-shadow: 0 10px 24px rgba(198, 255, 47, 0.3);
}

.btn-accent:hover {
  box-shadow: 0 12px 28px rgba(198, 255, 47, 0.4);
}

.btn-outline-light {
  border-radius: 999px;
  border-width: 1px;
  font-weight: 500;
  color: var(--text-main);
  border-color: rgba(249, 250, 251, 0.4);
  background: rgba(15, 23, 42, 0.4);
}

.btn-outline-light:hover {
  background: rgba(249, 250, 251, 0.08);
  border-color: rgba(249, 250, 251, 0.6);
}

/* =========================================
   ПАРАЛЛАКС-ФОНЫ ДЛЯ СЕКЦИЙ
   ========================================= */

/* HERO – фон офис/дешборд */
.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--text-main);
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.94), rgba(5, 9, 16, 0.9)),
    url("../images/itfusionmodel-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-section::before {
  width: 340px;
  height: 340px;
  background: rgba(198, 255, 47, 0.28);
  top: -80px;
  left: -80px;
}

.hero-section::after {
  width: 360px;
  height: 360px;
  background: rgba(56, 189, 248, 0.25);
  bottom: -120px;
  right: -120px;
}

.hero-section .container-xxl {
  position: relative;
  z-index: 1;
}

/* COME FUNZIONA – схема потоков данных */
#come-funziona {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.95), rgba(5, 9, 16, 0.9)),
    url("../images/itfusionmodel-data-flow-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* MODULI AI – абстрактная сетка/код */
#moduli-ai {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.96), rgba(5, 9, 16, 0.9)),
    url("../images/itfusionmodel-ai-modules-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* RISULTATI – графики/чарты */
#risultati {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.97), rgba(5, 9, 16, 0.92)),
    url("../images/itfusionmodel-charts-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* BENEFICI – команда/офис */
#benefici {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.96), rgba(5, 9, 16, 0.9)),
    url("../images/itfusionmodel-team-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* SETTORI – городской вид/ночной город */
#settori {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.95), rgba(5, 9, 16, 0.9)),
    url("../images/itfusionmodel-city-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* PERCORSO – ступеньки/путь */
#percorso {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.97), rgba(5, 9, 16, 0.92)),
    url("../images/itfusionmodel-roadmap-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* TESTIMONIANZE – коворкинг/встреча */
#testimonianze {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.96), rgba(5, 9, 16, 0.9));  
    background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* FAQ – абстрактный фон */
#faq {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.96), rgba(5, 9, 16, 0.9));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* CONTATTI – карта/город */
#contatti {
  background-image:
    linear-gradient(120deg, rgba(5, 9, 16, 0.97), rgba(5, 9, 16, 0.93)),
    url("../images/itfusionmodel-contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* подложка, чтобы контент не «тонул» в картинках */
#come-funziona .container-xxl,
#moduli-ai .container-xxl,
#risultati .container-xxl,
#benefici .container-xxl,
#settori .container-xxl,
#percorso .container-xxl,
#testimonianze .container-xxl,
#faq .container-xxl,
#contatti .container-xxl {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.93), rgba(15, 23, 42, 0.9));
  border-radius: 1.75rem;
  padding: 2.4rem 2.3rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
}

/* ----- Hero ----- */

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.hero-lead {
  color: var(--text-muted);
}

.hero-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  font-size: 0.85rem;
  gap: 0.4rem;
}

.badge-pill-soft {
  background: rgba(198, 255, 47, 0.12);
  border-color: rgba(198, 255, 47, 0.35);
  color: var(--accent-strong);
}

/* Hero metrics */

.hero-metrics {
  margin-top: 0.7rem;
}

.metric-card {
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.35), #020617);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.7);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.metric-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero panel */

.hero-panel {
  border-radius: 1.6rem;
  background: linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.96),
      rgba(6, 78, 59, 0.96)
    );
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem;
}

.hero-panel-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  padding-bottom: 0.6rem;
}

.hero-panel-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-panel-subtitle {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero-rating-value {
  font-weight: 700;
  color: var(--accent-strong);
}

.hero-rating-value i {
  color: #facc15;
  margin-right: 0.1rem;
}

.hero-rating-caption {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.hero-panel-body {
  margin-top: 1rem;
}

.mini-card {
  border-radius: 1rem;
  padding: 0.75rem 0.85rem;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.mini-card-label {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.mini-card-value {
  font-size: 1.2rem;
  font-weight: 700;
}

.mini-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Timeline preview */

.timeline-preview {
  margin-top: 0.5rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 0.9rem 1rem;
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0;
}

.timeline-row + .timeline-row {
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
  margin-top: 0.4rem;
  padding-top: 0.6rem;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.timeline-dot.dot-green {
  background: #22c55e;
}

.timeline-dot.dot-amber {
  background: #fbbf24;
  box-shadow: 0 0 10px rgba(248, 191, 60, 0.85);
}

.timeline-label {
  font-size: 0.95rem;
  font-weight: 600;
}

.timeline-caption {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.timeline-badge,
.badge-soft {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.badge-soft {
  border-color: rgba(248, 191, 60, 0.7);
  color: #facc15;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
}

/* Trust bar */

.trust-bar {
  margin-top: 2.4rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  backdrop-filter: blur(10px);
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-pill {
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #e5e7eb;
}

/* ----- Cards in sections ----- */

.card-step,
.card-module {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, #0c1727, #020617);
  color: var(--text-main);
  box-shadow: var(--shadow-card);
}

.card-step .card-body,
.card-module .card-body {
  padding: 1.3rem 1.4rem;
}

.card-step .card-text,
.card-module .card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Icons */

.icon-circle,
.icon-square {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  box-shadow: 0 0 18px rgba(198, 255, 47, 0.4);
}

.icon-square {
  border-radius: 1rem;
}

/* Data panel */

.data-panel img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-card);
}

/* Feature list */

.feature-list {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 128, 61, 0.25);
  color: #bbf7d0;
}

/* Benefit cards */

.benefit-card {
  border-radius: var(--radius-md);
  padding: 1.2rem 1.25rem;
  background: linear-gradient(145deg, #050b14, #101827);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.75);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Sector cards */

.sector-card {
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(6, 182, 212, 0.25), #020617);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-card);
}

.sector-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.95);
  color: var(--accent-strong);
  margin-bottom: 0.7rem;
}

/* Implementation steps */

.implementation-steps {
  list-style: none;
  padding-left: 0;
  border-left: 1px solid rgba(148, 163, 184, 0.5);
  margin-left: 0.3rem;
}

.implementation-steps li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.2rem;
}

.implementation-steps li::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(198, 255, 47, 0.9);
}

.implementation-steps p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Side highlight */

.side-highlight {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top, rgba(198, 255, 47, 0.12), #020617);
  box-shadow: var(--shadow-card);
}

/* Testimonials */

.testimonial-card {
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  background: linear-gradient(145deg, #020617, #0b1525);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-card);
}

.testimonial-text {
  font-style: italic;
  color: #e5e7eb;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* FAQ */

.accordion-item {
  border-radius: var(--radius-md) !important;
  border: 1px solid rgba(148, 163, 184, 0.55);
  overflow: hidden;
  background: #020617;
}

.accordion-item + .accordion-item {
  margin-top: 0.6rem;
}

.accordion-button {
  background: linear-gradient(90deg, #020617, #061321);
  color: var(--text-main);
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #06151f, #051439);
  color: var(--accent-strong);
  box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.7);
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background: #020617;
  color: var(--text-muted);
}

/* Contact */

.contact-info-card {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px dashed rgba(148, 163, 184, 0.7);
  color: var(--text-main);
}

.contact-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #020617, #071525);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.contact-card .form-label {
  font-size: 0.95rem;
  color: #e5e7eb;
}

.form-control,
.form-select {
  background-color: #020617;
  border-radius: 0.8rem;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text-main);
}

.form-control:focus,
.form-select:focus {
  background-color: #020617;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(198, 255, 47, 0.35);
}

.form-check-input {
  border-radius: 0.4rem;
  border-color: rgba(148, 163, 184, 0.7);
  background-color: #020617;
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.newsletter-card {
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.8);
  color: var(--text-main);
}

/* ----- Footer ----- */

.site-footer {
  background: radial-gradient(circle at top, #020617, #020308 70%);
  color: var(--text-main);
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-strong);
  text-decoration: none;
}

.social-pill {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  transition: all 0.18s ease-out;
}

.social-pill:hover {
  color: #020617;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(198, 255, 47, 0.7);
}

/* ----- Cookie banner ----- */

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 1050;
  padding: 0.9rem;
  background: radial-gradient(circle at top, #020617, #020308);
  border-top: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.65);
  transform: translateY(0);
  transition: transform 0.22s ease-out, opacity 0.22s ease-out;
}

.cookie-banner-inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.cookie-link {
  color: var(--accent-strong);
  text-decoration: underline;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

/* ----- Modal success (формы) ----- */

.modal-success {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #020617, #0b1727);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-main);
}

.modal-success .modal-body {
  color: var(--text-muted);
}

/* Utility */

.contact-info-card a {
  color: var(--accent-strong);
}

.contact-info-card a:hover {
  color: var(--accent);
}

/* ----- Responsive tweaks ----- */

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    background-attachment: scroll; /* чтобы не лагало на мобилках */
  }

  #come-funziona,
  #moduli-ai,
  #risultati,
  #benefici,
  #settori,
  #percorso,
  #testimonianze,
  #faq,
  #contatti {
    background-attachment: scroll;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 3rem 0;
  }

  #come-funziona .container-xxl,
  #moduli-ai .container-xxl,
  #risultati .container-xxl,
  #benefici .container-xxl,
  #settori .container-xxl,
  #percorso .container-xxl,
  #testimonianze .container-xxl,
  #faq .container-xxl,
  #contatti .container-xxl {
    border-radius: 1.25rem;
    padding: 1.8rem 1.4rem;
  }

  .hero-panel {
    margin-top: 1.5rem;
  }

  .trust-bar {
    padding-inline: 1rem;
  }
}
.text-muted {
  color: #fff!important;
}