/**
 * Agricoltura 2.0 – Intake Form v1.3.0
 * assets/form.css — visual fix: palette only, stronger spacing, better readability
 */

#iz-app {
  --iz-cream: #EEF6E9;
  --iz-cream-2: #F8FBF5;
  --iz-teal: #3C8FA0;
  --iz-teal-dark: #245F6A;
  --iz-teal-soft: rgba(60, 143, 160, .12);
  --iz-lime: #A8C91F;
  --iz-green: #63A821;
  --iz-green-dark: #4E851B;
  --iz-sage: #B7C879;
  --iz-sky: #70B6C7;
  --iz-olive: #7FA04C;
  --iz-text: #173B3F;
  --iz-muted: #5E7376;
  --iz-line: rgba(23, 59, 63, .10);
  --iz-shadow-sm: 0 8px 22px rgba(23, 59, 63, .08);
  --iz-shadow-md: 0 18px 48px rgba(23, 59, 63, .14);
  --iz-shadow-lg: 0 28px 80px rgba(23, 59, 63, .20);
  --iz-radius-lg: 28px;
  --iz-radius-md: 20px;
  --iz-radius-sm: 14px;
  width: 100%;
  min-height: 360px;
  padding: clamp(18px, 4vw, 56px) 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--iz-text);
  background:
    radial-gradient(circle at 14% 0%, rgba(168, 201, 31, .22), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(112, 182, 199, .24), transparent 36%),
    linear-gradient(180deg, rgba(238, 246, 233, .72), rgba(255, 255, 255, .58));
}

#iz-app,
#iz-app *,
#iz-app *::before,
#iz-app *::after {
  box-sizing: border-box;
}

#iz-app * {
  margin: 0;
  padding: 0;
}

#iz-app a {
  color: var(--iz-teal-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

#iz-app .iz-question,
#iz-app .iz-intro-title,
#iz-app .iz-logo-text,
#iz-app .iz-header-sub,
#iz-app .iz-option-label,
#iz-app .iz-label,
#iz-app .iz-progress-label,
#iz-app .iz-btn {
  text-shadow: none !important;
}

#iz-app .iz-card {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--iz-radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 245, .94));
  box-shadow: var(--iz-shadow-lg);
  isolation: isolate;
}

#iz-app .iz-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.90), transparent 34%),
    radial-gradient(circle at 96% 0%, rgba(168, 201, 31, .13), transparent 30%);
  z-index: -1;
}

#iz-app .iz-card-body {
  padding: clamp(28px, 5vw, 48px);
}

#iz-app .iz-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: clamp(18px, 4vw, 30px) clamp(22px, 5vw, 46px);
  color: #fff;
  background: linear-gradient(135deg, rgba(23, 59, 63, .98) 0%, rgba(36, 95, 106, .98) 43%, rgba(60, 143, 160, .94) 100%);
}

#iz-app .iz-header::after {
  content: '';
  position: absolute;
  right: -52px;
  top: -72px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 201, 31, .42), transparent 66%);
  pointer-events: none;
}

#iz-app .iz-logo-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
}

#iz-app .iz-logo-text::before {
  content: '🌱';
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--iz-lime), var(--iz-green));
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  font-size: 18px;
  line-height: 1;
}

#iz-app .iz-header-sub {
  position: relative;
  flex-basis: 100%;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  font-weight: 600;
}

#iz-app .iz-progress-wrap {
  padding: 16px clamp(22px, 5vw, 46px) 14px;
  border-bottom: 1px solid rgba(23, 59, 63, .08);
  background: rgba(238, 246, 233, .74);
  backdrop-filter: blur(14px);
}

#iz-app .iz-progress-bar {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 59, 63, .08);
  box-shadow: inset 0 1px 2px rgba(23, 59, 63, .07);
}

#iz-app .iz-progress-fill {
  height: 100%;
  min-width: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--iz-green) 0%, var(--iz-lime) 46%, var(--iz-sky) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .45) inset, 0 8px 20px rgba(99, 168, 33, .24);
  transition: width .42s cubic-bezier(.22, 1, .36, 1);
}

#iz-app .iz-progress-label {
  margin-top: 8px;
  color: var(--iz-teal-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

#iz-app .iz-question {
  max-width: 860px;
  margin-bottom: 28px;
  padding-right: 8px;
  color: var(--iz-text);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 920;
  line-height: 1.16;
  letter-spacing: -.03em;
}

#iz-app .iz-subtitle {
  max-width: 720px;
  margin: -6px 0 20px;
  color: var(--iz-muted);
  font-size: .99rem;
  font-weight: 600;
  line-height: 1.62;
}

#iz-app .iz-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(6px, 2vw, 22px) 0;
}

#iz-app .iz-intro-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(168, 201, 31, .18), rgba(60, 143, 160, .16));
  box-shadow: var(--iz-shadow-sm);
  font-size: 2.65rem;
}

#iz-app .iz-intro-title {
  max-width: 700px;
  margin-bottom: 16px;
  color: var(--iz-text);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.052em;
}

#iz-app .iz-intro-body {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--iz-muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.72;
}

#iz-app .iz-intro-list {
  display: grid;
  gap: 12px;
  width: min(100%, 560px);
  list-style: none;
  text-align: left;
}

#iz-app .iz-intro-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid rgba(23, 59, 63, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  color: var(--iz-text);
  font-size: .95rem;
  font-weight: 760;
  box-shadow: 0 8px 18px rgba(23, 59, 63, .045);
}

#iz-app .iz-intro-list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--iz-green), var(--iz-lime));
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
}

#iz-app .iz-fields-wrap,
#iz-app .iz-textarea-wrap,
#iz-app .iz-consent-wrap,
#iz-app .iz-radio-wrap {
  display: grid;
  gap: 16px;
}

#iz-app .iz-radio-wrap {
  gap: 22px;
}

#iz-app .iz-field-group,
#iz-app .iz-extra-wrap,
#iz-app .iz-checkbox-group {
  display: grid;
  gap: 8px;
}

#iz-app .iz-label {
  color: var(--iz-text);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: -.005em;
}

#iz-app .iz-input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1.5px solid rgba(23, 59, 63, .14) !important;
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, .92);
  color: var(--iz-text) !important;
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  box-shadow: 0 8px 20px rgba(23, 59, 63, .04);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
  appearance: none;
  -webkit-appearance: none;
}

#iz-app .iz-input::placeholder {
  color: rgba(23, 59, 63, .42);
  font-weight: 560;
}

#iz-app .iz-input:hover {
  border-color: rgba(60, 143, 160, .34) !important;
  background: #fff;
}

#iz-app .iz-input:focus {
  border-color: var(--iz-teal) !important;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(60, 143, 160, .12), 0 12px 28px rgba(23, 59, 63, .08);
}

#iz-app textarea.iz-input,
#iz-app .iz-textarea,
#iz-app .iz-textarea-full {
  min-height: 124px;
  resize: vertical;
  line-height: 1.58;
}

#iz-app .iz-extra-wrap {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(168, 201, 31, .30) !important;
  border-radius: 20px;
  background: rgba(238, 246, 233, .78);
}

#iz-app .iz-options-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

#iz-app .iz-option {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  width: 100%;
  min-height: 92px;
  padding: 18px 20px 18px 18px;
  border: 1.5px solid rgba(60, 143, 160, .18) !important;
  border-radius: 20px;
  background: rgba(255, 255, 255, .90) !important;
  color: var(--iz-text) !important;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(23, 59, 63, .045);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s cubic-bezier(.22, 1, .36, 1), border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

#iz-app .iz-option::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 22px;
  width: 10px;
  height: 16px;
  border-right: 3px solid var(--iz-green-dark);
  border-bottom: 3px solid var(--iz-green-dark);
  opacity: 0;
  transform: rotate(45deg) scale(.78);
  transition: opacity .18s ease, transform .18s ease;
}

#iz-app .iz-option:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 182, 199, .92) !important;
  background: #fff !important;
  box-shadow: 0 16px 36px rgba(23, 59, 63, .075);
}

#iz-app .iz-option:active {
  transform: translateY(0) scale(.995);
}

#iz-app .iz-option--selected {
  border-color: rgba(99, 168, 33, .92) !important;
  background: linear-gradient(135deg, rgba(238, 246, 233, .98), rgba(255, 255, 255, .96)) !important;
  box-shadow: 0 0 0 5px rgba(168, 201, 31, .16), 0 18px 42px rgba(99, 168, 33, .12);
}

#iz-app .iz-option--selected::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

#iz-app .iz-option-code {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(60, 143, 160, .13);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(238, 246, 233, .95), rgba(255, 255, 255, .95));
  color: var(--iz-teal-dark);
  font-size: .92rem;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 6px 14px rgba(23, 59, 63, .055);
  transition: all .18s ease;
}

#iz-app .iz-option--selected .iz-option-code {
  border-color: transparent;
  background: linear-gradient(135deg, var(--iz-green), var(--iz-lime));
  color: #fff;
  box-shadow: 0 12px 26px rgba(99, 168, 33, .25);
}

#iz-app .iz-option-label {
  display: block;
  min-width: 0;
  padding-top: 2px;
  padding-right: 30px;
  overflow-wrap: anywhere;
  white-space: normal;
  color: var(--iz-text) !important;
  font-size: .98rem;
  font-weight: 720;
  line-height: 1.5;
}

#iz-app .iz-checkbox-label {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid rgba(23, 59, 63, .11) !important;
  border-radius: 18px;
  background: rgba(255, 255, 255, .84);
  color: var(--iz-text) !important;
  cursor: pointer;
  font-size: .94rem;
  font-weight: 680;
  line-height: 1.48;
  box-shadow: 0 8px 22px rgba(23, 59, 63, .045);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

#iz-app .iz-checkbox-label:hover {
  border-color: rgba(60, 143, 160, .32) !important;
  background: #fff;
}

#iz-app .iz-checkbox,
#iz-app .iz-privacy input[type="checkbox"],
#iz-app .iz-marketing input[type="checkbox"],
#iz-app .iz-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--iz-green);
  cursor: pointer;
}

#iz-app .iz-error {
  display: none;
  margin-top: 6px;
  padding: 8px 11px;
  border-radius: 12px;
  background: rgba(60, 143, 160, .10);
  color: var(--iz-teal-dark);
  font-size: .84rem;
  font-weight: 820;
}

#iz-app .iz-error:not(:empty) {
  display: block;
}

#iz-app .iz-global-error {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1.5px solid rgba(60, 143, 160, .22) !important;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(238,246,233,.92), #fff);
  color: var(--iz-teal-dark);
  font-size: .92rem;
  font-weight: 760;
  box-shadow: 0 12px 30px rgba(60, 143, 160, .08);
}

#iz-app .iz-global-error:not(:empty) {
  display: block;
}

#iz-app .iz-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 5vw, 38px);
}

#iz-app .iz-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 132px;
  padding: 15px 24px;
  border: 0 !important;
  border-radius: 18px;
  font: inherit;
  font-size: .98rem;
  font-weight: 950;
  letter-spacing: -.006em;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s cubic-bezier(.22, 1, .36, 1), box-shadow .18s ease, filter .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

#iz-app .iz-btn::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(255,255,255,.28), transparent 58%);
  z-index: -1;
  pointer-events: none;
}

#iz-app .iz-btn:active {
  transform: translateY(1px) scale(.985);
}

#iz-app .iz-btn-primary,
#iz-app .iz-btn-submit {
  color: #fff !important;
  background: linear-gradient(135deg, var(--iz-green) 0%, var(--iz-teal) 100%) !important;
  box-shadow: 0 16px 32px rgba(60, 143, 160, .22), 0 8px 18px rgba(99, 168, 33, .16);
}

#iz-app .iz-btn-primary:hover:not(:disabled),
#iz-app .iz-btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 22px 44px rgba(60, 143, 160, .28), 0 10px 24px rgba(99, 168, 33, .20);
}

#iz-app .iz-btn-submit {
  min-width: 178px;
  background: linear-gradient(135deg, var(--iz-lime) 0%, var(--iz-green) 46%, var(--iz-teal) 100%) !important;
}

#iz-app .iz-btn-back {
  color: var(--iz-teal-dark) !important;
  border: 1.5px solid rgba(60, 143, 160, .20) !important;
  background: rgba(255, 255, 255, .80) !important;
  box-shadow: 0 10px 24px rgba(23, 59, 63, .06);
}

#iz-app .iz-btn-back:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(60, 143, 160, .36) !important;
  background: #fff !important;
  box-shadow: 0 16px 34px rgba(23, 59, 63, .09);
}

#iz-app .iz-btn:disabled,
#iz-app .iz-btn[disabled] {
  cursor: not-allowed;
  opacity: .54;
  transform: none !important;
  filter: grayscale(.1);
  box-shadow: none;
}

#iz-app .iz-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: clamp(18px, 4vw, 42px) 6px;
}

#iz-app .iz-success-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(168, 201, 31, .24), rgba(60, 143, 160, .18));
  font-size: 3rem;
  box-shadow: var(--iz-shadow-sm);
}

#iz-app .iz-success-title {
  max-width: 560px;
  color: var(--iz-green-dark);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -.045em;
}

#iz-app .iz-success-body,
#iz-app .iz-success-sub {
  max-width: 560px;
  color: var(--iz-muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.68;
}

#iz-app .iz-success-sub {
  max-width: 440px;
  color: var(--iz-teal-dark);
  font-size: .9rem;
}

#iz-app .iz-hidden,
#iz-app .iz-hp {
  display: none !important;
}

#iz-app *:focus {
  outline: none;
}

#iz-app *:focus-visible {
  outline: 4px solid rgba(168, 201, 31, .72);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  #iz-app {
    padding-inline: clamp(20px, 5vw, 72px);
  }

  #iz-app .iz-header-sub {
    flex-basis: auto;
    margin-left: 4px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, .24);
  }

  #iz-app .iz-fields-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  #iz-app .iz-options-grid {
    gap: 16px;
  }
}

@media (min-width: 1120px) {
  #iz-app .iz-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  #iz-app .iz-question {
    font-size: clamp(1.35rem, 7vw, 2rem);
    margin-bottom: 22px;
  }

  #iz-app .iz-option {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 84px;
    padding: 16px 16px 16px 14px;
  }

  #iz-app .iz-option-code {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  #iz-app .iz-option-label {
    padding-right: 24px;
    font-size: .94rem;
  }
}

@media (max-width: 479px) {
  #iz-app {
    padding: 10px 6px 28px;
  }

  #iz-app .iz-card {
    border-radius: 22px;
  }

  #iz-app .iz-card-body {
    padding: 22px 16px;
  }

  #iz-app .iz-header {
    padding: 17px 16px;
  }

  #iz-app .iz-progress-wrap {
    padding-inline: 16px;
  }

  #iz-app .iz-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  #iz-app .iz-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #iz-app *,
  #iz-app *::before,
  #iz-app *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/* ===== CONSENT + BUTTON FIX v1.2.2 ===== */
#iz-app .iz-consent-wrap {
  display: grid !important;
  gap: 18px !important;
  max-width: 760px;
  margin: 0 auto;
}

#iz-app .iz-consent-wrap .iz-question {
  margin-bottom: 2px !important;
  padding-right: 0 !important;
  font-size: clamp(1.75rem, 4.4vw, 2.45rem) !important;
  letter-spacing: -0.045em;
}

#iz-app .iz-consent-wrap .iz-subtitle {
  margin: 0 0 8px !important;
  color: var(--iz-muted) !important;
  font-size: 1rem !important;
  font-weight: 650 !important;
}

#iz-app .iz-consent-wrap .iz-checkbox-group {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

#iz-app .iz-consent-wrap .iz-checkbox-label {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 14px !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 72px !important;
  padding: 18px 20px !important;
  border: 1.5px solid rgba(127, 160, 76, .28) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,245,.96)) !important;
  color: var(--iz-text) !important;
  box-shadow: 0 12px 28px rgba(23,59,63,.07) !important;
  cursor: pointer !important;
  line-height: 1.48 !important;
}

#iz-app .iz-consent-wrap .iz-checkbox-label:hover {
  border-color: rgba(112, 182, 199, .48) !important;
  background: #fff !important;
  box-shadow: 0 16px 34px rgba(23,59,63,.09) !important;
}

#iz-app .iz-consent-wrap .iz-checkbox-label:has(input:checked) {
  border-color: var(--iz-green) !important;
  background: linear-gradient(180deg, rgba(238,246,233,.98), rgba(255,255,255,.98)) !important;
  box-shadow: 0 0 0 4px rgba(168,201,31,.16), 0 18px 38px rgba(99,168,33,.11) !important;
}

#iz-app .iz-consent-wrap input.iz-checkbox,
#iz-app .iz-consent-wrap .iz-checkbox-label input[type="checkbox"] {
  grid-column: 1 !important;
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  border-radius: 6px !important;
  accent-color: var(--iz-green) !important;
  cursor: pointer !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
}

#iz-app .iz-consent-wrap .iz-checkbox-text {
  grid-column: 2 !important;
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  color: var(--iz-text) !important;
  font-size: .98rem !important;
  font-weight: 720 !important;
  line-height: 1.52 !important;
  letter-spacing: -0.005em !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

#iz-app .iz-consent-wrap .iz-checkbox-text a {
  color: var(--iz-teal-dark) !important;
  font-weight: 900 !important;
  text-decoration-color: rgba(60,143,160,.42) !important;
}

#iz-app .iz-consent-wrap .iz-checkbox-text strong {
  color: var(--iz-green-dark) !important;
}

#iz-app .iz-consent-wrap .iz-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

#iz-app .iz-nav {
  margin-top: 34px !important;
  padding-top: 0 !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}

#iz-app button.iz-btn,
#iz-app .iz-btn,
#iz-app input[type="button"].iz-btn,
#iz-app input[type="submit"].iz-btn {
  min-height: 54px !important;
  min-width: 136px !important;
  padding: 14px 24px !important;
  border-radius: 18px !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: .98rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  outline: none !important;
  box-shadow: none;
}

#iz-app button.iz-btn-back,
#iz-app .iz-btn-back,
#iz-app button.iz-btn-back:hover,
#iz-app button.iz-btn-back:focus,
#iz-app button.iz-btn-back:active {
  color: var(--iz-teal-dark) !important;
  background: rgba(255,255,255,.94) !important;
  border: 1.5px solid rgba(127,160,76,.34) !important;
  box-shadow: 0 10px 24px rgba(23,59,63,.06) !important;
}

#iz-app button.iz-btn-primary,
#iz-app button.iz-btn-submit,
#iz-app .iz-btn-primary,
#iz-app .iz-btn-submit,
#iz-app button.iz-btn-primary:hover,
#iz-app button.iz-btn-submit:hover,
#iz-app button.iz-btn-primary:focus,
#iz-app button.iz-btn-submit:focus,
#iz-app button.iz-btn-primary:active,
#iz-app button.iz-btn-submit:active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--iz-green) 0%, var(--iz-lime) 46%, var(--iz-sky) 100%) !important;
  border: 0 !important;
  box-shadow: 0 16px 34px rgba(60,143,160,.22), 0 8px 20px rgba(99,168,33,.16) !important;
}

#iz-app button.iz-btn-submit {
  min-width: 184px !important;
}

@media (max-width: 640px) {
  #iz-app .iz-consent-wrap {
    gap: 14px !important;
  }

  #iz-app .iz-consent-wrap .iz-checkbox-label {
    min-height: 76px !important;
    padding: 16px !important;
    gap: 12px !important;
  }

  #iz-app .iz-consent-wrap .iz-checkbox-text {
    font-size: .95rem !important;
    line-height: 1.48 !important;
  }

  #iz-app .iz-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #iz-app button.iz-btn,
  #iz-app .iz-btn {
    width: 100% !important;
  }
}


/* === A20 v1.3.0 — logo reale + profilazione premium UI === */
#iz-app .iz-logo-text::before { content: none !important; display: none !important; }
#iz-app .iz-logo-text { gap: 10px; min-width: 0; }
#iz-app .iz-brand-name { white-space: nowrap; }
#iz-app .iz-logo-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, #eef6e9, #ffffff);
  box-shadow: 0 10px 24px rgba(23,59,63,.14);
}
#iz-app .iz-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#iz-app .iz-logo-mark--header {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
#iz-app .iz-logo-mark--intro {
  width: 74px;
  height: 74px;
  border-radius: 22px;
}
#iz-app .iz-intro-icon {
  background: transparent !important;
  box-shadow: none !important;
  width: 84px !important;
  height: 84px !important;
  margin-bottom: 18px !important;
}
#iz-app .iz-options-grid {
  align-items: stretch;
}
#iz-app .iz-option {
  grid-template-columns: 42px minmax(0, 1fr) !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-color: rgba(60, 143, 160, .22) !important;
}
#iz-app .iz-option-label {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  padding-right: 6px !important;
  text-align: left !important;
}
#iz-app .iz-option--selected {
  border-color: #63A821 !important;
}
#iz-app .iz-option--selected::after {
  background: linear-gradient(135deg, #63A821, #A8C91F);
  border: 0 !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 999px !important;
  transform: translateY(-50%) !important;
  opacity: .95 !important;
}
#iz-app .iz-btn-primary,
#iz-app .iz-btn-submit {
  color: #ffffff !important;
  background: linear-gradient(135deg, #63A821 0%, #3C8FA0 100%) !important;
  border: 0 !important;
}
#iz-app .iz-btn-back {
  color: #245F6A !important;
  border: 1.5px solid rgba(60,143,160,.28) !important;
  background: #ffffff !important;
}
#iz-app .iz-checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  width: 100% !important;
  line-height: 1.45 !important;
  overflow-wrap: break-word !important;
}
#iz-app .iz-checkbox {
  flex: 0 0 20px !important;
  margin-top: 3px !important;
}
@media (max-width: 720px) {
  #iz-app .iz-option { grid-template-columns: 38px minmax(0, 1fr) !important; }
  #iz-app .iz-logo-mark--intro { width: 66px; height: 66px; border-radius: 20px; }
  #iz-app .iz-intro-icon { width: 72px !important; height: 72px !important; }
}
