/* ===================== */
/* GETTING STARTED PAGE  */
/* ===================== */

/* Hero */
.gs-hero {
  padding: 2.5rem 0 0;
  position: relative;
  z-index: 1;
}

.gs-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

.gs-hero-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 640px;
}

/* Persona Tabs */
.gs-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(45, 27, 78, 0.06);
}

.gs-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s;
}

.gs-tab i {
  font-size: 0.78rem;
}

.gs-tab:hover {
  border-color: var(--purple-300);
  color: var(--purple-600);
}

.gs-tab.active {
  background: var(--purple-600);
  color: var(--white);
  border-color: var(--purple-600);
}

/* Journey Section */
.gs-journey {
  padding: 3rem 0 0;
  position: relative;
  z-index: 1;
}

/* Panels */
.gs-panel {
  display: none;
}

.gs-panel.active {
  display: block;
}

.gs-panel-intro {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.gs-panel-intro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.gs-panel-intro p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* Steps */
.gs-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 720px;
}

.gs-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--purple-200), var(--purple-400), var(--purple-200));
  border-radius: 1px;
}

.gs-step {
  display: flex;
  gap: 1.25rem;
  padding: 0.75rem 0;
  position: relative;
}

.gs-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.gs-step-body {
  padding-top: 0.35rem;
  min-width: 0;
}

.gs-step-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.gs-step-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* CTA Box */
.gs-cta-box {
  margin-top: 3.5rem;
  padding: 3rem;
  background: linear-gradient(160deg, var(--purple-900), var(--purple-700));
  border-radius: 1.25rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 4rem;
}

.gs-cta-box h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.gs-cta-box p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.gs-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gs-cta-box .btn-primary {
  background: var(--white);
  color: var(--purple-800);
  box-shadow: none;
}

.gs-cta-box .btn-primary:hover {
  background: var(--purple-50);
}

.gs-cta-box .btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

.gs-cta-box .btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===================== */
/* DARK MODE             */
/* ===================== */
[data-theme="dark"] .gs-hero-title {
  color: #ececf1;
}

[data-theme="dark"] .gs-hero-subtitle {
  color: #a1a1aa;
}

[data-theme="dark"] .gs-tabs {
  border-bottom-color: rgba(233, 224, 245, 0.1);
}

[data-theme="dark"] .gs-tab {
  background: #1e1930;
  border-color: rgba(233, 224, 245, 0.15);
  color: #a1a1aa;
}

[data-theme="dark"] .gs-tab:hover {
  border-color: var(--purple-400);
  color: #d4d4d8;
}

[data-theme="dark"] .gs-tab.active {
  background: var(--purple-600);
  color: #fff;
  border-color: var(--purple-600);
}

[data-theme="dark"] .gs-panel-intro h2 {
  color: #ececf1;
}

[data-theme="dark"] .gs-panel-intro p {
  color: #a1a1aa;
}

[data-theme="dark"] .gs-step-body h3 {
  color: #ececf1;
}

[data-theme="dark"] .gs-step-body p {
  color: #a1a1aa;
}

[data-theme="dark"] .gs-steps::before {
  background: linear-gradient(180deg, rgba(139,92,246,0.2), rgba(139,92,246,0.4), rgba(139,92,246,0.2));
}

[data-theme="dark"] .gs-step-num {
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

/* ===================== */
/* TABLET                */
/* ===================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .gs-tabs {
    gap: 0.35rem;
  }

  .gs-tab {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
  }
}

/* ===================== */
/* MOBILE                */
/* ===================== */
@media (max-width: 768px) {
  .gs-hero {
    padding: 1.5rem 0 0;
  }

  .gs-hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .gs-hero-subtitle {
    font-size: 0.92rem;
  }

  .gs-tabs {
    gap: 0.3rem;
    padding-bottom: 1.5rem;
  }

  .gs-tab {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .gs-tab i {
    font-size: 0.7rem;
  }

  .gs-journey {
    padding: 2rem 0 0;
  }

  .gs-panel-intro {
    margin-bottom: 2rem;
  }

  .gs-panel-intro h2 {
    font-size: 1.25rem;
  }

  .gs-steps::before {
    left: 15px;
  }

  .gs-step-num {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }

  .gs-step {
    gap: 1rem;
  }

  .gs-step-body h3 {
    font-size: 0.92rem;
  }

  .gs-step-body p {
    font-size: 0.85rem;
  }

  .gs-cta-box {
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
  }

  .gs-cta-buttons {
    flex-direction: column;
  }

  .gs-cta-box h2 {
    font-size: 1.25rem;
  }
}
