/* ═══════════════════════════════════════════════════════
   Nasaq Smart Systems — site styles
   ═══════════════════════════════════════════════════════ */
:root {
  --bg: #070c17;
  --bg-2: #0b1220;
  --bg-3: #111a2e;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --text: #e8edf7;
  --muted: #98a4bd;
  --muted-2: #6f7d99;
  --cyan: #22d3ee;
  --indigo: #6366f1;
  --violet: #a78bfa;
  --green: #34d399;
  --grad: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  --grad-soft: linear-gradient(135deg, rgba(34,211,238,.18), rgba(99,102,241,.18));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --font-en: 'Sora', 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  --font-ar: 'IBM Plex Sans Arabic', 'Sora', system-ui, -apple-system, sans-serif;
  --container: 1180px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body { font-family: var(--font-ar); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 { letter-spacing: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ── background orbs ─────────────────────────────── */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-orbs span {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35;
  animation: drift 24s ease-in-out infinite alternate;
}
.bg-orbs span:nth-child(1) { width: 640px; height: 640px; top: -220px; inset-inline-start: -160px; background: #1d4ed8; }
.bg-orbs span:nth-child(2) { width: 520px; height: 520px; top: 30%; inset-inline-end: -200px; background: #0e7490; animation-delay: -8s; }
.bg-orbs span:nth-child(3) { width: 480px; height: 480px; bottom: -200px; inset-inline-start: 30%; background: #4c1d95; animation-delay: -16s; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(60px,40px,0) scale(1.12); } }

/* ── buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 12px 22px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(99,102,241,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(34,211,238,.35); }
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }

/* ── nav ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(7,12,23,.72); border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.brand-text small { font-size: 12px; color: var(--muted); font-family: var(--font-ar); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2); color: var(--text);
  border-radius: 999px; padding: 8px 14px; font-size: 14px; font-weight: 600; font-family: var(--font-ar);
  transition: background .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,.1); }
.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(255,255,255,.04); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── hero ────────────────────────────────────────── */
.hero { padding: 80px 0 60px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.04); font-size: 13px; color: var(--muted); margin-bottom: 26px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52,211,153,.2); }
.hero h1 { font-size: clamp(38px, 5.2vw, 64px); font-weight: 800; letter-spacing: -.035em; }
.hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 18px; color: var(--muted); margin: 24px 0 34px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; color: var(--muted); font-size: 14px; }
.hero-points li::before { content: "✓"; color: var(--cyan); font-weight: 700; margin-inline-end: 8px; }

/* hero visual */
.hero-visual { position: relative; min-height: 460px; }
.glass {
  background: rgba(17,26,46,.72); border: 1px solid var(--line-2); border-radius: var(--radius);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--shadow);
}
.hero-visual .glass { position: absolute; animation: float 7s ease-in-out infinite; }
.card-main { inset-inline-start: 0; top: 30px; width: 74%; padding: 20px; z-index: 2; }
.card-head { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.pill { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.pill-green { background: rgba(52,211,153,.15); color: var(--green); }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.kpi { background: rgba(255,255,255,.04); border-radius: 12px; padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.kpi small { color: var(--muted-2); font-size: 11px; }
.kpi strong { font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.kpi .up { color: var(--green); font-size: 12px; font-weight: 600; }
.spark { width: 100%; height: 80px; }
.card-wa { inset-inline-end: 0; top: 0; width: 52%; padding: 16px; z-index: 3; animation-delay: -2s !important; }
.wa-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wa-ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(37,211,102,.15); display: grid; place-items: center; }
.wa-head strong { display: block; font-size: 14px; }
.wa-head small { color: var(--muted-2); font-size: 11px; }
.bubble { background: #14532d; border-radius: 14px; border-start-start-radius: 4px; padding: 10px 12px; font-size: 13px; line-height: 1.5; }
.bubble-status { text-align: end; color: #60a5fa; font-size: 11px; margin-top: 6px; }
.card-cal { inset-inline-end: 6%; bottom: 40px; width: 46%; padding: 14px; z-index: 4; animation-delay: -4s !important; display: flex; flex-direction: column; gap: 8px; }
.cal-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.cal-time { color: var(--muted-2); width: 38px; font-variant-numeric: tabular-nums; }
.cal-bar { flex: 1; padding: 6px 10px; border-radius: 8px; font-weight: 500; }
.b1 { background: rgba(34,211,238,.18); color: #a5f3fc; }
.b2 { background: rgba(99,102,241,.22); color: #c7d2fe; }
.b3 { background: rgba(52,211,153,.18); color: #a7f3d0; }
.card-rating { inset-inline-start: 4%; bottom: 0; padding: 12px 16px; z-index: 5; animation-delay: -5s !important; display: flex; flex-direction: column; gap: 4px; }
.stars { color: #fbbf24; letter-spacing: 2px; font-size: 16px; }
.card-rating small { color: var(--muted); font-size: 12px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── strip ───────────────────────────────────────── */
.strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.02); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 24px; display: flex; flex-direction: column; gap: 4px; border-inline-end: 1px solid var(--line); }
.stat:last-child { border-inline-end: 0; }
.stat strong { font-size: 34px; font-weight: 800; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 14px; }

/* ── sections ────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,.025), transparent); border-block: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
html[dir="rtl"] .kicker { letter-spacing: 0; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: transform .25s, border-color .25s, background .25s; position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .3s; }
.card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,.35); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; margin-bottom: 20px; }
.ic-1 { background: rgba(34,211,238,.14); } .ic-2 { background: rgba(52,211,153,.14); } .ic-3 { background: rgba(99,102,241,.18); }
.ic-4 { background: rgba(167,139,250,.16); } .ic-5 { background: rgba(251,191,36,.14); } .ic-6 { background: rgba(244,114,182,.14); }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }

/* features */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 40px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature-rev .feature-copy { order: 2; }
.feature h3 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.feature p { color: var(--muted); font-size: 16px; }
.checks { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.checks li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.checks li::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; background: rgba(34,211,238,.15); color: var(--cyan); font-size: 12px; font-weight: 800; display: grid; place-items: center; flex: none; }
.feature-art { display: grid; place-items: center; }

.art-profile { padding: 22px; width: min(100%, 380px); display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 800; font-size: 20px; color: #fff; }
.art-profile strong { display: block; font-size: 17px; }
.art-profile small { color: var(--muted); font-size: 13px; }
.tags { width: 100%; display: flex; gap: 8px; flex-wrap: wrap; }
.tags span { font-size: 12px; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--line-2); }

.art-flow { padding: 22px; display: flex; align-items: center; gap: 10px; width: min(100%, 460px); flex-wrap: wrap; justify-content: center; }
.flow-step { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 13px; }
.flow-step span { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); display: grid; place-items: center; font-size: 20px; }
.flow-step b { font-weight: 600; color: var(--muted); }
.flow-arrow { width: 26px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--indigo)); border-radius: 2px; position: relative; margin-bottom: 22px; }
html[dir="rtl"] .flow-arrow { background: linear-gradient(270deg, var(--cyan), var(--indigo)); }

.art-bars { padding: 26px 22px 14px; width: min(100%, 380px); height: 240px; display: flex; align-items: flex-end; gap: 14px; }
.bar { flex: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 8px; }
.bar i { display: block; width: 100%; height: var(--h); border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, var(--cyan), var(--indigo)); opacity: .85; animation: grow 1.2s cubic-bezier(.2,.8,.2,1) both; transform-origin: bottom; }
.bar small { color: var(--muted-2); font-size: 11px; }
@keyframes grow { from { transform: scaleY(0); } }

/* industries */
.ind { background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 20px; transition: border-color .25s, transform .25s; }
.ind:hover { border-color: rgba(99,102,241,.5); transform: translateY(-3px); }
.ind span { font-size: 28px; display: block; margin-bottom: 14px; }
.ind h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.ind p { color: var(--muted); font-size: 13.5px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
.steps li { background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.steps .n { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--cyan); margin-bottom: 14px; font-family: var(--font-en); }
.steps h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.steps p { color: var(--muted); font-size: 14.5px; }

/* why */
.why { padding: 26px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.02); }
.why b { font-size: 26px; display: block; margin-bottom: 14px; }
.why h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why p { color: var(--muted); font-size: 14.5px; }

/* contact */
.contact { position: relative; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(99,102,241,.14), transparent 70%); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.contact-copy h2 { font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; }
.contact-copy p { color: var(--muted); font-size: 17px; margin-top: 18px; }
.contact-lines { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; font-size: 15px; }
.contact-lines > * { display: flex; align-items: center; gap: 12px; }
.contact-lines a:hover { color: var(--cyan); }
.form { padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: var(--muted); font-weight: 500; }
.form input, .form select, .form textarea {
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2); border-radius: 12px; color: var(--text);
  padding: 12px 14px; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form select option { background: var(--bg-3); }
.form textarea { resize: vertical; min-height: 100px; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(34,211,238,.15); }
.form input.err { border-color: #f87171; }
.form-note { color: var(--muted-2); font-size: 12px; text-align: center; }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 50px 0 30px; background: rgba(0,0,0,.25); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 24px 40px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; font-size: 15px; }
.footer-brand small { color: var(--muted); font-size: 12px; font-family: var(--font-ar); }
.footer-tag { color: var(--muted); font-size: 14px; max-width: 460px; }
.footer-links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 10px; color: var(--muted-2); font-size: 13px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual .glass, .bg-orbs span, .bar i { animation: none; }
}

/* ── responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-inline-end: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 420px; max-width: 620px; margin-inline: auto; width: 100%; }
  .feature, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-rev .feature-copy { order: 0; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { position: fixed; top: var(--nav-h); inset-inline: 0; flex-direction: column; gap: 0; background: rgba(7,12,23,.96); border-bottom: 1px solid var(--line); padding: 8px 24px 16px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a:last-child { border-bottom: 0; }
  .burger { display: flex; }
  .nav-actions .btn { display: none; }
  .brand-text small { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 40px; }
  .hero-visual { min-height: 400px; }
  .card-main { width: 82%; }
  .card-wa { width: 62%; top: -10px; }
  .card-cal { width: 58%; }
  .grid-3, .grid-4, .steps, .strip-inner { grid-template-columns: 1fr; }
  .stat { border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .form { padding: 22px; }
  .footer-links { flex-wrap: wrap; }
}

/* ── mobile: stack the hero cards instead of overlapping ── */
@media (max-width: 640px) {
  .brand-text strong { font-size: 13px; white-space: nowrap; }
  .hero-visual { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-visual .glass { position: static; width: auto; animation: none; }
  .card-main, .card-wa { grid-column: 1 / -1; }
  .card-cal { grid-column: 1 / -1; }
  .card-rating { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ── about page ─────────────────────────────────── */
.nav-links a.active { color: var(--text); }
.about-hero { padding: 90px 0 30px; }
.about-hero .section-head { max-width: 860px; margin-bottom: 0; }
.about-title { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; letter-spacing: -.03em; }
.about-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.founder-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.founder-card { padding: 30px; text-align: center; position: sticky; top: calc(var(--nav-h) + 24px); }
.founder-photo { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 20px; position: relative; overflow: hidden; background: var(--grad); padding: 4px; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: relative; z-index: 2; background: var(--bg-3); }
.founder-initials { position: absolute; inset: 4px; border-radius: 50%; background: var(--bg-3); display: grid; place-items: center; font-size: 56px; font-weight: 800; color: #fff; }
.founder-card h2 { font-size: 24px; font-weight: 800; }
.founder-role { color: var(--cyan); font-size: 14px; font-weight: 600; margin: 8px 0 22px; }
.founder-facts { text-align: start; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.founder-facts li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.founder-facts b { flex: none; font-size: 18px; }
.founder-story h3 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin-bottom: 20px; }
.founder-story p { color: var(--muted); font-size: 16.5px; margin-bottom: 18px; }
.founder-quote { margin: 30px 0 0; padding: 26px 30px; border-radius: var(--radius); background: var(--grad-soft); border: 1px solid rgba(34,211,238,.25); position: relative; }
.founder-quote::before { content: "“"; position: absolute; top: -6px; inset-inline-start: 18px; font-size: 80px; line-height: 1; color: var(--cyan); opacity: .45; font-family: Georgia, serif; }
html[dir="rtl"] .founder-quote::before { content: "”"; }
.founder-quote p { color: var(--text); font-size: 18px; font-weight: 500; margin: 0 0 12px; line-height: 1.6; }
.founder-quote cite { font-style: normal; color: var(--muted); font-size: 14px; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.timeline::before { content: ""; position: absolute; top: 9px; inset-inline: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--indigo)); opacity: .5; }
html[dir="rtl"] .timeline::before { background: linear-gradient(270deg, var(--cyan), var(--indigo)); }
.timeline li { position: relative; padding-top: 34px; }
.tl-dot { position: absolute; top: 0; inset-inline-start: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--bg); border: 3px solid var(--cyan); box-shadow: 0 0 0 5px rgba(34,211,238,.15); }
.timeline h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.timeline p { color: var(--muted); font-size: 14px; }

.about-cta { text-align: center; max-width: 720px; margin-inline: auto; position: relative; }
.about-cta h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; }
.about-cta p { color: var(--muted); font-size: 17px; margin: 16px 0 30px; }
.about-cta .hero-cta { justify-content: center; }

@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-card { position: static; max-width: 460px; margin-inline: auto; width: 100%; }
  .timeline { grid-template-columns: 1fr; gap: 28px; padding-inline-start: 34px; }
  .timeline::before { top: 0; bottom: 0; inset-inline-start: 9px; inset-inline-end: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--cyan), var(--indigo)); }
  html[dir="rtl"] .timeline::before { background: linear-gradient(180deg, var(--cyan), var(--indigo)); }
  .timeline li { padding-top: 0; }
  .tl-dot { inset-inline-start: -34px; top: 2px; }
}
