@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

:root {
  --bg: #f5f7fb;
  --text: #0f172a;
  --muted: #475569;
  --brand: #0f766e;
  --brand-2: #0369a1;
  --card: #ffffff;
  --line: #e2e8f0;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Tajawal", Arial, Tahoma, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
}

a { color: var(--brand-2); }

.hero {
  min-height: 680px;
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 184, 166, .25), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(14, 165, 233, .28), transparent 30%),
    linear-gradient(135deg, #0f766e 0%, #0f172a 100%);
  color: white;
  padding: 24px;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .25);
  font-weight: 800;
  font-size: 24px;
}

.brand small {
  display: block;
  opacity: .8;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-weight: 700;
}

.hero-content {
  max-width: 1120px;
  margin: 115px auto 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: #67e8f9;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 10px;
}

h1, h2, h3 { line-height: 1.25; margin-top: 0; }

.hero h1 {
  font-size: clamp(38px, 6vw, 74px);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.lead {
  font-size: 21px;
  max-width: 760px;
  color: rgba(255,255,255,.88);
}

.actions, .links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: #ffffff;
  color: #0f766e;
}

.button.secondary {
  background: rgba(255,255,255,.10);
  color: white;
  border-color: rgba(255,255,255,.25);
}

.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card p, .hero-card li { color: rgba(255,255,255,.86); }
.hero-card ul { margin: 18px 0 0; padding-inline-start: 22px; }
.status-dot {
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(34,197,94,.16);
  margin-bottom: 20px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading .eyebrow,
.split .eyebrow,
.contact .eyebrow {
  color: var(--brand);
}

.section-heading h2,
.split h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 10px;
}

.section-heading p,
.split p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card, .info-panel, .legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 34px rgba(15, 23, 42, 0.06);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #ecfeff;
  border-radius: 16px;
  font-size: 24px;
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 22px;
  align-items: start;
}

.info-panel dl {
  margin: 0;
}

.info-panel div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-panel div:last-child { border-bottom: 0; }

.info-panel dt {
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.info-panel dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.contact {
  margin-bottom: 72px;
  background: linear-gradient(135deg, #ffffff, #ecfeff);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact .button.primary {
  background: var(--brand);
  color: #fff;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  margin-inline-start: 14px;
  text-decoration: none;
  font-weight: 700;
}

.legal-page {
  max-width: 920px;
  margin: 36px auto;
  padding: 0 18px;
}

.back-link {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
  font-weight: 800;
}

.legal-card h1 {
  font-size: 36px;
}

.legal-card h2 {
  margin-top: 26px;
}

.legal-card p {
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content,
  .split {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

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

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 18px;
  }

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

  .footer {
    flex-direction: column;
  }
}
