/* ============================================================
   benefits.css
   Light-theme sections for benefits.html:
   1. How UnBolt Works (stepper + step cards)
   2. Help for every lock and key (category cards)
   3. Why customers choose UnBolt + FAQs
   ============================================================ */

:root {
  --ub-navy: #0f1a44;
  --ub-navy-soft: #33406b;
  --ub-blue: #1e40af;
  --ub-blue-badge: #0066ff;
  --ub-teal: #00c97a;
  --ub-gray-line: #d7dbe6;
  --ub-gray-text: #9aa1b5;
  --ub-card-border: #e7e9f2;
  --ub-bg-top: #f7f8fc;
  --ub-bg-bottom: #eaf2fb;
}

/* ---------- shared container ---------- */
.how-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 40px;
}

.eyebrow-dark {
  color: var(--ub-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow-small {
  margin-top: 8px;
  margin-bottom: 18px;
}

.how-headline {
  color: var(--ub-navy);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.how-sub {
  color: var(--ub-navy-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 32px;
}

.how-next-note {
  color: var(--ub-navy-soft);
  font-size: 16px;
  margin: 28px 0 0;
  font-weight: 400;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--ub-card-border);
  margin: 8px 0 32px;
}

/* ============================================================
   SECTION 1 — HOW UNBOLT WORKS
   ============================================================ */

.how-section {
  /* background: linear-gradient(
    180deg,
    var(--ub-bg-top) 0%,
    var(--ub-bg-bottom) 100%
  ); */
  padding-top: 8px;
}

/* --- stepper --- */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 28px;
}

.step-dot {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  border: 2px solid var(--ub-gray-line);
  color: var(--ub-gray-text);
}

.step-dot--active {
  border-color: var(--ub-blue);
  color: var(--ub-blue);
}

.step-dot--done {
  border-color: var(--ub-teal);
  color: var(--ub-teal);
}

.step-dot--upcoming {
  border-color: var(--ub-gray-line);
  color: var(--ub-gray-text);
}

.step-line {
  flex: 1 1 auto;
  height: 2px;
  min-width: 24px;
  background: var(--ub-gray-line);
}

.step-line--blue {
  background: var(--ub-blue);
}

.step-line--green {
  background: var(--ub-teal);
}

.step-line--gray {
  background: var(--ub-gray-line);
}

/* --- step cards --- */
.step-card {
  background: #fff;
  border: 1px solid var(--ub-card-border);
  border-radius: 20px;
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(15, 26, 68, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.step-content {
  flex: 1 1 auto;
}

.step-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.step-badge {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ub-blue-badge);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  color: var(--ub-navy);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.step-desc {
  color: var(--ub-navy-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.step-icon-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SECTION 2 — HELP FOR EVERY LOCK AND KEY
   ============================================================ */

.lock-types-section {
  /* background: var(--ub-bg-bottom); */
}

.lock-types-headline {
  color: var(--ub-navy);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 2px solid var(--ub-card-border);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(15, 26, 68, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.category-card:hover,
.category-card--active {
  border-color: var(--ub-blue);
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.15);
  transform: translateY(-2px);
}

.category-icon {
  flex: 0 0 auto;
  /* gap: 15px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-body {
  flex: 1 1 auto;
}

.category-title {
  color: var(--ub-navy);
  font-weight: 600;
  font-size: 19px;
  margin: 0px;
  padding-left: 10px;
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ub-navy-soft);
  font-size: 15px;
  line-height: 1.9;
}

.category-list li {
  position: relative;
  padding-left: 16px;
}

.category-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ub-teal);
}

/* ============================================================
   SECTION 3 — WHY CUSTOMERS CHOOSE UNBOLT + FAQs
   ============================================================ */

.why-choose-section {
  /* background: linear-gradient(180deg, var(--ub-bg-bottom) 0%, #f7f8fc 100%); */
  padding-bottom: 16px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.choose-card {
  background: #fff;
  border: 1px solid var(--ub-card-border);
  border-radius: 16px;
  padding: 26px 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 26, 68, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.choose-card:hover {
  border-color: var(--ub-blue);
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.12);
  transform: translateY(-2px);
}

.choose-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.choose-label {
  color: var(--ub-navy);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
  margin: 0;
}

/* --- who we are --- */
.who-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ub-card-border);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(15, 26, 68, 0.05);
}

.who-logo {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--ub-blue-badge);
  display: flex;
  justify-content: center;
  overflow: hidden;
}
/* 
.who-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
} */

.who-body {
  flex: 1 1 auto;
}

.who-title {
  color: var(--ub-navy);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 6px;
}

.who-desc {
  color: var(--ub-navy-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* --- FAQs Accordion --- */
.faq-headline {
  color: var(--ub-navy);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--ub-card-border);
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(15, 26, 68, 0.04);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: var(--ub-blue);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.08);
}

.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question {
  color: var(--ub-navy);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f4ff;
  color: var(--ub-blue);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.faq-icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-1px);
}

.faq-item.active .faq-icon {
  background: var(--ub-teal);
  color: #fff;
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  color: var(--ub-navy-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  padding: 0 20px 20px 20px;
}

/* --- final CTA --- */
.final-cta-note {
  color: var(--ub-navy);
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  margin: 30px 0 18px;
}

.btn-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ub-blue-badge);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 14px;
  padding: 16px 20px;
  width: 100%;
  box-sizing: border-box;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-benefits:hover {
  background: #12309e;
  color: #fff;
  transform: translateY(-1px);
}

.btn-benefits-arrow {
  font-size: 18px;
  line-height: 1;
}

.store-note-light {
  color: var(--ub-navy-soft);
  font-size: 13px;
  text-align: center;
  margin: 14px 0 0;
}

/* ============================================================
   RESPONSIVE — larger screens
   ============================================================ */

@media (min-width: 768px) {
  .how-container {
    max-width: 760px;
    padding: 48px 24px 56px;
  }

  .how-headline,
  .lock-types-headline {
    font-size: 48px;
  }

  .step-card-body {
    align-items: center;
  }

  .choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-card {
    align-items: center;
  }
}

nav {
  background: #ffffff;
}

.bg-main2 {
  background: #ffffff;
}
