/* ============================================================
   CALWISE — FOGLIO DI STILE MIGLIORATO
   Variabili colore, tipografia, layout e responsive design.
   Commenti in italiano per facilitare la comprensione.
   ============================================================ */

/* --- VARIABILI GLOBALI (la "tavolozza" del brand) --- */
:root {
  --navy:        #06203f;   /* Blu scuro principale */
  --orange:      #e96f00;   /* Arancione principale */
  --orange-light: #fff1e4;  /* Arancione chiarissimo per sfondi */
  --orange-mid:  rgba(233, 111, 0, 0.12); /* Arancione semi-trasparente */
  --white:       #ffffff;
  --gray-100:    #f7f7f8;   /* Grigio chiarissimo */
  --gray-200:    #e9e9e9;   /* Grigio bordi */
  --gray-text:   #555555;   /* Grigio testo secondario */
  --green-bg:    #f5fff0;   /* Verde chiarissimo per card */
  --gray-500:    #6b7280;   /* Grigio medio per testo secondario (team bio/quote) */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:   38px 39px 60px rgba(0,0,0,0.05);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-pill: 100px;
  --transition:  all 0.25s ease;

  /* Z-index scale — one place, clear names, room to grow */
  --z-navbar:     100;   /* sticky header */
  --z-mobile-nav: 200;   /* slide-in mobile panel */
  --z-modal:      300;   /* privacy / ToS modals */
}

/* --- SKIP NAVIGATION (visually hidden until focused by keyboard) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* --- RESET BASE (regole di partenza per tutti gli elementi) --- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth; /* scorrimento fluido quando si clicca un link interno */
}
*, *::before, *::after { box-sizing: inherit; }

article, aside, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

img { max-width: 100%; height: auto; display: block; }

body {
  font: 400 15px/27px 'Poppins', Arial, Verdana, sans-serif;
  background-color: var(--white);
  min-width: 320px;
  color: #1a1a1a;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p { margin: 0; }

h1, h2, h3, .h1, .h2, .h3 {
  font-family: 'Poppins', Arial, Verdana, sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* Dimensioni titoli desktop */
h1, .h1 { font-size: 64px; line-height: 1.1; letter-spacing: -1.5px; }
h2, .h2 { font-size: 46px; line-height: 1.15; letter-spacing: -1px; }
h3, .h3 { font-size: 20px; line-height: 1.35; }

a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* --- CONTENITORE PRINCIPALE --- */
.container {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1420px;
}

/* --- GRIGLIA A COLONNE --- */
.row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-left: -15px;
  margin-right: -15px;
}
.col { padding: 0 15px; }

/* ============================================================
   PULSANTI
   ============================================================ */
/* I pulsanti possono essere sia <button> che <a> — stessa resa visiva per entrambi */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 26px;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.2px;
  text-decoration: none; /* rimuove sottolineatura dai link */
  cursor: pointer;
  font-family: inherit;
}

/* Keyboard focus ring for all buttons and nav links */
.btn:focus-visible,
.headerNav a:focus-visible,
.mobileNavPanel a:focus-visible,
.linkedinLink:focus-visible,
.footer-links a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(233,111,0,0.45);
}

/* Pulsante principale (arancione) */
.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background-color: #c85e00;
  border-color: #c85e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,111,0,0.35);
}

/* Pulsante secondario (navy pieno) */
.btn-secondary {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,32,63,0.2);
}

/* Pulsante contorno (trasparente) */
.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border-color: rgba(6,32,63,0.25);
}
.btn-outline:hover {
  border-color: var(--navy);
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Pulsante ghost (testo senza sfondo) */
.btn-ghost {
  background-color: transparent;
  color: var(--navy);
  border-color: transparent;
}
.btn-ghost:hover {
  background-color: var(--gray-100);
}

/* Pulsante chiaro (per sfondi scuri) */
.btn-light {
  background-color: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-light:hover {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* Versione grande dei pulsanti */
.btn-lg { padding: 16px 34px; font-size: 15px; }

/* ============================================================
   HEADER (intestazione fissa in cima)
   ============================================================ */
.pageHeader {
  position: sticky;         /* rimane visibile mentre scorri */
  top: 0;
  z-index: var(--z-navbar);
  padding: 16px 0;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);  /* effetto vetro smerigliato */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.headerWrap {
  /* Grid a 3 colonne: logo | nav centrata | pulsanti
     Questo garantisce che la nav sia sempre al centro esatto della barra */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
/* Spinge i pulsanti verso destra nell'ultima colonna */
.headerBtns {
  justify-self: end;
}

/* Logo nell'header */
.headerLogo img { height: 40px; width: auto; }

/* Wrapper sinistro: logo Calwise + loghi Google/Microsoft */
.headerLeft {
  display: flex;
  align-items: center;
  gap: clamp(20px, 8vw, 130px);
}
/* Loghi Google e Microsoft nell'header */
.headerBrandLogos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.headerBrandLogos svg {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
}
/* Separatore verticale tra i loghi e le voci di nav */
.headerNavDivider {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(6, 32, 63, 0.2);
}

/* Voci di navigazione centrale */
.headerNav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.headerNav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.75;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.headerNav a:hover { opacity: 1; }

/* Sezione attiva durante lo scroll */
.headerNav a.nav-active {
  opacity: 1;
  border-bottom-color: var(--orange);
  font-weight: 600;
}

/* Pulsanti nell'header */
.headerBtns {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================================
   HERO (sezione principale in cima alla pagina)
   ============================================================ */
.pageBanner {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 0;
  /* Sfondo a gradiente caldo per dare profondità */
  background: linear-gradient(
    160deg,
    #fff8f3 0%,
    #ffffff 45%,
    #f4f7ff 100%
  );
}

/* Cerchi luminosi decorativi in background */
.heroBgGlow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.55;
}
.heroBgGlow--left {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,111,0,0.2) 0%, transparent 70%);
  top: -100px;
  left: -200px;
}
.heroBgGlow--right {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,32,63,0.12) 0%, transparent 70%);
  top: -80px;
  right: -150px;
}

.pageBannerWrap {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}

/* Badge "Trusted by..." in cima all'hero */
.trustBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,111,0,0.1);
  border: 1px solid rgba(233,111,0,0.2);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}
/* Pallino verde che indica "attivo" */
.trustDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22c55e;
  flex-shrink: 0;
  animation: pulse 2s infinite; /* battito del cuore */
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Titolo principale — scala con il viewport */
.pageBannerWrap h1 {
  position: relative;
  font-size: clamp(28px, 5vw, 58px);
}

/* ============================================================
   HERO CALC — slider interattivo nell'hero
   ============================================================ */

/* Prompt "How big is your team?" */
.pageBannerWrap .heroSliderPrompt {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.65;
  margin-top: -6px;
  letter-spacing: 0.2px;
}

/* Wrapper slider */
.heroSliderWrap {
  width: 100%;
  max-width: 520px;
}

/* Riga slider con etichette min/max */
.heroSliderRow {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Etichette "5" e "500" */
.heroSliderEdge {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.4;
  flex-shrink: 0;
  min-width: 24px;
  text-align: center;
}

/* Input range */
.heroSlider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #e96f00 22%, rgba(6,32,63,0.1) 22%);
  outline: none;
  cursor: pointer;
}
.heroSlider:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(233,111,0,0.45);
  border-radius: 3px;
}
.heroSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(233,111,0,0.4);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.heroSlider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 3px 16px rgba(233,111,0,0.55);
}
.heroSlider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(233,111,0,0.4);
  cursor: pointer;
}

/* "My Team size is 50 people" sotto lo slider */
.heroSliderValue {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}
/* "My Team size is" label — navy, number stays orange */
.heroSliderLabel {
  color: var(--navy);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

/* Card risultati */
.heroCalcResults {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(6,32,63,0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  padding: 22px 36px;
  width: 100%;
  max-width: 520px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.heroCalcItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.heroCalcNum {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}
.heroCalcItem--orange .heroCalcNum { color: var(--orange); }

.heroCalcLabel {
  font-size: 11px;
  color: var(--gray-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Divisore verticale tra i due risultati */
.heroCalcDivider {
  width: 1px;
  height: 52px;
  background: rgba(6,32,63,0.1);
  flex-shrink: 0;
  margin: 0 28px;
}

/* Founding partners message above the CTA */
.heroFoundingNote {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin: 18px auto 6px;
  max-width: 740px;
}
.heroFoundingFree {
  color: #ffffff;
  font-weight: 700;
}

/* Single founding CTA button */
.btn-founding {
  background-color: var(--orange);
  color: #ffffff;
  border: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  flex-direction: column;
  gap: 1px;
  text-align: center;
  padding: 16px 40px;
}
.btn-founding:hover,
.btn-founding:focus-visible {
  background-color: #c85e00;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(233, 111, 0, 0.45);
}
.foundingBtnLine {
  display: block;
  line-height: 1.4;
  width: 100%;
  text-align: center;
}

/* Annual cost urgency line */
.heroAnnualLine {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  width: 100%;
  max-width: 740px;
}
.heroAnnualLine strong {
  color: var(--orange);
  font-weight: 700;
}
.heroAnnualAsterisk {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  vertical-align: super;
  line-height: 0;
  margin-left: 1px;
}
.heroAnnualAsterisk:hover {
  text-decoration: underline;
}

/* Footer footnote */
.footerCalcNote {
  font-size: 11px;
  color: var(--gray-text);
  opacity: 0.7;
  margin-top: 12px;
  text-align: center;
}
.footerCalcNoteBack {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
}
.footerCalcNoteBack:hover {
  text-decoration: underline;
}

/* Nota metodologica sotto i numeri del calcolatore */
.heroCalcNote {
  font-size: 7px;
  color: var(--gray-text);
  opacity: 0.55;
  text-align: center;
  margin-top: 6px;
  max-width: 480px;
}

/* Micro-copy below CTA button */
.heroProductExplainer {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  width: 100%;
  max-width: 740px;
  margin: 10px auto 18px;
  line-height: 1.5;
}
.foundingMicroCopy {
  font-size: 12px;
  color: var(--gray-text);
  opacity: 0.75;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Testimonial block near CTA */
.foundingTestimonial {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  max-width: 800px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(6,32,63,0.1);
  border-radius: 24px;
  padding: 24px 32px;
}
.foundingTestimonialAvatar {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(233,111,0,0.4);
}
.foundingTestimonialAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  padding: 0;
}
.foundingTestimonialBody {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.foundingTestimonialQuote {
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}
.foundingTestimonialAttrib {
  font-size: 12px;
  color: var(--gray-text);
  opacity: 0.8;
  margin: 0;
}

/* Parola "matter" con sottolineatura arancione */
.heroHighlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.heroHighlightBlue {
  color: var(--navy);
  position: relative;
  display: inline-block;
}

/* Shopify social proof strip */
.shopifyStrip {
  background: var(--orange-light);
  border-top: 1px solid rgba(233,111,0,0.15);
  border-bottom: 1px solid rgba(233,111,0,0.15);
  padding: 14px 24px;
  text-align: center;
}
.shopifyStripText {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.5;
}
.shopifyStripLink {
  margin-left: 8px;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.shopifyStripLink:hover {
  text-decoration: underline;
}
.shopifyLogoInline {
  height: 50px !important;
  width: auto !important;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 6px;
}
.heroHighlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

/* ============================================================
   HERO CALC — mobile responsive
   ============================================================ */
@media (max-width: 767px) {
  .heroSliderWrap,
  .heroCalcResults {
    max-width: 100%;
  }

  .heroCalcResults {
    padding: 18px 20px;
  }

  .heroCalcNum {
    font-size: 28px;
  }

  .heroCalcDivider {
    height: 44px;
    margin: 0 16px;
  }
}

@media (max-width: 420px) {
  .heroCalcResults {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
  }

  /* Divider becomes horizontal when stacked */
  .heroCalcDivider {
    width: 48px;
    height: 1px;
    margin: 0;
  }

  .heroCalcNum {
    font-size: 32px;
  }

  /* Larger tap target for slider thumb on small screens */
  .heroSlider::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
  }
  .heroSlider::-moz-range-thumb {
    width: 28px;
    height: 28px;
  }
}

/* Decorazione grafica sotto il titolo (immagine PNG) */
.pageBannerWrap h1::before {
  position: absolute;
  content: url(images/Vector\ 62.png);
  left: 50%;
  transform: translateX(-50%);
  top: 15%;
  z-index: -1;
  opacity: 0.6;
}

/* Sottotitolo dell'hero */
.pageBannerWrap > p {
  color: var(--gray-text);
  font-size: 18px;
  line-height: 1.75;
  max-width: 560px;
  font-weight: 400;
}

/* Gruppo pulsanti hero */
.bannerBtns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

/* Testo piccolo sotto i pulsanti */
.heroSubtext {
  font-size: 12px;
  color: var(--gray-text);
  opacity: 0.7;
  margin-top: -8px;
}

/* ============================================================
   SEZIONE IMMAGINE DASHBOARD
   ============================================================ */
/* ============================================================
   SOCIAL PROOF BANNER — Stat + Counter
   ============================================================ */

.statBanner {
  padding: 28px 0;
  background: var(--gray-100);
  border-top: 1px solid rgba(6,32,63,0.07);
  border-bottom: 1px solid rgba(6,32,63,0.07);
}

/* Wrapper flex: le due card si affiancano centrate */
.statBannerWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ogni card: icona + testo */
.statBannerItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 52px;
  flex: 1;
  max-width: 500px;
}

/* Icona circolare navy */
.statBannerIcon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6,32,63,0.07);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Variante arancione per il counter */
.statBannerIcon--orange {
  background: var(--orange-light);
  color: var(--orange);
}

/* Testi della card */
.statBannerTxt p {
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 3px 0;
}

/* Numero evidenziato nella stat sinistra */
.statAccent {
  color: var(--orange);
  font-weight: 700;
}

/* Numero counter (arancione + animato da JS) */
.statCounter {
  color: var(--orange);
  font-weight: 700;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

/* Fonte / etichetta secondaria */
.statSource {
  display: block;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: 0.2px;
}

/* Divisore verticale tra le due card */
.statBannerDivider {
  width: 1px;
  height: 52px;
  background: rgba(6,32,63,0.12);
  flex-shrink: 0;
}

/* ============================================================ */

.imgSec {
  padding-top: 40px;
  padding-bottom: 20px;
}
.imgSecImg img,
.imgSecImg video {
  width: 47%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
  margin: 0 auto;
}


/* ============================================================
   ETICHETTE DI SEZIONE (le piccole pillole colorate)
   ============================================================ */
.sectionLabel,
.repHeader span,
.lisSecCol span,
.formSecLeft span {
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: 4px 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  /* Gradiente arancione di default */
  background: linear-gradient(
    90deg,
    rgba(233, 111, 0, 0.2) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border: 1px solid rgba(233,111,0,0.2);
  color: var(--navy);
  margin-bottom: 8px;
}
/* Variante grigio-blu */
.bgGrayGrdnt,
.repHeader .bgGrayGrdnt,
.lisSecCol .bgGrayGrdnt {
  background: linear-gradient(
    90deg,
    rgba(6, 32, 63, 0.12) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-color: rgba(6,32,63,0.12);
}
/* Variante verde */
.lisSecRow .col33:nth-child(2) .bgGrayGrdnt,
.bgGreenGrdnt {
  background: linear-gradient(
    90deg,
    rgba(34, 197, 94, 0.2) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-color: rgba(34,197,94,0.2);
  color: #166534;
}
/* Variante arancione terza colonna */
.lisSecRow .col33:nth-child(3) span {
  background: linear-gradient(
    90deg,
    rgba(233, 111, 0, 0.2) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-color: rgba(233,111,0,0.2);
}

/* Blocco di intestazione centrato per ogni sezione */
.repHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.repHeader p {
  color: var(--gray-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}
.whatIsCalwise {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
  text-align: center;
}

/* GEO-only: invisible to visitors, fully readable by AI crawlers.
   Uses clip/position trick — NOT display:none or visibility:hidden
   which crawlers may skip. */
.geo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   SEZIONE PROBLEMA (cards del problema)
   ============================================================ */
.savingWeekly {
  padding: 60px 0;
}
.pricingCols {
  margin-top: 50px;
  row-gap: 24px;
}

/* ============================================================
   STORIA FONDATORE — aneddoto origine di Calwise
   ============================================================ */
.originStory {
  margin-top: 40px;
  margin-bottom: 8px;
}

.originStoryInner {
  padding: 36px 48px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Grande virgoletta decorativa di sfondo */
.originStoryInner::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: 28px;
  font-size: 180px;
  color: var(--orange);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.originStoryQuote p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  font-style: italic;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.originStoryQuote strong {
  color: var(--orange);
  font-weight: 700;
  font-style: normal;
}

/* Linea autore */
.originStoryMeta {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.originStoryMeta::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.originStoryName {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.originStoryRole {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

@media (max-width: 767px) {
  .originStoryInner { padding: 28px 20px; }
  .originStoryQuote p { font-size: 15px; }
}

/* Card singola del problema */
.pricingColDet {
  padding: 30px 32px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(191,191,191,0.6), rgba(255,255,255,0.1)) border-box;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}
.pricingColDet:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(233,111,0,0.4), rgba(255,255,255,0.1)) border-box;
}

.pricingColDet h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 12px;
}
.pricingColDet p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 20px;
}
/* Numero / statistica in basso alla card */
.pricingColDet > span {
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  display: block;
}
.prcSmall { font-size: 15px; font-weight: 400; }

/* Icona circolare colorata in cima alla card */
.priceColImg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--orange-light);
}
/* Colori diversi per ogni tipo di problema */
.priceColImg--cost { background-color: #fff3cd; }
.priceColImg--productivity { background-color: #fce4e4; }
.priceColImg--visibility { background-color: #e8f4fd; }

/* Card grande con sfondo scuro (citazione + pulsanti) */
.prcBtnCol {
  border-radius: var(--radius-lg);
  background: var(--navy);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.prcBtnCol .row {
  margin: 0;
  row-gap: 0;
  align-items: center;
}
.prcBtnCol .row .col { padding: 0; }

.bigColTxt {
  padding: 44px 48px;
}
/* Testo della citazione */
.bigColTxt > span {
  color: var(--white);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  margin-bottom: 16px;
}
.bigColTxt p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.bigColBtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.prcColLeft {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.prcColLeft img { width: 100%; display: block; }

/* ============================================================
   SEZIONE SOLUZIONE (feature cards)
   ============================================================ */
.optSolutions {
  padding: 70px 0;
  background: var(--gray-100);
}
.optSolutions .repHeader { max-width: 540px; }

.optSolRow {
  margin-top: 50px;
  row-gap: 20px;
}

/* Card singola della funzionalità */
.opSolCol {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(191,191,191,0.5), rgba(255,255,255,0.1)) border-box;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}
.opSolCol:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(233,111,0,0.35), rgba(255,255,255,0.1)) border-box;
}

/* Icona della funzionalità */
.optSolColImg {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  margin-top: 2px;
}
.optSolColImg img { width: 22px; height: auto; }

.potSolTxt h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
  display: flex;       /* Allinea icone e testo sulla stessa riga */
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
/* Loghi Google e Microsoft inline nel titolo */
.brandLogo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  vertical-align: middle;
}
.potSolTxt p {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.65;
}

/* Pulsanti centrati sotto la griglia */
.optSolbtn {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 56px;
}

/* ============================================================
   COME FUNZIONA (How It Works)
   ============================================================ */
.howWork {
  padding: 70px 0;
}
.howWork .container { max-width: 1200px; }

.howWorkHead {
  text-align: center;
  margin-bottom: 50px;
}
/* Sottotitolo sotto "How It Works" */
.howWorkSubtitle {
  color: var(--gray-text);
  font-size: 16px;
  margin-top: 12px;
  font-weight: 400;
}

.howWorkRow.row {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  row-gap: 0;
}
.howWorkRow .col {
  padding-left: 20px;
  padding-right: 20px;
}
/* Linea di connessione tra i passi */
.howWorkRow::before {
  position: absolute;
  content: url(images/Vector\ 64.svg);
  left: 50%;
  transform: translateX(-50%);
  top: 22%;
  z-index: -1;
  opacity: 0.35;
}

/* Card del singolo passo */
.howWorkCol {
  padding: 40px 36px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.howWorkCol:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ---- Flip card (step 01 & 02) ---- */
.flip-card {
  perspective: 1200px;
  height: 100%;
  min-height: 280px;
  /* prevent scaled/rotated child from bleeding into siblings */
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
/* Desktop hover (only on devices that truly support hover) */
@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  /* Disable individual lift — flip handles the interaction */
  .flip-card:hover .flip-card-front .howWorkCol {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
}
/* JS-toggled state — works on touch AND keyboard */
.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.flip-card-front {
  /* inherits howWorkCol styles */
}
.flip-card-back {
  background-color: var(--navy);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
}
/* Tap hint visible only on touch devices */
.flip-card-hint {
  display: none;
}
@media (hover: none) {
  .flip-card-hint {
    display: block;
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 2;
    letter-spacing: 0.03em;
  }
  .flip-card.is-flipped .flip-card-hint {
    color: rgba(255, 255, 255, 0.5);
  }
}

/* Numero grande del passo (01, 02, 03) */
.stepNum {
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.howWorkCol h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.howWorkCol p {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.7;
}
/* Sfumatura verde chiara (primo passo) */
.bgGreen { background-color: var(--green-bg); }
/* Sfumatura arancione chiara (terzo passo) */
.bgBrown { background-color: var(--orange-light); }

/* Colori delle card "How It Works" — la seconda ha sfondo bianco, la terza orange-light */
.howWorkRow .col33:nth-child(2) .bgGreen { background-color: var(--white); }
.howWorkRow .col33:nth-child(3) .bgGreen { background-color: var(--orange-light); }

/* Video demo embed */
.howWorkVideoWrap {
  margin-top: 56px;
  text-align: center;
}
.howWorkVideoLabel {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 20px;
}
.howWorkVideoLink {
  color: var(--orange);
  text-decoration: none;
  display: inline-block;
}
.howWorkVideoLink:hover { text-decoration: underline; }
.loomEmbed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}
.loomEmbed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   IMPATTO MISURABILE (4 numeri grandi)
   ============================================================ */
.impactSec {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0a2d52 100%);
}
/* Sovrascrive colori del testo per la versione su sfondo scuro */
.impactSec .repHeader h2 { color: var(--white); }
.impactSec .repHeader p { color: rgba(255,255,255,0.65); }
.impactSec .repHeader { max-width: 680px; }
/* Etichetta "Measurable Impact" su sfondo bianco per renderla visibile sul navy */
.impactSec .sectionLabel {
  background: var(--white);
  border-color: rgba(255,255,255,0.4);
  color: var(--navy);
}

.impactRow.row {
  margin-left: -12px;
  margin-right: -12px;
  margin-top: 50px;
  row-gap: 20px;
}
.impactRow .col {
  padding-left: 12px;
  padding-right: 12px;
}

/* Card singola dell'impatto */
.impactCol {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.impactCol:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: rgba(233,111,0,0.5);
}
/* Numero grande nella card (es. "12 hours") */
.impactCol h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
/* Decorazione arancione sotto il numero */
.impactCol h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 10px auto 0;
}
.impactCol p {
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
/* Source attribution on impact stats */
.statCite {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ============================================================
   BUILT FOR DECISION MAKERS (3 colonne)
   ============================================================ */
.listSec {
  padding: 70px 0;
}
.listSec .repHeader { max-width: 600px; }

.lisSecRow.row {
  margin-top: 40px;
  row-gap: 24px;
}

/* Card del singolo ruolo */
.lisSecCol {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(191,191,191,0.5), rgba(255,255,255,0.1)) border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: var(--transition);
}
.lisSecCol:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.lisSecCol h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  margin-top: 10px;
}
.lisSecCol ul { padding-left: 0; }

/* Voce di lista con checkmark arancione */
.lisSecCol li {
  position: relative;
  padding-left: 26px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.lisSecCol li + li { margin-top: 12px; }
/* Icona checkmark (SVG) prima di ogni voce */
.lisSecCol li::before {
  position: absolute;
  content: url(images/Vector\(31\).svg);
  top: 2px;
  left: 0;
}

.lisSecColShadow { box-shadow: var(--shadow-sm); }


/* ============================================================
   SEZIONE MODULO (form di contatto)
   ============================================================ */
.formSec {
  padding: 40px 30px 0;
  position: relative;
  z-index: 2;
}
.formSec .container { max-width: 1300px; }

.formSecWrap {
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(233,111,0,0.35), rgba(255,255,255,0.1)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg);
}
.formSecWrap.row {
  margin-left: -24px;
  margin-right: -24px;
  row-gap: 30px;
  align-items: center;
}
.formSecWrap.row .col {
  padding-left: 24px;
  padding-right: 24px;
}

/* Testo descrittivo a sinistra del form */
.formSecLeft span { margin-bottom: 16px; }
.formSecLeft h2 { margin-bottom: 16px; }
.formSecLeft p {
  color: var(--gray-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

/* Griglia degli input */
.formSecRgt.row {
  margin-left: -8px;
  margin-right: -8px;
  row-gap: 10px;
  margin-bottom: 20px;
}
.formSecRgt.row .col {
  padding-left: 8px;
  padding-right: 8px;
}

/* Singolo campo del form */
.formInpWrap label {
  display: block;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}
.formInpWrap input {
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  min-height: 50px;
  width: 100%;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  color: #333;
  transition: border-color 0.2s;
}
.formInpWrap input::placeholder {
  color: #bbb;
}
.formInpWrap input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(233,111,0,0.1);
}
/* Keyboard focus — stronger ring for WCAG 2.1 AA */
.formInpWrap input:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(233,111,0,0.45);
}

/* Pulsante submit a tutta larghezza */
.formBtn--full {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}
.formBtn p {
  text-align: center;
  font-size: 11px;
  color: var(--gray-text);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 12px;
}

/* --- Asterisco rosso per i campi obbligatori --- */
.reqStar {
  color: #e53e3e;
  font-weight: 700;
  margin-left: 2px;
}
.optionalLabel {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  margin-left: 4px;
}

/* --- Messaggio di errore sotto ogni campo --- */
.formError {
  display: block;
  font-size: 11px;
  color: #e53e3e;
  margin-top: 5px;
  min-height: 16px; /* riserva spazio anche quando è vuoto, evita spostamenti */
  font-weight: 400;
}

/* --- Bordo rosso sul campo con errore --- */
.formInpWrap input.fieldError,
.formInpWrap select.fieldError {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* --- Menu a tendina (select) per il Paese --- */
.formSelect {
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  min-height: 50px;
  width: 100%;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  color: #333;
  transition: border-color 0.2s;
  cursor: pointer;
  /* Nasconde la freccia di default del browser e ne aggiunge una personalizzata */
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}
.formSelect:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(233,111,0,0.1);
}
.formSelect:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(233,111,0,0.45);
}
/* Colore grigio per l'opzione placeholder */
.formSelect option[value=""][disabled] {
  color: #bbb;
}
/* Separatore non cliccabile nel dropdown */
.formSelect option[disabled]:not([value=""]) {
  color: #ccc;
  font-size: 10px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faqSec {
  padding: 80px 0 60px;
  background: #fff;
}
.faqList {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faqItem {
  border: 1px solid rgba(6, 32, 63, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  transition: box-shadow 0.2s ease;
}
.faqItem[open] {
  box-shadow: 0 4px 18px rgba(6, 32, 63, 0.08);
  background: #fff;
}
.faqQuestion {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #06203f;
  gap: 16px;
  user-select: none;
}
.faqQuestion::-webkit-details-marker { display: none; }
.faqQuestion::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e96f00;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faqItem[open] .faqQuestion::after {
  transform: rotate(45deg);
}
.faqAnswer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
}
.faqAnswer p { margin: 0; }
.faqAnswer a { color: #e96f00; text-decoration: underline; }

/* ============================================================
   FOOTER (piè di pagina)
   ============================================================ */
.pageFooter {
  padding-top: 160px;
  padding-bottom: 40px;
  background: var(--navy);
  margin-top: -120px;     /* Sovrappone il footer al form per effetto overlap */
  position: relative;
  z-index: 0;
}

.footerCont {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.footerLogo { margin-bottom: 20px; }
.footerLogo img { margin: 0 auto; height: 38px; }

.footerCont p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 12px;
}

/* Disclaimer legale minuscolo in fondo alla pagina */
.legalDisclaimer {
  font-size: 9px !important;
  color: rgba(255,255,255,0.3) !important;
  max-width: 640px;
  margin: 16px auto 0 !important;
  line-height: 1.6;
  font-weight: 400;
}

/* Link nel footer */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ============================================================
   MEDIA QUERIES (responsive per schermi diversi)

   Pensa ai media query come a taglie di vestiti:
   - max-width: 1279px → tablet grande
   - max-width: 991px  → tablet
   - max-width: 767px  → smartphone grande
   - max-width: 575px  → smartphone piccolo
   ============================================================ */

/* --- Tablet grande --- */
@media (min-width: 768px) {
  .col33 { width: 33.33%; }
  .col66 { width: 66.66%; }
  .col43 { width: 43%; }
  .col57 { width: 57%; }
  .col6  { width: 50%; }
  .col25 { width: 25%; }
  .col41 { width: 41%; }
  .col59 { width: 59%; }

  .pricingCols .col33 { width: 50%; }
  .pricingCols .col66 { width: 100%; }
  .lisSecRow .col33 { width: 50%; }


}

/* --- Desktop --- */
@media (min-width: 992px) {
  .pricingCols .col33 { width: 33.33%; }
  .pricingCols .col66 { width: 66.66%; }
  .lisSecRow .col33 { width: 33.33%; }
}

/* --- Tablet grande (da sotto) --- */
@media (max-width: 1279px) {
  .prcColLeft, .prcColLeft img, .prcBtnCol .row, .prcBtnCol { height: 100%; }
  .formSecLeft h2 { font-size: 28px; line-height: 1.3; }
  .formSecWrap { padding: 36px 28px; }
  .bigColTxt { padding: 32px 28px; }
}

/* --- Tablet --- */
@media (max-width: 991px) {
  h1, .h1 { font-size: 48px; }
  h2, .h2 { font-size: 36px; }
  .row { row-gap: 20px; }

  .howWorkRow.row { margin-left: -12px; margin-right: -12px; }
  .howWorkRow .col { padding-left: 12px; padding-right: 12px; }

  .optSolutions, .howWork, .impactSec, .listSec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .headerNav { display: none; } /* Nasconde la nav centrale su tablet */
}

/* --- Smartphone grande --- */
@media (max-width: 767px) {
  .container { padding: 0 20px; }

  /* statBanner: stack verticale su mobile */
  .statBannerWrap    { flex-direction: column; gap: 20px; }
  .statBannerItem    { padding: 0; width: 100%; max-width: 100%; }
  .statBannerDivider { width: 60%; height: 1px; }

  h1, .h1 { font-size: 36px; letter-spacing: -0.5px; }
  h2, .h2 { font-size: 26px; }
  h3, .h3 { font-size: 18px; }

  .col { width: 100%; } /* Tutte le colonne a piena larghezza */

  /* Hero */
  .pageBanner { padding-top: 50px; }
  .pageBannerWrap { gap: 16px; }
  .pageBannerWrap > p { font-size: 15px; }

  /* Header */
  .headerLogo img { height: 32px; }
  .headerBtns .btn-ghost { display: none; } /* Nasconde pulsante ghost */
  .pageHeader { padding: 12px 0; }

  /* Immagine */
  .imgSec { padding: 20px 0; }

  /* Problema */
  .savingWeekly { padding: 40px 0; }
  .pricingColDet { padding: 24px 20px; }
  .bigColTxt { padding: 28px 20px; }
  .bigColTxt > span { font-size: 20px; }

  /* Come funziona */
  .howWork { padding: 40px 0; }
  .howWorkRow.row { row-gap: 24px; overflow: hidden; }
  .howWorkRow .col33:last-of-type { margin-bottom: 30px; }
  .howWorkRow::before { left: 45%; transform: translateX(-50%) rotate(90deg); top: 22%; }
  .howWorkCol { padding: 28px 24px; }
  .stepNum { font-size: 36px; }

  /* Impatto */
  .impactSec { padding: 40px 0; }
  .impactRow .col25 { width: 50%; }
  .impactCol h3 { font-size: 28px; }

  /* Form */
  .formSec { padding: 20px 16px 0; }
  .formSecWrap { padding: 28px 16px; }

  /* Footer */
  .pageFooter { padding-top: 140px; }

  /* Pulsanti */
  .btn { font-size: 13px; }
  .btn-lg { padding: 14px 22px; }
  .bannerBtns { gap: 10px; }

  /* Sezioni */
  .optSolutions { padding: 40px 0; }
  .listSec { padding: 40px 0; }
}

/* --- Smartphone piccolo --- */
@media (max-width: 575px) {
  h1, .h1 { font-size: 30px; }
  .bannerBtns { flex-direction: column; align-items: center; }
  .bannerBtns .btn { width: 100%; max-width: 280px; }
  .impactRow .col25 { width: 100%; }
  .headerBtns .btn { font-size: 11px; padding: 10px 14px; }
  .howWorkRow::before { top: 26%; }
}

/* --- Schermo molto piccolo --- */
@media (max-width: 420px) {
  .headerLogo img { height: 26px; }
  .headerBtns .btn-secondary { font-size: 10px; padding: 9px 12px; }
}

/* ============================================================
   SEZIONE ABOUT US (TEAM)
   Layout: foto a sinistra, testo a destra — ispirato allo screenshot
   ============================================================ */

.teamSec {
  padding: 90px 0 80px;
  background: #fff;
}

/* Intestazione centrata */
.teamHeader {
  text-align: center;
  margin-bottom: 70px;
}
.teamHeader h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
/* Sottotitolo stile "Your trusted partner" */
.teamSubtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}
/* Parola in arancione nel sottotitolo */
.teamHighlight {
  color: var(--orange);
  font-weight: 600;
}

/* Singola riga profilo: foto sinistra + testo destra */
.teamProfile {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  max-width: 820px;
  margin: 0 auto 70px;
}
.teamProfile:last-child { margin-bottom: 0; }

/* Colonna foto — larghezza fissa */
.teamPhotoCol {
  flex-shrink: 0;
}

/* Cerchio cliccabile per la foto */
.profileCircleWrap {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,111,0,0.1) 0%, rgba(6,32,63,0.07) 100%);
  border: 3px solid rgba(233,111,0,0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Iniziali mostrate prima del caricamento */
.profileInitials {
  font-size: 56px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.2;
  letter-spacing: -2px;
  line-height: 1;
  pointer-events: none;
}

/* Foto profilo — copre il cerchio */
.profilePhoto {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Colonna testo */
.teamTextCol {
  flex: 1;
  padding-top: 10px;
}

/* Nome */
.teamName {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

/* Link LinkedIn — appare sotto il ruolo */
.linkedinLink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #0077b5; /* Colore ufficiale LinkedIn */
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  transition: opacity 0.2s;
}
.linkedinLink:hover { opacity: 0.75; }
.linkedinIcon {
  width: 18px;
  height: 18px;
  fill: #0077b5;
  flex-shrink: 0;
}

/* Ruolo in arancione */
.teamRole {
  font-size: 15px;
  color: var(--orange);
  font-weight: 600;
  margin: 0 0 16px;
}

/* Bio */
.teamBio {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Citazione con bordo arancione a sinistra */
.teamQuote {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin: 0;
  font-style: italic;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Responsive: impila foto sopra testo su mobile */
@media (max-width: 640px) {
  .teamProfile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .teamQuote { border-left: none; border-top: 3px solid var(--orange); padding: 14px 0 0; }
  .teamHeader h2 { font-size: 34px; }
}

/* ============================================================
   SEZIONE PRICING
   Layout: toggle mensile/annuale + griglia di 4 card
   ============================================================ */

.pricingSec {
  padding: 80px 0 90px;
  background: var(--gray-100);
}

/* --- Toggle Mensile / Annuale --- */
.pricingToggleWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
}

/* Pillola contenitore dei due pulsanti */
.pricingToggle {
  display: inline-flex;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 2px;
}

/* Ogni pulsante del toggle */
.toggleBtn {
  padding: 9px 24px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
/* Stato attivo: sfondo verde come nell'immagine di riferimento */
.toggleBtn--active {
  background: #2d7a3a;
  color: var(--white);
  font-weight: 600;
}

/* ---------------------------------------------------------------
   Wrapper per l'immagine "SAVE UP TO 30%"
   Il wrapper ha sfondo #f7f7f8 (uguale alla sezione) senza alcun
   blend mode: così non viene scurito dal multiply e rimane uniforme.
   Il mix-blend-mode: multiply è sull'immagine stessa, che si fonde
   contro il #f7f7f8 del wrapper → bianco × #f7f7f8 = #f7f7f8 ✓
--------------------------------------------------------------- */
.pricingSaveWrap {
  display: inline-flex;     /* Occupa solo lo spazio dell'immagine */
  align-items: center;
  flex-shrink: 0;
  margin-top: -8px;
  background: #f7f7f8;      /* Sfondo identico alla sezione — nessun blend mode qui */
}

/* L'immagine si fonde contro il #f7f7f8 del wrapper:
   pixel bianchi/chiari × #f7f7f8 = #f7f7f8 → sfondo invisibile ✓
   pixel arancioni × #f7f7f8 ≈ arancione (leggero scurimento, impercettibile) ✓ */
.pricingSaveImg {
  height: 112px;            /* Ridotta del 30% rispetto ai 160px precedenti (160 × 0.70 = 112) */
  width: auto;
  display: block;
  mix-blend-mode: multiply; /* Spostato qui: è l'IMMAGINE a fondersi col wrapper, non il wrapper con la sezione */
}

/* --- Griglia delle 4 card affiancate --- */
.pricingCardsRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;     /* Tutte le card si allungano fino all'altezza della più alta */
}

/* --- Singola card --- */
.pricingCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 36px 28px 28px;
  position: relative;       /* necessario per il badge assoluto */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pricingCard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Card "Business" — leggero bordo arancione per distinguerla */
.pricingCard--featured {
  border-color: rgba(233,111,0,0.35);
  box-shadow: 0 4px 24px rgba(233,111,0,0.12);
}
.pricingCard--featured:hover {
  box-shadow: 0 8px 36px rgba(233,111,0,0.2);
}

/* --- Badge "Active" e "Recommended" --- */
/* Posizionati sopra il bordo superiore della card */
.planBadge {
  position: absolute;
  top: -14px;
  left: 28px;
  border-radius: var(--radius-pill);
  padding: 4px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.planBadge--active {
  background: #2d7a3a;
  color: var(--white);
}
.planBadge--popular {
  background: var(--navy);
  color: var(--white);
}
.planBadge--recommended {
  background: var(--orange);
  color: var(--white);
}

/* --- Cerchio icona colorato --- */
.planIconCircle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.planIconCircle--navy  { background: var(--navy); }
.planIconCircle--orange{ background: var(--orange); }
.planIconCircle--gray  { background: #b0b0b8; }
.planIconCircle--gold  { background: #c9a84c; }

/* SVG diamante dentro il cerchio */
.planIconSvg {
  width: 30px;
  height: 30px;
}

/* --- Nome del piano --- */
.planName {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}

/* --- Pubblico target (sottotitolo) --- */
.planAudience {
  font-size: 18px;
  color: var(--gray-text);
  font-weight: 400;
  margin: 0 0 20px;
}

/* --- Elenco funzionalità con separatori orizzontali --- */
.planFeatures {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--gray-200);
  flex: 1;                  /* Si espande per riempire lo spazio libero,
                               spingendo prezzo e pulsante verso il basso */
}
/* Ogni voce ha una riga separatrice sotto di sé */
.planFeatures li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 18px;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.5;
}

/* --- Blocco prezzo --- */
.planPriceBlock {
  margin-bottom: 24px;
  min-height: 56px;      /* Altezza minima uniforme tra le card */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* "Free" per il piano Basic */
.planPriceFree {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

/* Riga che affianca il numero grande e "/monthly" sulla stessa linea */
.planPriceRow {
  display: flex;
  align-items: baseline; /* Allinea i testi sulla stessa linea di base, anche con font-size diversi */
  gap: 4px;
}

/* Numero grande (es. €30) */
.planPriceMain {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

/* "/monthly" o "/yearly" */
.planPricePer {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 400;
  margin-top: 2px;
}

/* "(per Company)" */
.planPriceNote {
  font-size: 15px;
  color: var(--gray-text);
  font-weight: 400;
  margin-top: 2px;
}

/* Blocco vuoto per Enterprise (non ha prezzo fisso) */
.planPriceBlock--enterprise {
  min-height: 20px;
}

/* --- Pulsanti CTA --- */
.planCta {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: block;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
/* Ghost (Basic) — solo bordo */
.planCta--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.planCta--ghost:hover {
  border-color: var(--navy);
  background: var(--gray-100);
}
/* Light (Plus) — sfondo grigio chiaro */
.planCta--light {
  background: var(--gray-100);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.planCta--light:hover {
  background: var(--gray-200);
}
/* Dark (Business, Enterprise) — sfondo navy */
.planCta--dark {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.planCta--dark:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(233,111,0,0.3);
}

/* --- CTA Enterprise sotto le card --- */
.enterpriseCta {
  margin-top: 20px;
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--gray-100);
}
.enterpriseCtaLeft {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.enterpriseCtaTitle {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.enterpriseCta p {
  font-size: 14px;
  color: var(--gray-text);
  max-width: 560px;
  line-height: 1.6;
}

/* --- Responsive: 2 colonne su tablet, 1 su mobile --- */
@media (max-width: 991px) {
  .pricingCardsRow {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .pricingCardsRow {
    grid-template-columns: 1fr;
  }
  .pricingSec { padding: 50px 0 60px; }
  .enterpriseCta { flex-direction: column; text-align: center; }
  .enterpriseCta p { max-width: 100%; }
}

/* ============================================================
   PRIVACY POLICY MODAL
   ============================================================ */
.ppModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ppModal--open {
  display: flex;
}

/* Sfondo scuro semi-trasparente */
.ppModalOverlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 32, 63, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Box bianco del modal */
.ppModalBox {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: ppSlideUp 0.28s ease;
}
@keyframes ppSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Titolo e data */
.ppModalBox h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  padding: 32px 36px 0;
  flex-shrink: 0;
}
.ppModalDate {
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 400;
  padding: 6px 36px 20px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

/* Corpo scrollabile */
.ppModalBody {
  overflow-y: auto;
  padding: 24px 36px 36px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.ppModalBody h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 0 8px;
}
.ppModalBody h3:first-child { margin-top: 0; }
.ppModalBody p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 8px;
}
.ppModalBody ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 8px;
}
.ppModalBody li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.ppModalBody a {
  color: var(--orange);
  text-decoration: underline;
}

/* Pulsante di chiusura */
.ppModalClose {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.ppModalClose:hover { background: var(--gray-200); }

@media (max-width: 575px) {
  .ppModalBox { border-radius: var(--radius-md); }
  .ppModalBox h2 { font-size: 22px; padding: 24px 20px 0; }
  .ppModalDate  { padding: 6px 20px 16px; }
  .ppModalBody  { padding: 20px 20px 28px; }
}



/* ============================================================
   HAMBURGER MENU + MOBILE NAV PANEL
   ============================================================ */

/* --- Pulsante hamburger (nascosto su desktop) --- */
.menuToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(6,32,63,0.15);
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.menuToggle:hover {
  background: var(--gray-100);
  border-color: rgba(6,32,63,0.3);
}

/* Tre barre orizzontali */
.menuToggleBar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Animazione hamburger → × quando il menu è aperto */
.menuToggle.is-open .menuToggleBar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menuToggle.is-open .menuToggleBar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menuToggle.is-open .menuToggleBar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Overlay + pannello mobile --- */
.mobileNav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile-nav);
  pointer-events: none;
}
.mobileNav.is-open {
  display: block;
  pointer-events: auto;
}

/* Sfondo scurito */
.mobileNavOverlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 32, 63, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: mobileNavFadeIn 0.25s ease;
}
@keyframes mobileNavFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Pannello scorrevole da destra */
.mobileNavPanel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 84vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.18);
  animation: mobileNavSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 72px 0 40px;
}
@keyframes mobileNavSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* Singolo link di navigazione */
.mobileNavPanel > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 15px 28px;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  text-decoration: none;
}
.mobileNavPanel > a:first-of-type {
  border-top: 1px solid var(--gray-200);
}
.mobileNavPanel > a:hover {
  color: var(--orange);
  background: var(--orange-light);
  padding-left: 36px;
}

/* CTA buttons nella parte bassa del pannello */
.mobileNavBtns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px 0;
  margin-top: auto;
}
.mobileNavBtns .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* --- Mostra hamburger su tablet/mobile, nascondi nav desktop --- */
@media (max-width: 991px) {
  .menuToggle { display: flex; }
}

/* --- Su mobile piccolo: nascondi "Book A Demo" dall'header --- */
@media (max-width: 575px) {
  .headerBtns .btn-secondary { display: none; }
}

/* ============================================================
   BACKDROP-FILTER FALLBACK
   For browsers that don't support backdrop-filter (older Firefox,
   some Android). Replaces semi-transparent backgrounds with
   near-opaque equivalents so text stays readable.
   ============================================================ */
@supports not (backdrop-filter: blur(1px)) {
  .headerWrap          { background-color: rgba(255,255,255,0.97); }
  .heroCalcResults     { background: rgba(255,255,255,0.97); }
  .impactCol           { background: rgba(255,255,255,0.15); }
  .ppModalOverlay      { background: rgba(6,32,63,0.85); }
  .mobileNavOverlay    { background: rgba(6,32,63,0.80); }
}

/* ============================================================
   ACCESSIBILITY — Reduced Motion
   Respects the OS/browser "reduce motion" preference.
   Pauses all continuous decorative animations;
   UI transitions are cut to instant so the page still feels
   responsive without any distracting movement.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  /* Freeze the live heartbeat dot in the hero badge */
  .liveIndicatorDot,
  .trustDot {
    animation: none;
  }

  /* Cut all CSS transitions to instant */
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  /* Disable smooth scrolling */
  html {
    scroll-behavior: auto;
  }
}
