/* Getting Started Guide — public long-form page. Scoped under .guide-page */

.guide-page main { padding-top: 60px; }

.guide-page .guide-container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.guide-page .guide-section { padding: 72px 0; }
.guide-page .guide-section-alt {
  background: linear-gradient(175deg, #f6faf8 0%, #f7f9fb 50%, #faf8f3 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 0 -24px;
  padding: 72px 24px;
}
.guide-page .guide-section-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--teal);
  margin-bottom: 10px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(42,157,143,0.08), rgba(42,157,143,0.04));
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(42,157,143,0.12);
}
.guide-page .guide-section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.guide-page .guide-body-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.guide-page .guide-body-text a { color: var(--teal); font-weight: 600; text-decoration: underline; text-decoration-color: var(--teal-100); }
.guide-page .guide-body-text strong { color: var(--text-primary); }
.guide-page .guide-content-h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin: 32px 0 14px; letter-spacing: -0.3px; }
.guide-page .guide-content-h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin: 24px 0 10px; }

/* Hero */
.guide-page .guide-hero {
  background: linear-gradient(170deg, #e4f2ed 0%, #edf8f5 30%, #fef9ed 70%, #fff7db 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.guide-page .guide-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.guide-page .guide-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.guide-page .guide-hero-inner { text-align: center; position: relative; z-index: 1; }
.guide-page .guide-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.guide-page .guide-hero h1 span { color: var(--teal); }
.guide-page .guide-hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 580px; margin: 0 auto 24px; line-height: 1.65; }
.guide-page .guide-hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.guide-page .guide-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(42,157,143,0.25);
}
.guide-page .guide-btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), #1a7068);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,157,143,0.35);
  color: #fff;
}
.guide-page .guide-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-page);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.guide-page .guide-btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* Page layout + TOC */
.guide-page .guide-page-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 72px;
}
.guide-page .guide-page-main { max-width: 820px; }
.guide-page .guide-toc {
  position: sticky;
  top: 80px;
  align-self: start;
  padding: 20px 0;
}
.guide-page .guide-toc-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.guide-page .guide-toc-label::before { content: ''; width: 12px; height: 2px; background: var(--teal); border-radius: 1px; }
.guide-page .guide-toc a {
  display: block;
  padding: 5px 0 5px 14px;
  font-size: 13px;
  color: var(--text-muted);
  border-left: 2px solid var(--border-light);
  transition: all 0.2s;
  line-height: 1.5;
  text-decoration: none;
}
.guide-page .guide-toc a:hover { color: var(--teal); border-left-color: var(--teal); background: rgba(42,157,143,0.04); }
.guide-page .guide-toc a.sub { padding-left: 28px; font-size: 12px; }

/* Icon cards */
.guide-page .guide-icon-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.guide-page .guide-icon-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.25s;
  border-top: 3px solid transparent;
}
.guide-page .guide-icon-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-page .guide-icon-card:nth-child(1) { border-top-color: #2a9d8f; }
.guide-page .guide-icon-card:nth-child(2) { border-top-color: #4a90d9; }
.guide-page .guide-icon-card:nth-child(3) { border-top-color: #e6a817; }
.guide-page .guide-icon-card:nth-child(4) { border-top-color: #d4694a; }
.guide-page .guide-icon-card:nth-child(5) { border-top-color: #7c5cbf; }
.guide-page .guide-icon-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.guide-page .guide-icon-card:nth-child(1) .guide-icon-card-icon { background: #edf8f7; color: #2a9d8f; }
.guide-page .guide-icon-card:nth-child(2) .guide-icon-card-icon { background: #edf3fb; color: #4a90d9; }
.guide-page .guide-icon-card:nth-child(3) .guide-icon-card-icon { background: #fef9ed; color: #d4a017; }
.guide-page .guide-icon-card:nth-child(4) .guide-icon-card-icon { background: #fdf0ec; color: #d4694a; }
.guide-page .guide-icon-card:nth-child(5) .guide-icon-card-icon { background: #f3effa; color: #7c5cbf; }
.guide-page .guide-icon-card h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.guide-page .guide-icon-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.guide-page .guide-icon-card a { color: var(--teal); font-weight: 600; font-size: 12px; text-decoration: none; }

/* Flow steps */
.guide-page .guide-flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 32px 0;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #f7faf9 0%, #fef9ed 100%);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  border: 1px solid var(--border-light);
}
.guide-page .guide-flow-step { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 20px; }
.guide-page .guide-flow-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.guide-page .guide-flow-step:nth-child(1) .guide-flow-step-icon { background: linear-gradient(135deg, #4a90d9, #3a7bc8); }
.guide-page .guide-flow-step:nth-child(3) .guide-flow-step-icon { background: linear-gradient(135deg, #2a9d8f, #228478); }
.guide-page .guide-flow-step:nth-child(5) .guide-flow-step-icon { background: linear-gradient(135deg, #e6a817, #d49a0f); }
.guide-page .guide-flow-step:nth-child(7) .guide-flow-step-icon { background: linear-gradient(135deg, #5bb033, #4a9628); }
.guide-page .guide-flow-label { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--text-primary); }
.guide-page .guide-flow-arrow { color: var(--teal); font-size: 22px; margin-top: -8px; font-weight: 700; }

/* Highlight box */
.guide-page .guide-highlight-box {
  background: linear-gradient(135deg, #edf8f7, #f7faf9);
  border: 1px solid var(--teal-100);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin: 24px 0;
}
.guide-page .guide-highlight-box h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
.guide-page .guide-highlight-box ul { list-style: none; padding: 0; }
.guide-page .guide-highlight-box li { font-size: 14px; color: var(--text-secondary); padding: 3px 0 3px 22px; position: relative; line-height: 1.65; }
.guide-page .guide-highlight-box li::before { content: ''; position: absolute; left: 0; top: 10px; width: 14px; height: 14px; background: var(--teal); border-radius: 50%; opacity: 0.15; }
.guide-page .guide-highlight-box li::after { content: '✓'; position: absolute; left: 3px; top: 3px; font-size: 10px; color: var(--teal-dark); font-weight: 800; }

/* Checklist */
.guide-page .guide-checklist { counter-reset: checklist; margin: 24px 0; }
.guide-page .guide-checklist-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.guide-page .guide-checklist-item:last-child { border-bottom: none; }
.guide-page .guide-checklist-num {
  counter-increment: checklist;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.guide-page .guide-checklist-text { font-size: 14px; color: var(--text-secondary); line-height: 1.65; padding-top: 4px; }
.guide-page .guide-checklist-text a { color: var(--teal); font-weight: 600; text-decoration: none; }
.guide-page .guide-checklist-text strong { color: var(--text-primary); }

/* Detail steps */
.guide-page .guide-detail-step { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--border-light); }
.guide-page .guide-detail-step:last-child { border-bottom: none; }
.guide-page .guide-detail-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.guide-page .guide-detail-step-icon.clr-1 { background: linear-gradient(135deg, #2a9d8f, #34b8a8); }
.guide-page .guide-detail-step-icon.clr-2 { background: linear-gradient(135deg, #4a90d9, #5da3e6); }
.guide-page .guide-detail-step-icon.clr-3 { background: linear-gradient(135deg, #e6a817, #f0b830); }
.guide-page .guide-detail-step-icon.clr-4 { background: linear-gradient(135deg, #d4694a, #e07a5c); }
.guide-page .guide-detail-step-icon.clr-5 { background: linear-gradient(135deg, #7c5cbf, #9070d0); }
.guide-page .guide-detail-step-icon.clr-6 { background: linear-gradient(135deg, #5bb033, #6cc344); }
.guide-page .guide-detail-step-content { flex: 1; }
.guide-page .guide-detail-step-content h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.guide-page .guide-detail-step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; }
.guide-page .guide-detail-step-content a { color: var(--teal); font-weight: 600; text-decoration: none; }
.guide-page .guide-detail-step-content ul { list-style: none; padding: 0; margin: 6px 0; }
.guide-page .guide-detail-step-content li { font-size: 14px; color: var(--text-secondary); padding: 2px 0 2px 18px; position: relative; line-height: 1.65; }
.guide-page .guide-detail-step-content li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 12px; }
.guide-page .guide-inline-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0; }
.guide-page .guide-inline-tag {
  font-size: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #edf8f7, #f7faf9);
  border: 1px solid var(--teal-100);
  border-radius: 20px;
  color: var(--teal-dark);
  font-weight: 500;
}

/* Tips grid */
.guide-page .guide-tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.guide-page .guide-tip-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.guide-page .guide-tip-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), #4a90d9); opacity: 0; transition: opacity 0.25s; }
.guide-page .guide-tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-page .guide-tip-card:hover::before { opacity: 1; }
.guide-page .guide-tip-card h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.guide-page .guide-tip-card h4 svg { color: var(--teal); flex-shrink: 0; }
.guide-page .guide-tip-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.guide-page .guide-tip-card a { color: var(--teal); font-weight: 600; text-decoration: none; }

/* FAQ */
.guide-page .guide-faq-item { border-bottom: 1px solid var(--border-light); }
.guide-page .guide-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; gap: 12px; }
.guide-page .guide-faq-q h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; flex: 1; }
.guide-page .guide-faq-q svg { color: var(--text-muted); flex-shrink: 0; transition: transform 0.25s; }
.guide-page .guide-faq-item.open .guide-faq-q svg { transform: rotate(180deg); }
.guide-page .guide-faq-a { display: none; padding: 0 0 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.guide-page .guide-faq-item.open .guide-faq-a { display: block; }
.guide-page .guide-faq-a a { color: var(--teal); font-weight: 600; text-decoration: none; }
.guide-page .guide-faq-a ul { margin: 8px 0; padding-left: 20px; }
.guide-page .guide-faq-a li { margin-bottom: 6px; line-height: 1.65; }
.guide-page .guide-faq-category {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin: 28px 0 8px;
  padding: 6px 14px;
  display: inline-block;
  border-radius: 20px;
}
.guide-page .guide-faq-category:first-child { margin-top: 0; }
.guide-page .guide-faq-category.cat-teal { background: linear-gradient(135deg, var(--teal), #34b8a8); }
.guide-page .guide-faq-category.cat-blue { background: linear-gradient(135deg, #4a90d9, #5da3e6); }
.guide-page .guide-faq-category.cat-coral { background: linear-gradient(135deg, #d4694a, #e07a5c); }
.guide-page .guide-faq-category.cat-purple { background: linear-gradient(135deg, #7c5cbf, #9070d0); }

/* Next steps */
.guide-page .guide-next-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.guide-page .guide-next-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.25s;
}
.guide-page .guide-next-step:hover { border-color: var(--teal-100); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.guide-page .guide-next-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(42,157,143,0.25);
}
.guide-page .guide-next-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.guide-page .guide-next-step a { color: var(--teal); font-weight: 600; text-decoration: none; }

/* CTA banner */
.guide-page .guide-cta-banner {
  background: linear-gradient(135deg, #1a2b3c 0%, #2d4356 50%, #1a2b3c 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  margin: 40px 0 0;
  position: relative;
  overflow: hidden;
}
.guide-page .guide-cta-banner::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(42,157,143,0.15) 0%, transparent 70%); }
.guide-page .guide-cta-banner::after { content: ''; position: absolute; bottom: -30px; left: -30px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255,214,0,0.12) 0%, transparent 70%); }
.guide-page .guide-cta-banner h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; position: relative; z-index: 1; }
.guide-page .guide-cta-banner p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 20px; position: relative; z-index: 1; }
.guide-page .guide-cta-banner .guide-btn-primary { position: relative; z-index: 1; background: var(--yellow); color: var(--navy, #1a2b3c); }
.guide-page .guide-cta-banner .guide-btn-primary:hover,
.guide-page .guide-cta-banner .guide-btn-primary:focus,
.guide-page .guide-cta-banner .guide-btn-primary:active {
  background: var(--yellow-light);
  box-shadow: 0 4px 20px rgba(255,214,0,0.3);
  color: var(--text-primary) !important;
}

/* Responsive */
@media (max-width: 900px) {
  .guide-page .guide-page-layout { grid-template-columns: 1fr; }
  .guide-page .guide-toc { display: none; }
}
@media (max-width: 680px) {
  .guide-page .guide-section,
  .guide-page .guide-section-alt { padding: 48px 24px; }
  .guide-page .guide-hero h1 { font-size: 28px; }
  .guide-page .guide-hero-sub { font-size: 15px; }
  .guide-page .guide-section-title { font-size: 24px; }
  .guide-page .guide-icon-cards { grid-template-columns: 1fr; }
  .guide-page .guide-tips-grid { grid-template-columns: 1fr; }
  .guide-page .guide-next-steps-grid { grid-template-columns: 1fr; }
  .guide-page .guide-flow-steps { gap: 0; }
  .guide-page .guide-flow-step { padding: 10px 12px; }
  .guide-page .guide-flow-arrow { display: none; }
}
