:root {
  --color-primary: #1b90fa;
  --color-highlight: #47d53c;
  --color-secondary: #48cfcb;
  --color-hero-bg: linear-gradient(145deg, #0b1128, #142057);
  --color-body: #f7f9fc;
  --color-surface: #ffffff;
  --color-text: #0e1a2b;
  --color-muted: rgba(14, 26, 43, 0.65);
  --color-border: rgba(14, 26, 43, 0.08);
  --shadow-soft: 0 18px 45px rgba(10, 22, 45, 0.08);
  --radius-large: 28px;
  --radius-pill: 999px;
  --font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background: var(--color-body);
  color: var(--color-text);
  line-height: 1.65;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cta-link {
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  font-weight: 600;
  border: 1px solid rgba(27, 144, 250, 0.4);
  box-shadow: 0 10px 25px rgba(27, 144, 250, 0.12);
  background: rgba(27, 144, 250, 0.08);
}

.hero {
  background: var(--color-hero-bg);
  color: #fefefe;
  padding: 3rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-large);
  margin: 0 1.25rem;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
}

.hero-description {
  color: #d7d9f0;
  margin-bottom: 1.75rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}

.cta-button {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  background: linear-gradient(120deg, #1b90fa, #2ebef0);
  color: #fff;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(33, 150, 243, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(33, 150, 243, 0.45);
}

.cta-secondary {
  display: inline-block;
  width: 100%;
  max-width: 260px;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fefefe;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}

.process {
  padding: 2.5rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process header {
  margin-bottom: 1.5rem;
}

.process h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.process header p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.process-list {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1rem;
}

.process-list li {
  background: var(--color-surface);
  border-radius: var(--radius-large);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.process-list strong {
  display: block;
  margin-bottom: 0.8rem;
}

.process-doctor strong {
  display: inline;
  margin-right: 0.35rem;
}

.process-list ul {
  list-style: disc;
  padding-right: 1rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

.site-footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid rgba(16, 20, 60, 0.08);
  background: #fff;
  margin: 0 1.25rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.footer-trust {
  margin-bottom: 1rem;
}

.footer-trust p {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-trust a {
  color: var(--color-primary);
  font-weight: 600;
}

.copyright {
  color: var(--color-muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .site-header {
    padding: 1.75rem 4rem;
  }

  .hero {
    text-align: right;
    padding: 4rem 4rem 4.5rem;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-actions a {
    max-width: none;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .process,
  .site-footer {
    padding: 3rem 4rem;
  }

  .process-list {
    flex-direction: row;
  }

  .process-list li {
    flex: 1;
  }

}

