@font-face {
  font-family: "NotoKufiArabic";
  src: url("../assets/fonts/notokufiarabic-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "NotoKufiArabic";
  src: url("../assets/fonts/notokufiarabic-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #10233f;
  --navy-soft: #263e61;
  --ink: #13213a;
  --muted: #687184;
  --cream: #f7f4ea;
  --paper: #fffdf7;
  --gold: #d8bd25;
  --gold-light: #f4e77f;
  --sage: #cad9cd;
  --line: rgba(16, 35, 63, 0.13);
  --shadow: 0 28px 80px rgba(16, 35, 63, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "NotoKufiArabic", sans-serif;
}

a {
  color: inherit;
}

.page-texture {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image: radial-gradient(rgba(16, 35, 63, 0.16) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(16, 35, 63, 0.12));
}

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

.brand strong {
  font-size: 0.93rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.header-support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 253, 247, 0.68);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-support-link svg,
.email-link svg,
.contact-banner a svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-support-link:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 70px;
  align-items: center;
  padding: 86px 0 104px;
}

.hero::before {
  content: "SUPPORT";
  position: absolute;
  z-index: -1;
  top: 42px;
  right: -10px;
  color: transparent;
  font-family: Georgia, serif;
  font-size: clamp(5rem, 14vw, 11.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(16, 35, 63, 0.055);
  direction: ltr;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--navy-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  line-height: 1.32;
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--navy);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4%;
  bottom: 8%;
  width: 108%;
  height: 18%;
  border-radius: 100%;
  background: var(--gold-light);
  transform: rotate(-2deg);
}

.hero-description {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 26px;
  margin-top: 38px;
}

.primary-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px 0 19px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 15px 36px rgba(16, 35, 63, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: scaleX(-1);
  transition: transform 180ms ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(16, 35, 63, 0.27);
}

.primary-button:hover svg {
  transform: scaleX(-1) translateX(4px);
}

.email-link {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 9px;
  color: var(--navy-soft);
  direction: ltr;
  font-family: Georgia, serif;
  font-size: 0.96rem;
  text-underline-offset: 5px;
  text-decoration-color: rgba(16, 35, 63, 0.3);
}

.support-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  direction: ltr;
  animation: rise-in 800ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.support-visual::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 46% 54% 58% 42% / 42% 45% 55% 58%;
  background: var(--sage);
  transform: rotate(-9deg);
}

.support-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(16, 35, 63, 0.26);
  border-radius: 50%;
  animation: slow-spin 28s linear infinite;
}

.visual-card {
  position: relative;
  z-index: 2;
  width: 290px;
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px 18px 56px 18px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  backdrop-filter: blur(10px);
}

.message-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--navy);
  color: var(--gold-light);
}

.message-mark svg,
.idea-badge svg,
.card-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.visual-lines {
  display: grid;
  gap: 11px;
  margin: 28px 0;
}

.visual-lines span {
  height: 8px;
  border-radius: 10px;
  background: #dfe3de;
}

.visual-lines span:nth-child(1) {
  width: 90%;
}

.visual-lines span:nth-child(2) {
  width: 70%;
}

.visual-lines span:nth-child(3) {
  width: 48%;
}

.answer-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(202, 217, 205, 0.55);
  color: var(--navy-soft);
  direction: rtl;
  font-size: 0.7rem;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4e7959;
  box-shadow: 0 0 0 0 rgba(78, 121, 89, 0.35);
  animation: pulse 2s infinite;
}

.idea-badge {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 13%;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(117, 98, 0, 0.2);
  transform: rotate(-8deg);
}

.idea-badge svg {
  width: 38px;
  stroke-width: 1.5;
}

.orbit {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
}

.orbit-one {
  top: 8%;
  left: 19%;
}

.orbit-two {
  right: 14%;
  top: 22%;
  width: 18px;
  height: 18px;
  background: var(--gold);
}

.help-grid {
  padding: 82px 0 96px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-heading p,
.contact-banner p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading h2,
.contact-banner h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.55;
}

.support-paths {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.path-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.7);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.path-card:hover {
  transform: translateY(-7px);
  border-color: rgba(16, 35, 63, 0.25);
  box-shadow: 0 24px 52px rgba(16, 35, 63, 0.09);
}

.app-card {
  transform: translateY(30px);
  background: var(--navy);
  color: #fff;
}

.app-card:hover {
  transform: translateY(23px);
  border-color: var(--navy);
  box-shadow: 0 24px 52px rgba(16, 35, 63, 0.2);
}

.content-card {
  background: rgba(202, 217, 205, 0.3);
}

.card-number {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(16, 35, 63, 0.25);
  direction: ltr;
  font-family: Georgia, serif;
  font-size: 0.82rem;
}

.app-card .card-number {
  color: rgba(255, 255, 255, 0.34);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(216, 189, 37, 0.22);
  color: var(--navy);
}

.app-card .card-icon {
  background: rgba(244, 231, 127, 0.14);
  color: var(--gold-light);
}

.path-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.path-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.9;
}

.app-card p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 86px;
  padding: 46px 52px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--gold);
}

.contact-banner::after {
  content: "@";
  position: absolute;
  left: 3%;
  bottom: -50%;
  color: rgba(16, 35, 63, 0.08);
  direction: ltr;
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: 1;
  transform: rotate(-12deg);
}

.contact-banner p {
  color: rgba(16, 35, 63, 0.7);
}

.contact-banner h2 {
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
}

.contact-banner a {
  position: relative;
  z-index: 1;
  min-width: max-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 21px;
  border: 1px solid rgba(16, 35, 63, 0.2);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-banner a:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(16, 35, 63, 0.14);
}

footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

footer p {
  margin: 0;
}

footer span {
  color: var(--gold);
}

a:focus-visible {
  outline: 3px solid rgba(216, 189, 37, 0.65);
  outline-offset: 4px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(78, 121, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(78, 121, 89, 0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 64px;
  }

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

  .support-visual {
    min-height: 390px;
  }

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

  .content-card {
    grid-column: 1 / -1;
  }

  .app-card,
  .app-card:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 30px), 1180px);
  }

  .site-header {
    min-height: 86px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .header-support-link {
    width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
  }

  .header-support-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    min-height: auto;
    padding: 52px 0 72px;
  }

  .hero::before {
    top: 26px;
    font-size: 4.2rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
    line-height: 1.4;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .primary-button {
    width: 100%;
    justify-content: space-between;
  }

  .support-visual {
    min-height: 340px;
    transform: scale(0.88);
    margin-inline: -30px;
  }

  .support-visual::before {
    width: 330px;
    height: 330px;
  }

  .visual-card {
    width: 260px;
  }

  .help-grid {
    padding: 64px 0 70px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

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

  .content-card {
    grid-column: auto;
  }

  .path-card {
    min-height: 240px;
  }

  .contact-banner {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 60px;
    padding: 34px 26px;
  }

  .contact-banner a {
    width: 100%;
    justify-content: space-between;
  }

  footer {
    min-height: 110px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
}

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