.guide-page {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.1), transparent 24rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 24%);
}

.guide-hero {
  padding: 3rem 0 2.25rem;
  background:
    linear-gradient(135deg, rgba(7, 89, 133, 0.96), rgba(15, 23, 42, 0.96)),
    linear-gradient(180deg, #0f172a, #0b1b34);
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.guide-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -8rem auto;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.25), transparent 62%);
  pointer-events: none;
}

.guide-hero__wrap {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.guide-hero__content {
  position: relative;
  z-index: 1;
}

.guide-eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
}

.guide-hero h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.15rem, 5vw, 3.45rem);
  line-height: 1.05;
  color: #ffffff;
}

.guide-hero .ai-summary,
.guide-lead {
  max-width: 70ch;
  color: rgba(239, 246, 255, 0.92);
}

.guide-lead {
  font-size: 1.03rem;
  line-height: 1.8;
}

.guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: #38bdf8;
  color: #082f49;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.24);
}

.guide-button:hover {
  color: #082f49;
  text-decoration: none;
  background: #7dd3fc;
}

.guide-button--ghost {
  background: transparent;
  color: #e0f2fe;
  border: 1px solid rgba(224, 242, 254, 0.4);
  box-shadow: none;
}

.guide-button--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.guide-hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(12px);
}

.guide-stat strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #ffffff;
  font-size: 0.96rem;
}

.guide-stat span {
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.93rem;
  line-height: 1.6;
}

.guide-nav {
  padding: 1rem 0 0;
}

.guide-nav__grid {
  display: grid;
  gap: 0.8rem;
}

.guide-nav__grid a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid #dbeafe;
  background: #ffffff;
  color: #0f3d67;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.guide-nav__grid a:hover {
  background: #eff6ff;
  text-decoration: none;
}

.guide-section-block {
  padding: 1.35rem 0;
}

.guide-section-block--soft {
  background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
  border-top: 1px solid #dfebf7;
  border-bottom: 1px solid #dfebf7;
}

.guide-grid,
.guide-faq__grid {
  display: grid;
  gap: 1.15rem;
}

.guide-card {
  padding: 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid #dbe6f2;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.guide-card--feature {
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.85), rgba(255, 255, 255, 0.96));
}

.guide-card--checklist {
  background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.guide-card--alert {
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  border-color: #fed7aa;
}

.guide-card h2,
.guide-card h3 {
  margin-bottom: 0.8rem;
  color: #0f172a;
}

.guide-card p:last-child,
.guide-card ul:last-child {
  margin-bottom: 0;
}

.guide-list {
  padding-left: 1.2rem;
  color: #334155;
}

.guide-list li {
  margin-bottom: 0.7rem;
}

.guide-section-heading {
  margin-bottom: 1.2rem;
}

.guide-faq {
  padding: 1.35rem 0 3rem;
}

@media (min-width: 768px) {
  .guide-hero__wrap,
  .guide-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.95fr);
  }

  .guide-nav__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-faq__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
