/* ─── PAGE BODY OVERRIDE ─── */
body {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── MAIN ─── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 80px;
}

/* ─── PROGRESS STEPS ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeUp 0.5s ease both;
}
.breadcrumb .step {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb .step.active {
  color: var(--green);
}
.breadcrumb .step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb .step.active .step-num {
  background: var(--green);
  color: #fff;
}
.breadcrumb .sep {
  color: var(--border);
  font-size: 16px;
  font-weight: 300;
}

/* ─── HEADLINE ─── */
.headline {
  text-align: center;
  max-width: 560px;
  margin-bottom: 16px;
  animation: fadeUp 0.55s ease 0.05s both;
}
.headline .eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.headline h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}
.headline h1 em {
  font-style: italic;
  color: var(--green);
}
.headline p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── URGENCY BANNER ─── */
.urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--green-mid);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 500;
  max-width: 480px;
  margin: 0 auto 48px;
  animation: fadeUp 0.55s ease 0.1s both;
}
.urgency svg {
  flex-shrink: 0;
  color: var(--green);
}

/* ─── CHOICE CARDS ─── */
.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  width: 100%;
  animation: fadeUp 0.6s ease 0.15s both;
}

.choice-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  cursor: pointer;
}
.choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.22s;
  border-radius: 18px;
}
.choice-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.choice-card:hover::before {
  opacity: 1;
}

.choice-card .card-icon {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.22s;
  position: relative;
  z-index: 1;
  color: var(--green);
}
.choice-card:hover .card-icon {
  background: var(--green-mid);
}

.choice-card .card-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.choice-card h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.choice-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.choice-card .card-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.choice-card .card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.choice-card .card-bullets li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23398141' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.choice-card .card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, gap 0.2s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.choice-card .card-cta:hover {
  background: var(--green-dark);
  gap: 12px;
}
.choice-card .card-cta svg {
  transition: transform 0.2s;
}
.choice-card:hover .card-cta svg {
  transform: translateX(2px);
}

.choice-card.sharer {
  border-top: 4px solid var(--green);
}
.choice-card.finder {
  border-top: 4px solid #6baa70;
}
.choice-card.finder .card-cta {
  background: #4a8f50;
}
.choice-card.finder .card-cta:hover {
  background: var(--green-dark);
}

/* ─── REASSURANCE ─── */
.reassurance {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
  animation: fadeUp 0.6s ease 0.25s both;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.reassurance-item svg {
  color: var(--green);
  flex-shrink: 0;
}
.reassurance .divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

/* ─── ANIMATION ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 680px) {
  main {
    padding: 40px 16px 60px;
  }
  .choices {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .choice-card {
    padding: 28px 24px;
  }
  .headline h1 {
    font-size: 26px;
  }
  .reassurance .divider {
    display: none;
  }
  .breadcrumb {
    display: none;
  }
}
