/* ============================================
   ALOHA TICKETS — How it works page styles
   ============================================ */

.hiw-main { padding-bottom: calc(var(--bottom-nav-h) + 16px); }

/* ── HERO ───────────────────────────────────── */
.hiw-hero {
  background: var(--ocean);
  padding: 40px 20px 48px;
  text-align: center;
}
.hiw-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: #9FE1CB;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hiw-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 10px;
}
.hiw-title em { font-style: italic; color: #9FE1CB; }
.hiw-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* ── BODY ───────────────────────────────────── */
.hiw-body {
  padding: 0 16px 32px;
}

/* ── TOGGLE ─────────────────────────────────── */
.toggle-wrap {
  margin: -20px 0 28px;
}
.toggle-row {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.toggle-active {
  background: var(--teal);
  color: #fff;
}

/* ── SECTION TITLE ──────────────────────────── */
.hiw-section-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

/* ── STEPS ──────────────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 16px; }
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal-lite);
  border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.step-line {
  width: 1.5px;
  flex: 1;
  background: var(--border);
  margin: 6px 0;
  min-height: 24px;
}
.step:last-child .step-line { display: none; }
.step-body { padding-bottom: 28px; padding-top: 4px; }
.step:last-child .step-body { padding-bottom: 0; }
.step-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 3px;
}
.step-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 6px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── TRUST PILLS ────────────────────────────── */
.trust-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 24px 0;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-lite);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-dark);
}

/* ── DIVIDER ────────────────────────────────── */
.hiw-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

/* ── FAQ ────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform 0.2s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  padding-bottom: 16px;
  display: none;
}
.faq-a.open { display: block; }

/* ── CTA BLOCK ──────────────────────────────── */
.hiw-cta {
  background: var(--teal-lite);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  margin-top: 32px;
}
.hiw-cta-ocean { background: var(--ocean); }
.hiw-cta-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.hiw-cta-sub {
  font-size: 14px;
  color: var(--teal-dark);
  opacity: 0.8;
  line-height: 1.55;
  margin-bottom: 20px;
}
.hiw-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 15px;
  padding: 13px 24px;
}
.hiw-cta-btn-light {
  background: #fff;
  color: var(--ocean);
}

/* ── OPERATOR BENEFITS ──────────────────────── */
.op-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.op-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.op-benefit-icon {
  width: 40px; height: 40px;
  background: var(--teal-lite);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.op-benefit-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 3px;
}
.op-benefit-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── HIDDEN ─────────────────────────────────── */
.hidden { display: none; }

/* ── DESKTOP ────────────────────────────────── */
@media (min-width: 768px) {
  .hiw-main { padding-bottom: 0; }
  .hiw-hero { padding: 56px 32px 64px; }
  .hiw-title { font-size: 42px; }
  .hiw-body { max-width: 640px; margin: 0 auto; padding: 0 32px 48px; }
  .toggle-wrap { margin: -24px 0 32px; }
  .op-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-pills { grid-template-columns: repeat(4, 1fr); }
}
