/* ===== HERO V2 ===== */
.hero {
  position: relative;
  padding-top: 70px;
  padding-bottom: 140px;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  background-color: var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: -12%;
  background-image:
    url("../assets/islamic-pattern.jpg"),
    radial-gradient(circle at 16% 18%, rgba(28, 88, 66, 0.18), transparent 40%),
    radial-gradient(
      circle at 78% 26%,
      rgba(201, 169, 97, 0.22),
      transparent 34%
    ),
    radial-gradient(circle at 70% 80%, rgba(28, 88, 66, 0.14), transparent 38%);
  background-size:
    420px auto,
    auto,
    auto,
    auto;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-position: center;
  mix-blend-mode: multiply;
  filter: saturate(0.82) contrast(1.08);
  opacity: 0.34;
  mask-image: radial-gradient(
    ellipse 1320px 820px at 50% 42%,
    black,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 1320px 820px at 50% 42%,
    black,
    transparent 78%
  );
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 28% 16%,
      rgba(255, 255, 255, 0.68),
      transparent 32%
    ),
    linear-gradient(
      to bottom,
      rgba(251, 247, 237, 0.06),
      rgba(251, 247, 237, 0.86)
    ),
    repeating-linear-gradient(
      60deg,
      rgba(28, 88, 66, 0.04) 0 1px,
      transparent 1px 78px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(201, 169, 97, 0.055) 0 1px,
      transparent 1px 78px
    );
  opacity: 0.92;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: 70vh;
}
@media (max-width: 960px) {
  .hero__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero {
    padding-top: 120px;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero__content::before {
  content: "";
  position: absolute;
  top: -20px;
  inset-inline-start: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230, 207, 154, 0.42),
    transparent 65%
  );
  filter: blur(20px);
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.9rem;
  margin-bottom: 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(28, 88, 66, 0.12);
  box-shadow: 0 12px 28px -22px rgba(15, 77, 42, 0.28);
  backdrop-filter: blur(10px);
  color: var(--g-800);
  font-family: var(--ff-ar-ui);
  font-size: 0.78rem;
  line-height: 1.45;
}
.hero__pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--y-600);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.16);
}

.hero__title {
  font-family: var(--ff-ar-display);
  font-size: clamp(3.4rem, 6.8vw, 6.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.95rem;
  font-weight: 700;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line:nth-child(1) {
  animation: lineRise 0.9s var(--ease) 0.1s backwards;
}
.hero__title-line:nth-child(2) {
  animation: lineRise 0.9s var(--ease) 0.25s backwards;
}
@keyframes lineRise {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero__title .accent {
  background: linear-gradient(
    135deg,
    var(--g-700) 0%,
    var(--g-600) 30%,
    var(--y-700) 70%,
    var(--y-600) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: accentShift 8s ease-in-out infinite;
}
@keyframes accentShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero__title-en {
  font-family: var(--ff-en-display);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  color: var(--fg-muted);
  line-height: 1.2;
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.hero__title-en em {
  color: var(--y-800);
  font-style: italic;
}

.hero__lede {
  color: color-mix(in oklab, var(--fg-soft) 86%, var(--g-700) 14%);
  font-size: var(--step-1);
  line-height: 1.82;
  max-width: 48ch;
  margin-bottom: 1.6rem;
}
@media (max-width: 960px) {
  .hero__lede {
    margin-inline: auto;
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.hero__cta .store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 228px;
  max-width: 228px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  min-width: 0;
  padding: 0 1rem;
  flex: 0 0 228px;
  aspect-ratio: auto !important;
  border-radius: 24px;
  overflow: hidden;
}
.hero__cta .store-btn__icon {
  width: 22px;
  height: 22px;
}
.hero__cta .store-btn__txt {
  justify-items: center;
  text-align: center;
}
.hero__cta .store-btn__txt small {
  font-size: 0.52rem;
}
.hero__cta .store-btn__txt b {
  font-size: 0.88rem;
}
@media (max-width: 960px) {
  .hero__cta {
    justify-content: center;
  }
}

.hero__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0;
  border-top: none;
}
@media (max-width: 960px) {
  .hero__meta {
    justify-content: center;
  }
}
.hero__meta-item {
  display: grid;
  gap: 0.25rem;
  min-width: 126px;
  padding: 0.8rem 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 77, 42, 0.09);
  box-shadow: 0 18px 34px -28px rgba(15, 77, 42, 0.32);
  backdrop-filter: blur(12px);
}
.hero__meta-item b {
  font-family: var(--ff-ar-display);
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  color: #1c5842;
  line-height: 1;
  font-weight: 700;
}
.hero__meta-item small {
  color: color-mix(in oklab, var(--fg-muted) 78%, var(--g-700) 22%);
  font-size: var(--step--1);
  line-height: 1.45;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__stars {
  display: flex;
  gap: 2px;
  color: var(--y-600);
}

/* Phone column */
.hero__phones {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.hero__phones::before {
  content: "";
  position: absolute;
  inset: 15% 4% 12% 8%;
  border-radius: 42px 42px 132px 42px;
  border: 1px solid rgba(230, 207, 154, 0.14);
  background-image:
    linear-gradient(155deg, rgba(28, 88, 66, 0.98), rgba(11, 61, 43, 0.92)),
    url("../assets/islamic-pattern.jpg");
  background-size:
    100% 100%,
    420px auto;
  background-repeat: no-repeat, repeat;
  background-position: center, center;
  background-blend-mode: normal, soft-light;
  box-shadow: 0 40px 80px -42px rgba(15, 77, 42, 0.48);
  transform: rotate(-6deg);
  opacity: 0.97;
  z-index: 0;
  pointer-events: none;
}
.hero__phones::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  inset-inline-start: 8%;
  bottom: 2%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.32),
    transparent 66%
  );
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 960px) {
  .hero__phones {
    min-height: 600px;
    margin-top: 2rem;
  }
}

.hero__phone-glow {
  position: absolute;
  inset: 18% 10% 8%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(201, 169, 97, 0.3),
      transparent 55%
    ),
    radial-gradient(circle at 40% 30%, rgba(15, 77, 42, 0.25), transparent 50%);
  filter: blur(60px);
  z-index: -1;
  animation: glowDrift 10s ease-in-out infinite;
  opacity: 0.9;
}

.hero__phone-ring {
  position: absolute;
  width: 590px;
  height: 590px;
  inset: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  .hero__phone-ring {
    display: none;
  }
}

.hero__phone-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 97, 0.34);
  animation: ringSpin 60s linear infinite;
}
@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -26px 0 0 -26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: var(--sh-md);
  transition:
    transform 0.5s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.hero__orbit:hover {
  transform: scale(1.1);
  border-color: var(--g-700);
  color: var(--g-700);
}
.hero__orbit.is-active {
  background: var(--g-700);
  color: var(--y-400);
  border-color: var(--y-600);
  box-shadow:
    0 0 0 4px rgba(201, 169, 97, 0.2),
    var(--sh-lg);
  transform: scale(1.15);
}
.hero__orbit-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--bg-elev);
  color: var(--fg);
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-family: var(--ff-ar-ui);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  transition: opacity 0.2s;
}
.hero__orbit.is-active .hero__orbit-label {
  opacity: 1;
}

.hero__phone-stack {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero__hand {
  position: absolute;
  width: 490px;
  max-width: none;
  left: 50%;
  bottom: -112px;
  transform: translateX(-58%) rotate(9deg);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.82;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.2));
}
.hero__phone-stack .phone {
  position: relative;
  z-index: 2;
}

.hero__caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 77, 42, 0.1);
  padding: 0.75rem 1.1rem;
  border-radius: var(--r-full);
  box-shadow: 0 24px 50px -30px rgba(15, 77, 42, 0.34);
  backdrop-filter: blur(14px);
  min-width: 260px;
  z-index: 4;
}
.hero__caption-idx {
  font-family: var(--ff-en-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--g-700);
  line-height: 1;
}
.hero__caption-idx span {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.hero__caption-text {
  display: grid;
  line-height: 1.1;
  flex: 1;
}
.hero__caption-ar {
  font-family: var(--ff-ar-display);
  font-size: var(--step-1);
  color: var(--fg);
  font-weight: 600;
}
.hero__caption-en {
  font-family: var(--ff-en-ui);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__caption-bar {
  width: 42px;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.hero__caption-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--g-700), var(--y-600));
  transform-origin: left;
  animation: captionFill 3.2s linear forwards;
}
@keyframes captionFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.3);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
@media (max-width: 960px) {
  .hero__scroll {
    display: none;
  }
}

/* ===== TRUST BAND ===== */
.trust {
  padding-block: 2.5rem;
  background: var(--c-cream-2);
  border-block: 1px solid var(--line);
}
.trust__wrap {
  display: flex;
  gap: 2rem 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.trust__label {
  font-family: var(--ff-en-ui);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-weight: 600;
}
.trust__items {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
  color: var(--fg-muted);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-ar-display);
  font-size: var(--step-1);
  color: var(--fg-soft);
}
.trust__item svg {
  width: 22px;
  height: 22px;
  color: var(--y-700);
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .tile--wide {
    grid-column: span 1;
  }
}

/* ===== QURAN SECTION ===== */
.quran {
  background-color: var(--bg);
  background:
    radial-gradient(
      ellipse at 10% 20%,
      rgba(15, 77, 42, 0.08),
      transparent 50%
    ),
    var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.quran::before {
  content: "";
  position: absolute;
  inset: -12%;
  background-image:
    url("../assets/islamic-pattern.jpg"),
    radial-gradient(circle at 16% 18%, rgba(28, 88, 66, 0.18), transparent 40%),
    radial-gradient(
      circle at 78% 26%,
      rgba(201, 169, 97, 0.22),
      transparent 34%
    ),
    radial-gradient(circle at 70% 80%, rgba(28, 88, 66, 0.14), transparent 38%);
  background-size:
    420px auto,
    auto,
    auto,
    auto;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-position: center;
  mix-blend-mode: multiply;
  filter: saturate(0.82) contrast(1.08);
  opacity: 0.22;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 1320px 820px at 50% 42%,
    black,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 1320px 820px at 50% 42%,
    black,
    transparent 78%
  );
}
.quran::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 28% 16%,
      rgba(255, 255, 255, 0.68),
      transparent 32%
    ),
    linear-gradient(
      to bottom,
      rgba(251, 247, 237, 0.06),
      rgba(251, 247, 237, 0.86)
    ),
    repeating-linear-gradient(
      60deg,
      rgba(28, 88, 66, 0.04) 0 1px,
      transparent 1px 78px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(201, 169, 97, 0.055) 0 1px,
      transparent 1px 78px
    );
  opacity: 0.8;
  pointer-events: none;
}
.quran > .container {
  position: relative;
  z-index: 1;
}
.quran__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: stretch;
}
@media (max-width: 960px) {
  .quran__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.quran__preview {
  position: relative;
  height: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, #fdfaf1, #f5edd9 85%, #ecdfba);
  border: 1px solid var(--y-300);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.quran__preview::before,
.quran__preview::after {
  content: "";
  position: absolute;
  inset-inline: 20px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--y-600), transparent);
}
.quran__preview::before {
  top: 10px;
}
.quran__preview::after {
  bottom: 10px;
}

.quran__surah-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--y-300);
  margin-bottom: 1.5rem;
}
.quran__surah-meta {
  display: grid;
  gap: 0.2rem;
}
.quran__surah-name {
  font-family: var(--ff-ar-display);
  font-size: var(--step-3);
  color: var(--g-800);
  line-height: 1;
}
.quran__surah-info {
  color: var(--y-800);
  font-size: var(--step--1);
  font-family: var(--ff-en-ui);
}
.quran__surah-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--g-700);
  color: var(--y-400);
  border-radius: 50%;
  font-family: var(--ff-ar-display);
  font-size: 1.1rem;
  box-shadow:
    inset 0 0 0 3px rgba(201, 169, 97, 0.4),
    var(--sh-md);
}

.quran__bismillah {
  text-align: center;
  font-family: var(--ff-ar-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--g-800);
  margin-bottom: 1.25rem;
}
.quran__ayahs {
  font-family: "Amiri", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 2.3;
  color: var(--c-ink);
  text-align: justify;
}
.quran__ayah-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-inline: 4px;
  color: var(--y-700);
  position: relative;
}
.quran__ayah-mark span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--ff-ar-ui);
  font-size: 0.72rem;
  color: var(--g-800);
  font-weight: 700;
}

.quran__controls {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--y-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.quran__control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--y-600);
  color: var(--g-800);
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.quran__control-btn:hover {
  background: var(--y-600);
  color: #fff;
  transform: scale(1.06);
}
.quran__control-btn--play {
  width: 56px;
  height: 56px;
  background: var(--g-700);
  color: var(--y-400);
  border-color: var(--g-700);
}
.quran__control-btn--play:hover {
  background: var(--g-800);
  color: var(--y-300);
}
.quran__progress {
  flex: 1;
  height: 4px;
  background: rgba(15, 77, 42, 0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.quran__progress-fill {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(to right, var(--g-700), var(--y-600));
  border-radius: 2px;
}

.quran__chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.quran__chip {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: var(--r-full);
  font-size: var(--step--1);
  color: var(--fg-soft);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.quran__chip:hover,
.quran__chip.is-active {
  background: var(--g-700);
  color: #fbf7ed;
  border-color: var(--g-700);
}

.quran__spotlight {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-content: start;
  height: 100%;
}
.quran__spotlight-eyebrow {
  margin-bottom: 0.1rem;
}
.quran__spotlight-shell {
  display: grid;
  grid-template-columns: minmax(150px, 188px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 0;
  padding: 0.95rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 239, 222, 0.9));
  border: 1px solid rgba(201, 169, 97, 0.24);
  box-shadow: 0 18px 36px -30px rgba(15, 77, 42, 0.18);
  animation: quranSpotlightSwap 0.42s var(--ease);
}
.quran__spotlight-media {
  position: relative;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15, 77, 42, 0.06);
}
.quran__spotlight-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.quran__spotlight-media::after {
  content: "";
  position: relative;
  background:
    linear-gradient(180deg, transparent 55%, rgba(6, 28, 20, 0.3) 100%);
  pointer-events: none;
}
.quran__spotlight-badge {
  position: absolute;
  inset-inline-start: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.92);
  color: var(--g-800);
  border: 1px solid rgba(201, 169, 97, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
}
.quran__spotlight-copy {
  display: grid;
  gap: 0.34rem;
  align-content: center;
}
.quran__spotlight-kicker {
  font-family: var(--ff-en-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y-800);
}
.quran__spotlight-name {
  font-family: var(--ff-ar-display);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  color: var(--g-800);
  margin: 0;
}
.quran__spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--fg-muted);
  font-family: var(--ff-en-ui);
  font-size: var(--step--1);
}
.quran__spotlight-note {
  margin: 0.15rem 0 0;
  color: var(--fg-soft);
  font-size: 0.94rem;
  line-height: 1.62;
  max-width: 30ch;
}
.quran__spotlight-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.3rem;
}
.quran__spotlight-stats span {
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(28, 88, 66, 0.07);
  border: 1px solid rgba(28, 88, 66, 0.12);
  color: var(--g-800);
  font-size: 0.74rem;
}

@media (min-width: 961px) {
  .quran__spotlight {
    gap: 0.9rem;
  }
  .quran__spotlight-eyebrow {
    margin-bottom: 0.2rem;
  }
  .quran__spotlight-shell {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 248px);
    gap: 1.35rem;
    padding: 1.35rem;
    border-radius: 28px;
  }
  .quran__spotlight-media {
    min-height: 100%;
    height: 100%;
    border-radius: 22px;
  }
  .quran__spotlight-photo {
    height: 100%;
    min-height: 440px;
    object-position: center 18%;
  }
  .quran__spotlight-badge {
    inset-inline-start: 0.95rem;
    bottom: 0.95rem;
    padding: 0.42rem 0.74rem;
    font-size: 0.76rem;
  }
  .quran__spotlight-copy {
    height: 100%;
    grid-template-rows: auto auto auto 1fr auto;
    align-content: stretch;
    gap: 0.46rem;
    padding: 0.2rem 0;
  }
  .quran__spotlight-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }
  .quran__spotlight-name {
    font-size: clamp(1.9rem, 2.8vw, 2.75rem);
    line-height: 1.04;
  }
  .quran__spotlight-meta {
    font-size: 0.98rem;
  }
  .quran__spotlight-note {
    margin-top: 0.45rem;
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.82;
  }
  .quran__spotlight-stats {
    margin-top: auto;
    gap: 0.6rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
  }
  .quran__spotlight-stats span {
    padding: 0.42rem 0.72rem;
    font-size: 0.78rem;
  }
}

@keyframes quranSpotlightSwap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== SHOWCASE (screenshot carousel) ===== */
.showcase {
  background-color: #14533a;
  color: #f6f1e7;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: -8%;
  background-image:
    url("../assets/islamic-pattern.jpg"),
    radial-gradient(
      circle at 18% 20%,
      rgba(230, 207, 154, 0.2),
      transparent 42%
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(230, 207, 154, 0.16),
      transparent 46%
    );
  background-size:
    500px auto,
    auto,
    auto;
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: center;
  mix-blend-mode: soft-light;
  opacity: 0.3;
  filter: saturate(0.78) contrast(1.06);
  pointer-events: none;
}
.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(3, 18, 11, 0.1), rgba(3, 18, 11, 0.5)),
    repeating-linear-gradient(
      60deg,
      rgba(201, 169, 97, 0.06) 0 1px,
      transparent 1px 74px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(201, 169, 97, 0.06) 0 1px,
      transparent 1px 74px
    );
  opacity: 0.78;
  pointer-events: none;
}
.showcase .container {
  position: relative;
  z-index: 2;
}
.showcase .section-head {
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}
.showcase .section-head h2 {
  color: #fbf7ed;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}
.showcase .section-head .lede {
  color: rgba(251, 247, 237, 0.8);
}
.showcase .eyebrow {
  color: var(--y-400);
}
.showcase .eyebrow::before {
  background: currentColor;
}

.showcase__stage {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  perspective: 1500px;
  border-radius: clamp(24px, 4vw, 36px);
  background: linear-gradient(
    165deg,
    rgba(250, 244, 231, 0.11),
    rgba(201, 169, 97, 0.05)
  );
  border: 1px solid rgba(201, 169, 97, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(251, 247, 237, 0.06),
    0 34px 70px -44px rgba(0, 0, 0, 0.75);
}
.showcase__stage::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background-image: url("../assets/islamic-pattern.jpg");
  background-size: 260px auto;
  background-repeat: repeat;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.showcase__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 50% 50%,
      transparent 34%,
      rgba(5, 15, 10, 0.44) 100%
    ),
    linear-gradient(to top, rgba(3, 13, 8, 0.32), transparent 36%);
  pointer-events: none;
}
.showcase__phone {
  flex: none;
  position: relative;
  z-index: 1;
  transition:
    transform 0.5s var(--ease),
    opacity 0.5s;
}
.showcase__phone--side {
  opacity: 0.5;
  transform: scale(0.82);
  filter: saturate(0.8);
}
.showcase__phone--far {
  opacity: 0.25;
  transform: scale(0.65);
  display: none;
}
@media (min-width: 1100px) {
  .showcase__phone--far {
    display: block;
  }
}

.showcase__nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.showcase__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(251, 247, 237, 0.28);
  color: #fbf7ed;
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.showcase__nav-btn:hover {
  background: rgba(251, 247, 237, 0.13);
  border-color: var(--y-400);
  color: var(--y-400);
}

.showcase__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(251, 247, 237, 0.25);
  border: none;
  transition:
    width 0.3s var(--ease),
    background 0.3s;
  padding: 0;
}
.showcase__dot.is-active {
  width: 24px;
  background: var(--y-400);
  border-radius: 4px;
}

.showcase__caption {
  text-align: center;
  margin-top: 2rem;
  min-height: 80px;
  background: linear-gradient(
    180deg,
    rgba(5, 14, 9, 0.15),
    rgba(5, 14, 9, 0.32)
  );
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  backdrop-filter: blur(4px);
}
.showcase__caption h3 {
  font-family: var(--ff-ar-display);
  font-size: var(--step-3);
  color: #fbf7ed;
  margin-bottom: 0.4rem;
}
.showcase__caption p {
  color: rgba(251, 247, 237, 0.78);
  max-width: 48ch;
  margin-inline: auto;
}

/* ===== AUDIO / RECITERS ===== */
.audio {
  background: var(--c-cream-2);
}
.audio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .audio__grid {
    grid-template-columns: 1fr;
  }
}

.reciters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.reciter {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}
.reciter:hover,
.reciter.is-playing {
  border-color: var(--g-700);
  box-shadow: var(--sh-md);
}
.reciter__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--g-700), var(--g-800));
  display: grid;
  place-items: center;
  color: var(--y-400);
  font-family: var(--ff-ar-display);
  font-size: 1.3rem;
  flex: none;
  position: relative;
}
.reciter.is-playing .reciter__avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--y-600);
  border-radius: 50%;
  animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.reciter__info {
  display: grid;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}
.reciter__name {
  font-family: var(--ff-ar-display);
  font-size: var(--step-1);
  color: var(--fg);
  line-height: 1.15;
}
.reciter__meta {
  font-size: var(--step--1);
  color: var(--fg-muted);
  font-family: var(--ff-en-ui);
}
.reciter__play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g-700);
  color: var(--y-400);
  border: none;
  display: grid;
  place-items: center;
  flex: none;
}
.reciter.is-playing .reciter__play {
  background: var(--y-600);
  color: var(--g-800);
}

.audio__waveform {
  height: 80px;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}
.audio__bar {
  flex: 1;
  max-width: 4px;
  background: var(--g-700);
  border-radius: 2px;
  transition: height 0.15s;
}

/* ===== PRAYER TIMES ===== */
.prayer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #14533a;
  color: #f6f1e7;
}
.prayer::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    url("../assets/islamic-pattern.jpg"),
    radial-gradient(circle at 18% 18%, rgba(230, 207, 154, 0.18), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(230, 207, 154, 0.14), transparent 44%);
  background-size:
    460px auto,
    auto,
    auto;
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: center;
  mix-blend-mode: soft-light;
  opacity: 0.24;
  filter: saturate(0.82) contrast(1.06);
  pointer-events: none;
}
.prayer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(3, 18, 11, 0.1), rgba(3, 18, 11, 0.5)),
    repeating-linear-gradient(
      60deg,
      rgba(201, 169, 97, 0.05) 0 1px,
      transparent 1px 76px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(201, 169, 97, 0.04) 0 1px,
      transparent 1px 76px
    );
  opacity: 0.78;
  pointer-events: none;
}
.prayer > .container {
  position: relative;
  z-index: 1;
}
.prayer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 960px) {
  .prayer__grid {
    grid-template-columns: 1fr;
  }
}

.prayer__intro {
  display: grid;
  align-content: center;
}
.prayer__intro .eyebrow {
  color: var(--y-300);
}
.prayer__title {
  font-family: var(--ff-ar-display);
  font-size: var(--step-5);
  margin-block: 0.75rem 1rem;
  line-height: 1.1;
  color: #fbf7ed;
}
.prayer__lede {
  color: rgba(246, 241, 231, 0.78);
  font-size: var(--step-1);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 34ch;
}
.prayer__direction {
  text-align: center;
  margin-top: 1rem;
  color: rgba(246, 241, 231, 0.68);
  font-size: var(--step--1);
  font-family: var(--ff-en-ui);
}

.prayer-card {
  background: linear-gradient(180deg, rgba(250, 245, 235, 0.98), rgba(243, 234, 213, 0.95));
  color: #173d2f;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 56px -36px rgba(2, 14, 10, 0.48);
  border: 1px solid rgba(230, 207, 154, 0.42);
}
.prayer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 169, 97, 0.16), transparent 32%),
    url("../assets/islamic-pattern.jpg");
  background-size:
    auto,
    220px auto;
  background-repeat: no-repeat, repeat;
  background-position: top left, center;
  opacity: 0.08;
}
.prayer-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  position: relative;
}
.prayer-card__date {
  display: grid;
  gap: 0.25rem;
}
.prayer-card__hijri {
  font-family: var(--ff-ar-display);
  font-size: var(--step-2);
  color: #8a6522;
}
.prayer-card__greg {
  font-size: var(--step--1);
  color: rgba(23, 61, 47, 0.62);
  font-family: var(--ff-en-ui);
}
.prayer-card__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--step--1);
  color: rgba(23, 61, 47, 0.72);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(28, 88, 66, 0.16);
  border-radius: var(--r-full);
  background: rgba(28, 88, 66, 0.05);
}

.prayer-card__next {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, #1a6a4f, #14533a 72%, #0b3426);
  border: 1px solid rgba(230, 207, 154, 0.16);
  border-radius: var(--r-lg);
  margin-bottom: 1.5rem;
  position: relative;
  color: #fbf7ed;
  box-shadow: 0 18px 34px -28px rgba(20, 83, 58, 0.6);
}
.prayer-card__next-label {
  font-size: var(--step--1);
  color: var(--y-400);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--ff-en-ui);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.prayer-card__next-name {
  font-family: var(--ff-ar-display);
  font-size: var(--step-4);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.prayer-card__next-time {
  font-family: var(--ff-en-ui);
  font-weight: 300;
  font-size: var(--step-6);
  color: var(--y-400);
  letter-spacing: -0.04em;
  line-height: 1;
}
.prayer-card__next-count {
  font-size: var(--step--1);
  color: rgba(251, 247, 237, 0.72);
  margin-top: 0.4rem;
  font-family: var(--ff-en-ui);
}

.prayer-list {
  display: grid;
  gap: 0.5rem;
  position: relative;
}
.prayer-row {
  display: grid;
  grid-template-columns: 30px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  border: 1px solid transparent;
}
.prayer-row.is-next {
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.28);
  box-shadow: 0 12px 24px -22px rgba(168, 134, 57, 0.38);
}
.prayer-row.is-past {
  opacity: 0.6;
}
.prayer-row__icon {
  color: #8a6522;
}
.prayer-row__name {
  font-family: var(--ff-ar-display);
  font-size: var(--step-2);
  color: #173d2f;
}
.prayer-row__time {
  font-family: var(--ff-en-ui);
  font-weight: 300;
  font-size: var(--step-2);
  color: #14533a;
  letter-spacing: -0.02em;
}
.prayer-row__status {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(23, 61, 47, 0.44);
  font-family: var(--ff-en-ui);
}

/* Qibla compass */
.qibla {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 248, 234, 0.95), rgba(238, 227, 199, 0.92));
  border: 2px solid rgba(230, 207, 154, 0.68);
  position: relative;
  margin-inline: auto;
  box-shadow:
    0 24px 44px -28px rgba(2, 14, 10, 0.42),
    inset 0 0 40px rgba(201, 169, 97, 0.18);
}
.qibla__ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.42);
}
.qibla__needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 82px;
  background: linear-gradient(to top, transparent, #14533a);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(var(--q, 42deg));
  transition: transform 0.45s var(--ease);
  border-radius: 2px;
}
.qibla__needle::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-inline: 8px solid transparent;
  border-bottom: 16px solid #14533a;
}
.qibla__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f7f1e0;
  border: 2px solid #14533a;
  box-shadow: 0 0 0 4px rgba(15, 77, 42, 0.08);
}
.qibla__kaaba-wrap {
  position: absolute;
  top: 95%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) rotate(var(--q, 42deg)) translateY(-86px);
  transition: transform 0.45s var(--ease);
}
.qibla__kaaba {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1d6a50, #14533a);
  display: grid;
  place-items: center;
  color: var(--y-400);
  font-family: var(--ff-ar-display);
  font-size: 1.4rem;
  box-shadow:
    inset 0 0 0 3px rgba(201, 169, 97, 0.35),
    0 8px 18px rgba(15, 77, 42, 0.18);
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--q, 42deg)));
}
.qibla__marker {
  position: absolute;
  font-family: var(--ff-en-ui);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(72, 56, 25, 0.76);
  letter-spacing: 0.1em;
}
.qibla__marker--n {
  top: 6px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}
.qibla__marker--s {
  bottom: 6px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}
.qibla__marker--e {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.qibla__marker--w {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== REVIEWS ===== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

.review {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-rows: auto 1fr auto;
}
.review__quote-mark {
  position: absolute;
  top: 0.5rem;
  inset-inline-end: 1rem;
  font-family: var(--ff-ar-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--y-600);
  opacity: 0.2;
}
.review__stars {
  display: flex;
  gap: 2px;
  color: var(--y-600);
}
.review__stars svg {
  width: 16px;
  height: 16px;
}
.review__text {
  font-family: var(--ff-ar-display);
  font-size: var(--step-1);
  line-height: 1.7;
  color: var(--fg-soft);
}
.review__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g-700);
  color: var(--y-400);
  display: grid;
  place-items: center;
  font-family: var(--ff-ar-display);
  font-size: 1.1rem;
  flex: none;
}
.review__info {
  display: grid;
  line-height: 1.2;
}
.review__name {
  font-weight: 600;
  color: var(--fg);
  font-size: var(--step-0);
}
.review__meta {
  font-size: var(--step--2);
  color: var(--fg-muted);
  font-family: var(--ff-en-ui);
}
.review__platform {
  margin-inline-start: auto;
  font-size: var(--step--2);
  color: var(--fg-muted);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
}

/* ===== STATS STRIP ===== */
.stats {
  background: linear-gradient(180deg, var(--g-800), var(--g-900));
  color: #fbf7ed;
  padding-block: 6rem;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern-bg);
  background-size: 180px 180px;
  opacity: 0.07;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat {
  text-align: center;
  padding: 1rem;
}
.stat__num {
  font-family: var(--ff-en-display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--y-400);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.stat__label {
  font-family: var(--ff-ar-display);
  font-size: var(--step-2);
}
.stat__sublabel {
  font-size: var(--step--1);
  color: rgba(251, 247, 237, 0.6);
  font-family: var(--ff-en-ui);
  margin-top: 0.2rem;
}

/* ===== FAQ ===== */
.faq__list {
  display: grid;
  gap: 0.6rem;
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.faq-item.is-open {
  border-color: var(--g-600);
  box-shadow: var(--sh-md);
}
.faq-item__btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-ar-display);
  font-size: var(--step-2);
  color: var(--fg);
  text-align: start;
}
.faq-item__icon {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--g-100);
  color: var(--g-700);
  display: grid;
  place-items: center;
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-item.is-open .faq-item__icon {
  background: var(--g-700);
  color: var(--y-400);
  transform: rotate(45deg);
}
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq-item__body > div {
  overflow: hidden;
}
.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}
.faq-item__body p {
  padding: 0 1.5rem 1.25rem;
  color: var(--fg-muted);
  font-size: var(--step-0);
  line-height: 1.7;
}

/* ===== DOWNLOAD BIG CTA ===== */
.download {
  padding-block: 6rem;
  position: relative;
}
.download__card {
  background: linear-gradient(
    135deg,
    var(--g-800) 0%,
    var(--g-900) 60%,
    #041a0d
  );
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  color: #fbf7ed;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.download__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern-bg);
  background-size: 200px 200px;
  opacity: 0.08;
  pointer-events: none;
}
.download__card::after {
  content: "";
  position: absolute;
  inset-inline-end: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.35),
    transparent 60%
  );
  pointer-events: none;
  filter: blur(20px);
}
.download__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .download__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.download__title {
  font-family: var(--ff-ar-display);
  font-size: var(--step-6);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.download__title-en {
  font-family: var(--ff-en-display);
  font-style: italic;
  font-size: var(--step-3);
  color: var(--y-400);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.download__lede {
  color: rgba(251, 247, 237, 0.8);
  font-size: var(--step-1);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 48ch;
}
@media (max-width: 900px) {
  .download__lede {
    margin-inline: auto;
  }
}
.download__stores {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .download__stores {
    justify-content: center;
  }
}

.download__visual {
  display: grid;
  place-items: center;
  position: relative;
}
.download__qr {
  width: 220px;
  height: 220px;
  background: #fbf7ed;
  border-radius: var(--r-lg);
  padding: 1rem;
  box-shadow: var(--sh-lg);
  display: grid;
  gap: 0.5rem;
  grid-template-rows: auto 1fr auto;
  text-align: center;
}
.download__qr-label {
  color: var(--g-800);
  font-size: var(--step--1);
  font-family: var(--ff-en-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.download__qr-img {
  width: 100%;
  height: 100%;
}
.download__qr-footer {
  font-size: 0.68rem;
  color: var(--y-800);
  font-family: var(--ff-en-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
  background: #080f0b;
  color: rgba(251, 247, 237, 0.7);
  padding-block: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--y-600), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  display: grid;
  gap: 1rem;
}
.footer__brand-row {
  display: flex;
  align-items: center;
}
.footer__logo {
  width: 210px;
  height: 74px;
  object-fit: contain;
}
.footer__tag {
  font-size: var(--step-0);
  line-height: 1.6;
  max-width: 32ch;
}

.footer__col h4 {
  font-family: var(--ff-en-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--y-400);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.footer__col a {
  color: rgba(251, 247, 237, 0.7);
  font-size: var(--step-0);
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--y-400);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 247, 237, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--step--1);
  color: rgba(251, 247, 237, 0.5);
}
.footer__social {
  display: flex;
  gap: 0.5rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(251, 247, 237, 0.15);
  display: grid;
  place-items: center;
  color: rgba(251, 247, 237, 0.7);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.footer__social a:hover {
  border-color: var(--y-600);
  color: var(--y-400);
  background: rgba(201, 169, 97, 0.08);
}
.footer__contacts {
  display: grid;
  gap: 0.35rem;
}
.footer__contacts a {
  color: rgba(251, 247, 237, 0.72);
  font-family: var(--ff-en-ui);
  font-size: var(--step--1);
  word-break: break-word;
  transition: color 0.2s;
}
.footer__contacts a:hover {
  color: var(--y-400);
}
.footer__bottom a {
  color: var(--y-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}
