:root {
  color-scheme: light;
  --rose-50: #fff8fa;
  --rose-100: #f8edf1;
  --rose-200: #ead4dc;
  --rose-500: #a76782;
  --rose-700: #74425b;
  --plum-900: #2f2430;
  --sage-700: #596f68;
  --gold-500: #c79a56;
  --ink: #261f26;
  --muted: #776770;
  --line: rgba(116, 66, 91, 0.16);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(89, 50, 68, 0.15);
  --radius: 8px;
  --radius-sm: 6px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--rose-50);
  color: var(--ink);
  font-family:
    "IBM Plex Sans Arabic",
    "Tajawal",
    "Noto Sans Arabic",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 237, 241, 0.86)),
    radial-gradient(circle at 16% 12%, rgba(199, 154, 86, 0.15), transparent 29rem),
    radial-gradient(circle at 84% 4%, rgba(89, 111, 104, 0.1), transparent 24rem);
}

img,
svg {
  display: block;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: anywhere;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(190px, auto);
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
  padding: 14px max(24px, calc((100vw - 1160px) / 2));
  background: rgba(255, 248, 250, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(116, 66, 91, 0.22);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: var(--plum-900);
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  margin-top: 2px;
  color: var(--rose-700);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a {
  min-width: 82px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-links a:hover {
  color: var(--rose-700);
  background: rgba(167, 103, 130, 0.08);
}

.header-cta,
.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--plum-900);
  box-shadow: 0 14px 32px rgba(47, 36, 48, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-call {
  color: var(--rose-700);
  background: var(--white);
  border: 1px solid var(--line);
}

.header-cta svg,
.header-call svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--plum-900), var(--rose-700));
  box-shadow: 0 18px 38px rgba(116, 66, 91, 0.22);
}

.button.secondary {
  color: var(--rose-700);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.header-cta:hover,
.header-call:hover,
.button:hover {
  transform: translateY(-2px);
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.section-shell.narrow {
  width: min(1040px, calc(100% - 48px));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: 44px;
  min-height: calc(88svh - var(--header-height));
  padding-block: 42px 48px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--rose-700);
  font-size: 0.92rem;
  font-weight: 900;
}

.eyebrow::before {
  display: block;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

h1 {
  max-width: 760px;
  color: var(--plum-900);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.08;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .button {
  min-width: 152px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  color: var(--plum-900);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-points svg,
.feature-item > svg,
.icon-pill svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero-points svg {
  width: 18px;
  height: 18px;
  color: var(--sage-700);
}

.hero-media {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  right: -22px;
  bottom: 11%;
  display: grid;
  min-width: 140px;
  padding: 16px 18px;
  color: var(--plum-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(47, 36, 48, 0.18);
  text-align: center;
  backdrop-filter: blur(12px);
}

.price-badge span {
  color: var(--rose-700);
  font-size: 0.9rem;
  font-weight: 900;
}

.price-badge strong {
  font-size: 3rem;
  line-height: 1;
}

.price-badge small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.services-section,
.pricing-section {
  padding-block: 64px 82px;
}

.services-section {
  background: rgba(255, 255, 255, 0.36);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.section-heading.centered {
  justify-items: center;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  color: var(--plum-900);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.25;
}

.section-heading p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.8;
}

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

.service-card,
.price-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(89, 50, 68, 0.08);
}

.service-card {
  display: grid;
  min-height: 245px;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.icon-pill {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--rose-700);
  background: var(--rose-100);
  border-radius: var(--radius);
}

.icon-pill svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.feature-item h3,
.price-card h3 {
  color: var(--plum-900);
  font-size: 1.17rem;
  font-weight: 900;
  line-height: 1.45;
}

.service-card p,
.feature-item p,
.price-card p {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.85;
}

.features-section {
  padding-block: 76px;
  background:
    linear-gradient(135deg, rgba(47, 36, 48, 0.96), rgba(116, 66, 91, 0.95)),
    var(--plum-900);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.features-section .section-heading h2,
.features-section .eyebrow,
.features-section .section-heading p {
  color: var(--white);
}

.features-section .eyebrow::before {
  background: var(--gold-500);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 104px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.feature-item > svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--gold-500);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.feature-item h3 {
  color: var(--white);
}

.feature-item p {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 286px;
  padding: 24px;
}

.price-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(116, 66, 91, 0.94), rgba(47, 36, 48, 0.96)),
    var(--plum-900);
  border-color: rgba(255, 255, 255, 0.13);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured li {
  color: var(--white);
}

.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-topline span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 10px;
  color: var(--plum-900);
  background: var(--gold-500);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--rose-700);
}

.price strong {
  font-size: 3.5rem;
  font-weight: 950;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
}

.price-card li {
  position: relative;
  padding-inline-start: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.65;
}

.price-card li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold-500);
  border-radius: 99px;
}

.text-link {
  align-self: end;
  width: fit-content;
  color: var(--rose-700);
  font-size: 0.95rem;
  font-weight: 900;
  border-bottom: 2px solid rgba(167, 103, 130, 0.28);
}

.final-cta {
  padding-block: 36px 52px;
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 220px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(89, 111, 104, 0.92), rgba(116, 66, 91, 0.94)),
    var(--sage-700);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.final-layout .eyebrow,
.final-layout h2,
.final-layout p {
  color: var(--white);
}

.final-layout .button.primary {
  min-width: 160px;
  background: var(--white);
  color: var(--plum-900);
  box-shadow: 0 18px 36px rgba(47, 36, 48, 0.16);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.final-actions .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.phone-number {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  direction: ltr;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-block: 38px 48px;
  }

  .hero-media {
    width: min(100%, 520px);
    justify-self: center;
  }

  .price-badge {
    right: 12px;
  }

  .service-grid,
  .pricing-grid,
  .feature-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: auto;
  }

  .site-header {
    grid-template-columns: minmax(0, auto) auto;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 92px;
    white-space: normal;
    line-height: 1.2;
  }

  .header-actions {
    gap: 6px;
  }

  .header-call {
    width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .section-shell,
  .section-shell.narrow {
    width: min(100% - 32px, 1160px);
  }

  .hero {
    gap: 28px;
    padding-block: 32px 34px;
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  h1 {
    max-width: 10.5em;
    font-size: 2.05rem;
    line-height: 1.18;
  }

  .hero-text {
    font-size: 1.04rem;
    line-height: 1.85;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    min-width: 0;
    width: auto;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hero-points span {
    width: 100%;
    min-height: 62px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-points svg {
    width: 16px;
    height: 16px;
  }

  .hero-media {
    width: min(100%, 358px);
    height: 170px;
    overflow: hidden;
  }

  .hero-media img {
    height: 100%;
    aspect-ratio: auto;
    object-position: center 18%;
  }

  .price-badge {
    bottom: 12px;
    min-width: 118px;
    padding: 13px 14px;
  }

  .price-badge strong {
    font-size: 2.15rem;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 1.85rem;
  }

  .services-section,
  .pricing-section {
    padding-block: 58px;
  }

  .features-section {
    padding-block: 58px;
  }

  .service-card,
  .price-card {
    min-height: auto;
    padding: 20px;
  }

  .price-topline {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .final-layout {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .final-actions,
  .final-layout .button {
    width: 100%;
  }

  .final-actions {
    justify-content: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
