/* ═══════════════════════════════════════════════════
   Assistenza Sito Web — MLP Studio — Modern 2026
   ═══════════════════════════════════════════════════ */

html { scroll-padding-top: 80px; scroll-behavior: smooth; }

:root {
  --blue:           #017191;
  --blue-dark:      #015f7a;
  --blue-deep:      #1a3a4a;
  --blue-deeper:    #0f2631;
  --amber:          #f89d02;
  --amber-dark:     #d88700;
  --amber-glow:     rgba(248, 157, 2, 0.25);
  --dark:           #1f2933;
  --dark-light:     #3e4c59;
  --teal:           #64c8c8;
  --cream:          #f8f0ea;
  --bg:             #ffffff;
  --bg-soft:        #f5f7fa;
  --ink:            #0c1d22;
  --ink-soft:       #4a5568;
  --muted:          #7a8ea0;
  --border:         #e2e8f0;
  --radius:         20px;
  --radius-sm:      14px;
  --radius-xs:      10px;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --transition:     0.35s var(--ease);
  --font:           'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.6; overflow-x: hidden; margin: 0;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, p { font-family: var(--font); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { font-size: 1rem; line-height: 1.7; font-weight: 400; color: var(--ink-soft); }
a { color: inherit; text-decoration: none !important; }
img { max-width: 100%; display: block; }
.alert { margin-bottom: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Section headers ─── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head--light { color: #fff; }
.section-head--light h2 { color: #fff; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 18px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px;
  background: rgba(1, 113, 145, 0.08); color: var(--blue);
}
.section-tag--teal { background: rgba(100, 200, 200, 0.15); color: var(--teal); }
.section-desc { color: var(--muted); max-width: 560px; margin: 10px auto 0; }
.section-desc--dark { color: var(--ink-soft); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 50px; font-family: var(--font); font-weight: 700;
  font-size: 0.92rem; padding: 14px 32px; cursor: pointer;
  transition: all var(--transition); white-space: nowrap; text-decoration: none !important;
}
.btn:focus-visible { outline: 3px solid rgba(1, 113, 145, 0.3); outline-offset: 2px; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--accent {
  background: var(--amber); color: #fff;
  box-shadow: 0 4px 20px var(--amber-glow);
}
.btn--accent:hover {
  background: var(--amber-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 32px var(--amber-glow);
}

.btn--outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--border);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(1, 113, 145, 0.04); }

.btn--outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--blue-deeper);
  padding: 0 48px; height: 100px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s var(--ease);
}
.navbar.navbar--hidden { transform: translateY(-100%); }
.navbar-header { flex-shrink: 0; display: flex; align-items: center; }
.navbar .navbar-brand { display: flex; align-items: center; }
.navbar .navbar-brand img { width: 200px; height: auto; }
.navbar .navbar-brand .logo-dark  { display: none; }
.navbar .navbar-brand .logo-light { display: block; }
.navbar-collapse { display: contents; }
.navbar .nav-a-link { display: flex; align-items: center; gap: 2px; margin-left: auto; height: 100%; }
.navbar .nav-a-link .nav-link {
  color: rgba(255,255,255,0.65); font-size: 0.88rem; font-weight: 600;
  padding: 8px 16px; border-radius: 50px; transition: all 0.25s ease; white-space: nowrap;
}
.navbar .nav-a-link .nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.navbar .nav-a-link a:hover { color: #fff; text-decoration: none !important; }
.nav-link--cta {
  background: var(--amber) !important; color: #fff !important;
  font-weight: 700 !important; padding: 8px 22px !important;
  margin-left: 8px;
  box-shadow: 0 2px 12px var(--amber-glow);
}
.nav-link--cta:hover {
  background: var(--amber-dark) !important; color: #fff !important;
  transform: translateY(-1px); box-shadow: 0 4px 18px var(--amber-glow);
}

/* Hamburger */
.navbar-toggler {
  display: none; background: transparent;
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-xs);
  cursor: pointer; padding: 10px; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.navbar-toggler span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.navbar-toggler.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.navbar-toggler.active span:nth-child(2) { opacity: 0; }
.navbar-toggler.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 1100px) and (min-width: 1001px) {
  .navbar { padding: 0 24px; }
  .navbar .nav-a-link .nav-link { font-size: 0.8rem; padding: 7px 10px; }
  .nav-link--cta { padding: 7px 16px !important; }
}
@media (max-width: 1000px) {
  .navbar { padding: 0 16px; height: auto; padding: 14px 16px; flex-wrap: wrap; }
  .navbar-toggler { display: flex; }
  .navbar-collapse { display: none; width: 100%; flex-direction: column; padding-top: 16px; }
  .navbar-collapse.show { display: flex; }
  .navbar .nav-a-link { flex-direction: column; width: 100%; gap: 6px; }
  .navbar .nav-a-link .nav-link { width: 100%; text-align: center; padding: 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); font-size: 0.95rem; }
  .nav-link--cta { margin-left: 0 !important; }
}

/* ═══════════════ HERO ═══════════════ */
.hero-section {
  position: relative; padding: 130px 0 110px; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-deeper) 0%, var(--blue-deep) 40%, #0a3d52 100%);
  color: #fff;
}

.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; z-index: 0;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,38,49,0.82) 0%, rgba(1,95,122,0.75) 40%, rgba(10,61,82,0.80) 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb--1 { width: 500px; height: 500px; top: -15%; left: -10%; background: rgba(1, 113, 145, 0.35); }
.hero-orb--2 { width: 400px; height: 400px; bottom: -20%; right: -5%; background: rgba(100, 200, 200, 0.25); animation-delay: 3s; }
.hero-orb--3 { width: 300px; height: 300px; top: 30%; right: 20%; background: rgba(248, 157, 2, 0.15); animation-delay: 5s; }
@keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, -20px) scale(1.1); } }

.hero-section > .container { position: relative; z-index: 2; }
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; text-align: center; }

.hero-title { color: #fff; margin-bottom: 24px; margin-top: 0; }
.hero-gradient {
  background: linear-gradient(135deg, var(--amber), #ffca28);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text { font-size: 1.2rem; color: rgba(255,255,255,0.65); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn--teal {
  background: var(--teal); color: var(--blue-deeper);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(100, 200, 200, 0.3);
}
.btn--teal:hover {
  background: #7ad4d4; color: var(--blue-deeper);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(100, 200, 200, 0.4);
}

.btn--blue {
  background: var(--blue); color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(1, 113, 145, 0.3);
}
.btn--blue:hover {
  background: var(--blue-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(1, 113, 145, 0.4);
}

@media (max-width: 768px) {
  .hero-section { padding: 100px 0 80px; }
  .hero-text { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
}

/* ═══════════════ TRUST BAR ═══════════════ */
.trust-bar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 32px 0;
}
.trust-item { flex: 1; text-align: center; }
.trust-num { display: block; font-size: 2rem; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; }
.trust-label { display: block; font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-top: 2px; }
.trust-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

@media (max-width: 768px) {
  .trust-grid { flex-wrap: wrap; gap: 24px; }
  .trust-divider { display: none; }
  .trust-item { flex: 0 0 45%; }
  .trust-num { font-size: 1.6rem; }
}

/* ═══════════════ HIGHLIGHTS (BENTO) ═══════════════ */
.highlights-section { padding: 100px 0; background: var(--bg-soft); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0; transition: opacity var(--transition);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.bento-card:hover::before { opacity: 1; }

.bento-card--large { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.bento-card--wide { grid-column: span 2; }

.bento-card--img {
  background-size: cover; background-position: center; color: #fff; border-color: transparent;
}
.bento-card--img .bento-icon,
.bento-card--img h3,
.bento-card--img p { position: relative; z-index: 2; color: #fff; }
.bento-card--img .bento-icon { background: rgba(100, 200, 200, 0.2); color: var(--teal); }
.bento-card--img::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(15,38,49,0.82) 0%, rgba(1,95,122,0.72) 50%, rgba(10,61,82,0.80) 100%);
  z-index: 1;
}
.bento-card--img::before { background: linear-gradient(90deg, var(--teal), var(--amber)); z-index: 3; }

.bento-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  background: rgba(1, 113, 145, 0.08); color: var(--blue);
}
.bento-card--blue .bento-icon { background: rgba(100, 200, 200, 0.15); color: var(--teal); }
.bento-card--amber .bento-icon { background: rgba(248, 157, 2, 0.1); color: var(--amber); }

.bento-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.bento-card p { font-size: 0.92rem; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--large { grid-row: span 1; }
}
@media (max-width: 576px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
}

/* ═══════════════ SERVICES ═══════════════ */
.services-section { padding: 100px 0; background: var(--cream); }

.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch; margin-bottom: 56px;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.service-block:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }
.service-block:last-child { margin-bottom: 0; }

.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }

.service-media { position: relative; overflow: hidden; min-height: 380px; }
.service-media__inner { position: absolute; inset: 0; }
.service-media__inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-block:hover .service-media__inner img { transform: scale(1.05); }
.service-media__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1, 113, 145, 0.7) 0%, rgba(26, 58, 74, 0.5) 100%);
  mix-blend-mode: multiply;
}
.service-media__overlay--amber {
  background: linear-gradient(135deg, rgba(248, 157, 2, 0.6) 0%, rgba(26, 58, 74, 0.5) 100%);
}
.service-media__overlay--teal {
  background: linear-gradient(135deg, rgba(100, 200, 200, 0.6) 0%, rgba(26, 58, 74, 0.5) 100%);
}

.service-text {
  padding: 48px 44px; display: flex; flex-direction: column; justify-content: center;
}

.service-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}

.service-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-deep); color: var(--teal);
  font-size: 0.85rem; font-weight: 800;
}

.service-tag {
  display: inline-flex; padding: 6px 16px; border-radius: 50px;
  background: rgba(1, 113, 145, 0.08); color: var(--blue);
  font-weight: 700; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.12em;
}
.service-tag--amber { background: rgba(248, 157, 2, 0.08); color: var(--amber-dark); }
.service-tag--teal { background: rgba(100, 200, 200, 0.1); color: #3aafaf; }

.service-text h2 {
  font-weight: 800; color: var(--ink); margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); line-height: 1.2;
}
.service-text p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; margin-bottom: 20px; }

.service-checks {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px;
}
.service-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
}
.service-checks li i {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(100, 200, 200, 0.12); color: var(--teal);
  font-size: 0.65rem; display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .service-block, .service-block--reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-media { min-height: 260px; }
  .service-text { padding: 32px 28px; }
}
@media (max-width: 576px) {
  .service-media { min-height: 200px; }
  .service-text { padding: 28px 22px; }
}

/* ═══════════════ PRICING ═══════════════ */
.pricing-section {
  position: relative; padding: 120px 0; overflow: hidden; z-index: 1;
  background: linear-gradient(160deg, var(--blue-deeper) 0%, var(--blue-deep) 50%, #0b4458 100%);
  color: #fff;
}
.pricing-bg { position: absolute; inset: 0; pointer-events: none; }
.pricing-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.pricing-orb--1 { width: 600px; height: 600px; top: -20%; right: -10%; background: rgba(100, 200, 200, 0.15); }
.pricing-orb--2 { width: 400px; height: 400px; bottom: -10%; left: -5%; background: rgba(248, 157, 2, 0.12); }

.pricing-toggle-wrap { display: flex; justify-content: center; position: relative; }
.pricing-toggle {
  display: inline-flex; gap: 4px; padding: 5px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; margin-bottom: 48px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.pricing-toggle__btn {
  border: none; background: transparent; color: rgba(255,255,255,0.5);
  font-weight: 700; padding: 10px 24px; border-radius: 50px;
  cursor: pointer; transition: all 0.25s ease; font-family: var(--font); font-size: 0.88rem;
}
.pricing-toggle__btn.is-active {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 20px rgba(1, 113, 145, 0.4);
}
.pricing-toggle__btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px; position: relative;
}

.pricing-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }

.pricing-card::before {
  content: ''; display: block; height: 4px; width: calc(100% + 56px);
  margin: -32px -28px 28px; background: rgba(255,255,255,0.06);
}
.pricing-card--base::before    { background: linear-gradient(90deg, var(--blue), var(--teal)); }
.pricing-card--essential::before { background: linear-gradient(90deg, var(--amber), #ffca28); }
.pricing-card--full::before    { background: linear-gradient(90deg, var(--dark-light), #8896a4); }

.pricing-card--featured {
  background: rgba(255,255,255,0.08);
  border-color: rgba(248, 157, 2, 0.3);
  box-shadow: 0 0 40px rgba(248, 157, 2, 0.08);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-14px); }

.pricing-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--amber); color: #fff; font-weight: 800;
  padding: 5px 14px; border-radius: 50px; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: 0 4px 14px var(--amber-glow);
}

.pricing-card__label { font-size: 0.78rem; letter-spacing: 0.14em; font-weight: 800; margin-bottom: 4px; text-transform: uppercase; }
.pricing-card--base .pricing-card__label    { color: var(--teal); }
.pricing-card--essential .pricing-card__label { color: var(--amber); }
.pricing-card--full .pricing-card__label    { color: rgba(255,255,255,0.85); }

.pricing-card__title { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; color: #fff; }
.pricing-card__ideal { color: rgba(255,255,255,0.85); margin-bottom: 14px; font-size: 0.9rem; }

.pricing-card__price { display: flex; flex-direction: column; gap: 4px; margin: 12px 0 20px; }
.pricing-amount { font-size: 2.4rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.pricing-period { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.pricing-iva { color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 500; }
.pricing-savings { color: var(--teal); font-size: 0.85rem; font-weight: 700; min-height: 20px; }

.pricing-card__meta {
  list-style: none; padding: 14px 0; margin: 0 0 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-card__meta li { padding: 6px 0; font-size: 0.9rem; color: #fff; }
.pricing-card__meta li strong { color: #fff; }

.pricing-card__list { margin-bottom: 20px; flex: 1; }
.pricing-card__subtitle { font-weight: 800; margin-bottom: 10px; color: #fff; font-size: 0.92rem; }
.pricing-card__list ul { padding-left: 18px; margin: 0; color: #fff; font-size: 0.88rem; line-height: 1.9; }

.pricing-card__cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

.pricing-btn {
  font-weight: 700; border-radius: 50px; padding: 14px 24px; font-size: 0.95rem;
  text-align: center; transition: all var(--transition); border: none; cursor: pointer;
  font-family: var(--font);
}
.pricing-btn--base    { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(1, 113, 145, 0.3); }
.pricing-btn--base:hover { background: #008daf; box-shadow: 0 8px 28px rgba(1, 113, 145, 0.4); color: #fff; transform: translateY(-2px); }
.pricing-btn--essential { background: var(--amber); color: #fff; box-shadow: 0 4px 16px var(--amber-glow); }
.pricing-btn--essential:hover { background: var(--amber-dark); box-shadow: 0 8px 28px var(--amber-glow); color: #fff; transform: translateY(-2px); }
.pricing-btn--full    { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.pricing-btn--full:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); color: #fff; }

.pricing-link { color: rgba(255,255,255,0.8); font-weight: 600; font-size: 0.88rem; text-align: center; transition: color var(--transition); }
.pricing-link:hover { color: #fff; }
.pricing-link--light { color: rgba(255,255,255,0.85); }

/* Pricing extras */
.pricing-extra {
  margin-top: 48px; display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px; position: relative;
  backdrop-filter: blur(12px);
}
.pricing-extra__icon {
  width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(100, 200, 200, 0.12); color: var(--teal); border-radius: var(--radius-sm);
  font-size: 1.2rem;
}
.pricing-extra h3 { color: #fff; margin-bottom: 8px; }
.pricing-extra p { color: #fff; font-size: 0.95rem; margin: 0; }
.pricing-extra__note { margin-top: 10px !important; color: rgba(255,255,255,0.75) !important; font-size: 0.88rem !important; }

.pricing-compare {
  margin-top: 48px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.pricing-compare h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0; }
.pricing-compare__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 16px; margin-top: 18px; }
.pricing-compare__head { font-weight: 800; color: var(--teal); font-size: 0.88rem; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.pricing-compare__row { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; color: #fff; }

.pricing-value {
  margin-top: 48px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 36px; position: relative;
}
.pricing-value__top { display: flex; gap: 18px; align-items: center; margin-bottom: 28px; }
.pricing-value__icon {
  width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(1, 113, 145, 0.15); color: var(--teal); border-radius: var(--radius-sm); font-size: 1.2rem;
}
.pricing-value h3 { color: #fff; margin-bottom: 4px; }
.pricing-value__lead { margin: 0; font-weight: 700; color: var(--teal); font-size: 1.05rem; }
.pricing-value ul {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 24px;
  font-size: 0.95rem; color: #fff;
}
.pricing-value ul li { display: flex; align-items: center; gap: 10px; }
.pricing-value ul li i { color: var(--teal); font-size: 0.9rem; flex-shrink: 0; }

@media (max-width: 991px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .pricing-extra { flex-direction: column; }
  .pricing-value ul { grid-template-columns: 1fr 1fr; }
  .pricing-compare__head, .pricing-compare__row { font-size: 0.78rem; }
}
@media (max-width: 575px) {
  .pricing-toggle { width: 100%; }
  .pricing-toggle__btn { flex: 1; padding: 10px 8px; font-size: 0.82rem; }
  .pricing-compare__head, .pricing-compare__row { font-size: 0.7rem; padding: 6px 0; }
  .pricing-value ul { grid-template-columns: 1fr; }
}

/* ═══════════════ ASSISTENZA IMMEDIATA ═══════════════ */
.immediata-section { background: var(--bg-soft); padding: 100px 0; }

.immediata-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start;
}
.immediata-info {
  background: var(--bg); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.immediata-info h3 { font-weight: 800; margin-bottom: 24px; color: var(--ink); }

.immediata-steps { display: flex; flex-direction: column; gap: 20px; }
.immediata-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.immediata-step__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(1, 113, 145, 0.08); color: var(--blue); font-size: 1.1rem;
}
.immediata-step strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 2px; }
.immediata-step p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.5; }

.immediata-card {
  background: var(--bg); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.immediata-card h3 { font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.immediata-card__sub { color: var(--muted); font-size: 0.85rem; margin-bottom: 20px; }

.immediata-card textarea.form-control { resize: vertical; min-height: 120px; }

.immediata-btn {
  width: 100%; padding: 14px 24px; border: none; border-radius: var(--radius-xs);
  background: var(--blue); color: #fff; font-family: var(--font);
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all var(--transition); display: flex; align-items: center;
  justify-content: center; gap: 10px;
}
.immediata-btn:hover { background: var(--blue-dark); box-shadow: 0 8px 24px rgba(1, 113, 145, 0.3); color: #fff; }
.immediata-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.immediata-alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px; border-radius: var(--radius-xs); margin-top: 20px;
}
.immediata-alert i { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.immediata-alert strong { display: block; margin-bottom: 2px; }
.immediata-alert p { margin: 0; font-size: 0.88rem; }
.immediata-alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.immediata-alert--success i { color: #22c55e; }
.immediata-alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.immediata-alert--error i { color: #ef4444; }

@media (max-width: 991px) {
  .immediata-wrap { grid-template-columns: 1fr; }
}

/* ═══════════════ CHECKOUT ═══════════════ */
.checkout-section { background: var(--bg-soft); padding: 100px 0; }

.checkout-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start;
}
.checkout-plan {
  background: var(--bg); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.checkout-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.checkout-tab {
  border: none; background: var(--bg-soft); color: var(--muted); font-weight: 700;
  padding: 10px 18px; border-radius: 50px; cursor: pointer;
  transition: all 0.25s ease; font-family: var(--font); font-size: 0.88rem;
}
.checkout-tab.is-active { color: #fff; }
.checkout-tab.is-active[data-plan="base"]      { background: var(--blue); box-shadow: 0 6px 18px rgba(1, 113, 145, 0.3); }
.checkout-tab.is-active[data-plan="essential"]  { background: var(--amber); color: #fff; box-shadow: 0 6px 18px var(--amber-glow); }
.checkout-tab.is-active[data-plan="full"]       { background: var(--dark); box-shadow: 0 6px 18px rgba(31, 41, 51, 0.3); }
.checkout-tab:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.checkout-label { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; margin-bottom: 6px; }
.checkout-info h3 { font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.checkout-info ul { padding-left: 18px; margin: 10px 0 0; color: var(--ink-soft); font-size: 0.95rem; }

.checkout-card {
  background: var(--bg); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.checkout-card h3 { font-weight: 800; color: var(--ink); }
.checkout-subtitle { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 10px; }
.checkout-notice {
  display: flex; align-items: center; gap: 10px;
  color: #c65d00; font-size: 0.88rem; font-weight: 600; margin-bottom: 18px;
  padding: 14px 18px; background: #fff8f1; border: 1px solid #ffe0b2;
  border-radius: var(--radius-xs);
}
.checkout-notice i { font-size: 1rem; flex-shrink: 0; }

.checkout-summary {
  background: var(--bg-soft); border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px; margin-bottom: 18px; transition: all var(--transition);
}
.checkout-summary.plan-base      { border-color: var(--blue); background: rgba(1, 113, 145, 0.04); }
.checkout-summary.plan-essential  { border-color: var(--amber); background: rgba(248, 157, 2, 0.04); }
.checkout-summary.plan-full       { border-color: var(--dark); background: rgba(31, 41, 51, 0.04); }

.checkout-summary__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; }
.checkout-summary__main {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 8px; font-weight: 700; color: var(--ink);
}
.checkout-summary__main span { background: var(--bg); border-radius: 50px; padding: 4px 14px; border: 1px solid var(--border); font-size: 0.88rem; }

.billing-options { display: flex; flex-direction: column; gap: 10px; margin: 14px 0 22px; }
.billing-option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); cursor: pointer; transition: all 0.25s ease;
}
.billing-option:hover { border-color: var(--blue); }
.billing-option.is-selected.plan-base      { border-color: var(--blue); background: rgba(1, 113, 145, 0.04); box-shadow: 0 4px 14px rgba(1, 113, 145, 0.1); }
.billing-option.is-selected.plan-essential  { border-color: var(--amber); background: rgba(248, 157, 2, 0.04); box-shadow: 0 4px 14px rgba(248, 157, 2, 0.1); }
.billing-option.is-selected.plan-full       { border-color: var(--dark); background: rgba(31, 41, 51, 0.04); box-shadow: 0 4px 14px rgba(31, 41, 51, 0.1); }

.billing-option input { accent-color: var(--blue); margin-right: 10px; width: 18px; height: 18px; }
.billing-option__text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.billing-option__title { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.billing-option__desc { font-size: 0.82rem; color: var(--muted); }
.billing-option__price { font-weight: 800; color: var(--ink); font-size: 0.95rem; white-space: nowrap; }
.billing-option:focus-within { outline: 3px solid rgba(1, 113, 145, 0.12); border-color: var(--blue); }

.form-control {
  border: 1.5px solid var(--border); border-radius: var(--radius-xs);
  padding: 12px 16px; font-family: var(--font); font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(1, 113, 145, 0.1); outline: none; }

.form-check-label a { color: var(--blue) !important; font-weight: 600; }
.form-check-label a:hover { text-decoration: underline !important; }

@media (max-width: 991px) {
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-tabs { flex-wrap: wrap; }
}

/* ═══════════════ REVIEWS ═══════════════ */
.reviews-section { padding: 100px 0; background: var(--bg); }
.reviews-section .container { max-width: 1200px; }

.reviews-swiper { position: relative; padding: 10px 0 20px; }
.reviews-swiper .swiper-slide { height: auto; }

.review-card {
  background: var(--bg); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; height: 100%;
  transition: all var(--transition);
}
.review-card:hover { border-color: var(--blue); box-shadow: 0 12px 36px rgba(0,0,0,0.08); transform: none; }

.review-stars { color: var(--amber); font-size: 1rem; margin-bottom: 18px; display: flex; gap: 3px; }
.review-text { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.7; flex: 1; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid var(--border); padding-top: 18px; }
.review-author strong { color: var(--ink); font-size: 0.92rem; font-weight: 700; }
.review-author span { color: var(--muted); font-size: 0.8rem; }

.reviews-swiper .swiper-pagination { position: static !important; margin-top: 36px; }
.reviews-swiper .swiper-pagination-bullet { width: 10px; height: 10px; background: var(--border); opacity: 1; transition: all 0.3s ease; }
.reviews-swiper .swiper-pagination-bullet-active { background: var(--blue); width: 28px; border-radius: 5px; }

.swiper { max-width: 1200px; margin: 0 auto; padding: 20px 0; }

/* ═══════════════ FAQ ═══════════════ */
.faq-box { background: var(--bg-soft); padding: 100px 0; }

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

.faq-box #accordion .card {
  border: none; background: transparent;
  margin-bottom: 10px; box-shadow: none;
  border-radius: var(--radius-sm) !important; overflow: hidden;
}
.faq-box #accordion .card-header {
  background: var(--bg); border: 1px solid var(--border);
  padding: 0; border-radius: var(--radius-sm) !important;
  transition: all var(--transition);
}
.faq-box #accordion .card-header:hover { border-color: var(--blue); }

.faq-box #accordion .btn-link {
  width: 100%; text-align: left; color: var(--ink) !important;
  font-weight: 700; text-decoration: none; font-family: var(--font);
  padding: 20px 52px 20px 24px; display: block; white-space: normal;
  position: relative; line-height: 1.5; font-size: 0.95rem;
}
.faq-box #accordion .btn-link:after {
  content: "+"; font-size: 1.4rem; color: var(--blue); font-weight: 800;
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: rgba(1, 113, 145, 0.06); border-radius: 50%;
  transition: all 0.3s ease;
}
.faq-box #accordion .btn-link[aria-expanded="true"]:after { content: "\2212"; background: var(--blue); color: #fff; }
.faq-box #accordion .btn-link:focus { box-shadow: none; }
.faq-box #accordion .btn-link:focus-visible { outline: 3px solid rgba(1, 113, 145, 0.2); outline-offset: 2px; }

.faq-box #accordion .card-body {
  background: var(--bg); border: 1px solid var(--border); border-top: none;
  padding: 20px 24px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7;
}

@media (max-width: 576px) {
  .faq-box #accordion .btn-link { font-size: 0.88rem; padding: 16px 48px 16px 18px; }
  .faq-box #accordion .btn-link:after { right: 14px; width: 28px; height: 28px; font-size: 1.2rem; }
}

/* ═══════════════ FOOTER HERO ═══════════════ */
.footer-hero {
  padding: 100px 0; background: linear-gradient(160deg, var(--blue-deeper) 0%, var(--blue-deep) 50%, #0b4458 100%); color: #fff;
}
.footer-hero__content {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 56px 48px; text-align: center; max-width: 700px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.footer-hero__logo { height: 44px; width: auto; margin: 0 auto 24px; filter: brightness(0) invert(1); }
.footer-hero__text { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 28px; font-size: 1rem; line-height: 1.7; }
.footer-hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.footer-hero__social { margin-top: 28px; display: flex; justify-content: center; gap: 10px; }
.footer-hero__social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12); display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04);
  transition: all 0.25s ease; font-size: 1.1rem;
}
.footer-hero__social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }

/* ═══════════════ FOOTER ═══════════════ */
.site-footer { background: var(--blue-deeper); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-legal { font-size: 0.78rem !important; color: rgba(255,255,255,0.4) !important; text-align: center; margin: 0; }
.footer-legal a { color: rgba(255,255,255,0.55) !important; transition: color var(--transition); }
.footer-legal a:hover { color: #fff !important; }

/* ═══════════════ FOOTER 2026 (INDEX + TERMS) ═══════════════ */
.footer-cta {
  background: #2c6985;
  padding: 70px 0 64px;
  text-align: center;
}
.footer-cta__inner { max-width: 700px; }
.footer-cta h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
}
.footer-cta p {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 12px auto 28px;
}
.footer-cta .btn {
  min-width: 170px;
  box-shadow: 0 10px 24px rgba(248, 157, 2, 0.32);
}
.footer-cta .btn i { font-size: 0.9rem; }

.footer-panel {
  background: #152a38;
  color: #d8e1e7;
}
.footer-panel__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 54px 0 34px;
}
.footer-col h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 14px;
}
.footer-col p {
  color: rgba(216,225,231,0.72);
  margin: 0;
  font-size: 0.95rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .footer-logo-mlp { height: 30px; filter: brightness(0) invert(1); }
.footer-brand .footer-logo-assistenza { height: 32px; filter: none; }
.footer-brand span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.footer-social a:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.footer-contacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 28px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.23);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  padding: 14px 16px;
  transition: all 0.25s ease;
}
.footer-contact i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(100, 200, 200, 0.18);
  color: #9bd8d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-contact span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(216,225,231,0.58);
}
.footer-contact strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.footer-contact:hover {
  border-color: rgba(248, 157, 2, 0.65);
  background: rgba(248, 157, 2, 0.08);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 14px 0;
}
.footer-bottom__legal {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(216,225,231,0.55);
}
.footer-bottom__legal a {
  color: rgba(216,225,231,0.9);
  text-decoration: none !important;
}
.footer-bottom__legal a:hover { color: #fff; }

@media (max-width: 991px) {
  .footer-panel__top { grid-template-columns: 1fr; gap: 24px; }
  .footer-contacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
  .footer-cta { padding: 58px 0 52px; }
  .footer-contacts { grid-template-columns: 1fr; }
  .footer-contact strong { font-size: 0.88rem; }
  .footer-bottom__legal { font-size: 0.7rem; line-height: 1.6; }
}

/* ═══════════════ ALERT REGISTERED ═══════════════ */
.alert-already-registered {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(135deg, #fff8f0, #fff3e6); border: 2px solid var(--amber);
  border-radius: var(--radius-sm); padding: 22px; margin: 20px 0;
  animation: slideIn 0.4s ease-out;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.alert-already-registered__icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark)); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.25rem;
  box-shadow: 0 4px 14px var(--amber-glow);
}
.alert-already-registered__content { flex: 1; }
.alert-already-registered__content strong { display: block; font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.alert-already-registered__content p { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 14px; line-height: 1.5; }
.alert-already-registered__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.alert-already-registered__actions .btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; border-radius: var(--radius-xs); padding: 10px 18px; font-size: 0.88rem; }
.alert-already-registered__actions .btn-outline-primary { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.alert-already-registered__actions .btn-outline-primary:hover { background: var(--blue); color: #fff; }
.alert-already-registered__actions .btn-primary { background: var(--blue); border: 2px solid var(--blue); color: #fff; }
.alert-already-registered__actions .btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

@media (max-width: 576px) {
  .alert-already-registered { flex-direction: column; text-align: center; align-items: center; }
  .alert-already-registered__actions { justify-content: center; }
}

/* ═══════════════ LEGACY COMPAT ═══════════════ */
.color-text { color: var(--blue) !important; }
.color { color: var(--blue); }
.colorato { color: var(--amber); }
.sfondogrigio { background: var(--bg-soft); }
.sfondoColorato { background: var(--blue); }
.sfondoColorato h2, .sfondoColorato p, .sfondoColorato label, .sfondoColorato .text-muted, .sfondoColorato small { color: #fff !important; }
.btn-link { color: var(--blue) !important; }
.center { display: flex; justify-content: center; align-items: center; text-align: center; }

/* Checkout iva text on light bg */
.checkout-section .pricing-iva { color: var(--muted); }
.checkout-card .pricing-iva { color: var(--muted); }

/* ═══════════════ TERMS PAGES ═══════════════ */
.terms-hero {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue) 100%);
  padding: 110px 20px 70px; text-align: center;
}
.terms-hero h1 { color: #fff; font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.terms-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.terms-hero .terms-update { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 16px; }
.terms-content { padding: 60px 20px 80px; max-width: 820px; margin: 0 auto; }
.terms-content h3 { color: var(--blue); font-size: 1.25rem; font-weight: 700; margin-top: 36px; margin-bottom: 14px; }
.terms-content p { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }
.terms-content a { color: var(--blue); text-decoration: underline !important; }
.terms-content ul { color: var(--ink-soft); margin: 12px 0 20px; padding-left: 24px; }
.terms-content ul li { margin-bottom: 8px; line-height: 1.7; }

/* ═══════════════ STATUS PAGES ═══════════════ */
.status-page { background: var(--bg-soft); min-height: 100vh; }
.status-page__main { padding: 80px 0 100px; }
.status-card { background: var(--bg); border-radius: var(--radius); padding: 40px; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.1); max-width: 900px; margin: 0 auto; }
.status-icon { width: 90px; height: 90px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 2.4rem; margin-bottom: 20px; }
.status-icon--success { background: #e8f5e9; color: #2e7d32; }
.status-icon--error { background: #ffebee; color: #c62828; }
.status-title { font-weight: 800; color: var(--ink); }
.status-subject { font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; }
.status-greeting { font-size: 1rem; color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.status-lead { font-size: 1.05rem; color: var(--ink-soft); }
.status-note { color: var(--muted); margin-bottom: 20px; }
.status-steps { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 20px; border: 1px solid var(--border); margin: 24px 0; }
.status-list { margin: 12px 0 0; padding-left: 18px; color: var(--ink-soft); }
.status-details { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 20px; border: 1px solid var(--border); margin-top: 20px; }
.status-actions { margin-top: 20px; }
.status-support { color: var(--ink-soft); margin: 0; }

.list-group-item { border-color: var(--blue); border-left: none; border-right: none; }
.mini-text p { font-size: 0.8rem !important; }
