/* ===============================================================
   Ajeer for Individuals — Section-specific styles
   =============================================================== */

/* =========================
   HERO
   ========================= */
.hero {
  padding: clamp(48px, 7vw, 100px) 0 clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-eyebrow .wave { font-family: var(--font-ar); font-size: 16px; letter-spacing: 0; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
  white-space: pre-line;
}
body[data-lang="ar"] .hero h1 { line-height: 1.16; letter-spacing: -0.003em; }
.hero p.lead {
  font-size: clamp(15px, 1.2vw, 18px);
  margin-top: 22px;
  max-width: 540px;
  color: var(--ink-3);
  line-height: 1.7;
}
[data-theme="dark"] .hero p.lead { color: var(--ink-2); }
.hero-trust {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  align-items: center;
}
.hero-trust .num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1;
  color: var(--ink);
}
.hero-trust .num small {
  font-size: 16px;
  color: var(--gold);
  margin-inline-start: 4px;
}
.hero-trust .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.hero-trust .div {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* Right side: phone + decorations */
.hero-art {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  inset: 8% 5% 4%;
  background: radial-gradient(circle, rgba(3, 93, 252, 0.18), transparent 60%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset-inline-start: 2%;
  bottom: 8%;
  width: 130px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(3,93,252,.22) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 1;
  pointer-events: none;
}
/* ===== Wow hero headline animation ===== */
@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(28px) rotate(.6deg);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
    filter: blur(0);
  }
}
@keyframes shineSweep {
  0%   { background-position: -150% 0; }
  100% { background-position: 250% 0; }
}
@keyframes highlightDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.wow-h1 { display: inline-block; }
.wow-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordReveal .9s cubic-bezier(.2,.8,.2,1) forwards;
  will-change: opacity, transform;
}
.wow-accent {
  display: inline-block;
  position: relative;
  color: #035DFC;
  background: linear-gradient(90deg, #035DFC 20%, #4A8BFF 50%, #035DFC 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(28px);
  animation:
    wordReveal .9s cubic-bezier(.2,.8,.2,1) forwards,
    shineSweep 3.6s ease-in-out 1.6s infinite;
}
.wow-accent::after {
  content: '';
  position: absolute;
  inset-inline: -2%;
  bottom: -0.06em;
  height: 0.14em;
  background: linear-gradient(90deg, rgba(3,93,252,0) 0%, #035DFC 50%, rgba(3,93,252,0) 100%);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right center;
  animation: highlightDraw .8s cubic-bezier(.65,0,.35,1) 1.1s forwards;
}
body[data-lang="en"] .wow-accent::after { transform-origin: left center; }

@media (prefers-reduced-motion: reduce) {
  .wow-word, .wow-accent { animation: none !important; opacity: 1 !important; transform: none !important; }
  .wow-accent { -webkit-text-fill-color: #035DFC !important; }
  .wow-accent::after { animation: none !important; transform: scaleX(1) !important; }
}

/* ===== Hero CTA stack: download button on top, store badges below ===== */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 32px;
  width: fit-content;
  max-width: 420px;
}
.btn-cta-large {
  padding: 18px 38px !important;
  font-size: 17px !important;
  border-radius: 16px !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 30px rgba(3, 93, 252, 0.30) !important;
}
.btn-cta-promo {
  width: 100%;
  padding: 16px 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
  text-align: start;
}
.cta-promo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.2;
}
.cta-promo-text strong {
  font-size: 18px;
  font-weight: 700;
}
.cta-promo-sub {
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.88;
}
.cta-promo-code {
  margin-top: 4px;
  display: inline-block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.18);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 2px 9px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}
.hero-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #0A1230;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
  width: 100%;
}
.store-badge:hover {
  background: #1F2A4E;
  transform: translateY(-1px);
}
.store-badge svg { flex-shrink: 0; }
.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.store-badge-text small {
  font-size: 9.5px;
  font-weight: 400;
  opacity: .8;
  letter-spacing: .02em;
}
.store-badge-text strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.005em;
}

/* Slideshow crossfade + ken-burns subtle zoom */
.phone-slideshow .phone-screen {
  position: relative;
  overflow: hidden;
}
.phone-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform 4s ease-out;
}
.phone-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.phone-slide-dots {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
  padding: 6px 12px;
  background: rgba(10, 18, 48, 0.92);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px -4px rgba(10, 18, 48, 0.30);
}
.phone-slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background .4s ease, width .4s ease;
}
.phone-slide-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 4px;
}
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  inset: 8% 5% 4%;
  background:
    radial-gradient(circle at 30% 30%, rgba(3, 93, 252, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(244, 193, 0, 0.14) 0%, transparent 50%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset-inline-start: 2%;
  bottom: 8%;
  width: 140px;
  height: 100px;
  background-image: radial-gradient(circle, var(--blue) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
.hero-phone-wrap {
  position: relative;
  z-index: 3;
  width: 280px;
  display: flex;
  justify-content: center;
}
/* Floating chips around the phone */
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 4;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: chipFloat 6s ease-in-out infinite;
}
[data-theme="dark"] .hero-chip { background: var(--paper-2); border-color: var(--line); }
.hero-chip .chip-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-chip .chip-body { display: flex; flex-direction: column; gap: 1px; }
.hero-chip .chip-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.hero-chip .chip-sub { font-size: 11px; color: var(--muted); line-height: 1.2; font-family: var(--font-mono); }
body[data-lang="ar"] .hero-chip .chip-sub { font-family: var(--font-ar); }

.hero-chip.chip-1 { top: 14%;  inset-inline-end: -8%; animation-delay: 0s; }
.hero-chip.chip-2 { top: 44%;  inset-inline-start: -14%; animation-delay: 1.4s; }
.hero-chip.chip-3 { bottom: 8%; inset-inline-end: -6%; animation-delay: 2.8s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* PHONE MOCKUP */
.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: var(--ink);
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1.2px var(--ink-2) inset,
    0 28px 60px -20px rgba(10, 18, 48, 0.36),
    0 12px 30px -12px rgba(10, 18, 48, 0.22);
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-frame::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(calc(-50% + 22px));
  width: 8px;
  height: 8px;
  background: #1A1F38;
  border-radius: 50%;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-frame.lg { transform: scale(1); }
.phone-frame.sm { max-width: 200px; }

/* Responsive hero */
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 460px; margin-top: 12px; }
  .hero-phone-wrap { width: 240px; }
  .hero-chip { padding: 8px 12px; }
  .hero-chip .chip-ic { width: 30px; height: 30px; }
  .hero-chip .chip-title { font-size: 12px; }
  .hero-chip .chip-sub { font-size: 10px; }
  .hero-chip.chip-1 { inset-inline-end: -2%; top: 8%; }
  .hero-chip.chip-2 { inset-inline-start: -6%; top: 44%; }
  .hero-chip.chip-3 { inset-inline-end: -2%; bottom: 6%; }
  .hero-dots { width: 100px; height: 70px; bottom: 4%; }
}
@media (max-width: 480px) {
  .hero-chip.chip-2 { inset-inline-start: -4%; }
}

/* =========================
   SERVICES GRID
   ========================= */
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.services-head .lead { margin-top: 14px; max-width: 540px; }
.services-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.services-link::after {
  content: '↗';
  font-family: var(--font-mono);
}
body[data-lang="ar"] .services-link::after { content: '↖'; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px;
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  min-height: 130px;
}
.service-tile:hover,
.service-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(3, 93, 252, 0.20);
  border-color: var(--blue);
  background: var(--white);
  outline: none;
}
.service-tile .ic,
.service-tile .name {
  transition: opacity 0.2s ease;
}
.service-tile-desc {
  position: absolute;
  inset: 0;
  padding: 16px 14px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--white) 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.service-tile:hover .service-tile-desc,
.service-tile:focus-visible .service-tile-desc,
.service-tile.is-open .service-tile-desc {
  opacity: 1;
  transform: translateY(0);
}
.service-tile:hover .ic,
.service-tile:focus-visible .ic,
.service-tile.is-open .ic,
.service-tile:hover .name,
.service-tile:focus-visible .name,
.service-tile.is-open .name {
  opacity: 0;
}
.service-tile-desc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.service-tile-desc-body {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.service-tile .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.service-tile .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.3;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================
   HOW IT WORKS — compact (1 phone + step list)
   ========================= */
.how-compact {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.how-step-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  text-align: start;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.how-step-card:hover {
  border-color: var(--blue-100);
  transform: translateY(-1px);
}
.how-step-card.active {
  background: var(--paper-warm);
  border-color: var(--blue);
  box-shadow: 0 8px 24px -10px rgba(3, 93, 252, 0.20);
}
[data-theme="dark"] .how-step-card.active { background: var(--paper-2); }
.how-step-card .hs-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.how-step-card.active .hs-num {
  background: var(--blue);
  color: #fff;
}
.how-step-card .hs-body { display: flex; flex-direction: column; gap: 6px; }
.how-step-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.how-step-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.how-step-card .hs-progress {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 2.5px;
  background: transparent;
}
.how-step-card.active .hs-progress { background: var(--blue-100); }
.how-step-card .hs-progress-bar {
  height: 100%;
  width: 0;
  background: var(--blue);
  border-radius: 2px;
  animation: hsBar 4.5s linear forwards;
  animation-play-state: paused;
}
.how-step-card.active .hs-progress-bar { animation-play-state: running; }
.how-step-card:not(.active) .hs-progress-bar { width: 0; animation: none; }

@keyframes hsBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* Phone side */
.how-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
}
.how-phone-stage {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
}
.how-phone-bg {
  position: absolute;
  inset: -18px;
  border-radius: 56px;
  background: radial-gradient(circle at 30% 20%, var(--blue-soft) 0%, transparent 60%);
  z-index: 0;
  filter: blur(20px);
  opacity: 0.6;
}
.how-phone-slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.how-phone-slot.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}
.how-dots {
  display: flex;
  gap: 8px;
}
.how-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  transition: background 0.2s ease, width 0.2s ease;
  cursor: pointer;
}
.how-dot.active {
  background: var(--blue);
  width: 24px;
}

/* Mobile stacked variant — hidden by default */
.how-mobile { display: none; }

@media (max-width: 920px) {
  .how-compact { display: none; }
  .how-mobile {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
  }
  .how-mcard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px 18px;
    background: var(--paper-3);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    position: relative;
  }
  .how-mcard-text {
    width: 100%;
    text-align: start;
  }
  .how-mcard-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--blue);
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--blue-soft);
    margin-bottom: 10px;
  }
  .how-mcard h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -.005em;
  }
  .how-mcard p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-3);
    margin-top: 8px;
  }
  .how-mcard-phone {
    position: relative;
    width: 220px;
    aspect-ratio: 9 / 19.5;
    margin-top: 6px;
  }
  .how-mcard-phone .how-phone-bg {
    position: absolute;
    inset: -14px;
    background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
  }
  .how-mcard-phone .phone-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
}

/* =========================
   PROMISE — 4 pillars
   ========================= */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.promise-card {
  padding: 24px 18px;
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.promise-card:hover,
.promise-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(3, 93, 252, .20);
  border-color: var(--blue);
  background: var(--white);
  outline: none;
}
.promise-card .ic,
.promise-card h3 {
  transition: opacity .2s ease;
}
.promise-card-desc {
  position: absolute;
  inset: 0;
  padding: 18px 16px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--white) 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.promise-card:hover .promise-card-desc,
.promise-card:focus-visible .promise-card-desc {
  opacity: 1;
  transform: translateY(0);
}
.promise-card:hover .ic,
.promise-card:focus-visible .ic,
.promise-card:hover h3,
.promise-card:focus-visible h3 {
  opacity: 0;
}
.promise-card-desc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.promise-card-desc-body {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.promise-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-100);
  box-shadow: var(--shadow-md);
}
.promise-card .ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-card h3 { font-size: 19px; font-weight: 600; color: var(--ink); }
.promise-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
@media (max-width: 920px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .promise-grid { grid-template-columns: 1fr; } }

/* =========================
   GUARANTEE + SAVE MORE pair
   ========================= */
.value-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}
.value-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.value-card.gold {
  background: linear-gradient(160deg, var(--paper-3) 0%, var(--gold-soft) 100%);
  border: 1px solid var(--line-soft);
}
.value-card.blue {
  background: linear-gradient(160deg, var(--paper-3) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--line-soft);
}
.value-card .vc-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.value-card .vc-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  flex-shrink: 0;
}
.value-card.gold .vc-icon { background: linear-gradient(135deg, var(--gold) 0%, #E4B12A 100%); }
.value-card.blue .vc-icon { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%); }
.value-card .vc-body { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 56ch; }
.value-card ul {
  list-style: none;
  padding: 0;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}
.value-card.gold ul li svg { color: var(--gold); flex-shrink: 0; }
.value-card.blue ul li svg { color: var(--blue); flex-shrink: 0; }
.value-card .tiers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.value-card .tier {
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
[data-theme="dark"] .value-card .tier { background: var(--paper-2); border-color: var(--blue); }
.value-card .tier strong { color: var(--blue); font-weight: 700; }
@media (max-width: 920px) { .value-grid { grid-template-columns: 1fr; } }

/* =========================
   GUARANTEE — Gold hero + 3 supporting cards
   ========================= */
.guarantee-hero {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(244, 193, 0, 0.05) 100%);
  color: var(--ink);
  border-radius: 28px;
  padding: 38px 40px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 28px 60px -28px rgba(10, 18, 48, 0.12);
}
.gh-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200, 150, 29, 0.12) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.55;
  pointer-events: none;
  mask-image: radial-gradient(circle at 88% 14%, black 0%, transparent 55%);
  -webkit-mask-image: radial-gradient(circle at 88% 14%, black 0%, transparent 55%);
}
.gh-top {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 26px;
  position: relative;
}
.gh-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #F4C100 0%, #C8961D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -10px rgba(200, 150, 29, 0.45);
  flex-shrink: 0;
}
.gh-headline { flex: 1; min-width: 0; }
.gh-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C8961D;
  background: rgba(200, 150, 29, 0.10);
  border: 1px solid rgba(200, 150, 29, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.gh-h {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 12px;
}
.gh-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-3, var(--muted));
  max-width: 60ch;
}
.gh-extensions {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 150, 29, 0.18);
}
.gh-ext-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.gh-ext-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gh-ext {
  padding: 14px 14px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: default;
  text-align: center;
}
.gh-ext:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 150, 29, 0.40);
  box-shadow: 0 12px 24px -14px rgba(200, 150, 29, 0.30);
}
.gh-ext.highlight {
  background: linear-gradient(180deg, #fff 0%, rgba(244, 193, 0, 0.08) 100%);
  border-color: rgba(200, 150, 29, 0.35);
}
.gh-ext.highlight:hover { border-color: rgba(200, 150, 29, 0.60); }
.gh-ext-days {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.gh-ext.highlight .gh-ext-days { color: #C8961D; }
.gh-ext-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.guarantee-card {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.guarantee-card:hover,
.guarantee-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 16px 40px -16px rgba(3, 93, 252, 0.20);
  outline: none;
}
.gc-icon,
.gc-title { transition: opacity .2s ease; }
.gc-desc {
  position: absolute;
  inset: 0;
  padding: 24px 22px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--white) 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.guarantee-card:hover .gc-desc,
.guarantee-card:focus-visible .gc-desc {
  opacity: 1;
  transform: translateY(0);
}
.guarantee-card:hover .gc-icon,
.guarantee-card:focus-visible .gc-icon,
.guarantee-card:hover .gc-title,
.guarantee-card:focus-visible .gc-title { opacity: 0; }
.gc-desc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.gc-desc-body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0;
}
.gc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.gc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.gc-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-3);
}

@media (max-width: 920px) {
  .guarantee-grid { grid-template-columns: 1fr; gap: 12px; }
  .gh-ext-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-hero { padding: 28px 24px; }
  .gh-top { gap: 16px; }
  .gh-icon { width: 60px; height: 60px; }
}

/* =========================
   REVIEWS
   ========================= */
.reviews-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-meta .big {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.reviews-meta .stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.reviews-meta .div { width: 1px; height: 48px; background: var(--line); }
.reviews-meta .meta-bit { display: flex; flex-direction: column; gap: 4px; }
.reviews-meta .meta-bit .v { font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1; }
.reviews-meta .meta-bit .l { font-size: 12px; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
.review-card .stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.review-card .text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
.review-card .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.review-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-200) 100%);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--blue-700);
  font-size: 14px;
}
.review-card .meta-text { display: flex; flex-direction: column; gap: 2px; }
.review-card .meta-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-card .meta-sub { font-size: 12px; color: var(--muted); }
@media (max-width: 920px) { .reviews-grid { grid-template-columns: 1fr; } }

/* =========================
   STATS (dark band)
   ========================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat .stat-ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.section-band-dark .stat .stat-ic { color: var(--blue-200); }
.stat .stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--ink);
}
.section-band-dark .stat .stat-num { color: #fff; }
.stat .stat-lbl {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.section-band-dark .stat .stat-lbl { color: rgba(255, 255, 255, 0.92); }
.stat .stat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}
.section-band-dark .stat .stat-desc { color: rgba(255, 255, 255, 0.6); }
@media (max-width: 920px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================
   PAYMENTS strip
   ========================= */
.payments {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.pay-card {
  height: 72px;
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  transition: border-color .18s ease, transform .2s ease, box-shadow .18s ease;
}
.pay-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -10px rgba(10, 18, 48, 0.12);
}
.pay-card img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Per-brand tuning to keep visual weight balanced */
.pay-card-mada   img { max-height: 28px; }
.pay-card-visa   img { max-height: 28px; }
.pay-card-mc     img { max-height: 44px; }
.pay-card-apay   img { max-height: 28px; }
.pay-card-stcpay img { max-height: 28px; }
.pay-card-tabby  img { max-height: 38px; }
.pay-card-tamara img { max-height: 50px; }

@media (max-width: 480px) {
  .payments { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 8px; }
  .pay-card { height: 58px; padding: 8px 10px; }
}
.payments-note {
  margin-top: 24px;
  padding: 22px 26px;
  background: var(--paper-3);
  border: 1px dashed var(--blue-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-2);
}
.payments-note .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================
   PRESS & TRUSTED BY
   ========================= */
.press-featured {
  background: linear-gradient(135deg, #0A1230 0%, #1F2A4E 60%, #035DFC 130%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 0;
  margin-bottom: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 280px;
}
.press-featured .pf-body { padding: 38px 42px; display: flex; flex-direction: column; justify-content: center; }
.press-featured .pf-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  align-self: flex-start;
}
.press-featured .pf-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: #FF5B1F; box-shadow: 0 0 0 4px rgba(255, 91, 31, 0.30);
}
.press-featured h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.press-featured p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 50ch;
}
.press-featured .pf-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  align-self: flex-start;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  transition: background 0.18s ease;
}
.press-featured .pf-cta:hover { background: rgba(255, 255, 255, 0.22); }
.press-featured .pf-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.press-featured .pf-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.20) 1.4px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.5;
}
.press-featured .pf-mbc {
  position: relative;
  font-family: var(--font-mono);
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.03em;
  line-height: 1;
}
.press-featured .pf-play {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #035DFC;
  font-size: 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.30);
  z-index: 2;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.press-card {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line); }
.press-card .img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
}
.press-card .img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1.2px);
  background-size: 12px 12px;
  opacity: 0.5;
}
.press-card .img-text {
  position: relative;
  z-index: 1;
}
.press-card .kind-pill {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  z-index: 1;
}
.press-card .body { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.press-card .body h4 { font-size: 17px; font-weight: 600; color: var(--ink); margin: 0; }
.press-card .body .host {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.press-card .body p { font-size: 13.5px; line-height: 1.55; color: var(--muted); flex: 1; margin: 6px 0 12px; }
.press-card .body .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
}
.press-card .body .more::after { content: '↗'; font-family: var(--font-mono); }
body[data-lang="ar"] .press-card .body .more::after { content: '↖'; }

.trusted {
  padding: 28px 32px;
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}
.trusted-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.trusted-row {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.trusted-row .logo {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  padding: 8px 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.trusted-row .logo:hover { opacity: 1; }
@media (max-width: 920px) {
  .press-featured { grid-template-columns: 1fr; }
  .press-featured .pf-art { min-height: 200px; }
  .press-grid { grid-template-columns: 1fr; }
}

/* =========================
   FAQ
   ========================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
}
.faq-item {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.18s ease;
}
.faq-item.open {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  color: var(--ink);
}
.faq-q .chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  color: var(--ink-2);
  flex-shrink: 0;
}
.faq-item.open .chev { transform: rotate(180deg); background: var(--blue); color: #fff; }
.faq-a {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* =========================
   FINAL CTA banner
   ========================= */
.final-cta {
  background: var(--blue);
  color: #fff;
  padding: clamp(72px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset-inline-end: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.final-cta::after {
  content: '';
  position: absolute;
  inset-inline-start: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin-bottom: 20px;
}
body[data-lang="ar"] .final-cta h2 { line-height: 1.22; }
.final-cta p {
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 36px;
  opacity: 0.92;
  line-height: 1.65;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   Smart Tech badge / mini callout
   ========================= */
.smart-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 193, 0, 0.16), rgba(3, 93, 252, 0.16));
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.smart-callout::before {
  content: '✦';
  color: var(--gold);
  font-size: 16px;
}
