/* ============================================================
   TTP GUIDE PAGE STYLES
============================================================ */

.guide-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* PAGE HEADER */
.guide-header {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  background: linear-gradient(135deg, var(--pink-50) 0%, #f0f9ff 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  border: 1px solid var(--pink-100);
}

.guide-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.guide-subtitle {
  font-size: 1.1rem;
  color: var(--ink-500);
  max-width: 580px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.guide-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.guide-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* GUIDE SECTIONS */
.guide-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--pink-100);
  border-top: 4px solid var(--pink-400);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.guide-section:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guide-section h2 {
  font-size: 1.3rem;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.guide-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink-200), var(--purple-100, #ede9fe));
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.guide-section p {
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.guide-section p:last-child {
  margin-bottom: 0;
}

/* STEP LIST */
.guide-steps {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.guide-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--pink-50);
  color: var(--ink-500);
  line-height: 1.55;
}

.guide-steps li:last-child {
  border-bottom: none;
}

.guide-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  background: var(--teal-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* APP DOWNLOAD BUTTONS */
.guide-app-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.guide-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink-900, #111827);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity var(--transition);
}

.guide-app-btn:hover {
  opacity: 0.85;
}

/* NEW CLIENT CALLOUT */
.guide-new-client {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.guide-new-client h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.guide-new-client p {
  opacity: 0.9;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.guide-new-client-btn {
  display: inline-block;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.guide-new-client-btn:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .guide-main {
    padding: 2rem 1rem 4rem;
  }

  .guide-header {
    padding: 2rem 1rem 1.75rem;
    margin-bottom: 2rem;
  }

  .guide-section {
    padding: 1.5rem 1.25rem;
  }

  .guide-app-links {
    flex-direction: column;
  }
}
