@font-face {
  font-family: "Tajawal";
  src: url("fonts/Tajawal-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("fonts/Tajawal-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("fonts/Tajawal-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("fonts/Tajawal-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07111f;
  --bg-strong: #040a14;
  --surface: rgba(11, 22, 39, 0.86);
  --surface-strong: #0d1a2c;
  --surface-soft: rgba(16, 30, 48, 0.94);
  --text: #eef5ff;
  --muted: #b3bfd1;
  --primary: #e0bf78;
  --primary-strong: #b88937;
  --accent: #74c2a3;
  --line: rgba(224, 191, 120, 0.18);
  --success: #33c984;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-latin-body: Verdana, "Segoe UI", Arial, sans-serif;
  --font-latin-display: Georgia, "Trebuchet MS", "Times New Roman", serif;
  --font-arabic-body: "Tajawal", "Geeza Pro", "Al Nile", Tahoma, Arial, sans-serif;
  --font-arabic-display: "Tajawal", "Geeza Pro", "Al Nile", Tahoma, Arial, sans-serif;
  --font-ui: var(--font-latin-body), var(--font-arabic-body);
  --font-display: var(--font-latin-display), var(--font-arabic-display);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224, 191, 120, 0.22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 219, 132, 0.12), transparent 16%),
    radial-gradient(circle at right 18%, rgba(116, 194, 163, 0.1), transparent 18%),
    radial-gradient(circle at bottom left, rgba(184, 137, 55, 0.18), transparent 24%),
    linear-gradient(180deg, #040b16 0%, #07111f 36%, #030811 100%);
  min-height: 100vh;
  text-align: start;
  overflow-anchor: none;
  overflow-x: hidden;
}

html[lang="ar"] body {
  font-family: var(--font-arabic-body), var(--font-latin-body);
}

html[lang="en"] body {
  font-family: var(--font-latin-body), var(--font-arabic-body);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.ramadan-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 25% 22%, rgba(224, 191, 120, 0.18) 0, rgba(224, 191, 120, 0) 2px),
    radial-gradient(circle at 75% 18%, rgba(224, 191, 120, 0.14) 0, rgba(224, 191, 120, 0) 2px),
    linear-gradient(30deg, rgba(224, 191, 120, 0.06) 1px, transparent 1px),
    linear-gradient(-30deg, rgba(224, 191, 120, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4) 55%, transparent 100%);
}

.topbar,
main,
.sticky-cta,
.footer {
  position: relative;
  z-index: 1;
}

.sky-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.46;
  background: radial-gradient(circle, rgba(224, 191, 120, 0.38) 0%, rgba(224, 191, 120, 0.12) 34%, rgba(7, 17, 31, 0) 74%);
}

.sky-glow-left {
  top: -150px;
  left: -180px;
}

.sky-glow-right {
  top: 40px;
  right: -170px;
  opacity: 0.34;
}

.ramadan-badge {
  position: absolute;
  top: 132px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 22px;
  border-radius: 999px;
  color: #ffe7b1;
  font-family: var(--font-arabic-display), var(--font-latin-display);
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(34, 24, 8, 0.72), rgba(10, 16, 28, 0.84));
  border: 1px solid rgba(224, 191, 120, 0.34);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.3),
    inset 0 0 26px rgba(224, 191, 120, 0.1),
    0 0 24px rgba(224, 191, 120, 0.14);
  letter-spacing: 0.04em;
}

.ramadan-badge::before,
.ramadan-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 191, 120, 0.82), transparent);
  transform: translateY(-50%);
}

.ramadan-badge::before {
  right: calc(100% + 10px);
}

.ramadan-badge::after {
  left: calc(100% + 10px);
}

.moon-crescent {
  position: absolute;
  top: 100px;
  right: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: 34px 0 0 0 rgba(255, 226, 162, 0.98);
  filter: drop-shadow(0 0 28px rgba(224, 191, 120, 0.48));
  opacity: 1;
}

.moon-crescent::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 40px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 244, 211, 0.95);
  box-shadow:
    0 0 14px rgba(255, 226, 162, 0.6),
    -20px 18px 0 -2px rgba(255, 244, 211, 0.84),
    22px 32px 0 -3px rgba(255, 244, 211, 0.74);
}

.star-field {
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 243, 212, 0.95);
  box-shadow: 0 0 12px rgba(255, 225, 156, 0.48);
  animation: twinkle 3.2s ease-in-out infinite;
}

.star::before,
.star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 243, 212, 0.82);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.star::before {
  width: 1px;
  height: 16px;
}

.star::after {
  width: 16px;
  height: 1px;
}

.star-1 { top: 10%; left: 16%; animation-delay: 0.4s; }
.star-2 { top: 16%; left: 34%; animation-delay: 1.6s; }
.star-3 { top: 12%; right: 24%; animation-delay: 1.1s; }
.star-4 { top: 22%; right: 11%; animation-delay: 2.1s; }
.star-5 { top: 34%; left: 9%; animation-delay: 0.8s; }
.star-6 { top: 41%; right: 36%; animation-delay: 2.7s; }
.star-7 { top: 52%; left: 27%; animation-delay: 1.9s; }
.star-8 { top: 58%; right: 18%; animation-delay: 0.2s; }
.star-9 { top: 26%; left: 56%; animation-delay: 1.2s; }
.star-10 { top: 30%; right: 28%; animation-delay: 2.9s; }
.star-11 { top: 48%; left: 14%; animation-delay: 0.6s; }
.star-12 { top: 62%; right: 8%; animation-delay: 1.5s; }

.lantern {
  position: absolute;
  top: -12px;
  width: 74px;
  height: 188px;
  border-radius: 22px;
  border: 1px solid rgba(224, 191, 120, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 240, 204, 0.18), rgba(184, 137, 55, 0.08)),
    linear-gradient(180deg, rgba(20, 31, 49, 0.92), rgba(8, 16, 29, 0.96));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    inset 0 0 22px rgba(224, 191, 120, 0.16),
    0 0 24px rgba(224, 191, 120, 0.14);
}

.lantern::before {
  content: "";
  position: absolute;
  top: -72px;
  left: 50%;
  width: 2px;
  height: 72px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(224, 191, 120, 0), rgba(224, 191, 120, 0.8));
}

.lantern::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 28px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, rgba(224, 191, 120, 0.86), rgba(184, 137, 55, 0.9));
}

.lantern span {
  position: absolute;
  inset: 22px 14px;
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(255, 235, 173, 0.98) 0%, rgba(255, 212, 104, 0.42) 38%, rgba(255, 212, 104, 0) 76%);
  box-shadow:
    0 0 28px rgba(224, 191, 120, 0.28),
    inset 0 0 18px rgba(255, 235, 173, 0.18);
}

.lantern-left {
  left: 8%;
}

.lantern-right {
  right: 7%;
}

.mosque-silhouette {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 220px;
  opacity: 0.28;
}

.mosque-silhouette::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(8, 16, 29, 0), rgba(7, 13, 24, 0.9) 55%, rgba(5, 10, 19, 0.98) 100%);
  border-top: 1px solid rgba(224, 191, 120, 0.16);
}

.dome,
.minaret {
  position: absolute;
  bottom: 34px;
  background: linear-gradient(180deg, rgba(224, 191, 120, 0.18), rgba(11, 22, 39, 0.94) 30%, rgba(6, 13, 24, 0.98) 100%);
  border: 1px solid rgba(224, 191, 120, 0.18);
  box-shadow: inset 0 0 18px rgba(224, 191, 120, 0.06);
}

.dome {
  border-radius: 50% 50% 0 0;
}

.dome-main {
  left: 50%;
  width: 220px;
  height: 122px;
  transform: translateX(-50%);
}

.dome-left {
  left: calc(50% - 190px);
  width: 136px;
  height: 82px;
}

.dome-right {
  right: calc(50% - 190px);
  width: 136px;
  height: 82px;
}

.minaret {
  width: 44px;
  height: 170px;
  border-radius: 16px 16px 0 0;
}

.minaret::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  width: 26px;
  height: 38px;
  transform: translateX(-50%);
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(224, 191, 120, 0.28), rgba(10, 18, 31, 0.92));
  border: 1px solid rgba(224, 191, 120, 0.16);
}

.minaret-left {
  left: calc(50% - 310px);
}

.minaret-right {
  right: calc(50% - 310px);
}

.cursor-sparkles {
  position: fixed;
  inset: 0;
  z-index: 35;
  pointer-events: none;
}

.cursor-spark {
  position: fixed;
  width: var(--spark-size, 16px);
  height: var(--spark-size, 16px);
  left: 0;
  top: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--spark-rotate, 0deg));
  background:
    radial-gradient(circle, rgba(255, 245, 220, 1) 0%, rgba(224, 191, 120, 0.9) 38%, rgba(224, 191, 120, 0) 70%);
  box-shadow:
    0 0 14px rgba(255, 225, 156, 0.55),
    0 0 28px rgba(224, 191, 120, 0.22);
  mix-blend-mode: screen;
  animation: sparkDrift 0.9s ease-out forwards;
}

.cursor-spark::before,
.cursor-spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 243, 212, 0.92);
}

.cursor-spark::before {
  width: 1px;
  height: calc(var(--spark-size, 16px) * 1.8);
}

.cursor-spark::after {
  width: calc(var(--spark-size, 16px) * 1.8);
  height: 1px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(4, 10, 20, 0.78);
  border-bottom: 1px solid rgba(224, 191, 120, 0.16);
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.badge-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #d6a44d);
  color: #fff;
  box-shadow: 0 10px 24px rgba(184, 137, 55, 0.32);
}

.badge-icon svg {
  width: 28px;
  height: 28px;
}

.eyebrow {
  margin: 0 0 2px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-family: var(--font-display);
}

html[lang="ar"] .brand h1,
html[lang="ar"] .hero-title,
html[lang="ar"] .head strong,
html[lang="ar"] .section-title h2 {
  font-family: var(--font-arabic-display), var(--font-latin-display);
}

html[lang="en"] .brand h1,
html[lang="en"] .hero-title,
html[lang="en"] .head strong,
html[lang="en"] .section-title h2 {
  font-family: var(--font-display);
}

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

.lang-toggle {
  min-width: 96px;
  text-align: center;
}

#form,
#policy {
  scroll-margin-top: 96px;
}

.pill {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(14, 26, 43, 0.9);
  border: 1px solid rgba(137, 167, 207, 0.14);
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
  background: rgba(20, 35, 56, 0.98);
  border-color: rgba(224, 191, 120, 0.32);
}

.pill.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  border-color: transparent;
}

.hero {
  padding: 34px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  padding: 30px 0 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 25, 41, 0.86);
  border: 1px solid rgba(137, 167, 207, 0.14);
  color: #f0d7a0;
  font-size: 14px;
}

.flag {
  width: 28px;
  display: inline-flex;
}

.hero-title {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  text-shadow: 0 0 22px rgba(224, 191, 120, 0.08);
}

.hero-sub {
  margin: 0;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.trust-item,
.step,
.card,
.quick-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  display: grid;
  gap: 6px;
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.trust-item b {
  font-size: 16px;
}

.trust-item span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot.ok {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(51, 201, 132, 0.14);
}

.steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.step {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
}

.step .n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-weight: 700;
}

.step .t {
  font-weight: 700;
}

.form-shell {
  position: relative;
}

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.form-card {
  background: linear-gradient(180deg, rgba(12, 23, 39, 0.98), rgba(8, 16, 29, 0.98));
}

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.head strong {
  font-size: 20px;
  font-family: var(--font-display);
}

.body {
  padding: 24px;
}

.status-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(224, 191, 120, 0.2);
  background: rgba(14, 26, 43, 0.9);
  line-height: 1.7;
}

.status-banner.success {
  border-color: rgba(51, 201, 132, 0.34);
  background: rgba(9, 36, 28, 0.88);
  color: #d8ffe9;
}

.status-banner.error {
  border-color: rgba(255, 164, 122, 0.34);
  background: rgba(52, 20, 18, 0.9);
  color: #ffd8cf;
}

.note,
.mini-hint,
.hint,
.policy-note,
.sticky-note {
  color: var(--muted);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-size: 15px;
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(137, 167, 207, 0.16);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  text-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7288a9;
}

select,
option {
  color: var(--text);
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(224, 191, 120, 0.46);
  box-shadow: 0 0 0 5px rgba(224, 191, 120, 0.12);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(224, 191, 120, 0.55);
  outline-offset: 2px;
}

.pulse {
  animation: pulse 0.65s ease;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 14px 30px rgba(184, 137, 55, 0.28);
}

.policy-card {
  margin-top: 18px;
}

.policy-box {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 32, 52, 0.96), rgba(8, 20, 34, 0.96));
  border: 1px solid rgba(224, 191, 120, 0.14);
  line-height: 1.9;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.types-wrap {
  padding: 18px 0 120px;
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 38px);
  font-family: var(--font-display);
}

.section-title p {
  margin: 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border-radius: 22px;
  text-align: start;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 191, 120, 0.28);
  background: rgba(18, 34, 56, 0.98);
}

.icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: linear-gradient(180deg, rgba(224, 191, 120, 0.18), rgba(224, 191, 120, 0.06));
  border-radius: 16px;
}

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

.meta {
  display: grid;
  gap: 5px;
}

.meta p {
  margin: 0;
}

.meta .t {
  font-weight: 700;
}

.meta .d {
  color: var(--muted);
  font-size: 14px;
}

.quick-card .meta .t,
.quick-card .meta .d {
  color: #ffffff;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  left: 20px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(8, 16, 29, 0.94);
  border: 1px solid rgba(224, 191, 120, 0.18);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.footer {
  padding: 18px 0 100px;
  text-align: center;
  color: var(--muted);
}

[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.35;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.86);
  }
}

@keyframes sparkDrift {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.4) rotate(var(--spark-rotate, 0deg));
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--spark-dx, 0px)), calc(-50% + var(--spark-dy, -24px))) scale(1.7) rotate(var(--spark-rotate, 0deg));
  }
}

@media (max-width: 1100px) {
  .ramadan-badge {
    top: 118px;
    font-size: 16px;
  }

  .moon-crescent {
    right: 7%;
    width: 138px;
    height: 138px;
  }

  .lantern-left {
    left: 4%;
  }

  .lantern-right {
    right: 4%;
  }

  .lantern {
    width: 62px;
    height: 164px;
  }

  .mosque-silhouette {
    height: 180px;
    opacity: 0.24;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

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

@media (max-width: 720px) {
  .ramadan-badge {
    top: 104px;
    font-size: 14px;
    padding: 8px 16px;
  }

  .moon-crescent,
  .lantern {
    opacity: 0.72;
  }

  .moon-crescent {
    top: 98px;
    width: 104px;
    height: 104px;
    right: 20px;
  }

  .lantern {
    width: 48px;
    height: 122px;
  }

  .mosque-silhouette {
    height: 140px;
    opacity: 0.2;
  }

  .container {
    width: min(100% - 20px, 1120px);
  }

  .row,
  .head,
  .actions {
    align-items: stretch;
  }

  .row,
  .head,
  .brand,
  .actions {
    flex-direction: column;
  }

  .trust-row,
  .row2,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .body,
  .head {
    padding: 18px;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-sparkles {
    display: none;
  }

  .star {
    animation: none;
  }
}
