:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body.hp-body {
  margin: 0;
  background: #f8fafc;
  color: #0f172a;
  font-family: 'Cairo', sans-serif;
}

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

.hp-body img {
  display: block;
  max-width: 100%;
}

.hp-body a {
  color: inherit;
  text-decoration: none;
}

.hp-shell {
  min-height: 100vh;
  background: #f8fafc;
  color: #0f172a;
}

.hp-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(to left, #ffffff, rgba(224, 231, 255, 0.35));
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.hp-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
}

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

.hp-brand__logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hp-brand__copy {
  min-width: 0;
}

.hp-brand__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-brand__subtitle {
  margin-top: 4px;
  font-size: 0.86rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hp-btn:hover {
  transform: translateY(-1px);
}

.hp-btn--primary {
  background: var(--hp-primary, #4f46e5);
  color: #fff !important;
  box-shadow: 0 12px 20px rgba(79, 70, 229, 0.18);
}

.hp-btn--primary:hover {
  background: #4338ca;
}

.hp-btn--ghost {
  background: #fff;
  color: #334155 !important;
  border-color: #e2e8f0;
}

.hp-btn--ghost:hover {
  background: #f8fafc;
}

.hp-btn--soft {
  background: #eef2ff;
  color: #4338ca !important;
  border-color: #c7d2fe;
}

.hp-btn--soft:hover {
  background: #e0e7ff;
}

.hp-btn--hero {
  padding: 14px 26px;
  font-size: 0.95rem;
}

.hp-main {
  padding: 32px 0 48px;
}

.hp-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hp-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hp-stack--tight {
  gap: 14px;
}

.hp-grid {
  display: grid;
  gap: 16px;
}

.hp-grid--landing-hero {
  gap: 24px;
}

.hp-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff 0%, rgba(238, 242, 255, 0.65) 45%, #fff 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.hp-hero__grid {
  position: relative;
  display: grid;
  gap: 24px;
}

.hp-hero__orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(44px);
}

.hp-hero__orb--left {
  top: -72px;
  left: -72px;
  width: 220px;
  height: 220px;
  background: rgba(191, 219, 254, 0.48);
}

.hp-hero__orb--right {
  right: -56px;
  bottom: -72px;
  width: 220px;
  height: 220px;
  background: rgba(187, 247, 208, 0.34);
}

.hp-hero__copy,
.hp-slider-shell {
  position: relative;
  z-index: 1;
}

.hp-hero__title {
  margin: 0;
  font-size: clamp(2rem, 7vw, var(--hp-heading-size, 44px));
  line-height: 1.35;
  font-weight: 900;
  color: #0f172a;
}

.hp-hero__title--landing {
  font-size: clamp(1.8rem, 6vw, var(--hp-heading-size, 32px));
  line-height: 1.5;
}

.hp-hero__subtitle {
  margin: 14px 0 0;
  color: #475569;
  font-size: clamp(1rem, 4vw, var(--hp-text-size, 18px));
  line-height: 1.9;
}

.hp-hero__subtitle--landing {
  margin-top: 8px;
}

.hp-hero__intro,
.hp-copy,
.hp-card__text,
.hp-section-card__text,
.hp-why-card__text,
.hp-slider-card__text,
.hp-faq-item p,
.hp-contact-panel__brand p,
.hp-heading p,
.hp-footer-panel__text,
.hp-footer-panel__tax {
  margin: 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 2;
}

.hp-hero__intro {
  margin-top: 10px;
  color: #334155;
}

.hp-hero__actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hp-slider,
.hp-slider-shell {
  width: 100%;
}

.hp-slide {
  display: none;
}

.hp-slide.is-active {
  display: block;
}

.hp-slider-card,
.hp-empty-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
}

.hp-slider-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hp-slider-card__body {
  padding: 18px;
  text-align: center;
}

.hp-slider-card__title,
.hp-card__title,
.hp-section-card__title,
.hp-why-card__title,
.hp-contact-panel__brand h3,
.hp-heading h2,
.hp-section-title,
.hp-footer-panel__text,
.hp-card__title--large {
  margin: 0;
  font-weight: 900;
  color: #0f172a;
}

.hp-slider-card__title {
  font-size: 1.15rem;
}

.hp-slider-card__text {
  margin-top: 8px;
}

.hp-slider-card--empty,
.hp-empty-card {
  padding: 28px;
  text-align: center;
}

.hp-slider-card__logo {
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.hp-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.hp-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hp-dot.is-active {
  background: var(--hp-primary, #4f46e5);
  transform: scale(1.05);
}

.hp-grid--sections,
.hp-grid--topics,
.hp-grid--why {
  gap: 16px;
}

.hp-section-card,
.hp-card,
.hp-why-card,
.hp-about-card,
.hp-footer-panel {
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.hp-section-card {
  display: block;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-section-card:hover,
.hp-card--topic:hover,
.hp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
}

.hp-section-card__top,
.hp-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hp-section-card__title,
.hp-card__title {
  font-size: 1.05rem;
}

.hp-section-card__text,
.hp-card__text {
  margin-top: 10px;
}

.hp-status-pill,
.hp-visit-pill,
.hp-tag,
.hp-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.hp-status-pill {
  background: #eff6ff;
  color: #1d4ed8;
  padding: 7px 12px;
  white-space: nowrap;
}

.hp-inline-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  border-radius: 16px;
  background: #0f172a;
  color: #fff !important;
  padding: 11px 14px;
  font-size: 0.8rem;
  font-weight: 800;
}

.hp-inline-action span {
  color: #fff !important;
}

.hp-heading,
.hp-section-title {
  color: var(--hp-primary, #4f46e5);
}

.hp-heading--center,
.hp-section-title {
  text-align: center;
}

.hp-section-title,
.hp-heading h2,
.hp-card__title--large {
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.hp-section-title--start {
  text-align: right;
}

.hp-card {
  padding: 20px;
}

.hp-card--panel {
  padding: 22px;
}

.hp-visit-pill {
  background: #0f172a;
  color: #fff !important;
  padding: 8px 14px;
  white-space: nowrap;
}

.hp-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hp-tag {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  padding: 8px 12px;
}

.hp-why-card {
  padding: 20px;
  text-align: center;
}

.hp-why-card__image {
  width: 112px;
  height: 112px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.hp-why-card__title {
  font-size: 1.06rem;
  color: #1e293b;
}

.hp-why-card__text {
  margin-top: 8px;
  color: #334155;
}

.hp-about-card {
  padding: 20px;
  border-width: 2px;
  border-color: rgba(79, 70, 229, 0.24);
  text-align: center;
  color: #334155;
  font-size: 1.02rem;
  line-height: 2.05;
}

.hp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-faq-item {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.hp-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
}

.hp-faq-item summary::-webkit-details-marker {
  display: none;
}

.hp-faq-item p {
  margin-top: 12px;
}

.hp-contact-panel {
  background: #0f172a;
  color: #fff;
  padding: 24px 22px;
}

.hp-contact-panel__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hp-contact-panel__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hp-contact-panel__logo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
}

.hp-contact-panel__brand h3 {
  color: #fff;
  font-size: 1.25rem;
}

.hp-contact-panel__brand p,
.hp-contact-panel__tax {
  color: #cbd5e1;
}

.hp-contact-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-contact-link,
.hp-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hp-contact-link:hover,
.hp-social-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hp-contact-link--whatsapp {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(110, 231, 183, 0.44);
  color: #d1fae5 !important;
}

.hp-contact-link svg,
.hp-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.hp-social-link {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
}

.hp-contact-panel__footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.78rem;
  color: #94a3b8;
}

.hp-footer-panel {
  padding: 20px;
}

.hp-footer-panel__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hp-footer-panel__text {
  font-weight: 700;
  color: #334155;
}

.hp-footer-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hp-footer-link {
  padding: 9px 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
}

.hp-whatsapp-fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(22, 163, 74, 0.28);
}

.hp-whatsapp-fab svg {
  width: 30px;
  height: 30px;
  display: block;
}

.hp-hero-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  max-width: 560px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
}

.hp-hero-mark__logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hp-hero-mark__copy {
  min-width: 0;
}

.hp-hero-mark__title {
  font-size: 1.02rem;
  font-weight: 900;
  color: #0f172a;
}

.hp-hero-mark__copy p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.9;
}

.hp-stack--showcase {
  gap: 20px;
}

.hp-design-head {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 8px;
  padding: 14px 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(238,242,255,0.92));
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.hp-design-head__logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hp-design-head__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--hp-primary, #4f46e5);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hp-showcase-grid {
  display: grid;
  gap: 18px;
}

.hp-showcase-card {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
}

.hp-showcase-card__media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.hp-showcase-card--tahseeli .hp-showcase-card__media {
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.18), transparent 38%), linear-gradient(135deg, #f8fafc 0%, #fff7ed 100%);
}

.hp-showcase-card--egypt .hp-showcase-card__media {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 42%), linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.hp-showcase-card--qudurat .hp-showcase-card__media {
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.18), transparent 42%), linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
}

.hp-showcase-card__image,
.hp-showcase-card__ghost {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hp-showcase-card__image {
  padding: 18px;
}

.hp-showcase-card__ghost {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(2px);
}

.hp-showcase-card__media-copy {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.hp-showcase-card__logo {
  width: 122px;
  height: 122px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(15, 23, 42, 0.14));
}

.hp-showcase-card__media-copy span {
  color: #1e293b;
  font-size: 1.05rem;
  font-weight: 900;
}

.hp-showcase-card__body {
  padding: 22px;
}

.hp-showcase-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hp-showcase-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(79, 70, 229, 0.16);
  color: var(--hp-primary, #4f46e5);
  font-size: 0.76rem;
  font-weight: 900;
}

.hp-showcase-card__title {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 900;
}

.hp-showcase-card__text {
  margin: 10px 0 0;
  color: #475569;
  line-height: 1.95;
}

.hp-showcase-card__footer {
  margin-top: 18px;
  display: flex;
}

@media (min-width: 768px) {
  .hp-grid--landing-hero,
  .hp-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
  }

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

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

  .hp-grid--topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-grid--why {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-contact-panel__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .hp-grid--topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hp-grid--why {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hp-container {
    width: min(100% - 24px, 1120px);
  }

  .hp-main {
    padding-top: 24px;
  }

  .hp-header__actions {
    width: 100%;
  }

  .hp-header__actions .hp-btn {
    flex: 1 1 auto;
  }

  .hp-hero,
  .hp-card,
  .hp-why-card,
  .hp-section-card,
  .hp-about-card,
  .hp-contact-panel,
  .hp-footer-panel,
  .hp-empty-card {
    border-radius: 22px;
  }

  .hp-slider-card__image {
    height: 208px;
  }
}
