:root {
  --bg: #ffffff;
  --surface: #f3f7fb;
  --surface-2: #e8f0f8;
  --card: #ffffff;
  --text: #071b35;
  --muted: #5d6b7c;

  --blue: #071b35;
  --blue-2: #0d2b52;
  --blue-3: #123d72;

  --line: #d7e1eb;
  --accent: #123d72;
  --accent-soft: rgba(18, 61, 114, 0.10);

  --shadow: 0 24px 70px rgba(7, 27, 53, 0.13);
  --radius: 26px;
}

body.dark-theme {
  --bg: #07111f;
  --surface: #0b1728;
  --surface-2: #101f34;
  --card: #111f33;
  --text: #eef5ff;
  --muted: #aab8ca;

  --blue: #dcecff;
  --blue-2: #9fc2f2;
  --blue-3: #6ea0df;

  --line: rgba(255,255,255,0.12);
  --accent: #8fb6e8;
  --accent-soft: rgba(143, 182, 232, 0.12);

  --shadow: 0 24px 70px rgba(0,0,0,0.32);
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}

a {
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER PREMIUM */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  padding: 0 14px;
}

.nav-container {
  width: min(1440px, 100%);
  margin: auto;
  height: 86px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 12px 40px rgba(7,27,53,0.08);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 26px;
}

body.dark-theme .nav-container {
  background: rgba(10,20,35,0.78);
  border: 1px solid rgba(255,255,255,0.06);
}



.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  grid-column: 2;
}

.desktop-nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 14px;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active-link {
  background: rgba(18,61,114,0.08);
  color: #123d72;
}

body.dark-theme .desktop-nav a:hover,
body.dark-theme .desktop-nav a.active-link {
  background: rgba(255,255,255,0.08);
  color: white;
}

/* SWITCH TEMA */

.theme-switch {
  width: 74px;
  height: 38px;
  background: #e7edf5;
  border-radius: 999px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  cursor: pointer;
  justify-self: end;
  grid-column: 3;
  transition: 0.25s ease;
}

body.dark-theme .theme-switch {
  background: #17314f;
}

.theme-icon {
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.switch-circle {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  transition: 0.25s ease;
}

body.dark-theme .switch-circle {
  transform: translateX(36px);
}

/* MOBILE NAV */

.mobile-nav {
  display: none;
}

/* HERO */

.hero {
  position: relative;
  padding: 118px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #eef5fb 0%, #ffffff 46%, #e7f0f8 100%);
}

body.dark-theme .hero {
  background:
    linear-gradient(135deg, #07111f 0%, #0b1728 55%, #101f34 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,27,53,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,27,53,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

body.dark-theme .hero::before {
  opacity: 0.26;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.9;
  animation: floatAmbient 8s ease-in-out infinite;
}

.ambient-one {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 70px;
  background: radial-gradient(circle, rgba(18,61,114,0.22), transparent 70%);
}

.ambient-two {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(7,27,53,0.15), transparent 70%);
  animation-delay: 1.8s;
}

body.dark-theme .ambient-two {
  background: radial-gradient(circle, rgba(143,182,232,0.14), transparent 70%);
}

@keyframes floatAmbient {
  0%, 100% { 
    transform: translateY(0); 
  }

  50% { 
    transform: translateY(-18px); 
  }
}

/* LOGO CENTRALE HERO */

/* BRAND CENTRALE HERO — SIMBOLO CSS */

.hero-brand {
  position: relative;
  z-index: 5;
  width: fit-content;
  margin: 0 auto 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-symbol {
  position: relative;
  width: 118px;
  height: 104px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  filter: drop-shadow(0 18px 30px rgba(7, 27, 53, 0.16));
}

.brand-symbol::before {
  content: "";
  position: absolute;
  inset: 8px 0 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(18, 61, 114, 0.18),
    rgba(18, 61, 114, 0.07),
    transparent 72%
  );
  filter: blur(12px);
  transform: translateY(14px) scale(1.05);
}

.binder {
  position: relative;
  width: 30px;
  height: 78px;
  border-radius: 8px 8px 5px 5px;
  background: linear-gradient(180deg, #1e5f9f 0%, #0b315f 100%);
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.36),
    inset 0 -8px 18px rgba(0,0,0,0.16);
}

.binder-left {
  transform: rotate(-8deg) translateX(5px);
  height: 70px;
  opacity: 0.95;
}

.binder-center {
  height: 86px;
  width: 32px;
  z-index: 2;
  background: linear-gradient(180deg, #2c75b9 0%, #08284e 100%);
}

.binder-right {
  transform: rotate(10deg) translateX(-5px);
  height: 74px;
  background: linear-gradient(180deg, #69a9df 0%, #164f86 100%);
}

.binder span {
  position: absolute;
  left: 7px;
  right: 7px;
  top: 12px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  box-shadow:
    0 13px 0 rgba(255,255,255,0.36),
    0 26px 0 rgba(255,255,255,0.20);
}

.binder i {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.88);
  background: rgba(7, 27, 53, 0.20);
}

.symbol-base {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 104px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(18,61,114,0.34),
    transparent
  );
  filter: blur(0.2px);
}

.hero-brand-copy strong {
  display: block;
  color: #071b35;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.2px;
  margin: 0;
}

.hero-brand-copy p {
  margin-top: 10px;
  color: #5d6b7c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

/* DARK MODE BRAND */

body.dark-theme .brand-symbol {
  filter:
    drop-shadow(0 0 20px rgba(105, 169, 223, 0.22))
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

body.dark-theme .brand-symbol::before {
  background: radial-gradient(
    circle,
    rgba(105, 169, 223, 0.30),
    rgba(105, 169, 223, 0.12),
    transparent 74%
  );
}

body.dark-theme .binder {
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    inset 0 -8px 18px rgba(0,0,0,0.22);
}

body.dark-theme .symbol-base {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(105,169,223,0.48),
    transparent
  );
}

body.dark-theme .hero-brand-copy strong {
  color: #f4f8fc;
}

body.dark-theme .hero-brand-copy p {
  color: #b9c9da;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 58px;
  align-items: center;
}

.mini-label,
.simple-tag,
.section-title span {
  display: inline-block;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(18,61,114,0.14);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

body.dark-theme .mini-label,
body.dark-theme .simple-tag,
body.dark-theme .section-title span {
  border-color: rgba(143,182,232,0.18);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -2.8px;
  color: var(--text);
}

.hero p {
  margin-top: 26px;
  max-width: 620px;
  font-size: 19px;
  color: var(--muted);
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #071b35, #123d72);
  color: white;
  box-shadow: 0 18px 45px rgba(7,27,53,0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-stats div {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(7,27,53,0.06);
  backdrop-filter: blur(10px);
}

body.dark-theme .hero-stats div {
  background: rgba(255,255,255,0.04);
}

.hero-stats strong {
  display: block;
  font-size: 20px;
  color: var(--text);
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

/* PANEL FLUSSO DOCUMENTALE */

.process-panel {
  width: 100%;
  max-width: 510px;
  justify-self: end;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

body.dark-theme .process-panel {
  background: rgba(17,31,51,0.86);
}

.process-panel::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  top: -110px;
  background: radial-gradient(circle, rgba(18,61,114,0.20), transparent 68%);
}

.panel-head {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.panel-head h3 {
  color: var(--text);
  font-size: 26px;
  letter-spacing: -0.7px;
}

.panel-head span {
  color: var(--muted);
  font-size: 14px;
}

.process-card {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  border-radius: 22px;
  margin-top: 14px;
  transition: 0.25s ease;
}

body.dark-theme .process-card {
  background: rgba(255,255,255,0.035);
}

.process-card:hover {
  transform: translateX(5px);
  border-color: rgba(18,61,114,0.45);
}

.process-card.active-step {
  background: linear-gradient(135deg, #071b35, #123d72);
  color: white;
  border-color: transparent;
}

.step-number {
  min-width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #e7eef6;
  display: grid;
  place-items: center;
  color: #123d72;
  font-weight: 900;
  font-size: 14px;
}

.process-card.active-step .step-number {
  background: rgba(255,255,255,0.15);
  color: white;
}

.process-card strong {
  display: block;
  font-size: 16px;
}

.process-card p {
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px;
}

.process-card.active-step p {
  color: rgba(255,255,255,0.78);
}

/* SEZIONI */

.section {
  position: relative;
  padding: 106px 0;
  overflow: hidden;
}

.section-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,27,53,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,27,53,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.75;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent);
}

body.dark-theme .section-pattern {
  opacity: 0.24;
}

.section-pattern.soft {
  opacity: 0.45;
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 54px;
  position: relative;
  z-index: 2;
}

.section-title h2,
.entity-left h2,
.contact-left h2 {
  color: var(--text);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -1.7px;
}

.section-title p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

/* CARD SERVIZI */

.cards-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 220px;
  box-shadow: 0 14px 38px rgba(7,27,53,0.05);
  transition: 0.25s ease;
  backdrop-filter: blur(12px);
}

body.dark-theme .service-card {
  background: rgba(255,255,255,0.035);
}

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

.service-card h3 {
  color: var(--text);
  font-size: 22px;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

/* SEZIONE METODO */

.dark-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, #071b35, #0d2b52);
  color: white;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.32;
}

.dark-section .section-title h2,
.dark-section .section-title span {
  color: white;
}

.dark-section .section-title span {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.13);
}

.timeline {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 26px;
}

.timeline-item strong {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: #fff;
}

.timeline-item p {
  color: rgba(255,255,255,0.70);
  margin-top: 6px;
}

/* ENTI */

.entity-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.entity-left p {
  color: var(--muted);
  margin-top: 20px;
  font-size: 17px;
}

.entity-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.entity-right div {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  font-weight: 800;
  color: var(--text);
  backdrop-filter: blur(12px);
}

body.dark-theme .entity-right div {
  background: rgba(255,255,255,0.035);
}

/* FAQ */

.faq-section {
  background:
    linear-gradient(180deg, var(--surface), var(--bg));
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7,27,53,0.05);
}

.faq-item button {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  padding: 22px 24px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item button span {
  color: var(--accent);
  font-size: 24px;
  transition: 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

/* CONTATTI */

.contact-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(18,61,114,0.14), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--surface));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.contact-left p {
  color: var(--muted);
  margin-top: 20px;
  font-size: 17px;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  font-family: inherit;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  border: none;
  background: linear-gradient(135deg, #071b35, #123d72);
  color: white;
  border-radius: 999px;
  padding: 16px;
  font-weight: 900;
  cursor: pointer;
}

/* FOOTER */

.footer {
  background: #071b35;
  color: white;
  padding: 54px 0 120px;
  position: relative;
}

.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-center strong {
  display: block;
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-center p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}

.footer-vat {
  font-size: 14px;
  color: rgba(255,255,255,0.62) !important;
}

.footer-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  font-size: 14px;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: white;
}

/* CLICK HIGHLIGHT */

.section-focus {
  transition: 0.45s ease;
}

.section-focus.highlight-section {
  transform: scale(1.012);
  box-shadow: inset 0 0 0 9999px rgba(18,61,114,0.04);
}

/* ANIMAZIONI */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* LOADING INTRO — ARCHIVIO CARTACEO → DIGITALE */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(18, 61, 114, 0.42), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(7, 27, 53, 0.30), transparent 32%),
    radial-gradient(circle at 78% 88%, rgba(18, 61, 114, 0.38), transparent 38%),
    linear-gradient(
      135deg,
      #dcecff 0%,
      #f7fbff 34%,
      #d5e8fa 58%,
      #9fc2e8 78%,
      #0d2b52 100%
    );
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.loader.hide-loader {
  opacity: 0;
  visibility: hidden;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,27,53,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,27,53,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
  opacity: 0.75;
}

.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.orb-one {
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(18,61,114,0.24), transparent 70%);
  animation: loaderOrb 6s ease-in-out infinite;
}

.orb-two {
  width: 320px;
  height: 320px;
  right: -100px;
  top: -70px;
  background: radial-gradient(circle, rgba(7,27,53,0.18), transparent 70%);
  animation: loaderOrb 7s ease-in-out infinite reverse;
}

.orb-three {
  width: 260px;
  height: 260px;
  right: 18%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255,255,255,0.24), transparent 68%);
  animation: loaderOrb 8s ease-in-out infinite;
}

.loader-stage {
  position: relative;
  z-index: 2;
  width: min(780px, 92vw);
  text-align: center;
  animation: loaderStageIn 0.8s ease forwards;
}

.loader-scene {
  position: relative;
  width: min(560px, 88vw);
  height: 250px;
  margin: 0 auto;
  perspective: 1000px;
}

.paper-world {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 440px;
  height: 180px;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.paper-stack-3d {
  position: absolute;
  left: 30px;
  top: 36px;
  width: 150px;
  height: 105px;
  transform: rotateX(58deg) rotateZ(-18deg);
  transform-style: preserve-3d;
  animation: paperStackMove 3.2s ease-in-out infinite;
}

.paper-sheet {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(233,242,252,0.94));
  border: 1px solid rgba(18,61,114,0.16);
  box-shadow:
    0 24px 50px rgba(7,27,53,0.18),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.paper-sheet::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgba(18,61,114,0.18);
  box-shadow:
    0 18px 0 rgba(18,61,114,0.11),
    0 36px 0 rgba(18,61,114,0.08);
}

.paper-sheet::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(18,61,114,0.08);
}

.sheet-one {
  transform: translateZ(18px);
  animation: sheetOne 3.2s ease-in-out infinite;
}

.sheet-two {
  transform: translate(10px, 8px) translateZ(8px);
  opacity: 0.92;
}

.sheet-three {
  transform: translate(20px, 16px) translateZ(0);
  opacity: 0.78;
}

.scan-beam {
  position: absolute;
  left: 155px;
  top: 18px;
  width: 5px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(29,140,255,0.20),
    rgba(29,140,255,0.95),
    rgba(29,140,255,0.20),
    transparent
  );
  box-shadow:
    0 0 20px rgba(29,140,255,0.85),
    0 0 54px rgba(29,140,255,0.32);
  opacity: 0;
  animation: scanBeamMove 3.2s ease-in-out infinite;
}

.scan-beam::before {
  content: "";
  position: absolute;
  left: -54px;
  top: 50%;
  width: 112px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(29,140,255,0.75), transparent);
}

.digital-stack {
  position: absolute;
  right: 22px;
  top: 34px;
  width: 168px;
  height: 116px;
  transform-style: preserve-3d;
  transform: rotateX(56deg) rotateZ(16deg);
}

.digital-card {
  position: absolute;
  width: 150px;
  height: 92px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(7,27,53,0.95), rgba(18,61,114,0.88));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 26px 54px rgba(7,27,53,0.22),
    inset 0 1px 0 rgba(255,255,255,0.16);
  opacity: 0;
  transform: translateX(-70px) translateY(22px) scale(0.86);
  animation: digitalCardBuild 3.2s ease-in-out infinite;
}

.digital-card span {
  position: absolute;
  left: 18px;
  top: 24px;
  width: 70px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow:
    0 16px 0 rgba(255,255,255,0.36),
    0 32px 0 rgba(255,255,255,0.20);
}

.digital-card i {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #62b8ff;
  box-shadow: 0 0 20px rgba(98,184,255,0.85);
}

.card-one {
  z-index: 3;
}

.card-two {
  z-index: 2;
  transform: translate(13px, 13px) translateX(-70px) translateY(22px) scale(0.86);
  animation-delay: 0.12s;
  opacity: 0;
}

.card-three {
  z-index: 1;
  transform: translate(26px, 26px) translateX(-70px) translateY(22px) scale(0.86);
  animation-delay: 0.24s;
  opacity: 0;
}

.secure-core {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 92px;
  height: 92px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  opacity: 0;
  animation: secureCoreIn 3.2s ease-in-out infinite;
}

.core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(18,61,114,0.16);
  background: rgba(255,255,255,0.28);
  box-shadow:
    0 18px 46px rgba(7,27,53,0.14),
    inset 0 1px 0 rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
}

.core-ring::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  border: 1px dashed rgba(18,61,114,0.28);
  animation: coreRotate 6s linear infinite;
}

.core-inner {
  position: relative;
  width: 46px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #071b35, #123d72);
  box-shadow: 0 14px 30px rgba(7,27,53,0.24);
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 9px;
}

.core-inner span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
}

.loader-copy {
  margin-top: 8px;
  animation: copyIn 3.2s ease-in-out infinite;
}

.loader-copy span {
  display: inline-block;
  color: #123d72;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(18,61,114,0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.loader-copy h2 {
  margin-top: 14px;
  color: #071b35;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -1.6px;
}

.loader-copy p {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(7,27,53,0.68);
  font-size: 16px;
  font-weight: 600;
}

@keyframes loaderStageIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderOrb {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

@keyframes paperStackMove {
  0% {
    transform: rotateX(58deg) rotateZ(-18deg) translateX(-16px);
    opacity: 0;
  }

  14% {
    opacity: 1;
  }

  42% {
    transform: rotateX(58deg) rotateZ(-18deg) translateX(18px);
    opacity: 1;
  }

  64% {
    transform: rotateX(58deg) rotateZ(-18deg) translateX(58px) scale(0.88);
    opacity: 0;
  }

  100% {
    transform: rotateX(58deg) rotateZ(-18deg) translateX(-16px);
    opacity: 0;
  }
}

@keyframes sheetOne {
  0%, 20% {
    transform: translateZ(18px);
  }

  42% {
    transform: translateZ(26px) translateY(-5px);
  }

  64%, 100% {
    transform: translateZ(18px);
  }
}

@keyframes scanBeamMove {
  0%, 18% {
    opacity: 0;
    transform: translateX(-28px);
  }

  28% {
    opacity: 1;
  }

  50% {
    opacity: 1;
    transform: translateX(86px);
  }

  62%, 100% {
    opacity: 0;
    transform: translateX(128px);
  }
}

@keyframes digitalCardBuild {
  0%, 35% {
    opacity: 0;
    transform: translateX(-70px) translateY(22px) scale(0.86);
  }

  56% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }

  82% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(24px) translateY(-8px) scale(0.94);
  }
}

@keyframes secureCoreIn {
  0%, 48% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px) scale(0.9);
  }

  66% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.96);
  }
}

@keyframes coreRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes copyIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  18%, 86% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}
/* PROGETTO PILOTA */

.pilot {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(18,61,114,0.10), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(18,61,114,0.08), transparent 36%);
}

body.dark-theme .pilot {
  background:
    radial-gradient(circle at 20% 10%, rgba(98,184,255,0.12), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(98,184,255,0.08), transparent 36%);
}

.centered-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 54px;
}

.section-title-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(18,61,114,0.08);
  color: #123d72;
  border: 1px solid rgba(18,61,114,0.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.dark-theme .section-title-tag {
  background: rgba(98,184,255,0.10);
  color: #9bc7ff;
  border-color: rgba(98,184,255,0.16);
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.pilot-card,
.pilot-step {
  border: 1px solid rgba(18,61,114,0.13);
  background: rgba(255,255,255,0.76);
  box-shadow: 0 24px 70px rgba(7,27,53,0.08);
  backdrop-filter: blur(18px);
}

body.dark-theme .pilot-card,
body.dark-theme .pilot-step {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.20);
}

.main-pilot-card {
  border-radius: 34px;
  padding: 38px;
  min-height: 100%;
}

.pilot-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #123d72;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-pilot-card h3 {
  color: var(--text);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -1.6px;
  margin-bottom: 20px;
}

.main-pilot-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 560px;
}

.pilot-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.pilot-metrics div {
  padding: 18px 14px;
  border-radius: 22px;
  background: rgba(18,61,114,0.06);
  border: 1px solid rgba(18,61,114,0.10);
}

body.dark-theme .pilot-metrics div {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.08);
}

.pilot-metrics strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.pilot-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.pilot-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #123d72;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(18,61,114,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pilot-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(18,61,114,0.28);
}

.pilot-steps {
  display: grid;
  gap: 16px;
}

.pilot-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border-radius: 28px;
}

.pilot-step span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(18,61,114,0.10);
  color: #123d72;
  font-weight: 900;
}

body.dark-theme .pilot-step span {
  background: rgba(98,184,255,0.12);
  color: #9bc7ff;
}

.pilot-step h4 {
  color: var(--text);
  font-size: 20px;
  margin-bottom: 8px;
}

.pilot-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-grid,
  .entity-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-panel {
    justify-self: start;
    max-width: 620px;
  }

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

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    top: 14px;
    right: 14px;
    left: auto;
    z-index: 100;
    padding: 0;
  }

  .nav-container {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    padding: 0;
    border-radius: 0;
  }

  .desktop-nav {
    display: none;
  }

  .theme-switch {
    grid-column: auto;
    justify-self: auto;
    width: 68px;
    height: 36px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(18,61,114,0.10);
    box-shadow: 0 10px 30px rgba(7,27,53,0.12);
    backdrop-filter: blur(16px);
  }

  body.dark-theme .theme-switch {
    background: rgba(10,20,35,0.82);
    border-color: rgba(255,255,255,0.08);
  }

  .switch-circle {
    width: 26px;
    height: 26px;
  }

  body.dark-theme .switch-circle {
    transform: translateX(32px);
  }



}

@media (max-width: 720px) {

.hero-brand {
  margin-bottom: 36px;
}

.brand-symbol {
  width: 96px;
  height: 86px;
  margin-bottom: 14px;
}

.binder {
  width: 25px;
  height: 64px;
  border-radius: 7px 7px 5px 5px;
}

.binder-left {
  height: 58px;
}

.binder-center {
  width: 27px;
  height: 72px;
}

.binder-right {
  height: 60px;
}

.binder span {
  left: 6px;
  right: 6px;
  top: 10px;
  height: 4px;
  box-shadow:
    0 11px 0 rgba(255,255,255,0.36),
    0 22px 0 rgba(255,255,255,0.20);
}

.binder i {
  width: 10px;
  height: 10px;
  bottom: 8px;
  border-width: 2px;
}

.symbol-base {
  width: 84px;
  bottom: -6px;
}

.hero-brand-copy strong {
  font-size: 31px;
  letter-spacing: -0.8px;
}

.hero-brand-copy p {
  font-size: 14px;
  margin-top: 7px;
}
.pilot {
  padding: 82px 0;
}

.centered-head {
  margin-bottom: 34px;
}

.pilot-layout {
  grid-template-columns: 1fr;
  gap: 18px;
}

.main-pilot-card {
  padding: 28px 22px;
  border-radius: 28px;
}

.main-pilot-card h3 {
  font-size: 34px;
  letter-spacing: -1px;
}

.main-pilot-card p {
  font-size: 15px;
}

.pilot-metrics {
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 26px 0;
}

.pilot-step {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px;
}

.pilot-step span {
  width: 44px;
  height: 44px;
}
  .container {
    width: min(100% - 24px, 1160px);
  }

  .mobile-nav {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 60;
  width: calc(100% - 24px);
  max-width: 430px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(7,27,53,0.14);
  backdrop-filter: blur(18px);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}
.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav a {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

  body.dark-theme .mobile-nav {
    background: rgba(7,17,31,0.9);
  }


  .mobile-nav a.active-link {
    background: #071b35;
    color: white;
  }

  body.dark-theme .mobile-nav a.active-link {
    background: #1d4f86;
  }

  .hero {
    padding: 76px 0 66px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .cards-grid,
  .entity-right {
    grid-template-columns: 1fr;
  }

  .process-panel {
    max-width: 100%;
    padding: 22px;
    border-radius: 26px;
  }

  .process-card {
    align-items: flex-start;
  }

  .section {
    padding: 76px 0;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2,
  .entity-left h2,
  .contact-left h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .service-card {
    min-height: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
    border-radius: 26px;
  }

.server-slot span {
  width: 30px;
}

  .data-dots {
    right: 96px;
    gap: 7px;
  }

  .loader-text {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
}
/* PAGINE LEGALI: PRIVACY / COOKIE */

.legal-page {
  min-height: 100vh;
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at 12% 10%, rgba(18, 61, 114, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(18, 61, 114, 0.08), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--surface));
}

.legal-container {
  max-width: 930px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 28px;
  transition: 0.25s ease;
}

.legal-back:hover {
  transform: translateX(-4px);
}

.legal-page h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 16px;
}

.legal-updated {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 34px;
}

.legal-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 42px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

body.dark-theme .legal-card {
  background: rgba(255,255,255,0.035);
}

.legal-card h2 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}

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

.legal-card ul {
  margin: 12px 0 22px 20px;
  color: var(--muted);
}

.legal-card li {
  margin-bottom: 8px;
}

@media (max-width: 720px) {
    .loader-stage {
  width: min(360px, 94vw);
}

.loader-scene {
  width: min(340px, 92vw);
  height: 210px;
}

.paper-world {
  width: 320px;
  height: 150px;
}

.paper-stack-3d {
  left: 16px;
  top: 40px;
  width: 112px;
  height: 82px;
}

.digital-stack {
  right: 6px;
  top: 42px;
  width: 122px;
  height: 90px;
}

.digital-card {
  width: 112px;
  height: 72px;
  border-radius: 14px;
}

.digital-card span {
  left: 14px;
  top: 19px;
  width: 52px;
}

.digital-card i {
  right: 14px;
  top: 18px;
  width: 11px;
  height: 11px;
}

.scan-beam {
  left: 118px;
  top: 26px;
  height: 122px;
}

.secure-core {
  width: 76px;
  height: 76px;
  bottom: 2px;
}

.core-inner {
  width: 40px;
  height: 36px;
  border-radius: 12px;
}

.loader-copy {
  margin-top: 0;
}

.loader-copy h2 {
  font-size: 30px;
}

.loader-copy p {
  font-size: 14px;
  max-width: 310px;
}
  .legal-page {
    padding: 86px 0 70px;
  }

  .legal-page h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .legal-card {
    padding: 26px;
    border-radius: 24px;
  }

  .legal-card h2 {
    font-size: 21px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 15px;
  }
}
/* CHECKBOX PRIVACY FORM */

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 2px 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-check input {
  width: auto;
  margin-top: 3px;
  accent-color: #123d72;
}

.privacy-check a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
}

.privacy-check a:hover {
  color: var(--text);
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
/* POPUP PERSONALIZZATO FORM */

.status-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.status-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.status-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 53, 0.42);
  backdrop-filter: blur(6px);
}

.status-card {
  position: relative;
  z-index: 2;
  width: min(460px, 92vw);
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(18, 61, 114, 0.12);
  border-radius: 28px;
  padding: 34px 28px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(7, 27, 53, 0.22);
  backdrop-filter: blur(16px);
  transform: translateY(16px) scale(0.97);
  transition: 0.3s ease;
}

.status-modal.show .status-card {
  transform: translateY(0) scale(1);
}

body.dark-theme .status-card {
  background: rgba(17, 31, 51, 0.94);
  border: 1px solid rgba(255,255,255,0.08);
}

.status-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, #071b35, #123d72);
  box-shadow: 0 16px 34px rgba(7, 27, 53, 0.22);
}

.status-card h3 {
  color: var(--text);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.status-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.status-button {
  border: none;
  min-width: 170px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, #071b35, #123d72);
  cursor: pointer;
  transition: 0.25s ease;
}

.status-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .status-card {
    padding: 28px 20px 22px;
    border-radius: 24px;
  }

  .status-icon {
    width: 58px;
    height: 58px;
    font-size: 26px;
    margin-bottom: 16px;
  }

  .status-card h3 {
    font-size: 24px;
  }

  .status-card p {
    font-size: 15px;
  }

  .status-button {
    width: 100%;
  }
}
/* PROTEZIONE PAGINE LEGALI */

.legal-page .hero-floating-logo,
.legal-page .brand,
.legal-page .brand-logo,
.legal-page img[src*="logo"] {
  display: none !important;
}