/**
 * Jaunt Studio - Shared Interior Page Styles
 * Hero banners, content grids, page sections
 */

/* Page Hero */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 40px 80px;
  background: var(--color-offwhite);
  position: relative;
  z-index: 10;
}

.page-hero.page-hero-dark {
  background: var(--color-dark);
  color: #fff;
}

.page-hero-content {
  max-width: 1000px;
  text-align: center;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 24px;
  display: block;
}

.page-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #000;
}

.page-hero-dark .page-hero-title {
  color: #fff;
}

.page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-dark .page-hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Content Sections */
.page-section {
  padding: 120px 40px;
}

.page-section-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.page-section-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: #000;
}

.section-dark .section-title {
  color: #fff;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 0 64px 0;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 16px;
  display: block;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.feature-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  padding-left: 16px;
}

.feature-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-orange);
  border-radius: 2px;
}

.section-dark .feature-title {
  color: #fff;
}

.feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

.section-dark .feature-description {
  color: rgba(255, 255, 255, 0.65);
}

/* Process Steps */
.process-section {
  margin: 0 0 60px 0;
  padding: 80px 0 0 0;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.process-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #000;
  margin: 0 0 64px 0;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.process-number {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 16px;
  line-height: 1;
}

.process-step-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.process-description {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

/* Timeline (vertical) */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.section-dark .timeline::before {
  background: rgba(255, 255, 255, 0.15);
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 64px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.timeline-duration {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 12px;
  display: block;
}

.timeline-title {
  font-family: var(--font-primary);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.timeline-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0 0 16px 0;
}

.section-dark .timeline-text {
  color: rgba(255, 255, 255, 0.7);
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}

.timeline-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.section-dark .timeline-list li {
  color: rgba(255, 255, 255, 0.6);
}

/* Cards */
.card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 12px 0;
  color: #000;
}

.card-description {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

/* Pricing Tiers */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card.recommended {
  border-color: var(--color-orange);
  position: relative;
}

.pricing-card.recommended::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-tier-name {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 8px 0;
}

.pricing-tier-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
  color: #000;
}

.pricing-starting-from {
  font-family: var(--font-primary);
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 12px 0;
}

.pricing-starting-from strong {
  font-size: clamp(24px, 3vw, 32px);
  color: #0d0d0d;
  display: block;
  margin-top: 4px;
}

.pricing-recommended-badge {
  display: none; /* Handled by ::before pseudo-element */
}

.pricing-best-for {
  font-size: 15px;
  color: var(--color-text-light);
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}

.pricing-features li {
  font-size: 15px;
  line-height: 1.6;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.pricing-cta {
  margin-top: auto;
}

/* Included Grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.included-item {
  text-align: center;
}

.included-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--color-orange);
}

.included-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.included-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Comparison Table */
.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.comparison-table thead th {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 24px;
  text-align: left;
  background: var(--color-dark);
  color: #fff;
}

.comparison-table thead th:first-child {
  width: 40%;
}

.comparison-table tbody td {
  font-size: 15px;
  line-height: 1.6;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--color-offwhite);
}

.comparison-table .comparison-us {
  color: var(--color-orange);
  font-weight: 700;
}

.comparison-table .comparison-them {
  color: var(--color-text-muted);
}

/* Ongoing Services */
.ongoing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ongoing-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ongoing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ongoing-card-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.ongoing-card-price {
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--color-orange);
  font-weight: 700;
  margin: 0 0 16px 0;
}

.ongoing-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

/* Payment Terms */
.payment-terms {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-offwhite);
  border-radius: 12px;
  padding: 40px;
  border-left: 4px solid var(--color-orange);
}

.payment-terms-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.payment-terms-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

/* Timelines Table */
.timelines-table {
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
}

.timelines-table th {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
}

.timelines-table td {
  font-size: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
}

.timelines-table td:last-child {
  color: var(--color-orange);
  font-weight: 700;
}

/* Resource Page Content */
.resource-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.resource-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #000;
}

.resource-content h3 {
  font-family: var(--font-primary);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #000;
}

.resource-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin: 0 0 24px 0;
}

.resource-content ul, .resource-content ol {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin: 0 0 24px 0;
  padding-left: 24px;
}

.resource-content li {
  margin-bottom: 8px;
}

.resource-content blockquote {
  border-left: 4px solid var(--color-orange);
  padding: 16px 24px;
  margin: 0 0 24px 0;
  background: var(--color-offwhite);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--color-text-light);
}

/* Contact Sidebar */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1000px;
  width: 100%;
}

.contact-sidebar {
  padding-top: 60px;
}

.contact-sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 120px;
}

.contact-sidebar-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.contact-sidebar-item {
  margin-bottom: 20px;
}

.contact-sidebar-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-orange);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.contact-sidebar-value {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  display: block;
}

.contact-sidebar-value a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-sidebar-value a:hover {
  color: var(--color-orange);
}

/* Problem/Solution Section */
/* ===========================
   RESPONSIVE - PAGE
   =========================== */

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 24px 60px;
    min-height: 40vh;
  }

  .page-section {
    padding: 80px 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    gap: 48px;
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    padding-left: 56px;
    padding-bottom: 48px;
  }

  .timeline-marker {
    left: 4px;
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 16px;
    font-size: 14px;
  }

  .ongoing-grid {
    grid-template-columns: 1fr;
  }

  .payment-terms {
    padding: 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-sidebar {
    padding-top: 0;
  }

  .contact-sidebar-card {
    position: static;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 120px 20px 40px;
  }

  .page-section {
    padding: 60px 20px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }
}
