/* ─── mwq3e marketing landing — cinematic ─── */
:root {
  /* Dark palette (default) */
  --bg: #0a0908;
  --bg-elev: #14110f;
  --gold: #c9a961;
  --gold-bright: #e8c26b;
  --gold-deep: #8a7340;
  --ink: #f5f1e8;
  --ink-muted: #a89c87;
  --hairline: rgba(201, 169, 97, 0.18);
  --scrim-start: rgba(10, 9, 8, 0.55);
  --scrim-end: rgba(10, 9, 8, 0.92);
  --nav-bg: rgba(10, 9, 8, 0.55);
  --card-grad-end: rgba(10, 9, 8, 0.6);
  --gold-tint: rgba(201, 169, 97, 0.06);
  --img-filter: brightness(0.85) contrast(1.05) saturate(0.85);
  --work-img-filter: brightness(0.78) contrast(1.04) saturate(0.85);
  --work-img-filter-hover: brightness(0.95) contrast(1.04) saturate(1);
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --arabic: 'Noto Naskh Arabic', 'Tajawal', sans-serif;
}

/* Light palette — flip only surfaces + ink, keep gold accent */
html[data-theme="light"] {
  --bg: #faf7f2;
  --bg-elev: #f1ebdf;
  --gold: #a8853d;
  --gold-bright: #c9a961;
  --gold-deep: #6e5827;
  --ink: #2a2520;
  --ink-muted: #7a6f5d;
  --hairline: rgba(168, 133, 61, 0.22);
  --scrim-start: rgba(250, 247, 242, 0.35);
  --scrim-end: rgba(10, 9, 8, 0.55);
  --nav-bg: rgba(250, 247, 242, 0.78);
  --card-grad-end: rgba(250, 247, 242, 0.35);
  --gold-tint: rgba(168, 133, 61, 0.08);
  --img-filter: brightness(0.98) contrast(1.02) saturate(0.95);
  --work-img-filter: brightness(0.92) contrast(1.02) saturate(0.95);
  --work-img-filter-hover: brightness(1.05) contrast(1.02) saturate(1);
  color-scheme: light;
}
:root { color-scheme: dark; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
html[lang="ar"] body { font-family: var(--arabic), var(--sans); direction: rtl; }

/* Bilingual visibility — show only the active language */
html[lang="en"] .lang-ar { display: none !important; }
html[lang="ar"] .lang-en { display: none !important; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 {
  font-family: var(--arabic), var(--serif);
  font-weight: 700;
}

/* ─── Liquid-glass nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}
html[lang="ar"] .brand { font-family: var(--arabic), var(--serif); }
.brand-dot { color: var(--ink); margin: 0 6px; }

.nav-actions { display: flex; gap: 14px; align-items: center; }
.lang-toggle, .cta-ghost, .theme-toggle {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-toggle:hover, .cta-ghost:hover, .theme-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.theme-toggle {
  width: 38px; height: 38px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─── Sections ─── */
section { padding: 120px 32px; max-width: 1280px; margin: 0 auto; }

/* ─── Hero with parallax ─── */
.hero {
  min-height: 100vh;
  padding: 0;
  max-width: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.08);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--scrim-start) 0%, var(--scrim-end) 100%);
}
@media (max-width: 768px) {
  .hero-bg { background-attachment: scroll; }
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 880px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(201, 169, 97, 0.05);
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink-muted);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.hero-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -12px rgba(201, 169, 97, 0.55);
}
.hero-cta .arrow { transition: transform 0.3s ease; }
html[lang="ar"] .hero-cta .arrow { transform: scaleX(-1); }
.hero-cta:hover .arrow { transform: translateX(4px); }
html[lang="ar"] .hero-cta:hover .arrow { transform: scaleX(-1) translateX(4px); }

/* ─── Manifesto ─── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .manifesto { grid-template-columns: 1fr; gap: 56px; } }
.manifesto-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 28px;
}
.manifesto-text h2 .accent { color: var(--gold); }
.manifesto-text p {
  color: var(--ink-muted);
  font-size: 1.06rem;
  margin-bottom: 18px;
}
.manifesto-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.manifesto-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--img-filter);
}
.manifesto-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(201, 169, 97, 0.12) 100%);
  pointer-events: none;
}

/* ─── Process — 3 steps ─── */
.process { text-align: center; }
.process > h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
}
.process > .section-sub {
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 72px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 40px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  text-align: start;
  transition: all 0.4s ease;
}
.step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--gold-tint) 100%);
}
.step-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.step h3 { font-size: 1.4rem; margin-bottom: 12px; }
.step p { color: var(--ink-muted); font-size: 0.95rem; }

/* ─── Type picker ─── */
.types { text-align: center; }
.types > h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
}
.types > h2 .accent { color: var(--gold); font-style: italic; }
.types > .section-sub {
  color: var(--ink-muted);
  max-width: 580px;
  margin: 0 auto 72px;
}
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .type-grid { grid-template-columns: 1fr; } }
.type-card {
  position: relative;
  padding: 44px 32px 36px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  text-align: start;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.type-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.type-card.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--gold-tint) 100%);
}
.type-card.selected::after {
  content: '✓';
  position: absolute;
  top: 16px;
  font-size: 0.78rem;
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
html[lang="en"] .type-card.selected::after { right: 16px; }
html[lang="ar"] .type-card.selected::after { left: 16px; }
.type-icon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.type-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 600;
}
.type-desc {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}
.type-uses {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.type-uses li {
  font-size: 0.82rem;
  color: var(--ink-muted);
  padding: 6px 0;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.type-uses li::before {
  content: '—';
  color: var(--gold);
}
.type-pick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink-muted);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.type-card:hover .type-pick {
  color: var(--gold);
  border-color: var(--gold);
}
.type-card.selected .type-pick {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* Type chip shown on pricing section header when type is selected */
.pricing-type-chip {
  display: none;
  margin: 18px auto 0;
  padding: 6px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.pricing[data-selected-type] .pricing-type-chip { display: inline-block; }

/* ─── Featured Work ─── */
.work { text-align: center; }
.work > h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
}
.work > h2 .accent { color: var(--gold); font-style: italic; }
.work > .section-sub {
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 72px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  text-align: start;
  transition: all 0.4s ease;
  cursor: pointer;
}
.work-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.work-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: var(--work-img-filter);
  transition: filter 0.5s ease, transform 0.7s ease;
  position: relative;
}
.work-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--card-grad-end) 100%);
}
.work-card:hover .work-card-img {
  filter: var(--work-img-filter-hover);
  transform: scale(1.03);
}
.work-card-body { padding: 28px; }
.work-card-sector {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.work-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: var(--serif);
}
.work-card p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ─── Pricing ─── */
.pricing { text-align: center; }
.pricing > h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
}
.pricing > h2 .accent { color: var(--gold); font-style: italic; }
.pricing > .section-sub {
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 72px;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  padding: 44px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  text-align: start;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.tier:hover { transform: translateY(-4px); }
.tier.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--gold-tint) 100%);
  position: relative;
}
.tier-tag {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg);
  padding: 4px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
}
html[lang="ar"] .tier-tag { left: auto; right: 50%; transform: translateX(50%); }
.tier-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 8px;
}
.tier-price .amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
}
.tier-price .unit {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.tier-desc {
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.55;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.tier-features li {
  padding: 10px 0;
  border-top: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 0.92rem;
  display: flex;
  gap: 12px;
}
.tier-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}
html[lang="ar"] .tier-features li::before { order: 1; }
.tier-cta {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.tier:not(.featured) .tier-cta {
  border: 1px solid var(--hairline);
  color: var(--ink-muted);
}
.tier:not(.featured) .tier-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.tier.featured .tier-cta {
  background: var(--gold);
  color: var(--bg);
}
.tier.featured .tier-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

/* ─── Dashboard add-on ─── */
.dashboard-addon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .dashboard-addon { grid-template-columns: 1fr; gap: 48px; } }
.dashboard-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 24px;
}
.dashboard-text h2 .accent { color: var(--gold); font-style: italic; }
.dashboard-text p {
  color: var(--ink-muted);
  font-size: 1.02rem;
  margin-bottom: 14px;
}
.dashboard-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.dashboard-features li {
  padding: 9px 0;
  color: var(--ink);
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.dashboard-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.65rem;
}
.dashboard-toggle-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  margin-top: 12px;
}
.dashboard-toggle-row.on { border-color: var(--gold); }
.dashboard-toggle-label {
  flex: 1;
}
.dashboard-toggle-label strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.dashboard-toggle-label span {
  color: var(--ink-muted);
  font-size: 0.86rem;
}
.dashboard-switch {
  position: relative;
  width: 52px; height: 28px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.dashboard-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--ink-muted);
  transition: all 0.3s ease;
}
html[lang="en"] .dashboard-switch::after { left: 3px; }
html[lang="ar"] .dashboard-switch::after { right: 3px; }
.dashboard-toggle-row.on .dashboard-switch { background: var(--gold); border-color: var(--gold); }
.dashboard-toggle-row.on .dashboard-switch::after { background: var(--bg); }
html[lang="en"] .dashboard-toggle-row.on .dashboard-switch::after { left: 27px; }
html[lang="ar"] .dashboard-toggle-row.on .dashboard-switch::after { right: 27px; }

.dashboard-mock {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--bg-elev);
  aspect-ratio: 5 / 4;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dashboard-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.dashboard-mock-bar span {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--hairline);
}
.dashboard-mock-bar span:first-child { background: rgba(232, 116, 116, 0.6); }
.dashboard-mock-bar span:nth-child(2) { background: rgba(232, 197, 116, 0.6); }
.dashboard-mock-bar span:nth-child(3) { background: rgba(116, 232, 153, 0.6); }
.dashboard-mock-bar .url {
  margin-inline-start: 14px;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-muted);
  padding: 3px 12px;
  background: var(--bg);
  border-radius: 999px;
}
.dashboard-mock-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 12px;
  flex: 1;
}
.dashboard-mock-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 4px;
}
.dashboard-mock-side .item {
  height: 14px;
  border-radius: 3px;
  background: var(--hairline);
}
.dashboard-mock-side .item.active { background: var(--gold); height: 18px; }
.dashboard-mock-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 4px;
}
.dashboard-mock-content .h {
  height: 16px; width: 60%;
  background: var(--ink-muted);
  opacity: 0.45;
  border-radius: 3px;
}
.dashboard-mock-content .row {
  height: 10px;
  background: var(--ink-muted);
  opacity: 0.2;
  border-radius: 3px;
}
.dashboard-mock-content .row:nth-child(3) { width: 88%; }
.dashboard-mock-content .row:nth-child(4) { width: 95%; }
.dashboard-mock-content .row:nth-child(5) { width: 75%; }
.dashboard-mock-content .img {
  margin-top: 8px;
  height: 64px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-tint), var(--hairline));
  border: 1px dashed var(--gold);
}

/* ─── Testimonials ─── */
.testimonials { text-align: center; }
.testimonials > h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
}
.testimonials > h2 .accent { color: var(--gold); font-style: italic; }
.testimonials > .section-sub {
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 72px;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  padding: 40px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  text-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
}
.quote::before {
  content: '“';
  position: absolute;
  top: 8px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}
html[lang="en"] .quote::before { left: 20px; }
html[lang="ar"] .quote::before { right: 20px; content: '”'; }
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.65;
  margin: 36px 0 24px;
  flex: 1;
}
html[lang="ar"] .quote-text { font-family: var(--arabic), var(--serif); font-style: normal; }
.quote-attr {
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.quote-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.quote-role {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* ─── FAQ ─── */
.faq { max-width: 820px; }
.faq h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
  text-align: center;
}
.faq h2 .accent { color: var(--gold); font-style: italic; }
.faq > .section-sub {
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
}
.faq-item {
  border-top: 1px solid var(--hairline);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 8px 28px;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ─── CTA section ─── */
.cta {
  text-align: center;
  border-top: 1px solid var(--hairline);
  padding-top: 100px;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}
.cta h2 .accent { color: var(--gold); font-style: italic; }
.cta p {
  color: var(--ink-muted);
  max-width: 540px;
  margin: 0 auto 40px;
}
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-primary {
  padding: 16px 36px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.cta-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.cta-secondary {
  padding: 16px 36px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.cta-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ─── Footer ─── */
footer {
  text-align: center;
  padding: 48px 32px;
  border-top: 1px solid var(--hairline);
  color: var(--ink-muted);
  font-size: 0.85rem;
}
footer .brand { font-size: 1rem; display: block; margin-bottom: 8px; }

/* ─── Reveal animation (intersection observer) ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
