/* ==========================================================================
   Glass multi-step lead popup — scoped to #funnelPopup
   ========================================================================== */

#funnelPopup {
  --color-text: #1d1d1f;
      --color-text-muted: #6e6e73;
      --color-accent: #2d6a4f;
      --color-accent-hover: #245542;
      --green: #3c8b63;
      --green-dark: #1f5a3b;
      --purple: #7a63f6;
      --grad-page: linear-gradient(180deg, #fbfcf8 0%, #f3f6ef 46%, #edf2e8 100%);
      --grad-brand: linear-gradient(135deg, var(--green), var(--purple));
      --grad-btn: linear-gradient(135deg, #132018, #1d2a25 26%, #5d45dc 100%);
      /* Orbit-inspired palette — very light (no heavy navy) */
      --grad-orbit-hero:
        radial-gradient(circle at 18% 12%, rgba(255, 252, 248, 0.95), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(122, 99, 246, 0.14), transparent 34%),
        radial-gradient(circle at 50% 88%, rgba(60, 139, 99, 0.08), transparent 40%),
        linear-gradient(155deg, #fefdfb 0%, #f3eeff 32%, #e8eef8 58%, #f0f3fa 100%);
      --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      /* Light motion — mobile-first: short durations, GPU-friendly props */
      --motion-step: 0.26s;
      --motion-ui: 0.2s;
      --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-tap: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Same light “orbit” shell as glassmorphism_signup_modal.html body — not a dark scrim */
#funnelPopup.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.55), transparent 38%),
    radial-gradient(circle at 42% 50%, rgba(255, 255, 255, 0.22), transparent 30%),
    var(--grad-orbit-hero);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: var(--font-sans);
  color: var(--color-text);
}

#funnelPopup.popup-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

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

#funnelPopup .modal {
      position: relative;
      width: min(92vw, 520px);
      padding: 52px 40px 36px;
      border-radius: 34px;
      background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(255, 255, 255, 0.38) 45%,
        rgba(255, 255, 255, 0.48) 100%
      );
      border: 1px solid rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(48px) saturate(1.85);
      -webkit-backdrop-filter: blur(48px) saturate(1.85);
      box-shadow:
        0 28px 80px rgba(122, 99, 246, 0.08),
        0 2px 0 rgba(255, 255, 255, 0.9) inset,
        inset 0 -2px 16px rgba(255, 255, 255, 0.35),
        inset 0 12px 32px rgba(255, 255, 255, 0.55);
      z-index: 2;
      animation: glassModalEnter 0.42s var(--ease-out-soft) both;
    }

    #funnelPopup .close-btn {
      position: fixed;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 50%;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.28));
      color: var(--color-text-muted);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      backdrop-filter: blur(28px) saturate(1.7);
      -webkit-backdrop-filter: blur(28px) saturate(1.7);
      z-index: 110;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 32px rgba(122, 99, 246, 0.1);
      transition: transform var(--motion-ui) var(--ease-tap), opacity var(--motion-ui) ease;
    }

    #funnelPopup .close-btn:active {
      transform: scale(0.94);
      opacity: 0.92;
    }

    /* —— Fullscreen achievement (pain point → phone); brand tokens only —— */
    .glass-ach {
      position: fixed;
      inset: 0;
      z-index: 100;
      font-family: var(--font-sans);
      pointer-events: none;
    }

    .glass-ach:not([hidden]) {
      pointer-events: auto;
    }

    /* Thank-you moment stacks above mid-funnel achievement */
    #funnelPopup .glass-ach--thankyou {
      z-index: 101;
    }

    .glass-ach__bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 18%, rgba(122, 99, 246, 0.2), transparent 32%),
        radial-gradient(circle at 78% 24%, rgba(60, 139, 99, 0.16), transparent 34%),
        radial-gradient(circle at 50% 88%, rgba(122, 99, 246, 0.08), transparent 42%),
        var(--grad-orbit-hero);
      transform: scale(1);
      filter: saturate(1) blur(0);
      transition: transform 1.2s ease, filter 1.2s ease;
    }

    .glass-ach__bg--animate {
      transform: scale(1.045);
      filter: saturate(1.1) blur(2px);
    }

    .glass-ach__noise {
      position: absolute;
      inset: 0;
      opacity: 0.035;
      background-image:
        linear-gradient(rgba(45, 106, 79, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 99, 246, 0.05) 1px, transparent 1px);
      background-size: 5px 5px, 5px 5px;
      mix-blend-mode: multiply;
      pointer-events: none;
    }

    .glass-ach__vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle, transparent 42%, rgba(19, 32, 24, 0.2) 100%);
      pointer-events: none;
    }

    .glass-ach__flash {
      position: absolute;
      inset: 0;
      opacity: 0;
      background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 32%),
        radial-gradient(circle at center, rgba(122, 99, 246, 0.12), transparent 45%);
      transition: opacity 0.25s ease;
      pointer-events: none;
    }

    .glass-ach__flash--show {
      opacity: 1;
    }

    .glass-ach__sweep {
      position: absolute;
      inset: 0;
      opacity: 0;
      background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 34%,
        rgba(122, 99, 246, 0.14) 48%,
        rgba(60, 139, 99, 0.1) 52%,
        transparent 62%,
        transparent 100%
      );
      transform: translateX(-100%);
      pointer-events: none;
    }

    .glass-ach__sweep--run {
      opacity: 1;
      animation: glassAchSweepMove 1.15s ease forwards;
    }

    .glass-ach__headline {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      opacity: 0;
      transform: scale(1.03);
      transition: opacity 0.45s ease, transform 0.75s ease;
      z-index: 3;
      pointer-events: none;
    }

    .glass-ach__headline--show {
      opacity: 1;
      transform: scale(1);
    }

    .glass-ach__rings {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      overflow: hidden;
      pointer-events: none;
    }

    .glass-ach__ring {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      border: 1px solid rgba(122, 99, 246, 0.22);
      opacity: 0;
      transform: scale(0.7);
    }

    .glass-ach__ring--two {
      border-color: rgba(60, 139, 99, 0.2);
    }

    .glass-ach__ring--three {
      border-color: rgba(122, 99, 246, 0.14);
    }

    .glass-ach__headline--show .glass-ach__ring--one {
      animation: glassAchRingPulse 1.4s ease forwards;
    }

    .glass-ach__headline--show .glass-ach__ring--two {
      animation: glassAchRingPulse 1.4s ease 0.12s forwards;
    }

    .glass-ach__headline--show .glass-ach__ring--three {
      animation: glassAchRingPulse 1.4s ease 0.24s forwards;
    }

    .glass-ach__copy {
      position: relative;
      text-align: center;
      max-width: min(92vw, 720px);
      padding: 0 24px;
      z-index: 1;
    }

    .glass-ach__check {
      width: 58px;
      height: 58px;
      margin: 0 auto 22px;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(60, 139, 99, 0.35), rgba(122, 99, 246, 0.28));
      border: 2px solid rgba(255, 255, 255, 0.55);
      display: grid;
      place-items: center;
      font-size: 30px;
      font-weight: 800;
      line-height: 1;
      color: var(--green-dark);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 12px 36px rgba(122, 99, 246, 0.12);
      opacity: 0;
      transform: scale(0.4) rotate(-12deg);
    }

    .glass-ach__headline--show .glass-ach__check {
      animation: glassAchPopCheck 0.65s cubic-bezier(0.34, 1.45, 0.64, 1) 0.12s forwards;
    }

    .glass-ach__title {
      font-size: clamp(22px, 4.5vw, 48px);
      font-weight: 600;
      line-height: 1.14;
      letter-spacing: -0.025em;
      margin-bottom: 14px;
      color: var(--color-text);
      text-shadow: 0 2px 24px rgba(255, 252, 248, 0.9);
      opacity: 0;
      transform: translateY(14px);
    }

    .glass-ach__headline--show .glass-ach__title {
      animation: glassAchLineReveal 0.75s ease 0.08s forwards;
    }

    .glass-ach__sub {
      font-size: clamp(15px, 2.1vw, 22px);
      color: var(--color-text-muted);
      letter-spacing: 0.01em;
      line-height: 1.45;
      opacity: 0;
      transform: translateY(10px);
    }

    .glass-ach__headline--show .glass-ach__sub {
      animation: glassAchLineReveal 0.7s ease 0.35s forwards;
    }

    @keyframes glassAchSweepMove {
      0% {
        transform: translateX(-100%);
        opacity: 0;
      }
      15% {
        opacity: 1;
      }
      100% {
        transform: translateX(100%);
        opacity: 0;
      }
    }

    @keyframes glassAchRingPulse {
      0% {
        opacity: 0;
        transform: scale(0.7);
      }
      20% {
        opacity: 0.32;
      }
      100% {
        opacity: 0;
        transform: scale(4.8);
      }
    }

    @keyframes glassAchPopCheck {
      to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

    @keyframes glassAchLineReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes glassModalEnter {
      from {
        opacity: 0;
        transform: translateY(10px) scale(0.992);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes glassFunnelStepIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes glassDoneIconIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* —— Funnel content (same flow/copy as site CTA popup; glass styling) —— */
    .glass-funnel__top {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-bottom: 4px;
    }

    .glass-funnel__step-icon {
      width: 56px;
      height: 56px;
      margin: 8px auto 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: linear-gradient(165deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.22) 100%);
      border: 1px solid rgba(255, 255, 255, 0.65);
      color: var(--color-accent);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 8px 22px rgba(122, 99, 246, 0.08);
      flex-shrink: 0;
      transition: box-shadow var(--motion-ui) ease, transform var(--motion-ui) var(--ease-tap);
    }

    #glassStepIconInner {
      display: block;
      transition: opacity 0.18s ease;
    }

    .glass-funnel__step-icon--whatsapp {
      color: #128c7e;
    }

    .glass-funnel__step-icon svg {
      display: block;
    }

    .glass-funnel__progress {
      width: min(100%, 360px);
      margin: 8px auto 32px;
      height: 4px;
      background: rgba(0, 0, 0, 0.06);
      border-radius: 4px;
      overflow: hidden;
    }

    .glass-funnel__progress-bar {
      height: 100%;
      width: 20%;
      background: linear-gradient(135deg, var(--green), var(--purple));
      border-radius: 4px;
      transition: width 0.42s var(--ease-out-soft);
    }

    .glass-funnel__step {
      min-height: 200px;
    }

    .glass-funnel__step[hidden] {
      display: none;
    }

    .glass-funnel__step:not([hidden]) {
      animation: glassFunnelStepIn var(--motion-step) var(--ease-out-soft) both;
    }

    .glass-funnel__step--done:not([hidden]) .glass-funnel__done-icon {
      animation: glassDoneIconIn 0.34s var(--ease-out-soft) 0.06s both;
    }

    .glass-funnel__title {
      font-size: clamp(1.28rem, 4.2vw, 1.58rem);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.28;
      margin-bottom: 8px;
      color: var(--color-text);
    }

    .glass-funnel__hint {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      margin-bottom: 18px;
      line-height: 1.5;
    }

    .glass-funnel__toggle-hint {
      font-size: 0.82rem;
      color: var(--color-text-muted);
      margin-bottom: 10px;
      line-height: 1.45;
    }

    .glass-funnel__input {
      display: block;
      width: 100%;
      min-height: 52px;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1.5px solid rgba(255, 255, 255, 0.65);
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(20px) saturate(1.5);
      -webkit-backdrop-filter: blur(20px) saturate(1.5);
      font-size: 1rem;
      font-family: inherit;
      color: var(--color-text);
      outline: none;
      margin-bottom: 14px;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(255, 255, 255, 0.22),
        0 4px 18px rgba(122, 99, 246, 0.06);
      transition:
        border-color var(--motion-ui) ease,
        box-shadow var(--motion-ui) ease,
        transform var(--motion-ui) var(--ease-tap);
    }

    .glass-funnel__input::placeholder {
      color: rgba(110, 110, 115, 0.6);
    }

    .glass-funnel__input:focus {
      transform: translateY(-1px);
      border-color: rgba(45, 106, 79, 0.55);
      box-shadow:
        0 0 0 3px rgba(60, 139, 99, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .glass-funnel__input.is-invalid {
      border-color: #d32f2f;
    }

    .glass-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: inherit;
      cursor: pointer;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1rem;
    }

    .glass-btn--primary {
      width: 100%;
      min-height: 52px;
      margin-top: 6px;
      border: none;
      background: var(--grad-btn);
      color: #fff;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 12px 28px rgba(0, 0, 0, 0.18);
      touch-action: manipulation;
      transition:
        transform 0.18s var(--ease-tap),
        filter 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
    }

    .glass-btn--primary:active:not(:disabled) {
      transform: scale(0.985) translateY(1px);
      filter: brightness(0.97);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 6px 18px rgba(0, 0, 0, 0.16);
    }

    .glass-btn--primary:focus-visible {
      outline: 2px solid rgba(122, 99, 246, 0.55);
      outline-offset: 3px;
    }

    .glass-btn--primary:disabled {
      opacity: 0.75;
      cursor: wait;
    }

    @media (hover: hover) and (pointer: fine) {
      .glass-btn--primary:hover:not(:disabled) {
        transform: translateY(-1px);
        filter: brightness(1.06);
        box-shadow:
          0 1px 0 rgba(255, 255, 255, 0.14) inset,
          0 14px 32px rgba(0, 0, 0, 0.2);
      }
    }

    .glass-funnel__nav {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 6px;
    }

    .glass-funnel__nav .glass-btn--primary {
      flex: 1;
      margin-top: 0;
    }

    .glass-funnel__back {
      background: none;
      border: none;
      font-size: 0.9rem;
      color: var(--color-text-muted);
      padding: 8px 4px;
      min-height: 44px;
      flex-shrink: 0;
      cursor: pointer;
      font-family: inherit;
      touch-action: manipulation;
      border-radius: 10px;
      transition: color var(--motion-ui) ease, opacity var(--motion-ui) ease, transform var(--motion-ui) var(--ease-tap);
    }

    .glass-funnel__back:hover {
      color: var(--color-text);
    }

    .glass-funnel__back:active {
      opacity: 0.72;
      transform: scale(0.98);
    }

    .glass-funnel__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .glass-funnel__chip {
      cursor: pointer;
    }

    .glass-funnel__chip input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .glass-funnel__chip span {
      display: inline-block;
      padding: 10px 14px;
      border: 1.5px solid rgba(255, 255, 255, 0.55);
      border-radius: 980px;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--color-text);
      background: rgba(255, 255, 255, 0.38);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition:
        border-color var(--motion-ui) ease,
        background var(--motion-ui) ease,
        color var(--motion-ui) ease,
        transform var(--motion-ui) var(--ease-tap);
    }

    .glass-funnel__chip span:active {
      transform: scale(0.985);
    }

    .glass-funnel__chip input:checked + span {
      border-color: var(--color-accent);
      background: linear-gradient(135deg, rgba(60, 139, 99, 0.16), rgba(122, 99, 246, 0.18));
      color: var(--color-accent);
    }

    .glass-funnel__chip span:hover {
      border-color: rgba(110, 110, 115, 0.45);
    }

    .glass-funnel__toggle-row {
      display: flex;
      gap: 8px;
      margin-bottom: 14px;
    }

    .glass-funnel__toggle-btn {
      flex: 1;
      padding: 12px;
      border: 1.5px solid rgba(255, 255, 255, 0.55);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--color-text-muted);
      cursor: pointer;
      font-family: inherit;
      touch-action: manipulation;
      min-height: 48px;
      transition:
        border-color var(--motion-ui) ease,
        background var(--motion-ui) ease,
        color var(--motion-ui) ease,
        transform var(--motion-ui) var(--ease-tap);
    }

    .glass-funnel__toggle-btn:active {
      transform: scale(0.988);
    }

    .glass-funnel__toggle-btn--active {
      border-color: var(--color-accent);
      background: linear-gradient(135deg, rgba(60, 139, 99, 0.16), rgba(122, 99, 246, 0.18));
      color: var(--color-accent);
    }

    .glass-funnel__step--done {
      text-align: center;
      padding: 20px 0 8px;
    }

    .glass-funnel__done-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 14px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(60, 139, 99, 0.18), rgba(122, 99, 246, 0.2));
      color: var(--color-accent);
      font-size: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .glass-funnel__trust {
      text-align: center;
      font-size: 11px;
      color: var(--color-text-muted);
      margin-top: 18px;
      opacity: 0.78;
      line-height: 1.45;
    }

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

    @media (prefers-reduced-motion: reduce) {
      #funnelPopup .modal,
      .glass-funnel__step:not([hidden]),
      .glass-funnel__step--done:not([hidden]) .glass-funnel__done-icon {
        animation: none !important;
      }

      .glass-ach__bg,
      .glass-ach__flash,
      .glass-ach__headline,
      .glass-ach__sweep,
      .glass-ach__ring,
      .glass-ach__check,
      .glass-ach__title,
      .glass-ach__sub {
        animation: none !important;
        transition-duration: 0.01ms !important;
      }

      .glass-ach__headline--show .glass-ach__ring--one,
      .glass-ach__headline--show .glass-ach__ring--two,
      .glass-ach__headline--show .glass-ach__ring--three {
        animation: none !important;
        opacity: 0 !important;
      }

      .glass-ach__headline--show .glass-ach__check,
      .glass-ach__headline--show .glass-ach__title,
      .glass-ach__headline--show .glass-ach__sub {
        opacity: 1 !important;
        transform: none !important;
      }

      .glass-funnel__progress-bar,
      .glass-funnel__input,
      .glass-btn--primary,
      .glass-funnel__back,
      .glass-funnel__chip span,
      .glass-funnel__toggle-btn,
      #funnelPopup .close-btn,
      .glass-funnel__step-icon,
      #glassStepIconInner {
        transition-duration: 0.01ms !important;
      }

      .glass-btn--primary:hover:not(:disabled),
      .glass-btn--primary:active:not(:disabled) {
        transform: none;
        filter: none;
      }

      .glass-funnel__input:focus {
        transform: none;
      }

      .glass-funnel__chip span:active,
      .glass-funnel__toggle-btn:active,
      .glass-funnel__back:active {
        transform: none;
      }
    }

    @media (min-width: 641px) {
      #funnelPopup {
        --motion-step: 0.32s;
      }
    }

    @media (max-width: 640px) {
      #funnelPopup.popup-overlay {
        padding: 16px;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      #funnelPopup .modal {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 48px 18px 22px;
        border-radius: 24px;
      }

      .glass-funnel__title {
        font-size: 1.2rem;
        line-height: 1.3;
      }

      .glass-funnel__step-icon {
        width: 50px;
        height: 50px;
        margin: 6px auto 24px;
      }

      .glass-funnel__step-icon svg {
        width: 24px;
        height: 24px;
      }

      .glass-funnel__progress {
        width: min(100%, 300px);
        margin: 6px auto 28px;
      }

      .glass-funnel__input,
      .glass-btn--primary {
        min-height: 50px;
        font-size: 0.98rem;
      }

      #funnelPopup .close-btn {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
      }
    }

    @media (max-width: 420px) {
      .glass-funnel__title {
        font-size: 1.1rem;
        line-height: 1.32;
      }

      .glass-funnel__hint {
        font-size: 0.86rem;
      }

      .glass-funnel__input,
      .glass-btn--primary {
        min-height: 48px;
      }
    }