/* ============================================
   GET STARTED PAGE STYLES
   Tawfeeqoh Hamzat - Premium Personal Brand
   ============================================ */

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  padding: 10rem 8vw 4rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-periwinkle);
  margin-bottom: 1.5rem;
}

.page-headline {
  margin-bottom: 1.5rem;
}

.page-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SELECTED PLAN DISPLAY
   ============================================ */

.selected-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  background: rgba(123, 108, 255, 0.08);
  border: 1.5px solid rgba(123, 108, 255, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  animation: badgeFadeIn 0.6s ease forwards;
}

.selected-plan-badge .badge-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-periwinkle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 12px;
}

.selected-plan-badge .badge-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.selected-plan-badge .badge-plan-name {
  font-weight: 600;
  color: var(--accent-periwinkle);
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   GET STARTED SECTION
   ============================================ */

.getstarted-section {
  padding: var(--space-3xl) 0;
}

.getstarted-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

/* ============================================
   FORM CARD
   ============================================ */

.getstarted-form-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.getstarted-form-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 0.5rem;
}

.getstarted-form-card .form-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.getstarted-form .form-group {
  margin-bottom: 1.5rem;
}

.getstarted-form .form-input[readonly] {
  background: rgba(123, 108, 255, 0.05);
  border-color: rgba(123, 108, 255, 0.15);
  color: var(--accent-periwinkle);
  font-weight: 600;
  cursor: default;
}

.getstarted-form .form-input[readonly]:focus {
  box-shadow: none;
  border-color: rgba(123, 108, 255, 0.15);
}

/* Website URL conditional hint */
.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-style: italic;
}

.field-hint.required-hint {
  color: var(--accent-periwinkle);
}

/* Goals textarea suggestions */
.goals-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.goal-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: rgba(123, 108, 255, 0.06);
  border: 1px solid rgba(123, 108, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.goal-chip:hover {
  background: rgba(123, 108, 255, 0.12);
  color: var(--accent-periwinkle);
  border-color: rgba(123, 108, 255, 0.3);
}

.goal-chip.selected {
  background: var(--accent-periwinkle);
  color: var(--text-light);
  border-color: var(--accent-periwinkle);
}

.goal-chip i {
  font-size: 10px;
}

/* Form note */
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-note i {
  color: var(--accent-periwinkle);
}

/* ============================================
   PLAN SUMMARY SIDEBAR
   ============================================ */

.plan-summary {
  position: sticky;
  top: 120px;
}

.plan-summary-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.plan-summary-card.premium-plan {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1e 100%);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-summary-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-periwinkle);
  background: rgba(123, 108, 255, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.plan-summary-card.premium-plan .plan-summary-tag {
  background: rgba(123, 108, 255, 0.2);
}

.plan-summary-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-summary-card.premium-plan .plan-summary-name {
  color: var(--text-light);
}

.plan-summary-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-summary-card.premium-plan .plan-summary-price {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-summary-price .price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.plan-summary-card.premium-plan .plan-summary-price .price-amount {
  color: var(--text-light);
}

.plan-summary-price .price-note {
  font-size: 13px;
  color: var(--text-muted);
}

.plan-summary-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-summary-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.plan-summary-card.premium-plan .plan-summary-features li {
  color: var(--text-muted);
}

.plan-summary-features li i {
  color: var(--accent-periwinkle);
  font-size: 12px;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.plan-summary-change {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--accent-periwinkle);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.plan-summary-change:hover {
  color: var(--accent-periwinkle-dark);
}

/* Trust indicators */
.trust-indicators {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.trust-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-item i {
  color: var(--accent-periwinkle);
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.trust-item span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================
   SUCCESS STATE
   ============================================ */

.form-success-state {
  text-align: center;
  padding: 3rem 2rem;
  animation: successFadeIn 0.5s ease forwards;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(123, 108, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon i {
  font-size: 36px;
  color: var(--accent-periwinkle);
}

.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 1rem;
}

.success-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.success-detail {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.success-detail i {
  color: var(--accent-periwinkle);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .page-hero {
    padding: 8rem 6vw 3rem;
    min-height: auto;
  }

  .getstarted-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .plan-summary {
    position: static;
    order: -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 5vw 2rem;
  }

  .getstarted-form-card {
    padding: 2rem;
  }

  .getstarted-form-card h3 {
    font-size: 24px;
  }

  .selected-plan-badge {
    padding: 0.6rem 1.25rem;
  }

  .selected-plan-badge .badge-text {
    font-size: 13px;
  }

  .goal-chip {
    font-size: 11px;
    padding: 0.35rem 0.7rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .getstarted-form-card {
    padding: 1.5rem;
  }

  .plan-summary-card {
    padding: 1.5rem;
  }

  .plan-summary-name {
    font-size: 24px;
  }

  .plan-summary-price .price-amount {
    font-size: 28px;
  }

  .trust-indicators {
    padding: 1rem;
  }
}
