.section-hero {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-text h1 {
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.hero-image-wrapper {
  max-width: 460px;
  margin-left: auto;
}

.hero-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.process-grid {
  gap: var(--space-8);
}

.process-card .steps-list {
  display: grid;
  gap: var(--space-4);
}

.process-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.themes-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themes-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.themes-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themes-list {
  display: grid;
  gap: var(--space-3);
}

.themes-list h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.care-grid {
  gap: var(--space-8);
}

.bullet-list {
  list-style: disc;
  padding-left: var(--space-5);
  color: var(--color-text);
}

.bullet-list li + li {
  margin-top: var(--space-2);
}

.advisor-card .card-header {
  align-items: center;
}

.advisor-image-wrapper {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.advisor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tools-grid {
  gap: var(--space-8);
}

.destinations-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.destinations-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-grid {
  gap: var(--space-8);
}

.value-points {
  margin-top: var(--space-4);
}

.trips-card .card-header {
  align-items: center;
}

.trips-image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.trips-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trips-grid {
  gap: var(--space-4);
}

.section-cta {
  background-color: var(--color-primary-soft);
}

.cta-card {
  max-width: 840px;
  margin: 0 auto;
}

.selection-form {
  margin-top: var(--space-4);
}

.form-actions {
  margin-top: var(--space-4);
}

.small-text {
  font-size: var(--font-size-sm);
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-wrapper {
    order: -1;
    margin: 0 auto;
    max-width: 380px;
  }
}

@media (max-width: 720px) {
  .trips-card .card-header,
  .advisor-card .card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .trips-image-wrapper {
    width: 100%;
    height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
