body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #1f2933;
  background: #f6f7f9;
}

.site-header {
  max-width: 980px;
  margin: 64px auto 48px;
  padding: 0 32px;
  text-align: center;
}

.logo {
  display: block;
  margin: 0 auto 24px;
  max-height: 160px;
  width: auto;
}

h1 {
  font-size: 2.25rem;
  margin: 0 0 14px;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #4b5563;
}

.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

.content > section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.45rem;
  margin: 0 0 14px;
}

p, li { max-width: 74ch; }
ul { padding-left: 22px; }

.muted { color: #6b7280; font-size: 0.95rem; }
.disclaimer { font-size: 0.95rem; color: #4b5563; }

.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 28px 32px;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  background: #ffffff;
}

/* ===== Pricing Options: ALWAYS ONE ROW, CENTERED, PERFECTLY ALIGNED ===== */

.option-scroll{
  overflow: hidden;
  padding: 6px 0 14px;
}

.option-row{
  display: flex;
  justify-content: center;
  align-items: stretch;     /* cards same height */
  gap: 16px;
  flex-wrap: nowrap;        /* NEVER wrap */
}

/* Each card becomes a vertical flex stack so CTA can align */
.option-card{
  display: flex;            /* key change */
  flex-direction: column;  /* vertical stack */
  text-decoration: none;
  color: inherit;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  padding: 18px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 320px;
  box-sizing: border-box;

  text-align: left;
}

/* Normalize vertical rhythm inside each card (Jobs-style consistency) */
.option-card p{
  margin: 0 0 10px;         /* consistent spacing for all text blocks */
}

.option-card:hover,
.option-card:focus{
  border-color: #0f2a44;
  outline: none;
}

.option-title{
  margin: 0 0 10px;
  font-size: 1.20rem;
}

.option-price{
  font-weight: 700;
  margin: 6px 0 10px;       /* keeps pricing aligned */
}

.option-best{
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0;         /* no extra trailing space */
}

/* This is what aligns all CTAs to the same horizontal line */
.option-cta{
  margin-top: auto;         /* push CTA to the bottom of the card */
  align-self: flex-start;   /* consistent left edge */
  display: inline-block;
  background: #0f2a44;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

/* Tighten on narrow screens while keeping 3-in-row */
@media (max-width: 640px) {
  .content { padding-left: 18px; padding-right: 18px; }
  .content > section { padding: 18px; }
  .option-card { padding: 14px; }
  .option-title { font-size: 1.05rem; }
  .option-best, .muted { font-size: 0.90rem; }
  .option-cta { padding: 9px 12px; }
}
