/*
 * Accessibi – override e stili custom sul template Frisk v3.0
 * Font: Inter Tight (Google Fonts) al posto di Unbounded/Poppins
 * Palette: navy scuro + azzurro brand Accessibi (#1E75BC)
 */

:root {
  --title-font: "Inter Tight", sans-serif;
  --body-font: "Inter Tight", sans-serif;
  /* Palette Accessibi */
  --theme-color: #1E75BC;
  --title-color: #0D2B40;
  --body-color: #383E46;
  --gray-color: #0A2334;
  --black-color: #0A2334;
  --acc-navy-deep: #081C2B;
  --acc-azure-light: #EAF3FB;
  /* Spaziatura sezioni uniforme in tutto il sito */
  --section-space: 100px;
  --section-space-mobile: 65px;
}

/* Il default del template (link color accent) è illeggibile su fondi chiari:
   i link ereditano il colore del titolo */
a {
  color: var(--title-color);
}

p a:not(.link-btn):not(.btn),
p a:not(.link-btn):not(.btn):visited,
p a:not(.link-btn):not(.btn):hover,
.legal-note a,
.legal-note a:visited,
.legal-note a:hover,
label a,
label a:visited,
label a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Inter Tight è più compatto di Unbounded: pesi più decisi sui titoli */
h1, h2, h3, h4, h5, h6,
.hero-title, .sec-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title {
  font-weight: 800;
}

/* Menu e testi di navigazione in nero (il blu ovunque appesantisce) */
.main-menu > ul > li > a,
.header-button .search-btn {
  color: #14161A;
}

.mobile-menu ul li a {
  color: #14161A;
}

/* ---- Sezioni bg-theme: navy scuro GILBI (#060D2F), testo bianco ---- */
div.bg-theme,
section.bg-theme {
  background-color: #060D2F !important;
}

.btn.bg-theme,
.circle-btn.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-theme .sec-title,
.bg-theme h2, .bg-theme h3, .bg-theme h4,
.bg-theme p, .bg-theme label, .bg-theme li,
.bg-theme .sec-text {
  color: #ffffff;
}

.bg-theme label a,
.bg-theme p a:not(.btn) {
  color: #ffffff;
}

.bg-theme .form-control,
.bg-theme .form-select {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.bg-theme .form-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.bg-theme .checklist li {
  color: #ffffff;
}

.btn.style2,
.btn.bg-theme,
.circle-btn.bg-theme {
  color: #ffffff;
}

.btn.style2.text-title,
.btn.bg-theme.text-title,
.circle-btn.bg-theme.text-title {
  color: #ffffff !important;
}

/* Fasce CTA scure: navy GILBI */
.cta-area-1 {
  background-color: #060D2F !important;
}

/* Footer home (layout7): gradiente navy Accessibi al posto dell'indaco */
.footer-layout7:after {
  background: radial-gradient(117.84% 117.84% at 45.35% 11.93%, #081C2B 26.08%, #17548A 100%);
}

/* ---- Hero home ---- */
.hero-17 .hero-inner {
  background-color: var(--acc-navy-deep);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center 58%;
}

.hero-17 .hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 31, 0.88) 0%, rgba(6, 20, 31, 0.55) 60%, rgba(6, 20, 31, 0.3) 100%);
  z-index: 1;
}

.hero-17 .hero-inner > .container,
.hero-17 .hero-inner > .container3 {
  position: relative;
  z-index: 2;
}

/* Hero più compatto (si devono vedere le card sotto) e titolo più piccolo */
.hero-style17 {
  padding: 170px 0 110px;
}

.hero-style17 .hero-title {
  font-size: 62px;
}

@media (max-width: 1500px) {
  .hero-style17 { padding: 150px 0 100px; }
  .hero-style17 .hero-title { font-size: 54px; }
}

@media (max-width: 1399px) {
  .hero-style17 .hero-title { font-size: 48px; }
}

@media (max-width: 991px) {
  .hero-style17 { padding: 110px 0 70px; }
  .hero-style17 .hero-title { font-size: 40px; }
}

@media (max-width: 575px) {
  .hero-style17 .hero-title { font-size: 32px; }
}

/* Badge normative nel hero */
.hero-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
  padding: 0;
  list-style: none;
}

.hero-badge-list li {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 22px;
  backdrop-filter: blur(4px);
}

/* Card consulenza col video: azzurro brand (hero su desktop, float su mobile) */
.hero-card-float .hero-video-card,
.hero-17 .hero-video-card {
  background-color: var(--theme-color);
  display: flex;
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
}

.hero-card-float .hero-video-card .box-content .box-title,
.hero-17 .hero-video-card .box-content .box-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 26px;
}

.hero-card-float .hero-video-card .link-btn,
.hero-card-float .hero-video-card .link-btn:hover,
.hero-17 .hero-video-card .link-btn,
.hero-17 .hero-video-card .link-btn:hover {
  color: #ffffff;
}

.hero-card-float .hero-video-card .box-img,
.hero-17 .hero-video-card .box-img {
  position: relative;
  flex: none;
}

.hero-card-float .hero-video-card .box-content,
.hero-17 .hero-video-card .box-content {
  align-self: center;
  padding: 34px 34px 34px 0;
}

.hero-card-float .hero-video-card .box-img video,
.hero-17 .hero-video-card .box-img video {
  width: 242px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card flottante: su desktop si aggancia in basso a destra dell'hero,
   su mobile è una scheda autonoma sotto */
.hero-card-float {
  position: relative;
  z-index: 3;
}

@media (max-width: 1199px) {
  .hero-card-float {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .hero-card-float .hero-video-card {
    flex-direction: column;
    gap: 0;
  }

  .hero-card-float .hero-video-card .box-img video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-card-float .hero-video-card .box-content,
.hero-17 .hero-video-card .box-content {
    padding: 26px 28px 30px;
  }
}



/* ---- Breadcumb: overlay navy più forte per leggibilità ---- */
.breadcumb-wrapper:after {
  background: #081C2B;
  opacity: 0.68;
}

.breadcumb-wrapper {
  background-position: center 28%;
}

.breadcumb-wrapper.bc-center {
  background-position: center center;
}

/* ---- Feature card scure (home): glow azzurro su navy ---- */
.feature-card.style5 {
  background-image: radial-gradient(120% 160% at 85% -20%, rgba(30, 117, 188, 0.35) 0%, rgba(8, 28, 43, 0) 60%);
}

/* Feature card con foto di sfondo: overlay navy forte per leggibilità */
.feature-card.style5.has-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.feature-card.style5.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 43, 0.92) 0%, rgba(8, 28, 43, 0.8) 100%);
  z-index: -1;
}

/* Icone piattaforme nel marquee della feature card: più grandi */
.feature-card .marquee_mode .m-item {
  margin: 0 24px;
  display: inline-flex;
  align-items: center;
}

.feature-card .marquee_mode .m-item img {
  height: 76px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* ---- Card "Vantaggi": gradiente animato al posto delle foto ---- */
.vantaggio-thumb {
  width: 100%;
  aspect-ratio: 10 / 7.6;
  background: linear-gradient(135deg, #0D2B40 0%, #1E75BC 40%, #16A0C8 60%, #0D2B40 100%);
  background-size: 300% 300%;
  animation: acc-gradient-move 9s ease-in-out infinite;
}

.vantaggio-thumb.v1 {
  background-image: linear-gradient(135deg, #123B5C 0%, #1E75BC 55%, #5BA7DF 100%);
}

.vantaggio-thumb.v2 {
  background-image: linear-gradient(135deg, #0E4A66 0%, #2A7FA6 55%, #6FB4CE 100%);
}

.vantaggio-thumb.v3 {
  background-image: linear-gradient(135deg, #24406F 0%, #47679F 55%, #8AA4CE 100%);
}

.vantaggio-thumb.v4 {
  background-image: linear-gradient(135deg, #0D2B40 0%, #2C5B80 55%, #6E9AB8 100%);
}

@keyframes acc-gradient-move {
  0% { background-position: 0% 20%; }
  50% { background-position: 100% 80%; }
  100% { background-position: 0% 20%; }
}

.portfolio-wrap.style16 .vantaggio-thumb + .portfolio-details,
.portfolio-wrap.style16 .portfolio-details {
  background: linear-gradient(180deg, rgba(8, 28, 43, 0) 30%, rgba(8, 28, 43, 0.55) 100%);
  align-content: space-between;
  padding: 24px 24px 26px;
}

.portfolio-wrap.style16 .portfolio-details .portfolio-meta {
  font-size: 14px;
  padding: 5px 12px;
}

.vantaggio-icon-wrap {
  flex: 0 0 100%;
}

.vantaggio-icon {
  width: 38px;
  height: 38px;
  opacity: 0.95;
}

.vantaggio-text {
  color: #D6DCE2;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 6px 0 0;
  flex: 0 0 100%;
}

.portfolio-wrap.style16 .portfolio-title {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 0;
  transition: color 0.3s;
}

.portfolio-wrap.style16:hover .portfolio-title {
  color: #C9CFD4;
}

.portfolio-wrap.style16 .portfolio-details .portfolio-meta:hover {
  background: #E4E7EA;
  color: var(--title-color);
}

/* ---- Marquee: il template dà uno sfondo indaco di default ---- */
.client-marquee-area .marquee-wrap,
.marquee-wrap:has(.platform-marquee),
.marquee-wrap:has(.client-logo-marquee) {
  background: transparent;
}

/* Scroller pre-footer (pagine interne): fascia navy con testo bianco */
.footer-scroller.marquee-wrap {
  background: #060D2F;
}

.footer-scroller .m-item a,
.footer-scroller .m-item a:hover {
  color: #ffffff;
}

.marquee-wrap.footer-scroller .marquee__group .m-item a i {
  color: inherit;
}

/* ---- Marquee loghi clienti: fascia bianca, colori originali ---- */
.client-logo-area {
  background: #ffffff;
  padding: 56px 0 88px;
}

.client-logo-area .logos-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 44px;
}

.client-logo-area .marquee-wrap,
.client-marquee-area .marquee-wrap {
  background: transparent;
}

.client-logo-marquee .m-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 24px 40px;
  min-width: 200px;
}

.client-logo-marquee .m-item img {
  height: 52px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: 0.4s;
}

.client-logo-marquee .m-item img.logo-tall {
  height: 78px;
}

.client-logo-marquee .m-item img.logo-wide {
  max-width: 300px;
}

.client-logo-marquee .m-item img.logo-xwide {
  max-width: 360px;
}



/* ---- Marquee piattaforme compatibili: box con bordo, loghi grandi ---- */
.platform-marquee .m-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 26px 42px;
  min-width: 170px;
}

.platform-marquee .m-item img {
  height: 58px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

/* Checklist ordinate: icona fissa a sinistra, testo in colonna */
.checklist ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checklist ul li i {
  flex: none;
  margin-top: 5px;
}

/* Voci non incluse nei piani: barrate */
.checklist li.not-included {
  opacity: 0.45;
}

.checklist li.not-included span {
  text-decoration: line-through;
}

/* Il template dà a .contact-area-1 un margin-top fisso: serve SOLO quando
   c'è l'immagine shape-mockup che sporge sopra la sezione */
.contact-area-1 {
  margin-top: 0;
}

.contact-area-1:has(.shape-mockup) {
  margin-top: 120px;
}

/* ---- Pagine legali ---- */
.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 14px;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-content p strong:first-child {
  color: var(--title-color);
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ---- Card servizi extra ---- */
.extra-card {
  border: 1px solid #E9EDF1;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.extra-card .extra-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 8px;
}

.extra-card .extra-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.extra-card .extra-price {
  margin-top: auto;
  font-family: var(--title-font);
  font-weight: 800;
  font-size: 24px;
  color: var(--title-color);
}

.extra-card .extra-price a {
  color: var(--theme-color);
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.extra-card .extra-price .unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--body-color);
}

/* ---- Card normative nel mondo (con bandiere) ---- */
.norm-card {
  border: 1px solid #E9EDF1;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.norm-card .norm-flag {
  width: 44px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(8, 28, 43, 0.18);
  margin-bottom: 8px;
}

.norm-card .norm-country {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--title-color);
  margin: 0;
}

.norm-card .norm-act {
  font-size: 13.5px;
  color: var(--body-color);
  line-height: 1.45;
  margin: 0 0 10px;
}

.norm-card .norm-standard {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0F5C99;
  background: #EAF3FB;
  border-radius: 100px;
  padding: 5px 14px;
}

/* ---- Icone processo (SVG minimal) ---- */
.service-card2 .box-icon img.acc-icon {
  width: 56px;
  height: 56px;
}

/* ---- Testimonianze: sfondo navy, sezione compatta con margine ---- */
.testimonial-area-6 {
  padding: 100px 0 0;
}

.testimonial-wrap6 {
  background-color: var(--acc-navy-deep);
  padding: 64px 0 !important;
}

.testi-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-align: center;
  margin: 28px 0 0;
}

/* ---- Pricing: card tutte della stessa altezza ---- */
.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card .btn,
.pricing-card .btn-wrap {
  margin-top: auto;
}

.pricing-card .checklist {
  margin-bottom: 28px;
}

/* Tabella servizi extra */
.extra-services-table {
  width: 100%;
  border-collapse: collapse;
}

.extra-services-table th,
.extra-services-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #E3E9EF;
  text-align: left;
  font-size: 16px;
}

.extra-services-table th {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.extra-services-table td:last-child,
.extra-services-table th:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  color: var(--title-color);
}

.extra-services-table .extra-desc {
  display: block;
  font-size: 14px;
  color: var(--body-color);
  font-weight: 400;
  margin-top: 4px;
}

/* ---- Widget: composizione 3 crop con leggero movimento ---- */
.widget-panel-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
  padding-top: 16px;
}

.widget-panel-showcase img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(8, 28, 43, 0.18);
  border: 1px solid #E3E9EF;
  background: #fff;
}

.widget-panel-showcase .panel-1 {
  grid-row: span 2;
  animation: acc-float 7s ease-in-out infinite;
}

.widget-panel-showcase .panel-2 {
  margin-top: 34px;
  animation: acc-float 8s ease-in-out 0.8s infinite;
}

.widget-panel-showcase .panel-3 {
  animation: acc-float 7.5s ease-in-out 1.6s infinite;
}

@keyframes acc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Popup consulenza gratuita ---- */
.acc-popup {
  position: relative;
  background: #ffffff;
  padding: 44px 44px 40px;
  width: auto;
  max-width: 760px;
  margin: 30px auto;
  border-radius: 20px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.acc-popup label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 2px;
}

.acc-popup .form-check label {
  font-weight: 400;
  margin-bottom: 0;
}

.acc-popup .popup-title {
  font-size: 30px;
  margin-bottom: 12px;
}

.acc-popup .popup-text {
  margin-bottom: 26px;
}

.acc-popup .form-group {
  margin-bottom: 16px;
}

.acc-popup .form-control,
.acc-popup .form-select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #C6D2DC;
  border-radius: 0;
  padding: 10px 2px;
  font-family: var(--body-font);
  color: var(--title-color);
  background: transparent;
}

.acc-popup .form-control:focus,
.acc-popup .form-select:focus {
  outline: none;
  border-bottom-color: var(--theme-color);
}

.acc-popup .form-check {
  font-size: 14px;
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.acc-popup .form-check input {
  margin-top: 4px;
  flex: none;
}

.acc-popup .mfp-close {
  color: var(--title-color);
  font-size: 34px;
}

.mfp-bg {
  background: #081C2B;
  opacity: 0.85;
}

/* ---- Loghi Accessibi (pallino + wordmark) ---- */
.header-logo a,
.mobile-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 38px;
  width: auto;
}


.marquee-wrap.style3 .m-item .marquee-dot-big {
  display: inline-block;
  margin: 0 22px;
  transform: scale(1.6);
  color: inherit;
}

.copyright-text {
  font-size: 12.5px;
}

.footer-logo img,
.mobile-logo img {
  max-height: 40px;
  width: auto;
}

/* ---- Menu mobile: full screen, X separata dal logo ---- */
.mobile-menu-wrapper .mobile-menu-area {
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.mobile-menu-wrapper .menu-toggle {
  top: 32px;
  right: 24px;
  z-index: 2;
}

.mobile-menu-wrapper .mobile-logo {
  padding: 38px 70px 40px 0;
}

.mobile-menu-wrapper .mobile-logo img {
  max-height: 34px;
}

.mobile-menu-wrapper .mobile-menu ul li > a {
  font-size: 19px;
  padding: 4px 0;
}

/* ---- Varie ---- */
.text-theme-strong {
  color: var(--theme-color);
}

.legal-note {
  font-size: 14px;
  opacity: 0.85;
}

/* Accessibilità: rispetta la riduzione del movimento */
@media (prefers-reduced-motion: reduce) {
  .vantaggio-thumb,
  .widget-panel-showcase .panel-1,
  .widget-panel-showcase .panel-2,
  .widget-panel-showcase .panel-3 {
    animation: none;
  }
}

/* ==================================================================
   Selettore lingue (header, dopo CONTATTI): bandierina + sigla
   ================================================================== */
.main-menu .lang-menu > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lang-flag {
  width: 21px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  display: inline-block;
  vertical-align: -3px;
}

.main-menu .lang-menu .lang-dropdown {
  min-width: 240px;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 12px 10px;
}

.main-menu .lang-menu .lang-dropdown li {
  padding: 0;
}

.main-menu .lang-menu .lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}

.main-menu .lang-menu .lang-dropdown li a:hover {
  background: rgba(30, 117, 188, 0.08);
}

.main-menu .lang-menu .lang-dropdown li.lang-current a {
  background: rgba(30, 117, 188, 0.12);
  pointer-events: none;
}

/* menu mobile: lista lingue */
.mobile-menu .lang-menu-mobile .lang-flag {
  margin-right: 6px;
}

.mobile-menu .lang-menu-mobile .sub-menu a {
  font-size: 15px;
}

/* ---- Stati form (popup consulenza + newsletter) ---- */
.acc-popup .form-result {
  background: #fdecea;
  color: #b3261e;
  border-radius: 8px;
  padding: 10px 14px;
  margin: 14px 0 6px;
  font-size: 14.5px;
}

.acc-popup .popup-success {
  text-align: center;
  padding: 34px 10px 10px;
}

.acc-popup .popup-success h4 {
  color: var(--title-color);
  margin-bottom: 10px;
}

.footer-wrapper .newsletter-ok {
  color: #7fd99a;
  font-weight: 600;
  margin-top: 10px;
}

/* ---- Pagina articolo blog ---- */
.post-meta-line {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--body-color);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.post-meta-line i {
  color: var(--theme-color);
  margin-right: 6px;
}

.post-featured {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 34px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 18px 0;
}

.post-back {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid #E3E7EB;
}

/* ==================================================================
   Header: la voce lingua aggiunta dopo Contatti richiede più spazio.
   Evitiamo che il bottone "Accedi alla suite" vada a capo e stringiamo
   il passo delle voci sotto i 1500px (sopra resta il design originale).
   ================================================================== */
@media (min-width: 992px) {
  .nav-header .menu-area > .container-fluid > .row {
    flex-wrap: nowrap;
  }
}

@media (min-width: 992px) and (max-width: 1499px) {
  .main-menu > ul > li > a {
    padding-left: 13px;
    padding-right: 13px;
  }
}

/* La voce lingua è compatta: non serve il passo pieno di una voce testo */
.main-menu .lang-menu > a {
  padding-left: 14px;
  padding-right: 6px;
}

/* ==================================================================
   Servizi: le due card "Facile da integrare / Sempre aggiornato"
   devono avere la STESSA altezza anche con testo di lunghezza diversa
   ================================================================== */
.feature-area-1 .row {
  align-items: stretch;
}

.feature-area-1 .col-xl-6 {
  display: flex;
}

.feature-area-1 .feature-card.style-grid {
  width: 100%;
  height: 100%;
}

/* ==================================================================
   reCAPTCHA: badge nascosto (richiede la nota informativa nei form)
   ================================================================== */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-notice {
  font-size: 12.5px;
  line-height: 1.5;
  color: #8A9099;
  margin: 14px 0 0;
}

.recaptcha-notice a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
