*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  height: 100vh;
  font-family:
    "Plus Jakarta Sans",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  background: #eef2ff;
  color: #0f172a;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@supports (height: 100dvh) {
  body {
    height: 100dvh;
  }
}
button {
  cursor: pointer;
  font-family: inherit;
}
input {
  font-family: inherit;
}

/* ── CARD ── */
.card {
  width: 100%;
  max-width: 620px;
  height: 100vh;
  height: 100%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  -webkit-box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.08),
    0 8px 48px rgba(37, 99, 235, 0.1);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.08),
    0 8px 48px rgba(37, 99, 235, 0.1);
}
@media (min-width: 660px) {
  .card {
    border-radius: 20px;
    height: min(92vh, 820px);
  }
  @supports (height: 100dvh) {
    .card {
      height: min(92dvh, 820px);
    }
  }
}

/* ── HEADER ── */
.header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}
.logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: -webkit-linear-gradient(135deg, #2563eb, #4f46e5);
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.logo-name {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}
.advisor-chip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 40px;
  padding: 5px 13px 5px 5px;
  margin-left: auto;
}
.av-ring {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: -webkit-linear-gradient(135deg, #3b82f6, #6366f1);
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.av-ring .online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #f8fafc;
}
.a-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}
.a-role {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
}
.live-pill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.blink-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-animation: blink 2s ease infinite;
  animation: blink 2s ease infinite;
}
@-webkit-keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ── PROGRESS ── */
.progress-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 14px 20px 12px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbff;
}
.progress-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 9px;
}
.progress-label {
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.progress-count {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}
.progress-track {
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: -webkit-linear-gradient(90deg, #2563eb, #6366f1);
  background: linear-gradient(90deg, #2563eb, #6366f1);
  -webkit-transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.step-dot-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.sdot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sdot.done {
  background: #2563eb;
  color: #fff;
}
.sdot.active {
  background: #eff6ff;
  color: #2563eb;
  border: 2px solid #2563eb;
  width: 24px;
  height: 24px;
}
.sdot.pending {
  background: #f1f5f9;
  color: #cbd5e1;
  border: 2px solid #e2e8f0;
}
.sline {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.sline.done {
  background: #2563eb;
}
.sdot-label {
  display: none;
}
@media (min-width: 420px) {
  .sdot-label {
    display: block;
    font-size: 9px;
    color: #94a3b8;
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.03em;
    font-weight: 500;
  }
  .sdot-label.active {
    color: #2563eb;
    font-weight: 600;
  }
  .sdot-label.done {
    color: #2563eb;
  }
  .step-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
  .step-dot-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
    max-width: 100px;
  }
  .sline {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 2px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 11px;
  }
}

/* ── PROOF TICKER ── */
.proof-ticker {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 8px 20px;
  background: #eff6ff;
  border-bottom: 1px solid #dbeafe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
  overflow: hidden;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-animation: blink 1.8s ease infinite;
  animation: blink 1.8s ease infinite;
}
.ticker-icon {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #3b82f6;
}
.ticker-text {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* ── MESSAGES ── */
.messages-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 22px 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
}
.messages-area::-webkit-scrollbar {
  width: 4px;
}
.messages-area::-webkit-scrollbar-track {
  background: transparent;
}
.messages-area::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}
@-webkit-keyframes msgIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.msg-enter {
  opacity: 0;
  -webkit-animation: msgIn 0.25s ease forwards;
  animation: msgIn 0.25s ease forwards;
}

.msg-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  gap: 9px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  max-width: 86%;
}
.msg-av {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: -webkit-linear-gradient(135deg, #3b82f6, #6366f1);
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.bubble-left {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  padding: 13px 17px;
  font-size: 15px;
  line-height: 1.65;
  color: #1e293b;
}
.bubble-left strong {
  color: #2563eb;
  font-weight: 700;
}
.msg-right {
  -ms-flex-item-align: end;
  align-self: flex-end;
  max-width: 72%;
}
.bubble-right {
  background: -webkit-linear-gradient(135deg, #2563eb, #4338ca);
  background: linear-gradient(135deg, #2563eb, #4338ca);
  border-radius: 18px;
  border-bottom-right-radius: 5px;
  padding: 13px 17px;
  font-size: 15px;
  line-height: 1.65;
  color: #fff;
  font-weight: 500;
}
.typing-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  gap: 9px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.typing-bubble {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  padding: 14px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.tdot {
  width: 7px;
  height: 7px;
  background: #cbd5e1;
  border-radius: 50%;
  -webkit-animation: tdA 1.25s ease infinite;
  animation: tdA 1.25s ease infinite;
}
.tdot:nth-child(2) {
  -webkit-animation-delay: 0.18s;
  animation-delay: 0.18s;
}
.tdot:nth-child(3) {
  -webkit-animation-delay: 0.36s;
  animation-delay: 0.36s;
}
@-webkit-keyframes tdA {
  0%,
  55%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #cbd5e1;
  }
  27% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background: #3b82f6;
  }
}
@keyframes tdA {
  0%,
  55%,
  100% {
    transform: translateY(0);
    background: #cbd5e1;
  }
  27% {
    transform: translateY(-5px);
    background: #3b82f6;
  }
}
.fomo-row {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 11px;
  padding: 10px 14px;
  font-size: 13px;
  color: #15803d;
  font-weight: 500;
}
.fomo-row svg {
  width: 15px;
  height: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  stroke: #22c55e;
}
.urgency-row {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 11px;
  padding: 10px 14px;
  font-size: 13px;
  color: #92400e;
  font-weight: 600;
}
.urgency-row svg {
  width: 15px;
  height: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  stroke: #f59e0b;
}

/* ── ANSWERS ── */
.answers-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 6px 20px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
@-webkit-keyframes btnIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes btnIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ans-btn {
  opacity: 0;
  -webkit-animation: btnIn 0.22s ease forwards;
  animation: btnIn 0.22s ease forwards;
  background: #fff;
  border: 2px solid #bfdbfe;
  color: #1d4ed8;
  padding: 10px 20px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  -webkit-transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    -webkit-transform 0.1s ease;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.1s ease;
  -webkit-appearance: none;
  appearance: none;
}
.ans-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.ans-btn:focus {
  border-color: #2563eb;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.ans-btn:active {
  -webkit-transform: scale(0.96);
  transform: scale(0.96);
}

/* ── NAME INPUT ── */
.name-input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 4px 0;
}
.name-inp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #ffffff;
  border: 2px solid #bfdbfe;
  border-radius: 25px;
  padding: 11px 18px;
  font-size: 15px;
  color: #0f172a;
  outline: none;
  font-family: inherit;
  -webkit-transition:
    border-color 0.15s ease,
    -webkit-box-shadow 0.15s ease;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.name-inp:focus {
  border-color: #2563eb;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.name-inp::-webkit-input-placeholder {
  color: #cbd5e1;
}
.name-inp:-ms-input-placeholder {
  color: #cbd5e1;
}
.name-inp::placeholder {
  color: #cbd5e1;
}
.name-inp-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition:
    background 0.15s ease,
    -webkit-transform 0.1s ease;
  transition:
    background 0.15s ease,
    transform 0.1s ease;
}
.name-inp-btn:hover {
  background: #1d4ed8;
}
.name-inp-btn:active {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.name-inp-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── FORM ── */
.form-card {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background: #fafbff;
  border: 1.5px solid #dbeafe;
  border-radius: 18px;
  padding: 22px 20px 20px;
  margin-top: 4px;
}
.form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
}
.qualify-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 2px solid #a7f3d0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-headline {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 5px;
}
.form-subline {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}
.form-subline strong {
  color: #2563eb;
  font-weight: 600;
}
.form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}
.f-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  margin-bottom: 7px;
}
.f-input {
  display: block;
  width: 100%;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 11px;
  padding: 12px 15px;
  font-size: 15px;
  color: #0f172a;
  outline: none;
  -webkit-transition:
    border-color 0.18s ease,
    -webkit-box-shadow 0.18s ease;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.f-input:focus {
  border-color: #2563eb;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.f-input::-webkit-input-placeholder {
  color: #cbd5e1;
}
.f-input:-ms-input-placeholder {
  color: #cbd5e1;
}
.f-input::placeholder {
  color: #cbd5e1;
}

/* intl-tel-input light overrides */
.iti {
  width: 100%;
  display: block;
}
.iti--separate-dial-code .iti__selected-flag {
  background: #fff;
  border-radius: 11px 0 0 11px;
  border-right: 1.5px solid #e2e8f0;
}
.iti--separate-dial-code .iti__selected-flag:hover,
.iti--separate-dial-code .iti__selected-flag:focus {
  background: #eff6ff;
}
.iti__selected-dial-code {
  color: #475569;
  font-size: 13px;
}
.iti__arrow {
  border-top-color: #64748b;
}
.iti__arrow--up {
  border-bottom-color: #64748b;
}
.iti__country-list {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  color: #0f172a;
  max-height: 195px;
  z-index: 300;
}
.iti__country:hover,
.iti__country.iti__highlight {
  background: #eff6ff;
}
.iti__country-name {
  color: #0f172a;
}
.iti__dial-code {
  color: #94a3b8;
}
.iti__divider {
  border-bottom-color: #f1f5f9;
}
.iti__search-input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  color: #0f172a;
  font-size: 13px;
  padding: 7px 10px;
}
.iti__search-input::-webkit-input-placeholder {
  color: #cbd5e1;
}
.iti__search-input:-ms-input-placeholder {
  color: #cbd5e1;
}
.iti__search-input::placeholder {
  color: #cbd5e1;
}

.cta-btn {
  display: block;
  width: 100%;
  background: -webkit-linear-gradient(135deg, #1d4ed8, #2563eb, #4f46e5);
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #4f46e5);
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  outline: none;
  margin-top: 8px;
  -webkit-transition:
    -webkit-transform 0.15s ease,
    -webkit-box-shadow 0.15s ease;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.cta-btn:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}
.cta-btn:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}
.cta-btn:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.cta-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none;
}
.cta-micro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  margin-top: 11px;
}
.micro-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
}
.micro-item svg {
  width: 12px;
  height: 12px;
  stroke: #22c55e;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.form-legal {
  font-size: 12px;
  color: #334155;
  text-align: center;
  margin-top: 14px;
  line-height: 1.55;
  font-weight: 700;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 11px;
  padding: 10px 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

/* ── MEDIA STRIP ── */
.media-strip {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eef2ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
}
.media-strip-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #94a3b8;
}
.media-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.media-pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  opacity: 0.78;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.media-pill:hover {
  opacity: 1;
}
@media (max-width: 500px) {
  .media-pill {
    font-size: 10px;
    padding: 3px 8px;
  }
  .media-logos {
    gap: 5px;
  }
}

/* Success / Error inline */
.form-success {
  background: #f0fdf4;
  border: 1.5px solid #a7f3d0;
  border-radius: 13px;
  padding: 18px 20px;
  text-align: center;
  font-size: 15px;
  color: #166534;
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.5;
}
.form-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 6px;
  padding: 6px 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  padding: 9px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.trust-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
  font-weight: 500;
}
.trust-item svg {
  width: 12px;
  height: 12px;
  stroke: #94a3b8;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 420px) {
  .trust-item:nth-child(n + 4) {
    display: none;
  }
}
@media (max-width: 500px) {
  .header {
    padding: 11px 14px;
  }
  .progress-wrap {
    padding: 11px 14px 10px;
  }
  .proof-ticker {
    padding: 7px 14px;
  }
  .messages-area {
    padding: 16px 14px 8px;
  }
  .answers-wrap {
    padding: 4px 14px 12px;
  }
  .form-card {
    padding: 18px 15px 16px;
    margin-top: 2px;
  }
  .form-headline {
    font-size: 18px;
  }
  .trust-bar {
    gap: 12px;
    padding: 7px 14px;
  }
  .advisor-chip {
    display: none;
  }
  .form-card {
    padding: 14px 12px 13px;
    border-radius: 14px;
  }
  .form-top {
    gap: 10px;
    margin-bottom: 14px;
  }
  .qualify-badge {
    width: 34px;
    height: 34px;
  }
  .form-headline {
    font-size: 17px;
  }
  .form-subline {
    font-size: 12px;
    line-height: 1.45;
  }
  .form-fields {
    gap: 10px;
  }
  .form-row-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .form-row-2 > div + div {
    margin-top: 0;
  }
  .f-label {
    font-size: 10px;
    margin-bottom: 5px;
    letter-spacing: 0.055em;
  }
  .f-input {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  .cta-btn {
    padding: 13px 16px;
    font-size: 15px;
    margin-top: 4px;
    border-radius: 11px;
  }
  .cta-micro {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-top: 9px;
  }
  .micro-item {
    font-size: 10px;
  }
  .form-legal {
    font-size: 10.5px;
    line-height: 1.45;
    margin-top: 10px;
    padding: 8px 9px;
    border-radius: 10px;
  }
  .iti__country-list {
    max-width: calc(100vw - 28px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── FORM NAME ROW (first + last side by side) ── */
.form-row-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.form-row-2 > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
@media (max-width: 400px) {
  .form-row-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-row-2 > div + div {
    margin-top: 14px;
  }
}

/* ── AVATAR PHOTOS ── */
.av-ring {
  overflow: hidden;
}
.av-ring img.av-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.msg-av {
  overflow: hidden;
}
.msg-av img.av-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* ── FORM-ONLY MODE ── */
.card--form-mode .progress-wrap,
.card--form-mode .proof-ticker {
  display: none;
}
.card--form-mode .answers-wrap {
  display: none;
}
.card--form-mode .messages-area {
  padding: 12px 16px 6px;
}

/* ── MEDIA LOGO BAR (below trust bar) ── */
.media-logo-bar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  padding: 6px 20px 9px;
}
.media-logo-bar .media-strip {
  margin-top: 0;
  padding-top: 6px;
  border-top: none;
}
.media-logo-bar .media-strip-label {
  font-size: 9px;
}
.media-logo-bar .media-pill {
  font-size: 10px;
  padding: 3px 8px;
  opacity: 0.72;
}
/* Actual logo image pills */
.media-pill-img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3px 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  opacity: 0.82;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.media-pill-img:hover {
  opacity: 1;
}
.media-pill-img img {
  height: 16px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  display: block;
}
@media (max-width: 500px) {
  .media-pill-img img {
    height: 13px;
    max-width: 72px;
  }
}

.form-wrapper {
  display: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
