:root {
  --ink: #101411;
  --muted: #5f6b63;
  --paper: #f7f4ec;
  --card: #ffffff;
  --green: #113d2b;
  --green-2: #1f684b;
  --gold: #c99840;
  --line: #e1d9c9;
  --shadow: 0 24px 70px rgb(28 37 30 / 12%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: white;
  background: rgb(17 61 43 / 92%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 14px;
  color: var(--green);
  background: linear-gradient(135deg, #f6d790, #c99840);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgb(255 255 255 / 68%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  gap: 22px;
  color: rgb(255 255 255 / 82%);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a:hover {
  color: white;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding: 78px max(22px, calc((100vw - 1180px) / 2));
  color: white;
  background:
    radial-gradient(circle at 80% 24%, rgb(201 152 64 / 34%), transparent 26%),
    radial-gradient(circle at 12% 8%, rgb(66 145 105 / 36%), transparent 28%),
    linear-gradient(135deg, #0d2219 0%, #123e2b 58%, #0e241a 100%);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 610px;
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #142116;
  background: linear-gradient(135deg, #f2cb75, var(--gold));
  box-shadow: 0 14px 32px rgb(201 152 64 / 28%);
}

.button.ghost {
  border: 1px solid rgb(255 255 255 / 28%);
  color: white;
  background: rgb(255 255 255 / 9%);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  color: rgb(255 255 255 / 76%);
  background: rgb(255 255 255 / 8%);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel-card {
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 28px;
  color: #173024;
  background: rgb(255 255 255 / 88%);
  box-shadow: var(--shadow);
}

.panel-card.dark {
  min-height: auto;
  color: white;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 2%)),
    #102c20;
}

.panel-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.panel-card.dark p {
  color: rgb(255 255 255 / 66%);
}

.panel-label,
.number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 92px max(22px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p,
.split p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 18px 50px rgb(39 48 40 / 7%);
}

.service-card {
  padding: 32px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--green);
  background: #efe5ce;
  font-size: 1.45rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 76px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  content: counter(steps);
  font-size: 0.9rem;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: white;
  background:
    radial-gradient(circle at 92% 20%, rgb(201 152 64 / 36%), transparent 30%),
    var(--green);
}

.highlight h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.arabic {
  margin-bottom: 14px;
  color: #efd196;
  font-family: "Noto Sans Arabic", Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.about {
  align-items: center;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.details div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.details div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.details div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 900;
}

.contact {
  padding-top: 30px;
}

.contact-card {
  padding: clamp(28px, 5vw, 56px);
  color: white;
  background:
    radial-gradient(circle at 78% 20%, rgb(201 152 64 / 34%), transparent 28%),
    #0f2d21;
}

.contact-card p {
  max-width: 720px;
  color: rgb(255 255 255 / 72%);
}

.contact-card .button.ghost {
  border-color: rgb(255 255 255 / 22%);
}

.note {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(22px, calc((100vw - 1180px) / 2));
  color: rgb(255 255 255 / 72%);
  background: #091912;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: white;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header,
  .highlight,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3rem;
  }

  .panel-grid,
  .details {
    grid-template-columns: 1fr;
  }

  .details div,
  .details div:nth-child(odd),
  .details div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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