.start-page {
  overflow-wrap: anywhere;
}

.start-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.start-hero {
  padding: 28px 0 72px;
  background: linear-gradient(120deg, var(--bg-cream) 35%, #f0eadc 100%);
  border-bottom: 1px solid var(--border-color);
}

.start-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
  color: var(--text-muted);
  font-size: .85rem;
}

.start-breadcrumb a:hover,
.start-faq-link:hover {
  color: var(--accent-gold-hover);
}

.start-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 64px;
}

.start-hero-grid > * {
  min-width: 0;
}

.start-eyebrow {
  display: block;
  color: var(--accent-gold-hover);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.start-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.start-description,
.start-preparation p {
  color: var(--text-muted);
  line-height: 1.8;
  white-space: pre-line;
}

.start-description {
  font-size: 1.05rem;
  max-width: 560px;
}

.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.start-primary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  max-width: 100%;
}

.start-primary-button {
  background: var(--primary-dark);
  color: white;
  box-shadow: var(--shadow-sm);
}

.start-primary-button:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
}

.start-page a:focus-visible,
.start-page button:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 4px;
}

.start-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--primary-green);
  font-weight: 500;
}

.start-preparation {
  background: white;
  padding: 32px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.start-card-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--accent-gold);
  background: var(--primary-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.start-preparation h2 {
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--primary-dark);
  margin: 20px 0 12px;
}

.start-preparation p,
.start-checklist {
  font-size: .92rem;
}

.start-checklist {
  list-style: none;
  margin-top: 22px;
}

.start-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
}

.start-checklist i {
  color: var(--accent-gold-hover);
  margin-top: 6px;
}

.start-checklist-ar,
html.rtl .start-checklist-en {
  display: none;
}

html.rtl .start-checklist-ar {
  display: block;
}

.start-cta h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.start-page .faq-section {
  padding-top: 36px;
}

.start-page .faq-body {
  text-align: start;
}

.start-page .faq-body p {
  white-space: pre-line;
}

.start-cta-section {
  padding-bottom: 80px;
}

.start-cta {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.start-cta > div {
  max-width: 650px;
}

.start-cta h2 {
  color: white;
}

.start-cta p {
  color: #d0ddd6;
  white-space: pre-line;
}

.start-cta .start-primary-button {
  background: var(--accent-gold);
  color: var(--primary-dark);
  flex-shrink: 0;
  max-width: 340px;
}

.start-cta .start-primary-button:hover {
  background: #d7ad5d;
}

html.rtl .start-eyebrow,
html.rtl .start-hero h1 {
  letter-spacing: normal;
}

html.rtl .start-page .fa-arrow-right {
  transform: rotate(180deg);
}

@media (max-width: 1000px) {
  .start-hero-grid { gap: 28px; }
  .start-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .start-hero { padding-bottom: 40px; }
  .start-breadcrumb { margin-bottom: 30px; }
  .start-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .start-preparation { padding: 24px; }
  .start-page .faq-section { padding-top: 24px; padding-bottom: 48px; }
  .start-cta { padding: 28px 24px; }
  .start-cta .start-primary-button { max-width: 100%; }
  .start-cta-section { padding-bottom: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .start-page a,
  .start-page button { transition: none; }
}
