/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #eef2f7;
  color: #0f172a;
}

/* CONTAINER */
.container {
  max-width: 520px;
  margin: auto;
  padding: 24px 16px 100px;
}

/* HEADER WRAPPER */
.header-top {
  margin-bottom: 18px;
}

/* AGENT CARD (PREMIUM CORE) */
.agent-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 18px 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

/* PHOTO */
.agent-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

/* NAME */
.agent-card h2 {
  margin: 4px 0 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* PRESENCE */
.presence {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #16a34a;
}

.presence .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 4px rgba(34, 197, 94, 0.5);
}

/* MICRO PROOF */
.micro-proof {
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

/* LOGO */
.agent-logo {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.agent-logo img {
  width: 58px;
  height: auto;
  object-fit: contain;
  opacity: 0.65;
}

/* HERO */
.hero {
  text-align: center;
  margin: 14px 0 6px;
}

.hero h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 6px;
}

.hero p {
  font-size: 14px;
  color: #475569;
  margin: 0;
}

/* CARD */
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  margin-top: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

/* FORM */
label {
  font-size: 13px;
  margin-top: 12px;
  display: block;
  color: #334155;
}

input {
  width: 100%;
  padding: 13px;
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid #dbe3ee;
  background: #f9fbfd;
  font-size: 15px;
  transition: all 0.2s ease;
}

input:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
}

/* BUTTONS */
.btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  margin-top: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn:active {
  transform: scale(0.96);
}

/* PRIMARY */
.primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

/* CALL */
.call {
  background: #f59e0b;
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.25);
}

/* WHATSAPP */
.whatsapp {
  background: #25d366;
  color: #ffffff;
}

/* VIBER */
.viber {
  background: #7360f2;
  color: #ffffff;
}

/* OUTLINE */
.outline {
  background: transparent;
  border: 1px solid #dbe3ee;
  color: #0f172a;
}

/* DIVIDER */
.divider {
  text-align: center;
  margin: 14px 0;
  font-size: 12px;
  color: #94a3b8;
}

/* SELECTOR */
.selector {
  margin-top: 16px;
}

.selector-title {
  font-size: 13px;
  color: #334155;
  margin-bottom: 8px;
}

.selector-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.option {
  padding: 12px;
  text-align: center;
  border-radius: 12px;
  background: #f9fbfd;
  border: 1px solid #dbe3ee;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.option.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

/* POST SEND */
.post-send {
  margin-top: 16px;
  padding: 18px;
  border-radius: 14px;
  background: #f9fbfd;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.post-send-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 12px;
  margin-bottom: 10px;
}

.post-step {
  padding: 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  margin-top: 6px;
}

/* TRUST */
.trust {
  margin-top: 20px;
  text-align: center;
}

.trust-item {
  font-size: 13px;
  color: #475569;
  margin-bottom: 6px;
}

/* TESTIMONIAL */
.testimonial {
  margin-top: 20px;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  text-align: center;
  font-size: 14px;
}

/* FOOTER */
.footer {
  margin-top: 30px;
  font-size: 11px;
  text-align: center;
  color: #64748b;
}

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1000;
}

.sticky-btn {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

.sticky-btn.call {
  background: #f59e0b;
  color: #000;
}

.sticky-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.hidden {
  display: none;
}

.btn {
  transition: all 0.15s ease;
}

.btn:active {
  transform: scale(0.96);
}
