:root {
  --phone-bg: #0b0e14;
  --phone-frame: #151922;
  --phone-border: #2b3343;
  --panel: #1d2331;
  --card: #242c3d;
  --card-soft: #2a3347;
  --line: #3f4a62;
  --text: #f6f8ff;
  --muted: #c1cadf;
  --accent: #58d89c;
  --accent-2: #79cbff;
  --danger: #ff6464;
  --reward: #ffda8a;
}

* {
  box-sizing: border-box;
  touch-action: manipulation;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #101319;
}

body {
  min-height: 100dvh;
  font-family: "Sora", "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 12%, #2b3343, #101319 60%);
}

.app-wrap {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 16px;
}

.phone-device {
  position: relative;
  width: min(408px, 100%);
  height: min(850px, 95dvh);
  border-radius: 48px;
  border: 8px solid var(--phone-border);
  background: linear-gradient(180deg, #0b0e14, #10141d);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone-device.is-ringing {
  animation: vibration 1.2s infinite;
}

@keyframes vibration {
  0% {
    transform: rotate(0deg);
  }

  2% {
    transform: rotate(-1deg);
  }

  4% {
    transform: rotate(1deg);
  }

  6% {
    transform: rotate(0deg);
  }

  8% {
    transform: rotate(1deg);
  }

  10% {
    transform: rotate(-1deg);
  }

  12% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 30px;
  border-radius: 999px;
  background: #000;
  z-index: 30;
}

/* WhatsApp-style notification */
.whatsapp-notif {
  position: absolute;
  top: 46px;
  left: 10px;
  right: 10px;
  z-index: 40;
  border-radius: 16px;
  background: rgba(40, 45, 55, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  animation: notif-slide-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

@keyframes notif-slide-in {
  from {
    transform: translateY(-120%);
    opacity: 0;
  }

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

.whatsapp-notif.is-hiding {
  animation: notif-slide-out 0.35s ease-in forwards;
}

@keyframes notif-slide-out {
  to {
    transform: translateY(-120%);
    opacity: 0;
  }
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notif-app-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.notif-app-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.notif-app-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.notif-app-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.notif-time {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
}

.notif-body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

img.notif-avatar {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-sender {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.notif-message {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
}

.phone-statusbar {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 2px;
}

.signal-bars i {
  width: 3px;
  border-radius: 2px;
  background: #fff;
  display: block;
}

.signal-bars i:nth-child(1) {
  height: 5px;
}

.signal-bars i:nth-child(2) {
  height: 8px;
}

.signal-bars i:nth-child(3) {
  height: 11px;
}

.signal-bars i:nth-child(4) {
  height: 9px;
  opacity: 0.35;
}

.battery-icon {
  width: 19px;
  height: 10px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1px;
}

.battery-icon b {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: 1px;
  background: #fff;
}

.battery-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: rgba(255, 255, 255, 0.5);
}

.app-content {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 240ms ease;
  padding: 68px 18px 72px;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.stage.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stage-call {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.wallpaper {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(106, 121, 153, 0.7), rgba(43, 52, 71, 0.92)),
    radial-gradient(circle at 24% 10%, rgba(220, 230, 255, 0.25), transparent 42%);
}

.wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.22);
}

.call-top,
.call-mid,
.call-bottom {
  position: relative;
  z-index: 5;
}

.call-top {
  text-align: center;
  padding: 98px 18px 0;
  display: grid;
  gap: 4px;
}

.call-mode {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.caller-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 10px auto 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.caller-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caller-name {
  margin: 0;
  font-size: clamp(2.1rem, 1.7rem + 1vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.caller-subtitle {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
}

.call-meta {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.call-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.call-mid {
  margin-top: auto;
  display: flex;
  align-items: end;
  padding: 0 18px;
}

.audio-wave-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.audio-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 64px;
}

.wave-bar {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  height: 4px;
  opacity: 0.4;
  transition: height 80ms ease, opacity 80ms ease;
}

.audio-wave-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.call-bottom {
  position: relative;
  z-index: 5;
  padding: 0 18px 48px;
}

.main-call-actions {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 14px;
  min-height: 112px;
}

.main-call-actions.is-connected {
  justify-content: center;
}

.main-call-actions.is-connected .action-col small {
  display: none;
}

.action-col {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.action-col small {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.main-call-btn {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  display: grid;
  place-items: center;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -10px 18px rgba(0, 0, 0, 0.22);
  transition: transform 150ms ease, filter 150ms ease;
}

.main-call-btn::before {
  content: "";
  position: absolute;
  top: 2%;
  left: 8%;
  width: 84%;
  height: 44%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.main-call-btn span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.main-call-btn svg {
  width: 36px;
  height: 36px;
  display: block;
}

.phone-glyph {
  color: #fff;
}

.phone-glyph--accept {
  transform: rotate(-8deg);
}

.phone-glyph--decline {
  transform: rotate(132deg);
}

.main-call-btn:active {
  transform: scale(0.92);
}

.main-call-btn.decline {
  background: linear-gradient(145deg, #ff4d62, #e1003c);
}

.main-call-btn.accept {
  background: linear-gradient(145deg, #20e86a, #00b94a);
  animation: pulse 1.8s infinite;
}

.main-call-btn:hover {
  filter: brightness(1.08);
}

@keyframes pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(32, 232, 106, 0.45),
      0 14px 28px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.56),
      inset 0 -10px 18px rgba(0, 0, 0, 0.22);
  }

  70% {
    box-shadow:
      0 0 0 18px rgba(32, 232, 106, 0),
      0 14px 28px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.56),
      inset 0 -10px 18px rgba(0, 0, 0, 0.22);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(32, 232, 106, 0),
      0 14px 28px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.56),
      inset 0 -10px 18px rgba(0, 0, 0, 0.22);
  }
}

.ghost-link-btn {
  margin: 14px auto 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

.btn {
  appearance: none;
  border: 1px solid #4a5975;
  border-radius: 14px;
  background: #263146;
  color: var(--text);
  padding: 11px 14px;
  font: inherit;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.btn-full {
  width: 100%;
  margin-top: 10px;
}

.btn-primary {
  border-color: #53c998;
  background: linear-gradient(180deg, #329469, #287854);
  font-weight: 700;
}

.btn-ghost {
  background: #202838;
  color: var(--muted);
  border-color: transparent;
}

.option-btn {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.option-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.1);
}

.option-btn:active {
  transform: scale(0.98);
}

.option-btn.is-selected {
  background: rgba(83, 201, 152, 0.15);
  border-color: #53c998;
  color: #53c998;
  font-weight: 600;
}

.option-btn span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  flex-shrink: 0;
}

.option-btn:hover span {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.option-btn.is-selected span {
  background: #53c998;
  color: #0d1117;
}

/* Radio circle indicator */
.option-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-left: auto;
  transition: all 0.2s;
  flex-shrink: 0;
}

.option-btn:hover::after {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.option-btn.is-selected::after {
  border-color: #53c998;
  background: #53c998;
  box-shadow: inset 0 0 0 4px #131a27;
}


.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h2 {
  font-size: 1.35rem;
}

h3 {
  font-size: 1.15rem;
}

.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.question-progress-wrap {
  display: grid;
  gap: 6px;
}

.question-progress-track {
  height: 8px;
  border-radius: 999px;
  border: 1px solid #45546f;
  background: #1a2130;
  overflow: hidden;
}

.question-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.question-step {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.question-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 12px;
  display: grid;
  gap: 9px;
}

.question-theme {
  margin: 0;
  color: #b8cbeb;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.option-list {
  display: grid;
  gap: 8px;
}

.option-btn {
  width: 100%;
  border: 1px solid #495874;
  border-radius: 12px;
  background: #1d2435;
  color: var(--text);
  padding: 10px 11px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  line-height: 1.4;
}

.option-btn span {
  display: block;
  margin-bottom: 2px;
  color: #b0c2e2;
  font-size: 0.76rem;
}

.option-btn.is-selected {
  border-color: #7ce0b0;
  background: #28354b;
}

.error-msg {
  margin: 0;
  min-height: 1.2em;
  color: var(--danger);
}

.reward-chip {
  margin: 0;
  width: fit-content;
  border: 1px solid #a8864f;
  border-radius: 999px;
  background: rgba(162, 121, 56, 0.25);
  color: var(--reward);
  padding: 6px 10px;
}

.profile-title {
  color: #d7e6ff;
}

.trust-msg {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.benefits li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #1c2433;
  padding: 10px;
  line-height: 1.4;
}

.action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.proof-grid {
  display: grid;
  gap: 8px;
}

.proof-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #1f2737;
  padding: 10px;
  display: grid;
  gap: 5px;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.proof-title {
  color: #d1e0fb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.plan-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.plan-tab {
  position: relative;
  appearance: none;
  border: 1px solid #4a5872;
  border-radius: 18px;
  background: linear-gradient(160deg, #1f2738 0%, #1a2232 100%);
  color: var(--text);
  padding: 12px;
  font: inherit;
  text-align: left;
  display: grid;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.plan-tab:hover {
  border-color: #607395;
  transform: translateY(-1px);
  background: linear-gradient(160deg, #253048 0%, #1d2638 100%);
}

.plan-tab:focus-visible {
  outline: 2px solid rgba(121, 203, 255, 0.8);
  outline-offset: 2px;
}

.plan-tab-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d4e8ff;
  background: linear-gradient(140deg, #3a4966, #2c3850);
}

.plan-tab-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.plan-tab-title {
  color: #e5ecff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.plan-tab-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #6a7792;
  background: rgba(10, 15, 24, 0.7);
  position: relative;
  flex-shrink: 0;
}

.plan-tab-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(40deg);
  opacity: 0;
}

.plan-tab-price {
  color: #8fe3b9;
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.12;
}

.plan-tab-detail {
  color: #b7c4de;
  font-size: 0.8rem;
  line-height: 1.35;
}

.plan-tab.is-selected {
  border-color: #57d79b;
  background: linear-gradient(160deg, #24334b 0%, #1c2a3d 100%);
  box-shadow: 0 0 0 2px rgba(87, 215, 155, 0.28), 0 10px 20px rgba(0, 0, 0, 0.3);
}

.plan-tab.is-selected .plan-tab-check {
  border-color: #57d79b;
  background: #57d79b;
}

.plan-tab.is-selected .plan-tab-check::after {
  opacity: 1;
}

.plan-tab.is-recommended .plan-tab-badge {
  color: #e7fff3;
  background: linear-gradient(140deg, #2f8a61, #246c55);
}

.offer-benefits {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.offer-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #d6e2f8;
  padding: 10px 12px;
  line-height: 1.35;
}

.offer-benefits .bi {
  color: #79d8ac;
  font-size: 1rem;
}

.payment-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.pay-tab {
  appearance: none;
  border: 1px solid #4b5a75;
  border-radius: 12px;
  background: #212a3b;
  color: var(--text);
  min-height: 56px;
  padding: 14px 12px;
  font: inherit;
  cursor: pointer;
  text-align: left;
  display: grid;
  gap: 4px;
}

.pay-tab-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-tab-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pay-tab-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pay-tab-line .bi {
  color: #8dcfff;
  font-size: 1rem;
}

.pay-tab-sub {
  color: #b7c4de;
  font-size: 0.76rem;
  line-height: 1.3;
}

.pay-tab.is-selected {
  border-color: #79d8ac;
  background: #2c3a52;
}

.pay-tab.is-selected .pay-tab-line .bi {
  color: #79d8ac;
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #1d2534;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.plan-recommendation {
  margin: 0;
  color: var(--reward);
  font-size: 0.8rem;
}

.plan-label {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.plan-price {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 700;
}

.plan-detail,
.savings-chip {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.savings-chip {
  border: 1px solid #44526f;
  border-radius: 10px;
  background: #1a2231;
  padding: 8px 10px;
}

.checkout-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #181f2e;
  padding: 10px;
  display: grid;
  gap: 9px;
}

.form-title {
  margin: 0;
  color: #d0ddf3;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field {
  display: grid;
  gap: 5px;
}

.form-field span {
  color: var(--muted);
  font-size: 0.82rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
#pix-payload {
  width: 100%;
  border: 1px solid #495773;
  border-radius: 10px;
  background: #131a27;
  color: var(--text);
  padding: 10px;
  font: inherit;
}

.lead-preview {
  margin: 0;
  border: 1px dashed #54627f;
  border-radius: 10px;
  background: #151d2c;
  color: #bfd0f0;
  padding: 10px;
  min-height: 84px;
  line-height: 1.4;
  white-space: pre-wrap;
  font-size: 0.8rem;
}

.checkout-feedback {
  margin: 0;
  min-height: 1.2em;
  color: var(--danger);
}

.btn-checkout {
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pix-box {
  border: 1px solid var(--accent);
  border-radius: 14px;
  background: #181f2e;
  padding: 14px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.pix-title {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.pix-timer {
  margin: 0;
  color: var(--reward);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pix-timer.is-urgent {
  color: var(--danger);
  animation: pulse-urgent 1s ease infinite;
}

.pix-timer.is-expired {
  color: var(--danger);
  animation: none;
}

@keyframes pulse-urgent {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pix-image {
  width: 220px;
  height: 220px;
  border-radius: 10px;
  object-fit: contain;
  border: 2px solid var(--accent);
  background: #fff;
}

#pix-payload {
  width: 100%;
  min-height: 64px;
  resize: none;
  font-size: 0.78rem;
}

.link {
  color: #9ad2ff;
  width: fit-content;
}

.home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 122px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 760px) {
  .app-wrap {
    padding: 0;
  }

  .phone-device {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
    border: 0;
  }

  .stage {
    padding-inline: 14px;
  }

  .caller-avatar {
    width: 96px;
    height: 96px;
  }

  .caller-name {
    font-size: 1.95rem;
  }

  .caller-subtitle {
    font-size: 1.35rem;
    margin-top: -4px;
  }

  .call-tool-btn .tool-icon {
    width: 58px;
    height: 58px;
  }

  .main-call-btn {
    width: 76px;
    height: 76px;
  }

  .btn {
    width: 100%;
  }

  .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .plan-switch {
    grid-template-columns: 1fr;
  }

  .payment-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pix-image {
    width: min(220px, 100%);
    height: auto;
    aspect-ratio: 1;
  }
}
