/* Guide Page Styles */

.guide-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 32px 80px;
}

.guide-header {
  margin-bottom: 64px;
}
.guide-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--green);
  margin-bottom: 16px;
}
.guide-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
}

.guide-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.guide-section:last-of-type { border-bottom: none; }

.guide-step-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.step-number {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.guide-section-title {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 12px;
}
.guide-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.checklist-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.checklist-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}
.checklist-title a {
  color: var(--green);
  text-decoration: underline;
}
.checklist-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.guide-callout {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.guide-callout-green {
  border-left-color: var(--green);
  background: #f0f7f1;
}

.guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s;
}
.btn-back:hover { border-color: var(--green); color: var(--green); }
.btn-back-site {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-back-site:hover { background: var(--green); color: #fff; }
.cta-phone-sm {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 640px) {
  .guide-wrap { padding: 100px 20px 60px; }
  .guide-footer { flex-direction: column; align-items: flex-start; }
}