/* Homepage (Guest Flow) — scoped under .home-page. */

/* Illustrative-data label on the hero demo panel */
.home-page .home-illu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 11px;
  border: 1px dashed var(--border);
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.home-page .home-illu::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warn, #c07c22);
}

/* Trip.com platform dot (demo cards) */
.home-page .sd-dot-tc { background: #1b6fb5; }

/* Hero ticks: what the monthly plan includes */
.home-ticks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.home-ticks li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.home-ticks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

/* Section card headings keep readable spacing */
.home-page .sd-section .sd-kicker + h2 { margin-top: 10px; }
.home-page .sd-card h3 { margin: 0 0 8px; font-size: 16.5px; }
.home-page .sd-card ul { margin: 0; padding-left: 18px; display: grid; gap: 6px; }

/* Subscription vs one-off setup comparison */
.home-comp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  font-size: 14px;
}
.home-comp th,
.home-comp td {
  text-align: left;
  vertical-align: top;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}
.home-comp th {
  background: var(--surface-2);
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 800;
}
.home-comp tr:last-child th,
.home-comp tr:last-child td { border-bottom: 0; }
.home-comp td { color: var(--muted); line-height: 1.6; }

/* FAQ details */
.home-page details.sd-card { margin-top: 8px; }
.home-page details.sd-card summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}
.home-page details.sd-card summary::after { content: ""; }

/* Trust footer (homepage) */
.home-foot {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.home-foot-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  padding: 30px 0 22px;
}
.home-foot h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.home-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.home-foot a { color: var(--muted); text-decoration: none; font-size: 13.5px; }
.home-foot a:hover { color: var(--accent); }
.home-foot .home-foot-brand strong { font-size: 15px; }
.home-foot .home-foot-brand p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.home-foot-base {
  border-top: 1px solid var(--border);
  padding: 12px 0 18px;
  font-size: 12.5px;
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
@media (max-width: 760px) {
  .home-foot-inner { grid-template-columns: 1fr; gap: 18px; }
}
