/* t5: Checklist/Steps — stepper UI, checkboxes, accordion FAQ, progress indicators */

/* Header */
.steps-header {
  background: var(--bg);
  border-bottom: 2px solid var(--primary);
  padding: 0.65rem 1.5rem;
}
.steps-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.steps-logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  text-decoration: none;
}
.steps-nav {
  display: flex;
  gap: 1.2rem;
  flex: 1;
}
.steps-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
}
.steps-nav a:hover { color: var(--primary); }
.btn-step {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  padding: 0.55rem 1.3rem;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-step:hover { opacity: 0.9; }
.btn-lg { padding: 0.75rem 2rem; font-size: 1.1rem; }

/* Hero with progress indicator */
.steps-hero {
  text-align: center;
  padding: 3rem 1.5rem;
  background: color-mix(in srgb, var(--primary) 4%, var(--bg));
}
.steps-hero-inner { max-width: 650px; margin: 0 auto; }
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
}
.progress-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
}
.progress-dot.active { background: var(--primary); }
.progress-line {
  width: 60px;
  height: 3px;
  background: #ddd;
  display: inline-block;
}
.steps-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.steps-hero-sub { font-size: 1.15rem; color: var(--primary); margin-bottom: 0.5rem; }
.steps-hero-tagline { color: #666; margin-bottom: 1.5rem; }

/* Stepper / How it works */
.how-it-works {
  padding: 3rem 1.5rem;
}
.how-inner {
  max-width: 700px;
  margin: 0 auto;
}
.how-inner h2 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}
.stepper {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.step {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 48px;
  bottom: 0;
  width: 3px;
  background: color-mix(in srgb, var(--primary) 25%, var(--bg));
}
.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content h3 {
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.step-content p {
  color: #555;
  margin: 0;
}

/* Checklist */
.checklist-section {
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
  padding: 3rem 1.5rem;
  text-align: center;
}
.checklist-inner { max-width: 600px; margin: 0 auto; }
.checklist-inner h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1rem;
}
.checkbox {
  color: var(--primary);
  font-size: 1.25rem;
}

/* FAQ Accordion */
.faq-section {
  padding: 3rem 1.5rem;
}
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-inner h2 { text-align: center; font-size: 1.6rem; margin-bottom: 1.5rem; }
.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  background: color-mix(in srgb, var(--primary) 3%, var(--bg));
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "+ ";
  font-weight: 800;
  color: var(--primary);
  margin-right: 0.5rem;
}
.faq-item[open] summary::before { content: "- "; }
.faq-item p {
  padding: 0.75rem 1rem 1rem;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Content */
.content-section { padding: 2rem 1.5rem; }
.content-inner { max-width: 750px; margin: 0 auto; line-height: 1.7; }

/* Contact */
.contact-section { padding: 3rem 1.5rem; background: color-mix(in srgb, var(--primary) 3%, var(--bg)); }
.contact-inner { max-width: 850px; margin: 0 auto; }
.contact-inner h2 { text-align: center; margin-bottom: 2rem; }
.contact-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
}
.form-row { margin-bottom: 0.85rem; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.contact-details p { margin: 0.3rem 0; }

/* Footer */
.steps-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 2rem 1.5rem;
}
.steps-footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-nav-links a { color: var(--bg); text-decoration: none; opacity: 0.8; }
.footer-nav-links a:hover { opacity: 1; }
.footer-details { opacity: 0.75; margin-bottom: 1rem; }
.footer-details p { margin: 0.15rem 0; }
.footer-disclaimer { font-size: 0.8rem; opacity: 0.6; }
.footer-copy { font-size: 0.8rem; opacity: 0.5; margin-top: 0.3rem; }

/* Responsive */
@media (max-width: 768px) {
  .steps-nav { display: none; }
  .contact-row { grid-template-columns: 1fr; }
}

/* Checkout page */
.checkout-wrap { padding: var(--space-xl) 0; }
.checkout-container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-md); display: grid; grid-template-columns: 1fr 380px; gap: var(--space-xl); align-items: start; }
.checkout-main h1 { margin-bottom: var(--space-sm); }
.checkout-steps { display: flex; gap: var(--space-md); margin-bottom: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid #e5e5e5; }
.checkout-steps .step { color: #999; font-size: 0.9rem; }
.checkout-steps .step.active { color: var(--primary, #333); font-weight: 600; }
.checkout-form h2 { font-size: 1.1rem; margin-bottom: var(--space-md); }
.checkout-form .form-group { margin-bottom: var(--space-md); }
.checkout-form input, .checkout-form select { width: 100%; padding: 0.75rem 1rem; border: 1px solid #ddd; border-radius: var(--radius, 6px); font-size: 1rem; font-family: inherit; }
.checkout-form input:focus, .checkout-form select:focus { outline: none; border-color: var(--primary, #333); box-shadow: 0 0 0 2px rgba(0,0,0,0.05); }
.checkout-submit { width: 100%; padding: 1rem; background: var(--primary, #333); color: #fff; border: none; border-radius: var(--radius, 6px); font-size: 1.1rem; font-weight: 600; cursor: pointer; margin-top: var(--space-sm); }
.checkout-submit:hover { opacity: 0.9; }
.checkout-secure { text-align: center; font-size: 0.85rem; color: #666; margin-top: var(--space-sm); }
.checkout-success { padding: var(--space-lg); background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius, 6px); }
.checkout-success h2 { color: #166534; }
.order-summary { background: #fafafa; border: 1px solid #e5e5e5; border-radius: var(--radius, 6px); padding: var(--space-lg); position: sticky; top: var(--space-lg); }
.order-summary h3 { margin-bottom: var(--space-md); }
.order-item { display: flex; justify-content: space-between; padding: var(--space-sm) 0; margin-bottom: var(--space-sm); border-bottom: 1px solid #e5e5e5; }
.order-price { font-weight: 700; font-size: 1.1rem; }
.order-includes { list-style: none; padding: var(--space-sm) 0; }
.order-includes li { padding: 4px 0; font-size: 0.9rem; }
.order-includes li::before { content: "✓ "; color: #16a34a; font-weight: 700; }
.order-total { display: flex; justify-content: space-between; padding-top: var(--space-md); border-top: 1px solid #e5e5e5; margin-top: var(--space-sm); }
.total-price { font-size: 1.3rem; font-weight: 700; color: var(--primary, #333); }
.order-note { font-size: 0.8rem; color: #888; margin-top: var(--space-sm); }
.form-success { padding: var(--space-lg); background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius, 6px); text-align: center; }
.form-success h3 { color: #166534; margin-bottom: var(--space-sm); }
@media (max-width: 768px) {
  .checkout-container { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
