/* =====================================================
   FORMA WEB — AGENCY SITE
   Palette: warm graphite background (not pure black),
   gold/amber accent (premium, Gulf-appropriate),
   off-white text with careful opacity layering.
   Type: DM Serif Display (display, restrained) + DM Sans (body)
   Signature: large geometric F monogram in hero,
   pulsing gold glow, floating notification cards
===================================================== */
:root {
  --ink:         #0E0F0D;
  --ink-soft:    #181A17;
  --ink-card:    #1C1E1A;
  --ink-border:  #2A2D27;

  --gold:        #D4AF50;
  --gold-pale:   #F0D080;
  --gold-deep:   #A07828;
  --gold-glow:   rgba(212,175,80,0.15);

  --white:       #FFFFFF;
  --off-white:   #E8E6E0;
  --muted:       #7A7D75;
  --muted-2:     #4A4D45;

  --font-display: 'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-ar:      'Tajawal', sans-serif;

  --radius-s:  8px;
  --radius-m:  16px;
  --radius-l:  24px;

  --shadow-gold: 0 0 60px -20px rgba(212,175,80,0.3);
  --shadow-card: 0 20px 60px -20px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* === Premium lacquered black — visible shine === */
body {
  margin: 0;
  background-color: #0A0B09;
  background-image:
    /* strong top-center light source — like a spotlight from above */
    radial-gradient(
      ellipse 100% 55% at 50% -5%,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0.04) 30%,
      transparent 65%
    ),
    /* gold warmth pooling at bottom */
    radial-gradient(
      ellipse 80% 45% at 50% 105%,
      rgba(212,175,80,0.12) 0%,
      rgba(212,175,80,0.04) 40%,
      transparent 65%
    ),
    /* left-edge cool shine */
    radial-gradient(
      ellipse 40% 70% at -5% 40%,
      rgba(255,255,255,0.06) 0%,
      transparent 60%
    );
  background-attachment: fixed;
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Bold diagonal light streak — clearly visible */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    /* main diagonal shine band */
    linear-gradient(
      112deg,
      transparent 15%,
      rgba(255,255,255,0.025) 35%,
      rgba(255,255,255,0.07) 48%,
      rgba(255,255,255,0.10) 50%,
      rgba(255,255,255,0.07) 52%,
      rgba(255,255,255,0.025) 65%,
      transparent 85%
    ),
    /* secondary faint streak offset */
    linear-gradient(
      118deg,
      transparent 40%,
      rgba(255,255,255,0.03) 60%,
      rgba(255,255,255,0.05) 65%,
      transparent 80%
    );
}
body > * { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* === RTL support === */
html[lang="ar"] body { font-family: var(--font-ar); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { font-family: var(--font-ar); }

/* === Typography === */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 1rem; margin: 0; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.93rem; border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap; cursor: pointer;
}
.btn-gold {
  background: linear-gradient(
    90deg,
    var(--gold-deep) 0%,
    var(--gold) 40%,
    var(--gold-pale) 60%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  color: var(--ink);
  box-shadow: 0 6px 24px -8px rgba(212,175,80,0.5),
              inset 0 1px 0 rgba(255,255,255,0.25);
  transition: background-position 0.5s ease, transform 0.15s, box-shadow 0.15s;
}
.btn-gold:hover {
  background-position: 0% 0;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px -8px rgba(212,175,80,0.65),
              inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--ink-border);
  color: var(--off-white);
}
.btn-ghost:hover { border-color: var(--muted); color: var(--white); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost-sm {
  display: inline-flex; align-items: center;
  padding: 8px 16px; border-radius: 999px; font-size: 0.82rem;
  font-weight: 600; border: 1px solid var(--ink-border);
  color: var(--muted); transition: color 0.15s, border-color 0.15s;
}
.btn-ghost-sm:hover { color: var(--gold); border-color: var(--gold); }
.btn-gold-sm {
  display: inline-flex; align-items: center;
  padding: 10px 20px; border-radius: 999px; font-size: 0.88rem;
  font-weight: 600; background: var(--gold); color: var(--ink);
  transition: background 0.15s;
}
.btn-gold-sm:hover { background: var(--gold-pale); }

/* === Header === */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 15, 13, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 4px 24px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  padding-top: 16px; padding-bottom: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); font-weight: 400;
  flex-shrink: 0;
}
.logo-mark.small { width: 28px; height: 28px; font-size: 1rem; border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-en { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.logo-ar { font-family: var(--font-ar); font-size: 0.7rem; color: var(--muted); }

.nav { display: flex; gap: 32px; margin-left: auto; font-size: 0.9rem; }
.nav a { color: var(--muted); font-weight: 500; transition: color 0.15s; }
.nav a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-btn {
  background: var(--ink-card); border: 1px solid var(--ink-border);
  border-radius: 999px; padding: 7px 14px; font-size: 0.8rem;
  font-weight: 600; color: var(--muted);
  transition: color 0.15s, border-color 0.15s;
}
.lang-btn:hover { color: var(--gold); border-color: var(--gold); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.menu-toggle span { width: 22px; height: 1.5px; background: var(--off-white); border-radius: 2px; }

/* === Hero === */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 110px; min-height: 88vh;
  display: flex; align-items: center;
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,80,0.07) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink-card); border: 1px solid var(--ink-border);
  border-radius: 999px; padding: 7px 14px; font-size: 0.8rem;
  color: var(--muted); margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
h1 { font-size: clamp(2.6rem, 4.5vw, 4rem); margin-bottom: 24px; }
.h1-line { display: block; }
.h1-accent { color: var(--gold); font-style: italic; }
.h1-sub { color: var(--muted); font-size: 0.65em; font-style: normal; }
.hero-body { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.stat span { font-size: 0.78rem; color: var(--muted); }
.stat-sep { width: 1px; height: 32px; background: var(--ink-border); }

/* Hero visual */
.hero-visual {
  position: relative; height: 480px; display: flex;
  align-items: center; justify-content: center;
}
.brand-mark-large {
  width: 320px; height: 320px;
  animation: slowSpin 30s linear infinite;
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.floating-card {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(52,54,50,0.96) 0%,
    rgba(28,30,26,0.98) 100%
  );
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-m);
  padding: 14px 18px;
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 1px 0 0 rgba(255,255,255,0.06),
    0 0 20px -8px rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.card-a { top: 40px; left: 0; }
.card-icon { font-size: 1.4rem; }
.card-a strong { display: block; font-size: 0.88rem; color: var(--white); }
.card-a span { font-size: 0.78rem; color: var(--muted); }
.card-b {
  bottom: 60px; right: 0;
  font-size: 0.82rem; font-weight: 500; color: var(--off-white);
  padding: 12px 16px;
}
.card-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2DD4BF; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(45,212,191,0.6);
  animation: pulse 2s ease-in-out infinite;
}

/* === Sections === */
.section { padding: 100px 0; }
.section-alt {
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.03) 0%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      rgba(26,28,24,1) 0%,
      rgba(16,18,14,1) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(255,255,255,0.05);
}

/* === Services === */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  border: 1px solid var(--ink-border); border-radius: var(--radius-m); overflow: hidden;
}
.service-item {
  padding: 32px 28px; border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
}
.service-item:hover {
  background: linear-gradient(
    135deg,
    rgba(36,38,34,1) 0%,
    rgba(26,28,24,1) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.service-num { font-size: 0.75rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; display: block; margin-bottom: 12px; }
.service-item h3 { font-size: 1rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.service-item p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* === Work / Portfolio === */
.work-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 24px; }
.work-card { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--ink-border); }
.work-card-featured {
  background: linear-gradient(
    145deg,
    rgba(42,44,40,1) 0%,
    rgba(24,26,22,1) 50%,
    rgba(14,16,12,1) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 1px 0 0 rgba(255,255,255,0.05),
    0 20px 60px -20px rgba(0,0,0,0.6);
}

/* Browser mockup preview */
.work-preview { padding: 16px; }
.preview-bar {
  display: flex; align-items: center; gap: 6px;
  background: var(--ink-soft); border-radius: var(--radius-s);
  padding: 8px 12px; margin-bottom: 12px;
}
.preview-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-border); flex-shrink: 0; }
.preview-url { font-size: 0.72rem; color: var(--muted); margin-left: 8px; }
.preview-content { background: var(--ink); border-radius: var(--radius-s); padding: 14px; min-height: 180px; }
.preview-nav { height: 10px; background: var(--ink-border); border-radius: 4px; margin-bottom: 16px; width: 70%; }
.preview-hero-block { margin-bottom: 16px; }
.preview-headline { height: 12px; background: var(--muted-2); border-radius: 4px; margin-bottom: 8px; }
.preview-headline.short { width: 60%; }
.preview-body { height: 8px; background: var(--ink-border); border-radius: 4px; margin-bottom: 12px; width: 80%; }
.preview-btns { display: flex; gap: 8px; }
.preview-btn { height: 20px; border-radius: 999px; width: 80px; }
.preview-btn.solid { background: var(--gold-deep); }
.preview-btn.outline { border: 1px solid var(--muted-2); }
.preview-cards-row { display: flex; gap: 8px; }
.preview-card-sm { flex: 1; height: 40px; background: var(--ink-card); border-radius: var(--radius-s); }
.work-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; border-top: 1px solid var(--ink-border);
}
.work-meta strong { display: block; font-size: 0.92rem; color: var(--white); margin-bottom: 2px; }
.work-meta span { font-size: 0.78rem; color: var(--muted); }
.work-card-placeholder {
  background: var(--ink-card);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.work-placeholder-inner { text-align: center; padding: 32px; }
.placeholder-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px dashed var(--ink-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--muted); margin: 0 auto 16px;
}
.work-placeholder-inner p { color: var(--muted); font-size: 0.9rem; margin: 0 0 18px; }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.pricing-card {
  background: linear-gradient(
    160deg,
    rgba(38,40,36,1) 0%,
    rgba(18,20,16,1) 60%,
    rgba(14,15,13,1) 100%
  );
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-l); padding: 32px 28px;
  position: relative; transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 1px 0 0 rgba(255,255,255,0.04),
    0 20px 60px -20px rgba(0,0,0,0.7);
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 1px 0 0 rgba(255,255,255,0.06),
    0 30px 80px -20px rgba(0,0,0,0.8),
    0 0 30px -10px rgba(255,255,255,0.05);
}
.pricing-card-featured {
  border-color: rgba(212,175,80,0.6);
  background: linear-gradient(
    160deg,
    rgba(48,44,24,1) 0%,
    rgba(30,26,12,1) 50%,
    rgba(18,15,6,1) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(212,175,80,0.35),
    inset 1px 0 0 rgba(212,175,80,0.08),
    0 0 60px -16px rgba(212,175,80,0.4),
    0 20px 60px -20px rgba(0,0,0,0.6);
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.pricing-top { margin-bottom: 28px; }
.plan-name { font-size: 0.82rem; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 12px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--white); }
.price-unit { font-size: 0.9rem; color: var(--muted); }
.price-range { font-size: 0.78rem; color: var(--muted); margin: 0; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-features li {
  font-size: 0.88rem; color: var(--off-white); padding-left: 18px;
  position: relative;
}
.plan-features li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: 0.8rem;
}
.retainer-note {
  text-align: center; padding: 20px;
  border: 1px dashed var(--ink-border); border-radius: var(--radius-m);
}
.retainer-note p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* === Process === */
.process-steps { max-width: 720px; margin: 0 auto; }
.process-step { display: flex; gap: 28px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem;
}
.step-body h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.step-body p { color: var(--muted); font-size: 0.93rem; margin: 0; }
.process-connector {
  width: 1px; height: 40px; background: var(--ink-border);
  margin-left: 21px; margin-top: 6px; margin-bottom: 6px;
}

/* === CTA section === */
.cta-section {
  position: relative; overflow: hidden;
  padding: 100px 0; text-align: center;
  border-top: 1px solid var(--ink-border);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,80,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.cta-inner p { color: var(--muted); margin-bottom: 36px; font-size: 1.05rem; }
.cta-note { margin-top: 18px; font-size: 0.82rem; color: var(--muted); }

/* === Footer === */
.footer {
  border-top: 1px solid var(--ink-border);
  padding: 28px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-en { font-family: var(--font-display); color: var(--off-white); }
.footer-ar { font-family: var(--font-ar); font-size: 0.75rem; color: var(--muted); margin-left: 6px; }
.footer-copy { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* === Floating WhatsApp === */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.5);
  transition: transform 0.15s;
}
.float-wa:hover { transform: scale(1.08); }

/* === RTL direction fixes === */
html[lang="ar"] .plan-features li { padding-left: 0; padding-right: 18px; }
html[lang="ar"] .plan-features li::before { left: auto; right: 0; }
html[lang="ar"] .hero-body { margin-right: 0; }
html[lang="ar"] .hero-badge { flex-direction: row-reverse; }

/* === Responsive === */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; min-height: unset; }
  .hero { min-height: unset; padding: 80px 0; }
  .hero-visual { height: 260px; order: -1; }
  .brand-mark-large { width: 200px; height: 200px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-placeholder { min-height: 180px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .header-actions .btn-gold span { display: none; }
  h1 { font-size: 2.2rem; }
  .float-wa { bottom: 18px; right: 18px; width: 48px; height: 48px; }
}

/* === Get Started Modal === */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,11,9,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  width: 100%; max-width: 440px;
  background: linear-gradient(
    160deg,
    rgba(38,40,36,1) 0%,
    rgba(18,20,16,1) 60%,
    rgba(14,15,13,1) 100%
  );
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-l);
  padding: 36px 32px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.12);
}
.modal-box h3 { font-size: 1.5rem; margin-bottom: 8px; }
.modal-sub { color: var(--muted); font-size: 0.9rem; margin: 0 0 24px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink-card); border: 1px solid var(--ink-border);
  color: var(--muted); font-size: 1.2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.15s, border-color 0.15s;
}
.modal-close:hover { color: var(--white); border-color: var(--muted); }
#mockupForm { display: flex; flex-direction: column; gap: 16px; }
#mockupForm label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--off-white); font-weight: 500; }
#mockupForm input, #mockupForm select {
  background: var(--ink); border: 1px solid var(--ink-border);
  border-radius: var(--radius-s); padding: 11px 14px;
  color: var(--white); font-family: inherit; font-size: 0.92rem;
  transition: border-color 0.15s;
}
#mockupForm input:focus, #mockupForm select:focus { outline: none; border-color: var(--gold); }
#mockupForm select { cursor: pointer; }
#mockupForm button[type="submit"] { margin-top: 8px; }

html[lang="ar"] .modal-close { left: 16px; right: auto; }

/* === Accessibility === */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
