/* ============================================================================
   SINORA STUDIO — Persian (FA) font + RTL layer
   ----------------------------------------------------------------------------
   Loaded LAST in <head> so it overrides the Turkish inline <style> blocks.

   Font mapping (per brief):
     • Major headings (H1 / big section titles) ....... Rey  ("w_Ray Extra Black")
     • Subtitles / section descriptions / UI .......... IranSans
     • Body / paragraphs / FAQ / article text ......... Parastoo

   Technique: we alias the Turkish display/body font names (Cormorant Garamond,
   Geist, Inter) to local Persian fonts via @font-face, so the existing markup
   picks up the correct Persian font WITHOUT having to touch every selector.
   No external font CDN is used — all Persian fonts are local.
   ========================================================================== */

/* ---- Persian font faces (local) ---- */
@font-face {
  font-family: "w_Ray Extra Black";
  src: url("fonts/w_Ray Extra Black.ttf") format("truetype");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IranSans";
  src: url("fonts/iran-sans.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IranSans";
  src: url("fonts/IRAN-Sans-Bold.ttf") format("truetype");
  font-weight: 600 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Parastoo";
  src: url("fonts/Parastoo-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Parastoo";
  src: url("fonts/Parastoo-Medium.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Parastoo";
  src: url("fonts/Parastoo-SemiBold.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Parastoo";
  src: url("fonts/Parastoo-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---- Alias Turkish font names → Persian fonts (so existing markup adapts) ---- */
/* Cormorant Garamond + Geist were used for display headings → use Rey */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/IRAN-Sans-Bold.ttf") format("truetype");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/IRAN-Sans-Bold.ttf") format("truetype");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
/* Inter was the UI / supporting font → use IranSans */
@font-face {
  font-family: "Inter";
  src: url("fonts/iran-sans.ttf") format("truetype");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* ---- Direction & base typography ---- */
html { direction: rtl; }
body {
  font-family: "IranSans", "Tahoma", sans-serif;
  text-align: right;
  font-size: 16px;
}

/* Major display headings → Rey */
/* Rey is reserved for the big DISPLAY headings only (short Persian phrases).
   Using it on long text or the diagnosis titles mashes words together. */
.font-serif,
.diagnosis-luxury-title,
.hero h1, .section-header h2,
#reel-system-title, #service-builder-title, #reel-finder-title, .diagnosis-reveal-btn {
  font-family: "w_Ray Extra Black", "IranSans", sans-serif !important;
  font-weight: 900;
  letter-spacing: 0;
  word-spacing: 0.05em;
}

/* Tidy, breathing line-height for the multi-line Persian section titles in Rey
   (overrides Turkish leading-tight / leading-[1.0x] that cramps Persian) */
h2.font-serif,
#reel-system-title,
#service-builder-title,
#reel-finder-title {
  line-height: 1.5 !important;
}
.hero h1 { line-height: 1.18 !important; }

/* The diagnosis intro title is a LONG Persian sentence - keep it editorial, not poster-sized. */
.diagnosis-luxury-title {
  font-family: "w_Ray Extra Black", "IranSans", sans-serif !important;
  font-size: clamp(30px, 3.2vw, 44px) !important;
  line-height: 1.44 !important;
  max-width: 780px !important;
  margin-bottom: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  word-spacing: 0.06em;
  text-wrap: balance;
}

@media (min-width: 1025px) {
  .diagnosis-luxury-title {
    font-size: clamp(28px, 2.9vw, 40px) !important;
    line-height: 1.42 !important;
  }
}

/* Everything else (incl. the diagnosis-tool titles that used Cormorant) → IranSans */
h1:not(.font-serif):not(.diagnosis-luxury-title),
h2:not(.font-serif):not(.diagnosis-luxury-title):not(.sinora-founder-title),
h3, h4, h5, h6,
.diagnosis-header h1, .diagnosis-start h2, .question-card h2, .result-heading h2,
.dx-package-name, .dx-reasoning-num, .dx-gift-title {
  font-family: "IranSans", sans-serif !important;
  letter-spacing: 0;
}

/* ---- Latin runs (brand name, numbers, codes, technical words) stay LTR ---- */
.fa-latin {
  direction: ltr;
  unicode-bidi: isolate;
  font-family: "Segoe UI", "Tahoma", Arial, sans-serif;
}

/* keep monospace ref codes LTR */
.dx-ref-code, code, kbd, samp { direction: ltr; unicode-bidi: isolate; }

/* ---- RTL helpers ---- */
/* Flip directional CTA arrows (right-pointing → becomes left-pointing in RTL) */
.rtl-flip { display: inline-block; transform: scaleX(-1); }

/* Before/after compare slider: keep drag direction physical on the RTL page. */
.fa-ba-phone,
.fa-ba-slider__stage {
  direction: ltr;
}

.fa-ba-slider__stage {
  touch-action: none;
  line-height: 0;
}

.fa-ba-slider__base,
.fa-ba-slider__clip-img {
  user-select: none;
  -webkit-user-drag: none;
}

.fa-ba-slider__base {
  display: block;
  width: 100%;
  height: auto;
}

.fa-ba-slider__clip {
  z-index: 10;
}

.fa-ba-slider__clip-img {
  display: block;
  max-width: none;
  height: auto;
}

.fa-ba-slider__badge {
  font-family: "w_Ray Extra Black", "IranSans", sans-serif !important;
  letter-spacing: 0 !important;
}

.fa-ba-slider__handle {
  cursor: ew-resize;
  touch-action: none;
}

.fa-ba-slider__stage.is-dragging .fa-ba-slider__handle {
  cursor: grabbing;
}

@media (max-width: 767px) {
  #sss .faq-a {
    padding-right: 0.9rem !important;
    padding-left: 0.9rem !important;
  }

  footer .lg\:col-span-4 > div.font-serif.border-l-2 {
    border-left: 0 !important;
    border-right: 2px solid rgba(210, 171, 103, 0.3) !important;
    padding-left: 0 !important;
    padding-right: 1rem !important;
    text-align: center;
  }

  footer .footer-link:hover {
    transform: none;
  }
}

/* ---- RTL refinements for linked Persian pages ---- */
input, textarea, select { text-align: right; }

.legal-content ul li {
  padding-left: 0;
  padding-right: 22px;
}
.legal-content ul li::before {
  left: auto;
  right: 0;
}

/* ---- Language switch (TR / FA) — minimal, premium ---- */
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(210,171,103,0.25);
  border-radius: 8px; overflow: hidden;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif; direction: ltr;
}
.lang-switch a,
.lang-switch span.is-active {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 10px; min-width: 34px; text-decoration: none;
  transition: color .25s ease, background .25s ease;
}
.lang-switch a { color: rgba(210,171,103,0.6); }
.lang-switch a:hover { color: #f3d18c; background: rgba(210,171,103,0.08); }
.lang-switch .is-active { color: #030813; background: linear-gradient(135deg,#f3d18c,#d2ab67); }
.lang-switch-divider { width: 1px; height: 18px; background: rgba(210,171,103,0.2); }

/* ---- Persian readability pass: body copy only, display headings stay intact ---- */
:root {
  --fa-copy-strong: #dce2ea;
  --fa-copy: #ccd4df;
  --fa-copy-muted: #b7c1cf;
}

body {
  line-height: 1.75;
}

.text-gray-400 { color: var(--fa-copy) !important; }
.text-gray-500 { color: var(--fa-copy-muted) !important; }

body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).font-light {
  font-weight: 500 !important;
}

body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-\[11px\],
body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-\[12px\],
body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-xs {
  font-size: 13px !important;
}

body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-\[12\.5px\],
body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-\[13px\] {
  font-size: 14px !important;
}

body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-\[13\.5px\],
body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-\[14px\] {
  font-size: 14.5px !important;
}

body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-\[14\.5px\],
body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6).text-sm {
  font-size: 15px !important;
}

body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6)[class*="tracking-"] {
  letter-spacing: 0.015em !important;
}

[class~="text-white/45"],
[class~="text-white/50"],
[class~="text-white/55"],
[class~="text-white/60"],
[class~="text-white/68"] {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Shared navigation, flow and footer copy */
.site-header .nav-link,
.footer-link {
  color: var(--fa-copy);
  font-weight: 500;
}

.footer-link {
  font-size: 15px;
}

.flow-node-text {
  color: var(--fa-copy);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

/* Service Builder supporting copy */
.service-builder-section {
  --sinora-cream-muted: var(--fa-copy);
}

.sb-header p,
.sb-mode-tab p,
.sb-suggestion,
.sb-start-sub,
.sb-honest p,
.sb-addon-desc,
.sb-addon-check,
.sb-firstorder-text small,
.sb-sample-intro,
.sb-sample-note,
.sb-pkg-anchor p,
.sb-pkg-tagline,
.sb-pkg-features li,
.sb-pkg-note,
.sb-pkg-foot,
.sb-spot-lead,
.sb-spot-content p,
.sb-whatsapp-block p,
.sb-result-item p,
.sb-result-item ul,
.sb-disclaimer {
  color: var(--fa-copy);
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 500;
}

.sb-microcopy,
.sb-panel-label,
.sb-summary-kicker,
.sb-result-item span,
.sb-multi-hint,
.sb-addon-price,
.sb-sample-badge,
.sb-pkg-role,
.sb-pkg-badge,
.sb-spot-kicker {
  font-size: 13px;
  letter-spacing: 0.03em;
}

.sb-option-card,
.sb-spot-tab,
.sb-action-btn,
.sb-pkg-cta,
.sb-sample-cta {
  font-size: 15px;
  line-height: 1.65;
}

.sb-message-area {
  color: var(--fa-copy-strong);
  font-size: 14.5px;
  line-height: 1.85;
}

/* Price packages — larger & more eye-catching for Persian readability */
.sb-pkg-name { font-size: 1.5rem !important; line-height: 1.4; }
.sb-pkg-features li { font-size: 14.5px !important; line-height: 1.75; }
.sb-pkg-tagline { font-size: 14.5px !important; line-height: 1.8; }
.sb-pkg-cta { font-size: 15px !important; font-weight: 700; }
.sb-pkg-role { font-size: 12.5px !important; letter-spacing: 0.02em; }
.sb-pkg-price, .sb-pkg-now { letter-spacing: 0; }
.sb-pkg-now { font-size: 1.7rem !important; }

/* Service builder — summary title / "اولین انتخاب را انجام دهید" */
[data-sb-service-name] {
  font-family: "w_Ray Extra Black", "IRANSans", sans-serif !important;
  font-weight: 900;
  letter-spacing: 0;
  word-spacing: 0.04em;
}

/* Strategy layer — Rey headings + dark copy on golden band */
.sinora-strategy-layer .strategy-title,
.sinora-strategy-layer .strategy-card-title {
  font-family: "w_Ray Extra Black", "IRANSans", sans-serif !important;
  font-weight: 900;
  letter-spacing: 0;
  word-spacing: 0.04em;
  color: #0a0806 !important;
}

.sinora-strategy-layer .strategy-desc,
.sinora-strategy-layer .strategy-card-desc,
.sinora-strategy-layer .strategy-eyebrow {
  color: rgba(10, 8, 6, 0.72) !important;
}

/* Diagnosis copy loaded from the compiled tool */
.sinora-diagnosis {
  --cream-muted: var(--fa-copy);
}

.diagnosis-start p:not(.step-label),
.dynamic-visual span,
.package-card p,
.whatsapp-block p,
.result-section p,
.whatsapp-note {
  color: var(--fa-copy);
  font-weight: 500;
  line-height: 1.85;
}

.option-card,
.primary-button,
.secondary-button,
.outline-link,
.text-button,
.message-box {
  font-size: 15px;
  line-height: 1.7;
}

/* Diagnosis and reel selector typography polish */
.diagnosis-luxury-eyebrow,
.diagnosis-premium-pill span,
.diagnosis-visual-badge,
.diagnosis-signal-row,
.step-label,
.diagnosis-eyebrow {
  letter-spacing: 0.025em !important;
  text-transform: none !important;
}

.diagnosis-highlight {
  font-style: normal !important;
  white-space: normal;
  color: #e8c878 !important;
  background: linear-gradient(120deg, #f6dc8e 0%, #d7a84e 52%, #c9923f 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 900 !important;
  filter: drop-shadow(0 0 14px rgba(210, 171, 103, 0.22));
}

.diagnosis-luxury-actions {
  margin-top: 28px !important;
  gap: 18px !important;
}

.diagnosis-premium-pill b {
  color: var(--fa-copy-strong) !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
  font-weight: 700 !important;
  margin-top: 8px !important;
}

.diagnosis-node,
.diagnosis-signal-row b {
  font-size: 12.5px !important;
  line-height: 1.55 !important;
}

#tanilama.diagnosis-open > .diagnosis-form-wrap {
  max-height: 2200px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.diagnosis-start h2,
.question-card h2,
.result-heading h2 {
  font-size: clamp(24px, 2.25vw, 32px) !important;
  line-height: 1.42 !important;
  font-weight: 800 !important;
  word-spacing: 0.035em;
  text-wrap: balance;
}

.diagnosis-start p:not(.step-label) {
  max-width: 32rem;
  font-size: 15.5px !important;
}

.question-card {
  text-align: right;
}

.option-card {
  text-align: right !important;
}

.option-card span:first-child {
  color: var(--fa-copy-strong);
  font-weight: 500;
  line-height: 1.8;
}

.dynamic-visual p,
.package-card h3,
.whatsapp-block h3 {
  line-height: 1.45 !important;
}

.reel-finder-section,
.reel-finder-section * {
  font-family: "IranSans", "Tahoma", sans-serif !important;
}

.reel-finder-badge,
.reel-finder-result-label,
.reel-finder-progress {
  letter-spacing: 0.025em !important;
  text-transform: none !important;
}

.reel-finder-heading h2 {
  max-width: 980px !important;
  margin-inline: auto !important;
  font-size: clamp(32px, 3.25vw, 46px) !important;
  line-height: 1.32 !important;
  letter-spacing: 0 !important;
  word-spacing: 0.035em !important;
  font-weight: 800 !important;
  text-wrap: balance;
}

.reel-finder-heading p {
  color: var(--fa-copy) !important;
  font-size: 16px !important;
  line-height: 2 !important;
  font-weight: 500 !important;
}

.reel-finder-question-copy strong {
  font-size: 15.5px !important;
  line-height: 1.75 !important;
  font-weight: 800 !important;
}

.reel-finder-question-copy small,
.reel-finder-option,
.reel-finder-insight p,
.reel-finder-use p,
.reel-finder-helper,
.reel-finder-process-step {
  color: var(--fa-copy) !important;
  font-size: 14.5px !important;
  line-height: 1.85 !important;
  font-weight: 500 !important;
}

.reel-finder-result h3 {
  font-size: clamp(24px, 2.15vw, 30px) !important;
  line-height: 1.38 !important;
  letter-spacing: 0 !important;
  font-weight: 800 !important;
}

/* Contact and legal pages */
.contact-page--fa .contact-hero p,
.contact-page--fa .contact-section-head p,
.contact-page--fa .contact-path-card p,
.contact-page--fa .contact-panel > p,
.contact-page--fa .contact-step-card p,
.contact-page--fa .contact-faq-item p,
.contact-page--fa .contact-final p,
.contact-page--fa .contact-form-note {
  color: var(--fa-copy);
  font-family: "w_Ray Extra Black", "Ray", "IRANSans", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  font-weight: 500;
}

.contact-field label,
.contact-field input,
.contact-field select,
.contact-field textarea,
.contact-message-box {
  font-size: 14.5px;
  line-height: 1.75;
}

.legal-content p,
.legal-content li {
  color: var(--fa-copy) !important;
  font-size: 16px !important;
  line-height: 2 !important;
  font-weight: 500 !important;
}

/* Persian AI guide hub */
.ai-page {
  direction: rtl;
  text-align: right;
  font-family: "IranSans", "Parastoo", sans-serif;
}

.ai-page .aih-nav,
.ai-page .aih-mobile,
.ai-page .aih-hero,
.ai-page .aih-panel,
.ai-page .aih-card,
.ai-page .aih-strip,
.ai-page .aih-footer {
  font-family: "IranSans", "Parastoo", sans-serif;
}

.ai-page .aih-menu a,
.ai-page .aih-footer-links a {
  font-size: 15px;
  font-weight: 600;
}

.ai-page .aih-hero-sub {
  max-width: 52ch;
  color: var(--fa-copy);
  font-size: 17px;
  line-height: 2;
}

.ai-page .aih-h2 {
  line-height: 1.35;
}

.ai-page .aih-panel {
  text-align: right;
}

.ai-page .aih-topic,
.ai-page .aih-card-body,
.ai-page .aih-why-item {
  text-align: right;
}

.ai-page .aih-topic p,
.ai-page .aih-card-body p,
.ai-page .aih-why-item p,
.ai-page .aih-strip-body p {
  color: var(--fa-copy);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.ai-page .aih-topic h3,
.ai-page .aih-card-body h3,
.ai-page .aih-why-item h3 {
  font-size: 17px;
  line-height: 1.65;
}

.ai-page .aih-topic-go {
  right: auto;
  left: 17px;
}

.ai-page .aih-card {
  min-height: 220px;
}

.ai-page .aih-card-body {
  padding: 22px;
  gap: 12px;
}

.ai-page .aih-card-foot {
  margin-top: auto;
  font-size: 13px;
}

.ai-page .aih-strip {
  background: radial-gradient(90% 160% at 92% 50%, rgba(215, 168, 78, 0.12), transparent 60%), var(--bg-card);
}

.ai-page .aih-strip-side {
  align-items: flex-start;
}

.ai-page .aih-guide-section {
  position: relative;
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: 0;
  transform: translateX(50%);
}

.ai-page .fgs,
.ai-page .fgs-viewport,
.ai-page .fgs-card,
.ai-page .fgs-preview,
.ai-page .fgs-arrow,
.ai-page .fgs-dots {
  direction: ltr;
}

.ai-page .fgs-copy,
.ai-page .fgs-book {
  direction: rtl;
  text-align: right;
}

.ai-page .fgs-copy h3 {
  max-width: 470px;
  font-family: "IranSans", "Tahoma", sans-serif !important;
  font-size: clamp(34px, 3.15vw, 46px);
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: 0;
  word-spacing: 0.04em;
  text-wrap: balance;
  unicode-bidi: plaintext;
}

.ai-page .fgs-meta,
.ai-page .fgs-badge {
  font-size: 13px;
}

.ai-page .fgs-eyebrow {
  letter-spacing: 0.08em;
}

.ai-page .fgs-meta {
  color: var(--fa-copy);
  font-weight: 500;
  line-height: 1.9;
}

.ai-page .fgs-badge {
  min-height: 32px;
  line-height: 1;
  font-weight: 700;
}

.ai-page .fgs-book strong {
  font-family: "IranSans", "Tahoma", sans-serif !important;
  line-height: 1.22;
  letter-spacing: 0;
  text-align: right;
  word-spacing: 0.04em;
}

.ai-page .fgs-cta svg {
  transform: scaleX(-1);
}

.ai-page .fgs-cta:hover svg {
  transform: translateX(-3px) scaleX(-1);
}

.ai-page .fgs-book-kicker {
  right: 28px;
  left: auto;
}

.ai-page .fgs-book-mark {
  right: auto;
  left: 24px;
}

.ai-page .aih-footer-inner {
  text-align: right;
}

.ai-page .art-hero {
  direction: rtl;
}

.ai-page .art-hero > div:first-child {
  justify-self: end;
}

.ai-page .art-cat {
  min-height: 34px;
  padding: 7px 14px;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
  align-items: center;
}

.ai-page .art-cat svg {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.ai-page .art-hero h1 {
  max-width: 15.5em;
  font-family: "IranSans", "Tahoma", sans-serif !important;
  font-size: clamp(34px, 3.7vw, 44px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  word-spacing: 0.035em;
  text-wrap: balance;
  unicode-bidi: plaintext;
}

.ai-page .art-summary {
  color: var(--fa-copy);
  font-size: 17px;
  line-height: 2;
  font-weight: 500;
}

.ai-page .art-meta {
  gap: 9px;
}

.ai-page .art-meta .m {
  min-height: 34px;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 700;
}

.ai-page .art-meta .m svg {
  flex: 0 0 13px;
}

.ai-page .art-quote {
  border-left-width: 1px;
  border-right: 3px solid var(--gold);
}

.ai-page .art-quote p,
.ai-page .art-prose p,
.ai-page .art-step p {
  color: var(--fa-copy);
  line-height: 1.95;
  font-weight: 500;
}

.ai-page .art-prose h2 {
  line-height: 1.55;
}

.ai-page .art-checks li {
  padding-left: 0;
  padding-right: 34px;
  color: var(--fa-copy);
  line-height: 1.85;
}

.ai-page .art-checks li::before {
  left: auto;
  right: 0;
}

.ai-page .art-checks li::after {
  left: auto;
  right: 7px;
}

.ai-page .art-steps::before {
  left: auto;
  right: 17px;
}

.ai-page .art-step {
  padding-left: 0;
  padding-right: 52px;
}

.ai-page .art-step-n {
  left: auto;
  right: 0;
}

@media (max-width: 620px) {
  .ai-page .aih-wrap {
    padding-inline: 18px;
  }

  .ai-page .aih-hero h1 {
    font-size: 42px;
    line-height: 1.28;
  }

  .ai-page .aih-hero-sub {
    font-size: 16px;
  }

  .ai-page .aih-topic p,
  .ai-page .aih-card-body p,
  .ai-page .aih-why-item p,
  .ai-page .aih-strip-body p {
    font-size: 14.5px;
  }

  .ai-page .fgs-copy h3 {
    max-width: none;
    font-size: 30px;
    line-height: 1.34;
  }

  .ai-page .art-hero h1 {
    max-width: none;
    font-size: 34px;
    line-height: 1.38;
  }

  .ai-page .art-summary {
    font-size: 16px;
  }

  .ai-page .fgs-book-kicker {
    right: 20px;
    left: auto;
  }

  .ai-page .fgs-book-mark {
    right: auto;
    left: 16px;
  }
}

/* Strategy / founder layer section — full Rey */
.sinora-founder-wrap,
.sinora-founder-wrap .sinora-founder-eyebrow,
.sinora-founder-wrap .sinora-founder-title,
.sinora-founder-wrap .sinora-founder-title strong,
.sinora-founder-wrap .sinora-founder-desc,
.sinora-founder-wrap .sinora-founder-btn,
.sinora-founder-wrap .sinora-founder-card h3,
.sinora-founder-wrap .sinora-founder-card p,
.sinora-founder-wrap .sinora-founder-bottom {
  font-family: "w_Ray Extra Black", "IranSans", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  word-spacing: 0.05em;
}

.sinora-founder-wrap .sinora-founder-desc,
.sinora-founder-wrap .sinora-founder-card p {
  font-weight: 500 !important;
  line-height: 1.72 !important;
}
