@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;600;700&family=Inter:wght@600;800;900&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #171717;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.page {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header,
.site-footer {
  max-width: none;
  padding-left: max(1.25rem, calc((100% - 56rem) / 2));
  padding-right: max(1.25rem, calc((100% - 56rem) / 2));
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark {
  font-family: Inter, Arial Black, sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #000;
}

.logo-name {
  font-family: Inter, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: #000;
}

nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

nav a {
  text-decoration: none;
  color: #404040;
}

nav a:hover {
  color: #000;
}

.page {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.watermark {
  position: absolute;
  left: -0.5rem;
  top: 1.5rem;
  font-family: Inter, Arial Black, sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

h1 {
  margin: 0 0 1rem;
  max-width: 36rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.3;
  color: #000;
}

p {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #525252;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: 0.6rem;
  background: #171717;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  background: #000;
}

.phone {
  width: fit-content;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #000;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-footer p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: #737373;
}

@media (max-width: 640px) {
  .watermark {
    font-size: 8rem;
  }
}
