/* =====================================================================
   CB Amministrazioni — landing pages stylesheet
   Tutte le regole sono prefissate con .cb-landing-page per non
   intaccare il resto del tema WordPress.

   File condiviso tra:
   - templates/amministratore-condominio-torino.php
   - templates/cambio-amministratore-condominio-torino.php

   v1.0.11 — clean rewrite
   ===================================================================== */


/* =====================================================================
   1. DESIGN TOKENS (CSS variables)
   ===================================================================== */
.cb-landing-page {
  --navy-950:#0b1e38;
  --navy-900:#102a4c;
  --navy-800:#14335b;
  --navy-700:#1b3f6e;
  --navy-50:#eef2f8;
  --teal-700:#107c73;
  --teal-600:#13958a;
  --teal-500:#17a89b;
  --teal-50:#e8f6f4;
  --ink-900:#0e1b30;
  --ink-700:#334158;
  --ink-500:#64748b;
  --ink-400:#94a3b8;
  --line:#e3e8ef;
  --line-2:#d7dde6;
  --bg:#ffffff;
  --bg-soft:#f6f8fb;
  --star:#f5b301;
  --danger:#dc2626;
  --sh-sm:0 1px 2px rgba(11,30,56,.04);
  --sh-md:0 6px 18px rgba(11,30,56,.06),0 1px 3px rgba(11,30,56,.04);
  --sh-lg:0 18px 44px rgba(11,30,56,.08),0 4px 10px rgba(11,30,56,.04);
  --r-sm:8px;
  --r-md:10px;
  --r-lg:14px;
  --r-xl:18px;
  --container:1180px;
}


/* =====================================================================
   2. BASE / RESET (scoped)
   ===================================================================== */
.cb-landing-page,
.cb-landing-page *,
.cb-landing-page *::before,
.cb-landing-page *::after { box-sizing: border-box; }

.cb-landing-page {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cb-landing-page img,
.cb-landing-page svg { max-width: 100%; display: block; }
.cb-landing-page a { color: var(--navy-800); text-decoration: none; }
.cb-landing-page button { font: inherit; cursor: pointer; border: none; background: none; }

.cb-landing-page h1,
.cb-landing-page h2,
.cb-landing-page h3,
.cb-landing-page h4 {
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.cb-landing-page h1 {
  font-size: clamp(2.25rem, 4.2vw + 1rem, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.05;
}
.cb-landing-page h2 {
  font-size: clamp(1.375rem, .8vw + 1rem, 1.625rem);
  letter-spacing: -0.02em;
}
.cb-landing-page h3 {
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.cb-landing-page p { margin: 0; }

.cb-landing-page .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cb-landing-page .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* =====================================================================
   3. BUTTONS
   ===================================================================== */
.cb-landing-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--r-md);
  transition: all .18s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  letter-spacing: -0.005em;
}
.cb-landing-page .btn-primary       { background: var(--navy-800); color: #fff; }
.cb-landing-page .btn-primary:hover { background: var(--navy-900); transform: translateY(-1px); box-shadow: var(--sh-md); }
.cb-landing-page .btn-outline       { background: #fff; color: var(--navy-800); border-color: var(--line-2); }
.cb-landing-page .btn-outline:hover { border-color: var(--navy-800); }
.cb-landing-page .btn-teal          { background: var(--teal-500); color: #fff; }
.cb-landing-page .btn-teal:hover    { background: var(--teal-600); transform: translateY(-1px); box-shadow: var(--sh-md); }
.cb-landing-page .btn-whatsapp      { background: #25d366; color: #fff; }
.cb-landing-page .btn-whatsapp:hover{ background: #1ebe57; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37,211,102,.28); }
.cb-landing-page .btn-whatsapp svg  { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.cb-landing-page .btn-sm            { padding: 10px 16px; font-size: .8438rem; border-radius: 8px; }
.cb-landing-page .btn-full          { width: 100%; }
.cb-landing-page .btn svg           { width: 18px; height: 18px; }
.cb-landing-page .btn-sm svg        { width: 16px; height: 16px; }


/* =====================================================================
   4. HEADER
   ===================================================================== */
.cb-landing-page .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.cb-landing-page .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.cb-landing-page .brand { display: flex; align-items: center; gap: 10px; }
.cb-landing-page .brand-logo-img { height: 38px; width: auto; }

.cb-landing-page .nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.cb-landing-page .nav a {
  color: var(--ink-700);
  font-size: .9375rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color .15s;
}
.cb-landing-page .nav a:hover,
.cb-landing-page .nav a.active { color: var(--navy-900); }
.cb-landing-page .nav-cta { display: flex; align-items: center; gap: 12px; }
.cb-landing-page .menu-toggle { display: none; padding: 8px; }
.cb-landing-page .menu-toggle svg { width: 24px; height: 24px; color: var(--navy-900); }

@media (max-width: 960px) {
  .cb-landing-page .site-header { position: relative; }
  .cb-landing-page .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    box-shadow: var(--sh-md);
    z-index: 49;
  }
  .cb-landing-page .nav.open { display: flex; }
  .cb-landing-page .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .cb-landing-page .nav a:last-of-type { border-bottom: none; }
  .cb-landing-page .menu-toggle { display: inline-flex; }
}


/* =====================================================================
   5. HERO — shared structure
   Sfondo applicato direttamente sulla section .hero via --cb-hero-url
   (impostata inline dal template). Niente .hero-bg, niente <img>, niente
   pseudo-elementi sovrapposti.
   ===================================================================== */
.cb-landing-page .hero {
  position: relative;
  overflow: hidden;
  background-color: #eef7fd;
  background-image:
    linear-gradient(90deg,
      rgba(255,255,255,.97) 0%,
      rgba(255,255,255,.88) 28%,
      rgba(255,255,255,.45) 48%,
      rgba(255,255,255,.10) 72%,
      rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 70%, #ffffff 100%),
    var(--cb-hero-url);
  background-size: cover, cover, cover;
  background-position: center center, center center, center center;
  background-repeat: no-repeat;
}

@media (max-width: 980px) {
  .cb-landing-page .hero {
    background-image:
      linear-gradient(180deg,
        rgba(255,255,255,.94) 0%,
        rgba(255,255,255,.80) 45%,
        rgba(255,255,255,.55) 100%),
      var(--cb-hero-url);
    background-position: center top;
  }
}

.cb-landing-page .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 60px 0 80px;
  align-items: start;
}
.cb-landing-page .hero-copy { padding-top: 16px; max-width: 640px; }
.cb-landing-page .hero h1 { margin-bottom: 22px; color: var(--navy-950); }
.cb-landing-page .hero-divider {
  width: 72px; height: 3px;
  background: var(--teal-500);
  border-radius: 2px;
  margin: 0 0 22px;
}
.cb-landing-page .hero-lede {
  font-size: 1.0625rem;
  color: var(--ink-700);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.cb-landing-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

/* hero-stats (page 1) */
.cb-landing-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 36px;
  max-width: 600px;
}
.cb-landing-page .hero-stat { text-align: left; }
.cb-landing-page .hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-500);
  color: var(--teal-600);
  display: grid; place-items: center;
  margin-bottom: 10px;
  background: #fff;
}
.cb-landing-page .hero-stat-icon svg { width: 20px; height: 20px; }
.cb-landing-page .hero-stat-value {
  font-weight: 800;
  color: var(--navy-950);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.cb-landing-page .hero-stat-label {
  font-size: .8125rem;
  color: var(--ink-500);
  line-height: 1.35;
}

/* hero-trust (page 2) */
.cb-landing-page .hero-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  max-width: 600px;
}
.cb-landing-page .trust-item { display: flex; gap: 12px; align-items: flex-start; }
.cb-landing-page .trust-ic {
  width: 22px; height: 22px;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.cb-landing-page .trust-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 2px;
  line-height: 1.3;
}
.cb-landing-page .trust-desc {
  font-size: .75rem;
  color: var(--ink-500);
  line-height: 1.4;
}

@media (max-width: 980px) {
  .cb-landing-page .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 48px;
  }
  .cb-landing-page .hero-copy { padding-top: 0; max-width: none; }
  .cb-landing-page .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cb-landing-page .hero-trust { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .cb-landing-page .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cb-landing-page .hero-trust { grid-template-columns: 1fr; gap: 16px; }
}


/* =====================================================================
   6. HERO FORM CARD (shared shell)
   ===================================================================== */
.cb-landing-page .hero-form-card {
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-lg);
  backdrop-filter: blur(8px);
  overflow: visible;
}
.cb-landing-page .form-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}


/* =====================================================================
   7. CONTACT FORM 7 — restyle
   Targets CF7-generated markup. Field icons applied via [data-name]
   attribute on .wpcf7-form-control-wrap.
   ===================================================================== */
.cb-landing-page .hero-form-card .wpcf7,
.cb-landing-page .hero-form-card .wpcf7 form {
  margin: 0;
  padding: 0;
}
.cb-landing-page .hero-form-card .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cb-landing-page .hero-form-card .wpcf7 form > p { margin: 0; padding: 0; }

.cb-landing-page .hero-form-card .wpcf7 label {
  display: block;
  margin: 0;
  color: #10213d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

/* Each field wrap is positioned to anchor an icon ::before */
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  width: 100%;
}
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
  opacity: .72;
}

/* Inputs / selects / textarea — uniform style with left padding for icon */
.cb-landing-page .hero-form-card input[type="text"],
.cb-landing-page .hero-form-card input[type="email"],
.cb-landing-page .hero-form-card input[type="tel"],
.cb-landing-page .hero-form-card input[type="url"],
.cb-landing-page .hero-form-card input[type="number"],
.cb-landing-page .hero-form-card select,
.cb-landing-page .hero-form-card textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 52px;
  margin: 0;
  padding: 14px 16px 14px 44px;
  border: 1px solid #d4dfec;
  border-radius: 10px;
  background: #ffffff;
  color: #10213d;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  outline: none;
  box-shadow: 0 1px 0 rgba(15,33,61,.03);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.cb-landing-page .hero-form-card textarea {
  min-height: 90px;
  resize: vertical;
}
.cb-landing-page .hero-form-card input::placeholder,
.cb-landing-page .hero-form-card textarea::placeholder { color: #93a3b8; opacity: 1; }

.cb-landing-page .hero-form-card input:focus,
.cb-landing-page .hero-form-card select:focus,
.cb-landing-page .hero-form-card textarea:focus {
  border-color: var(--teal-500);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(24,169,157,.14);
}

/* Select — caret chevron on the right */
.cb-landing-page .hero-form-card select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%2394a3b8' d='M6 8L2 4h8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 32px;
}

/* ---- Field icons by data-name (set in CF7 markup) ---- */
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap[data-name="cb-name"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/><circle cx='12' cy='7' r='4'/></svg>");
}
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap[data-name="cb-tel"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>");
}
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap[data-name="cb-email"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='4' width='20' height='16' rx='2'/><polyline points='22,6 12,13 2,6'/></svg>");
}
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap[data-name="cb-role"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/><circle cx='9' cy='7' r='4'/><path d='M22 11h-6'/><path d='M22 15h-6'/></svg>");
}
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap[data-name="cb-zone"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
}
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap[data-name="cb-units"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='7' height='7'/><rect x='14' y='3' width='7' height='7'/><rect x='3' y='14' width='7' height='7'/><rect x='14' y='14' width='7' height='7'/></svg>");
}
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap[data-name="cb-message"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>");
}

/* Textarea: icon stays at top, not vertically centered */
.cb-landing-page .hero-form-card .wpcf7-form-control-wrap[data-name="cb-message"]::before { top: 18px; }

/* Acceptance / privacy checkbox */
.cb-landing-page .hero-form-card .wpcf7-acceptance,
.cb-landing-page .hero-form-card .wpcf7-list-item,
.cb-landing-page .hero-form-card .wpcf7-list-item label {
  display: block;
  margin: 0;
}
.cb-landing-page .hero-form-card .wpcf7-acceptance label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #4a5b73;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}
.cb-landing-page .hero-form-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal-500);
  cursor: pointer;
}
.cb-landing-page .hero-form-card .wpcf7-list-item-label a,
.cb-landing-page .hero-form-card a {
  color: #0e5eaa;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit button — teal with paper-plane icon (via ::before) */
.cb-landing-page .hero-form-card input[type="submit"],
.cb-landing-page .hero-form-card .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  margin: 2px 0 0;
  padding: 15px 22px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #18a99d 0%, #10978c 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.005em;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(24,169,157,.24);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='22' y1='2' x2='11' y2='13'/><polygon points='22 2 15 22 11 13 2 9 22 2'/></svg>"),
    linear-gradient(135deg, #18a99d 0%, #10978c 100%);
  background-repeat: no-repeat;
  background-position: 24% center, center;
  background-size: 18px 18px, cover;
  padding-left: calc(24% + 24px);
}
.cb-landing-page .hero-form-card input[type="submit"]:hover,
.cb-landing-page .hero-form-card .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(24,169,157,.30);
  filter: brightness(1.03);
}
.cb-landing-page .hero-form-card input[type="submit"]:active,
.cb-landing-page .hero-form-card .wpcf7-submit:active { transform: translateY(0); }

/* CF7 validation & response messages */
.cb-landing-page .hero-form-card .wpcf7-not-valid {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 4px rgba(217,48,37,.10) !important;
}
.cb-landing-page .hero-form-card .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #b42318;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.cb-landing-page .hero-form-card .wpcf7-spinner { display: block; margin: 10px auto 0; }
.cb-landing-page .hero-form-card .wpcf7-response-output {
  margin: 12px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 10px;
  border-width: 1px !important;
  color: #10213d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.cb-landing-page .hero-form-card .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(24,169,157,.45) !important;
  background: rgba(24,169,157,.08);
}
.cb-landing-page .hero-form-card .wpcf7 form.invalid .wpcf7-response-output,
.cb-landing-page .hero-form-card .wpcf7 form.unaccepted .wpcf7-response-output,
.cb-landing-page .hero-form-card .wpcf7 form.failed .wpcf7-response-output {
  border-color: rgba(217,48,37,.40) !important;
  background: rgba(217,48,37,.07);
}
.cb-landing-page .hero-form-card .grecaptcha-badge { visibility: hidden; }

@media (max-width: 767px) {
  .cb-landing-page .hero-form-card .wpcf7 form { gap: 10px; }
  .cb-landing-page .hero-form-card input[type="text"],
  .cb-landing-page .hero-form-card input[type="email"],
  .cb-landing-page .hero-form-card input[type="tel"],
  .cb-landing-page .hero-form-card input[type="number"],
  .cb-landing-page .hero-form-card select,
  .cb-landing-page .hero-form-card textarea {
    min-height: 50px;
    font-size: 16px;
  }
}


/* =====================================================================
   8. PROBLEM BAND (page 2 — cambio)
   ===================================================================== */
.cb-landing-page .problem-band {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.cb-landing-page .problems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.cb-landing-page .problem-item { display: flex; gap: 12px; align-items: flex-start; }
.cb-landing-page .problem-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-800);
  color: var(--navy-800);
  background: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cb-landing-page .problem-ic svg { width: 18px; height: 18px; }
.cb-landing-page .problem-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 3px;
}
.cb-landing-page .problem-desc {
  font-size: .8125rem;
  color: var(--ink-500);
  line-height: 1.45;
}
@media (max-width: 900px) { .cb-landing-page .problems { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .cb-landing-page .problems { grid-template-columns: 1fr; } }


/* =====================================================================
   9. SECTIONS / SECTION HEADER
   ===================================================================== */
.cb-landing-page .section { padding: 64px 0; }
.cb-landing-page .section-sm { padding: 40px 0; }
.cb-landing-page .section-tinted { background: var(--bg-soft); }
.cb-landing-page .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.cb-landing-page .section-header h2 { margin-bottom: 0; }
.cb-landing-page .section-underline {
  width: 44px;
  height: 3px;
  background: var(--teal-500);
  border-radius: 2px;
  margin: 14px auto 0;
}
.cb-landing-page .section-num { color: var(--navy-950); font-weight: 700; }


/* =====================================================================
   10. FEATURES (page 1)
   ===================================================================== */
.cb-landing-page .features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cb-landing-page .feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cb-landing-page .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--line-2);
}
.cb-landing-page .feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-500);
  color: var(--teal-600);
  background: #fff;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.cb-landing-page .feature-icon svg { width: 28px; height: 28px; }
.cb-landing-page .feature-card h3 {
  font-size: .9375rem;
  color: var(--navy-950);
  margin-bottom: 8px;
  font-weight: 600;
}
.cb-landing-page .feature-card p {
  font-size: .8125rem;
  color: var(--ink-500);
  line-height: 1.5;
}
@media (max-width: 900px) { .cb-landing-page .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cb-landing-page .features { grid-template-columns: 1fr; } }


/* =====================================================================
   11. TWO-COL + CHECK LIST + REASONS + SUPPORT LIST
   ===================================================================== */
.cb-landing-page .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.cb-landing-page .two-col-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 12px;
}
.cb-landing-page .two-col-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--teal-500);
  border-radius: 2px;
}

/* Generic check list (page 1) */
.cb-landing-page .check-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.cb-landing-page .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.55;
}
.cb-landing-page .check-list li .check-ic {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--teal-500);
  margin-top: 2px;
}
.cb-landing-page .check-list li b { color: var(--navy-950); font-weight: 600; }

/* Reasons grid (page 2) */
.cb-landing-page .reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cb-landing-page .reason-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .15s, box-shadow .15s;
}
.cb-landing-page .reason-card:hover { border-color: var(--line-2); box-shadow: var(--sh-sm); }
.cb-landing-page .reason-icon {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-800);
  color: var(--navy-800);
  background: #fff;
  display: grid; place-items: center;
}
.cb-landing-page .reason-icon svg { width: 22px; height: 22px; }
.cb-landing-page .reason-card h3 {
  font-size: .875rem;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.3;
}
.cb-landing-page .reason-card p {
  font-size: .75rem;
  color: var(--ink-500);
  line-height: 1.5;
}

/* Support list (page 2) */
.cb-landing-page .support-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 9px;
}
.cb-landing-page .support-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.55;
}
.cb-landing-page .support-list li .check-ic {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--teal-500);
  margin-top: 2px;
}
.cb-landing-page .support-list li b { color: var(--navy-950); font-weight: 600; }

@media (max-width: 900px) {
  .cb-landing-page .two-col { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 520px) {
  .cb-landing-page .reasons { grid-template-columns: 1fr; }
}


/* =====================================================================
   12. PROCESS (3 step, page 1)
   ===================================================================== */
.cb-landing-page .process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
}
.cb-landing-page .process-step {
  text-align: center;
  position: relative;
  padding: 16px 12px;
}
.cb-landing-page .process-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal-500);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 10px rgba(23,168,155,.28);
}
.cb-landing-page .process-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  color: var(--navy-800);
  display: grid; place-items: center;
}
.cb-landing-page .process-icon svg { width: 48px; height: 48px; stroke-width: 1.25; }
.cb-landing-page .process-step h3 {
  font-size: .9375rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--navy-950);
}
.cb-landing-page .process-step p {
  font-size: .8125rem;
  color: var(--ink-500);
  line-height: 1.5;
}
.cb-landing-page .process-arrow {
  position: absolute;
  top: 54px;
  right: -10px;
  color: var(--line-2);
  z-index: 1;
}
.cb-landing-page .process-arrow svg { width: 16px; height: 16px; }
.cb-landing-page .process-step:last-child .process-arrow { display: none; }

/* Process 4 step (page 2) */
.cb-landing-page .process-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .cb-landing-page .process { grid-template-columns: 1fr; gap: 8px; }
  .cb-landing-page .process-arrow { display: none; }
  .cb-landing-page .process-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cb-landing-page .process-4 { grid-template-columns: 1fr; }
}


/* =====================================================================
   13. TESTIMONIALS
   ===================================================================== */
.cb-landing-page .testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.cb-landing-page .testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
}
.cb-landing-page .testi-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.cb-landing-page .testi-quote {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--teal-500);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
}
.cb-landing-page .testi-text {
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cb-landing-page .testi-author { display: flex; align-items: center; gap: 14px; }
.cb-landing-page .testi-avatar {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cb-landing-page .testi-avatar svg { width: 22px; height: 22px; stroke-width: 1.5; }
.cb-landing-page .testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
  color: var(--star);
}
.cb-landing-page .testi-stars svg { width: 13px; height: 13px; }
.cb-landing-page .testi-name {
  font-weight: 600;
  color: var(--navy-950);
  font-size: .9375rem;
  line-height: 1.2;
}
.cb-landing-page .testi-meta {
  font-size: .8125rem;
  color: var(--ink-500);
  font-style: italic;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .cb-landing-page .testimonials { grid-template-columns: 1fr; }
}


/* =====================================================================
   14. FAQ ACCORDION
   ===================================================================== */
.cb-landing-page .faq-wrap { max-width: 820px; margin: 0 auto; }
.cb-landing-page .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .15s;
}
.cb-landing-page .faq-item:hover { border-color: var(--line-2); }
.cb-landing-page .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  text-align: left;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--navy-950);
  gap: 16px;
}
.cb-landing-page .faq-question:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: -2px;
}
.cb-landing-page .faq-q-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-800);
  display: grid; place-items: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cb-landing-page .faq-q-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cb-landing-page .faq-chev {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--ink-500);
  transition: transform .2s;
}
.cb-landing-page .faq-item[aria-expanded="true"] .faq-chev {
  transform: rotate(180deg);
  color: var(--teal-500);
}
.cb-landing-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.6;
}
.cb-landing-page .faq-item[aria-expanded="true"] .faq-answer {
  max-height: 500px;
}
.cb-landing-page .faq-answer-inner { padding: 0 20px 18px; }
.cb-landing-page .faq-item .faq-answer-inner-indent { padding-left: 54px; }


/* =====================================================================
   15. FINAL CTA BAND
   ===================================================================== */
.cb-landing-page .cta-band {
  background:
    linear-gradient(135deg, rgba(11,30,56,.92) 0%, rgba(16,44,80,.94) 100%),
    var(--navy-800);
  border-radius: var(--r-xl);
  padding: 32px 40px;
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.cb-landing-page .cta-band .cta-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy-800);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cb-landing-page .cta-band .cta-icon svg { width: 26px; height: 26px; }
.cb-landing-page .cta-band h2 {
  color: #fff;
  font-size: 1.1875rem;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.cb-landing-page .cta-band p {
  color: rgba(255,255,255,.78);
  font-size: .9375rem;
}
@media (max-width: 768px) {
  .cb-landing-page .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }
  .cb-landing-page .cta-band .cta-icon { margin: 0 auto; }
}


/* =====================================================================
   16. FOOTER
   ===================================================================== */
.cb-landing-page .site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 24px 0;
  margin-top: 48px;
}
.cb-landing-page .footer-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, .75fr) minmax(240px, 1.15fr) minmax(190px, .85fr);
  gap: 18px;
  align-items: center;
}
.cb-landing-page .footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.cb-landing-page .footer-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cb-landing-page .footer-icon svg { width: 17px; height: 17px; }
.cb-landing-page .footer-label {
  font-size: .8125rem;
  color: var(--ink-500);
  margin-bottom: 1px;
  white-space: nowrap;
}
.cb-landing-page .footer-value {
  font-size: .8438rem;
  color: var(--navy-950);
  font-weight: 500;
  overflow-wrap: anywhere;
  line-height: 1.3;
}
.cb-landing-page .footer-value a { color: var(--navy-950); }
.cb-landing-page .footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .75rem;
  color: var(--ink-500);
  align-items: center;
}
.cb-landing-page .footer-bottom a {
  color: var(--ink-500);
  margin-left: 14px;
}
.cb-landing-page .footer-bottom a:hover { color: var(--navy-800); }

@media (max-width: 900px) {
  .cb-landing-page .footer-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cb-landing-page .footer-row { grid-template-columns: 1fr; }
  .cb-landing-page .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cb-landing-page .footer-bottom a { margin-left: 0; margin-right: 14px; }
}


/* =====================================================================
   ADDONS v1.0.12 — componenti aggiuntivi per le 4 nuove landing.
   Tutto scopato a .cb-landing-page. Niente regole che possano
   sovrascrivere quelle delle landing originali (#1 amministratore,
   #2 cambio).
   ===================================================================== */


/* =====================================================================
   A. TOKENS AGGIUNTIVI
   ===================================================================== */
.cb-landing-page {
  --gold-600:#a07a1f;
  --gold-500:#c79528;
  --danger-700:#b91c1c;
  --danger-50:#fef2f2;
  --amber-50:#fff7ed;
}


/* =====================================================================
   B. HERO EYEBROW (pill badge sopra l'H1)
   Usato in #3, #4, #5, #6
   ===================================================================== */
.cb-landing-page .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.cb-landing-page .hero-eyebrow.is-teal {
  background: var(--teal-50);
  color: var(--teal-700);
}
.cb-landing-page .hero-eyebrow.is-danger {
  background: var(--danger-50);
  color: var(--danger-700);
}
.cb-landing-page .hero-eyebrow.is-gold {
  background: rgba(199,149,40,.15);
  color: var(--gold-500);
  border: 1px solid rgba(199,149,40,.3);
}
.cb-landing-page .hero-eyebrow svg { width: 14px; height: 14px; }
.cb-landing-page .hero h1 .accent { color: var(--teal-600); }
.cb-landing-page .hero h1 .accent-gold { color: var(--gold-500); }


/* =====================================================================
   C. HERO BULLETS — usata in #5 morosità sotto l'hero
   ===================================================================== */
.cb-landing-page .hero-bullets {
  display: grid;
  gap: 10px;
  max-width: 540px;
  padding: 18px 20px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  list-style: none;
  margin: 0;
}
.cb-landing-page .hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.5;
}
.cb-landing-page .hero-bullets svg {
  width: 18px; height: 18px;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.cb-landing-page .hero-bullets b { color: var(--navy-950); font-weight: 600; }


/* =====================================================================
   D. SIGNALS GRID — usata in #4 amministratore non risponde
   ===================================================================== */
.cb-landing-page .signals {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.cb-landing-page .signals-header { text-align: center; margin-bottom: 32px; }
.cb-landing-page .signals-header h2 { margin-bottom: 8px; }
.cb-landing-page .signals-header p { color: var(--ink-500); font-size: .9375rem; }
.cb-landing-page .signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cb-landing-page .signal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cb-landing-page .signal-ic {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--danger-50);
  color: var(--danger-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cb-landing-page .signal-ic svg { width: 18px; height: 18px; }
.cb-landing-page .signal-title {
  font-size: .9375rem; font-weight: 700;
  color: var(--navy-950); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cb-landing-page .signal-desc {
  font-size: .8125rem; color: var(--ink-500); line-height: 1.5;
}
@media (max-width: 900px) {
  .cb-landing-page .signals-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cb-landing-page .signals-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   E. COMPARISON PRIMA/DOPO — usata in #4
   ===================================================================== */
.cb-landing-page .comparison { padding: 72px 0; }
.cb-landing-page .comparison-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.cb-landing-page .comparison-header h2 { margin-bottom: 10px; }
.cb-landing-page .comparison-header p { color: var(--ink-500); font-size: 1rem; }
.cb-landing-page .compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cb-landing-page .compare-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
}
.cb-landing-page .compare-card.before {
  background: #fafbfc;
  border-color: #e8ecf1;
}
.cb-landing-page .compare-card.after {
  background: linear-gradient(135deg, rgba(24,169,157,.04) 0%, rgba(16,151,140,.06) 100%);
  border-color: rgba(23,168,155,.25);
}
.cb-landing-page .compare-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.cb-landing-page .compare-card.before .compare-label {
  background: var(--danger-50); color: var(--danger-700);
}
.cb-landing-page .compare-card.after .compare-label {
  background: var(--teal-50); color: var(--teal-700);
}
.cb-landing-page .compare-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--navy-950);
  line-height: 1.25;
}
.cb-landing-page .compare-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.cb-landing-page .compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  line-height: 1.55;
}
.cb-landing-page .compare-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cb-landing-page .compare-card.before .compare-list li { color: #5b6271; }
.cb-landing-page .compare-card.before .compare-list li svg { color: var(--danger-700); }
.cb-landing-page .compare-card.after .compare-list li { color: var(--ink-700); }
.cb-landing-page .compare-card.after .compare-list li svg { color: var(--teal-500); }
.cb-landing-page .compare-list li b { color: var(--navy-950); font-weight: 600; }

@media (max-width: 800px) {
  .cb-landing-page .compare-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   F. CONSEQUENCES BAND (navy) — usata in #5 morosità
   ===================================================================== */
.cb-landing-page .consequences {
  background: var(--navy-950);
  color: #fff;
  padding: 64px 0;
}
.cb-landing-page .consequences .section-header { margin: 0 auto 36px; }
.cb-landing-page .consequences h2 { color: #fff; margin-bottom: 10px; }
.cb-landing-page .consequences-sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
}
.cb-landing-page .consequences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cb-landing-page .cons-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 22px 20px;
}
.cb-landing-page .cons-ic {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(220,38,38,.18);
  color: #fca5a5;
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.cb-landing-page .cons-ic svg { width: 20px; height: 20px; }
.cb-landing-page .cons-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cb-landing-page .cons-desc {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
@media (max-width: 900px) { .cb-landing-page .consequences-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cb-landing-page .consequences-grid { grid-template-columns: 1fr; } }


/* =====================================================================
   G. METHOD STEPS — usata in #5 morosità
   ===================================================================== */
.cb-landing-page .method { padding: 72px 0; }
.cb-landing-page .method-steps {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.cb-landing-page .method-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .15s, box-shadow .15s;
}
.cb-landing-page .method-step:hover {
  border-color: var(--line-2);
  box-shadow: var(--sh-sm);
}
.cb-landing-page .method-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-500);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(23,168,155,.28);
  flex-shrink: 0;
}
.cb-landing-page .method-step-body { min-width: 0; }
.cb-landing-page .method-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.cb-landing-page .method-step-desc {
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.5;
}
.cb-landing-page .method-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.cb-landing-page .method-step-tag svg { width: 12px; height: 12px; }
@media (max-width: 700px) {
  .cb-landing-page .method-step { grid-template-columns: auto 1fr; }
  .cb-landing-page .method-step-tag { grid-column: 2; justify-self: start; margin-top: 6px; }
}


/* =====================================================================
   H. OPTIONS GRID (con card "Consigliato") — usata in #5
   ===================================================================== */
.cb-landing-page .options { background: var(--bg-soft); padding: 72px 0; }
.cb-landing-page .options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cb-landing-page .option-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.cb-landing-page .option-card.highlight {
  border-color: rgba(23,168,155,.4);
  background: linear-gradient(135deg, rgba(24,169,157,.03) 0%, rgba(16,151,140,.05) 100%);
  position: relative;
}
.cb-landing-page .option-card.highlight::before {
  content: "Consigliato";
  position: absolute;
  top: -10px;
  left: 28px;
  background: var(--teal-500);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cb-landing-page .option-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.cb-landing-page .option-card .option-sub {
  font-size: .9375rem;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.cb-landing-page .option-card ul {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: grid; gap: 10px;
}
.cb-landing-page .option-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.5;
}
.cb-landing-page .option-card ul li svg {
  width: 18px; height: 18px;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.cb-landing-page .option-card .btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 800px) {
  .cb-landing-page .options-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   I. NUMBERS BAND — usata in #5
   ===================================================================== */
.cb-landing-page .numbers {
  padding: 72px 0;
  background: linear-gradient(135deg, #f0f7fb 0%, #e7eef5 100%);
}
.cb-landing-page .numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.cb-landing-page .number-card { padding: 16px; }
.cb-landing-page .number-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.cb-landing-page .number-value .small {
  font-size: 1.5rem;
  color: var(--teal-600);
}
.cb-landing-page .number-label {
  font-size: .9375rem;
  color: var(--ink-700);
  font-weight: 600;
  margin-bottom: 4px;
}
.cb-landing-page .number-desc {
  font-size: .8125rem;
  color: var(--ink-500);
}
@media (max-width: 760px) {
  .cb-landing-page .numbers-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* =====================================================================
   J. SECTION HEADER EYEBROW + TONO CORPORATE
   Usata in #3, #6 con varianti gold
   ===================================================================== */
.cb-landing-page .section-header .eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-700);
  margin-bottom: 14px;
}
.cb-landing-page .section-header .eyebrow.is-gold { color: var(--gold-600); }


/* =====================================================================
   K. CASES GRID — usata in #6 supercondomini
   ===================================================================== */
.cb-landing-page .cases { padding: 80px 0; background: var(--bg-soft); }
.cb-landing-page .cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.cb-landing-page .case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.cb-landing-page .case-tag {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-600);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cb-landing-page .case-stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.cb-landing-page .case-stat .unit {
  font-size: 1rem;
  color: var(--gold-600);
  font-weight: 600;
}
.cb-landing-page .case-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
}
.cb-landing-page .case-desc {
  font-size: .875rem;
  color: var(--ink-500);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .cb-landing-page .cases-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   L. CHALLENGES GRID — usata in #6
   ===================================================================== */
.cb-landing-page .challenges { padding: 80px 0; background: var(--bg-soft); }
.cb-landing-page .challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.cb-landing-page .challenge-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cb-landing-page .challenge-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-950);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.cb-landing-page .challenge-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.cb-landing-page .challenge-desc {
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.55;
}
@media (max-width: 800px) {
  .cb-landing-page .challenges-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   M. APPROACH GRID (immagine + lista) — usata in #6
   ===================================================================== */
.cb-landing-page .approach { padding: 80px 0; }
.cb-landing-page .approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cb-landing-page .approach-image {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.cb-landing-page .approach-image::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(199,149,40,.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(23,168,155,.15) 0%, transparent 40%);
}
.cb-landing-page .approach-image-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 40px;
}
.cb-landing-page .approach-image-content .big {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.cb-landing-page .approach-image-content .big .small {
  color: var(--gold-500);
  font-size: 2.5rem;
}
.cb-landing-page .approach-image-content .label {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.cb-landing-page .approach-content h2 { margin-bottom: 18px; }
.cb-landing-page .approach-content > p {
  font-size: 1rem;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 24px;
}
.cb-landing-page .approach-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 14px;
}
.cb-landing-page .approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9375rem;
  line-height: 1.5;
}
.cb-landing-page .approach-list .ic {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cb-landing-page .approach-list .ic svg { width: 14px; height: 14px; }
.cb-landing-page .approach-list b {
  color: var(--navy-950);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.cb-landing-page .approach-list span {
  color: var(--ink-500);
  font-size: .875rem;
}
@media (max-width: 900px) {
  .cb-landing-page .approach-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* =====================================================================
   N. SERVICES DARK GRID — usata in #6
   ===================================================================== */
.cb-landing-page .services-dark {
  padding: 80px 0;
  background: var(--navy-950);
  color: #fff;
}
.cb-landing-page .services-dark h2 { color: #fff; }
.cb-landing-page .services-dark .section-header p { color: rgba(255,255,255,.7); }
.cb-landing-page .services-dark .section-header .eyebrow { color: var(--gold-500); }
.cb-landing-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cb-landing-page .service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: background .2s, border-color .2s;
}
.cb-landing-page .service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(199,149,40,.3);
}
.cb-landing-page .service-ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(199,149,40,.15);
  color: var(--gold-500);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.cb-landing-page .service-ic svg { width: 22px; height: 22px; }
.cb-landing-page .service-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.cb-landing-page .service-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
@media (max-width: 900px) { .cb-landing-page .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cb-landing-page .services-grid { grid-template-columns: 1fr; } }


/* =====================================================================
   O. CERTIFICATIONS GRID — usata in #6
   ===================================================================== */
.cb-landing-page .certifications { padding: 64px 0; }
.cb-landing-page .cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.cb-landing-page .cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cb-landing-page .cert-ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(199,149,40,.1);
  color: var(--gold-600);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.cb-landing-page .cert-ic svg { width: 28px; height: 28px; }
.cb-landing-page .cert-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 4px;
}
.cb-landing-page .cert-desc {
  font-size: .8125rem;
  color: var(--ink-500);
  line-height: 1.5;
}
@media (max-width: 800px) { .cb-landing-page .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cb-landing-page .cert-grid { grid-template-columns: 1fr; } }


/* =====================================================================
   P. TESTIMONIAL CARD (versione singola centrata) — usata in #4, #5, #6
   ===================================================================== */
.cb-landing-page .testimonial-single {
  padding: 72px 0;
}
.cb-landing-page .testimonial-single.is-dark {
  background: var(--navy-950);
}
.cb-landing-page .testimonial-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-sm);
  text-align: center;
}
.cb-landing-page .testimonial-single.is-dark .testimonial-card {
  background: transparent;
  border: none;
  box-shadow: none;
}
.cb-landing-page .testimonial-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--teal-500);
  line-height: 1;
  margin-bottom: 12px;
}
.cb-landing-page .testimonial-single.is-dark .testimonial-mark { color: var(--gold-500); font-size: 5rem; }
.cb-landing-page .testimonial-text {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink-900);
  margin-bottom: 20px;
  font-weight: 500;
}
.cb-landing-page .testimonial-single.is-dark .testimonial-text { color: #fff; font-size: 1.25rem; }
.cb-landing-page .testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cb-landing-page .testimonial-stars { display: flex; gap: 2px; color: var(--star); }
.cb-landing-page .testimonial-stars svg { width: 14px; height: 14px; }
.cb-landing-page .testimonial-author {
  font-size: .9375rem;
  color: var(--ink-500);
  font-style: italic;
}
.cb-landing-page .testimonial-single.is-dark .testimonial-author { color: rgba(255,255,255,.75); }


/* =====================================================================
   Q. HERO FORM CARD — variante ridotta (form più snello, niente icone)
   Usata in #3, #4, #5. La #6 usa una variante dark più strutturata.
   ===================================================================== */
.cb-landing-page .hero-form-card.is-simple .form-subtitle {
  font-size: .8125rem;
  color: var(--ink-500);
  margin: -2px 0 16px;
}

/* CSS aggiuntivo per i campi simple del CF7 quando non si usano data-name */
.cb-landing-page .hero-form-card.is-simple .wpcf7-form-control-wrap::before {
  display: none;
}
.cb-landing-page .hero-form-card.is-simple input[type="text"],
.cb-landing-page .hero-form-card.is-simple input[type="email"],
.cb-landing-page .hero-form-card.is-simple input[type="tel"],
.cb-landing-page .hero-form-card.is-simple input[type="number"],
.cb-landing-page .hero-form-card.is-simple select,
.cb-landing-page .hero-form-card.is-simple textarea {
  padding-left: 16px;
}
.cb-landing-page .hero-form-card .form-trust {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-500);
}


/* =====================================================================
   R. DARK HERO (variante per #6 supercondomini)
   ===================================================================== */
.cb-landing-page.is-dark-theme {
  background: var(--navy-950);
}
.cb-landing-page .hero.is-dark {
  background-color: var(--navy-950);
  background-image:
    linear-gradient(135deg, rgba(11,30,56,.85) 0%, rgba(16,44,80,.92) 100%),
    radial-gradient(ellipse at top right, rgba(199,149,40,.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
}
.cb-landing-page .hero.is-dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 61px);
  pointer-events: none;
}
.cb-landing-page .hero.is-dark h1 { color: #fff; }
.cb-landing-page .hero.is-dark .hero-lede { color: rgba(255,255,255,.78); }
.cb-landing-page .hero.is-dark .hero-credentials {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
  max-width: 640px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.cb-landing-page .hero.is-dark .hero-cred-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cb-landing-page .hero.is-dark .hero-cred-value .small {
  font-size: .9rem;
  color: var(--gold-500);
  margin-left: 2px;
}
.cb-landing-page .hero.is-dark .hero-cred-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 980px) {
  .cb-landing-page .hero.is-dark .hero-credentials { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}


/* =====================================================================
   S. BUTTON GOLD (variante per #6)
   ===================================================================== */
.cb-landing-page .btn-gold {
  background: var(--gold-500);
  color: #fff;
}
.cb-landing-page .btn-gold:hover {
  background: var(--gold-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(199,149,40,.28);
}
.cb-landing-page .btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.cb-landing-page .btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.8);
}


/* =====================================================================
   T. FINAL CTA varianti
   ===================================================================== */
.cb-landing-page .final-cta-band {
  background:
    linear-gradient(135deg, rgba(11,30,56,.95) 0%, rgba(16,44,80,.95) 100%),
    radial-gradient(ellipse at top right, rgba(199,149,40,.2) 0%, transparent 50%),
    var(--navy-950);
  color: #fff;
  padding: 80px 0;
}
.cb-landing-page .final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cb-landing-page .final-cta-inner h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.125rem);
}
.cb-landing-page .final-cta-inner p {
  color: rgba(255,255,255,.78);
  font-size: 1.0625rem;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cb-landing-page .final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}


/* =====================================================================
   U. SHIELD STAT (per #3 spese troppo alte — header strip)
   ===================================================================== */
.cb-landing-page .top-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.cb-landing-page .top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cb-landing-page .top-strip-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.cb-landing-page .top-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  color: var(--ink-700);
  line-height: 1.3;
}
.cb-landing-page .top-stat-ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-500);
  color: var(--teal-600);
  background: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cb-landing-page .top-stat-ic svg { width: 14px; height: 14px; }
.cb-landing-page .top-stat-text b { color: var(--navy-950); font-weight: 700; display: block; }
.cb-landing-page .top-strip-cta { display: flex; gap: 8px; align-items: center; }


/* =====================================================================
   V. FOOTER su sfondo scuro (variante per #6)
   ===================================================================== */
.cb-landing-page .site-footer.is-dark {
  background: var(--navy-950);
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.08);
}
.cb-landing-page .site-footer.is-dark .footer-icon {
  background: rgba(255,255,255,.06);
  color: var(--gold-500);
}
.cb-landing-page .site-footer.is-dark .footer-label { color: rgba(255,255,255,.55); }
.cb-landing-page .site-footer.is-dark .footer-value,
.cb-landing-page .site-footer.is-dark .footer-value a { color: #fff; }
.cb-landing-page .site-footer.is-dark .footer-bottom {
  border-top-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
}
.cb-landing-page .site-footer.is-dark .footer-bottom a { color: rgba(255,255,255,.5); }
.cb-landing-page .site-footer.is-dark .footer-bottom a:hover { color: #fff; }


/* =====================================================================
   W. HEADER DARK (variante per #6)
   ===================================================================== */
.cb-landing-page .site-header.is-dark {
  background: rgba(11,30,56,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cb-landing-page .site-header.is-dark .nav a {
  color: rgba(255,255,255,.85);
}
.cb-landing-page .site-header.is-dark .nav a:hover { color: #fff; }
.cb-landing-page .site-header.is-dark .menu-toggle svg { color: #fff; }
