/* ═══════════════════════════════════════════════
   REMAXBLUE — guide.css
   Buyer Guide page styles
   ═══════════════════════════════════════════════ */

/* ─── NAV OVERRIDE ─────────────────────────────── */
.page-guide .nav,
.page-guide .nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--gray-100);
  backdrop-filter: blur(10px);
}
.page-guide .nav .nav__logo-img--color { display: block; }
.page-guide .nav .nav__logo-img--white { display: none; }
.page-guide .nav .nav__links > a:not(.btn) { color: var(--gray-700); }
.page-guide .nav .nav__links > a:not(.btn):hover { color: var(--navy); }
.page-guide .nav .btn--nav-cta { border-color: var(--navy); color: var(--navy); }
.page-guide .nav .btn--nav-cta:hover { background: var(--navy); color: var(--white); }

/* ─── HERO ─────────────────────────────────────── */
.guide-hero {
  padding: 7rem 0 3.5rem;
  background: var(--navy);
  text-align: center;
}
.guide-hero .section-eyebrow {
  color: var(--blue-tint);
  margin-bottom: 0.75rem;
}
.guide-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.guide-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── BODY ─────────────────────────────────────── */
.guide-body {
  padding: 4.5rem 0;
  background: var(--off-white);
}

/* ─── INTRO ────────────────────────────────────── */
.guide-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  text-align: center;
}

/* ─── STEPS WRAPPER ────────────────────────────── */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ─── STEP CARD ────────────────────────────────── */
.guide-step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.guide-step:hover {
  box-shadow: var(--shadow-md);
}

/* ─── STEP LEFT ────────────────────────────────── */
.guide-step__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.guide-step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
}
.guide-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guide-step__icon svg {
  width: 20px;
  height: 20px;
}

/* ─── STEP RIGHT ───────────────────────────────── */
.guide-step__right {
  min-width: 0;
}
.guide-step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

/* ─── BADGES ───────────────────────────────────── */
.guide-step__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.guide-step__badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  letter-spacing: 0.01em;
}
.guide-step__badge--time {
  background: #EEF3FF;
  color: var(--blue);
}
.guide-step__badge--cost {
  background: #F0FDF4;
  color: #166534;
}

/* ─── BODY TEXT ────────────────────────────────── */
.guide-step__body {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ─── TIPS ─────────────────────────────────────── */
.guide-step__tips {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.guide-step__tips li {
  font-size: 0.875rem;
  color: var(--gray-500);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
.guide-step__tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* ─── CTA SECTION ──────────────────────────────── */
.guide-cta {
  padding: 5rem 0;
  background: var(--navy);
  text-align: center;
}
.guide-cta .section-eyebrow {
  color: var(--blue-tint);
  text-align: center;
  margin-bottom: 0.75rem;
}
.guide-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.guide-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.guide-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── MOBILE ───────────────────────────────────── */
@media (max-width: 600px) {
  .guide-step {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1rem;
  }
  .guide-step__left {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .guide-step__num {
    font-size: 2rem;
  }
  .guide-hero {
    padding: 5.5rem 0 2.5rem;
  }
  .guide-body {
    padding: 3rem 0;
  }
  .guide-cta {
    padding: 3.5rem 0;
  }
}
