@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,500;0,600;1,500&family=Figtree:wght@400;500;600;700&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Noto+Naskh+Arabic:wght@500;600;700&display=swap');

@font-face {
  font-family: "Thmanyah Serif Text";
  src: local("Thmanyah Serif Text"), local("ThmanyahSerifText");
  font-display: swap;
}

:root {
  --paper: #fbfaf8;
  --paper-soft: #f4f0ec;
  --ink: #141313;
  --ink-soft: #68635f;
  --line: rgba(20, 19, 19, 0.12);
  --line-strong: rgba(20, 19, 19, 0.22);
  --white: #ffffff;
  --lilac: #e6c9fb;
  --lilac-deep: #a86de0;
  --lilac-dark: #6d3d8d;
  --peach: #f5b69e;
  --green: #8fb38e;
  --red: #d86f78;
  --shadow: 0 28px 90px rgba(56, 36, 64, 0.14);
  --shadow-soft: 0 16px 44px rgba(42, 31, 45, 0.09);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --max-width: 1440px;
  --font-display: "EB Garamond", Georgia, serif;
  --font-body: "Figtree", Arial, sans-serif;
}

html[lang="ar"] {
  --font-display: "Thmanyah Serif Text", "Noto Naskh Arabic", serif;
  --font-body: "IBM Plex Sans Arabic", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.page { min-height: 100vh; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.section { padding-block: clamp(88px, 11vw, 170px); }
.section-tight { padding-block: clamp(68px, 8vw, 112px); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, .display, .wordmark, .price {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] .display,
html[lang="ar"] .wordmark,
html[lang="ar"] .price { letter-spacing: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
html[lang="ar"] .eyebrow { letter-spacing: 0; text-transform: none; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lilac-deep); box-shadow: 0 0 0 5px rgba(168, 109, 224, 0.12); }
.section-heading { max-width: 870px; margin: 0 auto clamp(48px, 7vw, 88px); text-align: center; }
.section-heading h2 { margin-bottom: 22px; font-size: clamp(46px, 6.5vw, 96px); line-height: 0.96; }
.section-heading p { max-width: 680px; margin-inline: auto; color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); }
.accent { color: var(--lilac-deep); font-style: italic; }
html[lang="ar"] .accent { font-style: normal; }

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 70;
  width: min(calc(100% - 30px), 1500px);
  height: 68px;
  padding-inline: 18px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.site-header.scrolled {
  background: rgba(251, 250, 248, 0.88);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.wordmark { font-size: 32px; font-weight: 600; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 2.4vw, 38px); font-size: 13px; font-weight: 600; }
.site-nav a, .header-link { position: relative; }
.site-nav a::after, .header-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav a:hover::after, .header-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 15px; font-size: 13px; font-weight: 600; }
.lang-link { display: inline-flex; align-items: center; gap: 7px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.48); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,0.7); }
.menu-button span:not(.sr-only) { display: block; width: 17px; height: 1.5px; margin: 4px auto; background: var(--ink); transition: transform 180ms ease; }

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 0 14px 30px rgba(20, 19, 19, 0.18); }
.button-dark:hover { box-shadow: 0 19px 38px rgba(20, 19, 19, 0.24); }
.button-light { border-color: var(--line-strong); background: rgba(255,255,255,0.7); }
.button-lilac { background: var(--lilac); color: var(--ink); box-shadow: 0 14px 34px rgba(168, 109, 224, 0.2); }
.button-small { min-height: 42px; padding-inline: 17px; border-radius: 10px; font-size: 13px; }
.button-arrow { font-size: 17px; transition: transform 180ms ease; }
.button:hover .button-arrow { transform: translateX(3px); }
html[dir="rtl"] .button:hover .button-arrow { transform: translateX(-3px); }

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(128px, 15vw, 205px);
  padding-bottom: 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 540px;
  top: 30px;
  left: 50%;
  border-radius: 45%;
  background:
    radial-gradient(circle at 30% 34%, rgba(230, 201, 251, 0.95), transparent 36%),
    radial-gradient(circle at 71% 60%, rgba(245, 182, 158, 0.66), transparent 30%),
    radial-gradient(circle at 58% 29%, rgba(191, 142, 232, 0.7), transparent 31%);
  filter: blur(30px);
  opacity: 0.83;
  animation: cloud-drift 12s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: 120px;
  right: -110px;
  border-radius: 50%;
  background: rgba(230, 201, 251, 0.45);
  filter: blur(72px);
}
@keyframes cloud-drift { from { transform: translate3d(-3%, -1%, 0) rotate(-2deg) scale(0.98); } to { transform: translate3d(3%, 2%, 0) rotate(2deg) scale(1.05); } }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr); gap: clamp(40px, 5vw, 92px); align-items: center; }
.hero-copy { max-width: 650px; }
.hero h1 { margin-bottom: 27px; font-size: clamp(62px, 7.2vw, 116px); line-height: 0.88; }
html[lang="ar"] .hero h1 { line-height: 1.08; font-size: clamp(54px, 6.5vw, 96px); }
.hero-description { max-width: 590px; margin-bottom: 31px; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 21px); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 24px; display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 12px; }
.hero-note svg { width: 16px; color: var(--lilac-deep); }

.dashboard-wrap { position: relative; min-height: 590px; display: flex; align-items: center; justify-content: center; perspective: 1400px; }
.dashboard-glow { position: absolute; width: 88%; height: 72%; border-radius: 45%; background: rgba(183, 117, 231, 0.28); filter: blur(48px); transform: translateY(25px); }
.dashboard {
  position: relative;
  z-index: 2;
  width: min(100%, 790px);
  min-height: 505px;
  display: grid;
  grid-template-columns: 160px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 26px;
  background: rgba(252, 250, 247, 0.88);
  box-shadow: 0 38px 110px rgba(65, 38, 75, 0.19);
  backdrop-filter: blur(20px);
  transform: rotateY(-4deg) rotateX(1deg);
  transition: transform 250ms ease-out;
}
html[dir="rtl"] .dashboard { transform: rotateY(4deg) rotateX(1deg); }
.dashboard-sidebar { padding: 24px 14px; border-inline-end: 1px solid var(--line); display: flex; flex-direction: column; }
.dashboard-logo { margin: 0 10px 18px; font-family: var(--font-display); font-size: 25px; font-weight: 600; }
.nav-item { padding: 10px 11px; display: flex; align-items: center; gap: 9px; border-radius: 9px; color: #736d68; font-size: 10px; font-weight: 600; }
.nav-item.active { background: #eee6f2; color: var(--ink); }
.nav-item .badge { margin-inline-start: auto; padding: 2px 6px; border-radius: 99px; background: var(--lilac); color: var(--lilac-dark); font-size: 8px; }
.nav-spacer { flex: 1; }
.dashboard-main { min-width: 0; padding: 27px; }
.dashboard-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.dashboard-top small { color: var(--ink-soft); font-size: 9px; }
.dashboard-top h3 { margin: 4px 0 0; font-family: var(--font-body); font-size: 18px; letter-spacing: -0.02em; }
.dashboard-top button { border: 0; border-radius: 8px; background: var(--ink); color: white; padding: 10px 12px; font-size: 9px; }
.metric-grid { margin: 22px 0 14px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.metric { padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,0.85); }
.metric span { display: block; color: var(--ink-soft); font-size: 9px; }
.metric strong { display: block; margin: 5px 0 1px; font-size: 25px; line-height: 1.2; }
.metric small { font-size: 8px; color: #918b85; }
.dashboard-panels { display: grid; grid-template-columns: 1.42fr 0.78fr; gap: 10px; }
.dashboard-panel { padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,0.88); }
.panel-head { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 9px; font-weight: 700; }
.action-row { display: grid; grid-template-columns: 29px 1fr auto; gap: 8px; align-items: center; padding: 10px 0; border-top: 1px solid rgba(20,19,19,0.08); }
.avatar { width: 29px; height: 29px; border-radius: 50%; display: grid; place-items: center; background: var(--lilac); font-size: 7px; font-weight: 700; }
.avatar.peach { background: #ffd7c8; }
.avatar.blue { background: #d4dfef; }
.action-row b { display: block; font-size: 8px; }
.action-row small { display: block; margin-top: 2px; color: #928c86; font-size: 7px; }
.action-row button { border: 1px solid var(--line); border-radius: 5px; background: #f8f5f1; padding: 6px 7px; font-size: 7px; }
.progress-ring { width: 100px; height: 100px; margin: 21px auto 16px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--lilac-deep) 0 74%, #ece7e3 74% 100%); position: relative; }
.progress-ring::before { content: ""; width: 70px; height: 70px; border-radius: 50%; background: white; position: absolute; }
.progress-ring strong { position: relative; z-index: 1; font-size: 19px; }
.progress-list { display: grid; gap: 6px; color: var(--ink-soft); font-size: 7px; }
.progress-list span { display: flex; justify-content: space-between; }
.float-chip { position: absolute; z-index: 3; padding: 12px 15px; border: 1px solid rgba(255,255,255,0.85); border-radius: 14px; background: rgba(255,255,255,0.8); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); font-size: 11px; animation: float 4.5s ease-in-out infinite; }
.float-chip.one { top: 24px; right: 2%; }
.float-chip.two { bottom: 26px; left: 0; animation-delay: -2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.capability-strip { position: relative; z-index: 3; margin-top: 46px; padding-block: 18px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-group { display: flex; align-items: center; }
.marquee b { font-family: var(--font-display); font-size: 25px; font-weight: 500; }
.marquee i { width: 5px; height: 5px; margin-inline: 28px; border-radius: 50%; background: var(--lilac-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

.workflow-grid { display: grid; grid-template-columns: 0.84fr 1.16fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.workflow-copy h2 { margin-bottom: 24px; font-size: clamp(48px, 6vw, 90px); line-height: 0.98; }
.workflow-copy > p:not(.eyebrow) { max-width: 550px; color: var(--ink-soft); font-size: 18px; }
.workflow-tabs { margin-top: 37px; display: grid; border-top: 1px solid var(--line); }
.workflow-tab { width: 100%; padding: 20px 5px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: start; opacity: 0.48; cursor: pointer; transition: opacity 180ms ease, padding-inline 180ms ease; }
.workflow-tab:hover, .workflow-tab.active { opacity: 1; padding-inline: 15px; }
.workflow-tab span { font-size: 11px; }
.workflow-tab strong { font-family: var(--font-display); font-size: 27px; font-weight: 500; }
.workflow-tab i { width: 8px; height: 8px; border-radius: 50%; background: var(--lilac-deep); transform: scale(0); transition: transform 180ms ease; }
.workflow-tab.active i { transform: scale(1); }
.workflow-visual { position: relative; min-height: 690px; }
.photo-card { position: absolute; overflow: hidden; border-radius: 32px; box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; animation: photo-drift 10s ease-in-out infinite alternate; }
.photo-card.left { width: 48%; height: 82%; left: 0; bottom: 0; transform: rotate(-3deg); }
.photo-card.right { width: 45%; height: 72%; right: 1%; top: 0; transform: rotate(4deg); }
@keyframes photo-drift { from { transform: scale(1.03) translateY(-1%); } to { transform: scale(1.12) translateY(2%); } }
.workflow-card { position: absolute; z-index: 3; width: min(88%, 570px); left: 50%; top: 50%; transform: translate(-50%, -50%); padding: 26px; border: 1px solid rgba(255,255,255,0.86); border-radius: 22px; background: rgba(251,250,248,0.9); box-shadow: 0 32px 90px rgba(40,24,45,0.2); backdrop-filter: blur(22px); }
html[dir="rtl"] .workflow-card { direction: rtl; }
.workflow-card-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.workflow-card-head b { font-size: 15px; }
.workflow-card-head span { padding: 5px 8px; border-radius: 99px; background: #eaf2e7; color: #527351; font-size: 9px; }
.workflow-card-content { padding-top: 18px; }
.workflow-card-content h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 36px; font-weight: 500; line-height: 1.05; }
.workflow-card-content p { margin-bottom: 20px; color: var(--ink-soft); font-size: 12px; }
.mock-form { display: grid; gap: 12px; }
.mock-label { display: grid; gap: 6px; color: #77706b; font-size: 9px; font-weight: 600; }
.mock-input { min-height: 39px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: white; color: var(--ink); font-size: 10px; }
.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.mock-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mock-tag { padding: 5px 8px; border-radius: 99px; background: #f0e8f4; color: var(--lilac-dark); font-size: 8px; }
.mock-submit { min-height: 40px; border: 0; border-radius: 8px; background: var(--ink); color: white; font-size: 10px; }

.features { background: #171616; color: white; }
.features .section-heading p { color: #bfb8b2; }
.feature-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.feature-card { position: relative; min-height: 430px; padding: clamp(28px, 4vw, 52px); overflow: hidden; border: 1px solid rgba(255,255,255,0.09); border-radius: 30px; background: #222020; }
.feature-card.large { grid-column: span 7; }
.feature-card.small { grid-column: span 5; }
.feature-card.wide { grid-column: span 12; min-height: 480px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.feature-number { color: #918a85; font-size: 11px; }
.feature-card h3 { margin: 14px 0 15px; font-family: var(--font-display); font-size: clamp(42px, 4vw, 65px); font-weight: 500; line-height: 1; }
.feature-card p { max-width: 470px; color: #bfb8b2; }
.feature-card::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(230,201,251,0.12); filter: blur(45px); right: -90px; bottom: -130px; }
.feature-ui { position: relative; z-index: 2; margin-top: 38px; padding: 20px; border-radius: 17px; background: #f8f5f1; color: var(--ink); box-shadow: 0 25px 60px rgba(0,0,0,0.25); }
.feature-list-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.feature-list-row:first-child { border-top: 0; }
.feature-list-row b { display: block; font-size: 10px; }
.feature-list-row small { display: block; color: #817b75; font-size: 8px; }
.feature-list-row span:last-child { padding: 5px 7px; border-radius: 6px; background: #eee7f2; color: var(--lilac-dark); font-size: 8px; }
.portal-phone { width: min(100%, 270px); height: 410px; margin: 30px auto -80px; padding: 11px; border-radius: 38px; background: #0f0f0f; transform: rotate(3deg); box-shadow: 0 28px 55px rgba(0,0,0,0.32); }
.portal-screen { height: 100%; padding: 42px 22px 22px; border-radius: 29px; background: linear-gradient(#f9f1fd, #f9f6f2); color: var(--ink); }
.portal-screen .wordmark { font-size: 22px; }
.portal-screen h4 { margin: 25px 0 16px; font-family: var(--font-display); font-size: 31px; font-weight: 500; line-height: 1.05; }
.portal-step { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 10px; }
.portal-step.done { color: #756f69; }
.portal-step.current { font-weight: 700; }
.portal-button { width: 100%; margin-top: 19px; padding: 11px; border: 0; border-radius: 9px; background: var(--ink); color: white; font-size: 10px; }
.offer-ui { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.offer-box { padding: 23px; border-radius: 17px; background: #f8f5f1; color: var(--ink); }
.offer-box.highlight { background: #ecdafb; }
.offer-box small { color: #7d766f; }
.offer-box strong { display: block; margin: 8px 0 4px; font-size: 29px; }
.offer-box span { font-size: 9px; color: #8d867f; }
.offer-status { grid-column: 1 / -1; padding: 12px; border-radius: 10px; background: #e8f1e5; color: #4d754d; text-align: center; font-size: 11px; }

.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.audience-card { min-height: 310px; padding: 34px; border: 1px solid var(--line); border-radius: 25px; background: rgba(255,255,255,0.55); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.audience-card:hover { transform: translateY(-5px); border-color: rgba(168,109,224,0.38); box-shadow: var(--shadow-soft); }
.audience-icon { width: 48px; height: 48px; margin-bottom: 52px; display: grid; place-items: center; border-radius: 14px; background: #efe2f7; color: var(--lilac-dark); font-size: 20px; }
.audience-card h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 34px; font-weight: 500; }
.audience-card p { margin: 0; color: var(--ink-soft); }

.pricing { position: relative; overflow: hidden; }
.pricing::before { content: ""; position: absolute; width: 600px; height: 460px; left: -180px; top: 20%; border-radius: 50%; background: rgba(230,201,251,0.36); filter: blur(70px); }
.pricing-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: stretch; }
.price-card { padding: clamp(28px, 4vw, 47px); display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,0.68); box-shadow: 0 15px 45px rgba(42,32,45,0.05); }
.price-card.featured { border-color: var(--lilac-deep); background: #1a1919; color: white; transform: translateY(-10px); box-shadow: 0 30px 80px rgba(56,34,63,0.22); }
.plan-label { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 15px; font-weight: 700; }
.popular { padding: 5px 8px; border-radius: 99px; background: var(--lilac); color: var(--ink); font-size: 9px; }
.price { margin: 25px 0 3px; font-size: clamp(55px, 5vw, 78px); line-height: 1; }
.price sup { font-family: var(--font-body); font-size: 17px; font-weight: 600; letter-spacing: 0; vertical-align: top; }
.price-period { color: var(--ink-soft); font-size: 12px; }
.featured .price-period, .featured .plan-description { color: #bdb6b0; }
.plan-description { min-height: 54px; margin: 24px 0 28px; color: var(--ink-soft); }
.plan-features { padding: 0; margin: 0 0 32px; display: grid; gap: 12px; list-style: none; }
.plan-features li { position: relative; padding-inline-start: 24px; font-size: 14px; }
.plan-features li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--lilac-deep); }
.featured .plan-features li::before { color: var(--lilac); }
.price-card .button { margin-top: auto; width: 100%; }

.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.faq-intro h2 { margin-bottom: 20px; font-size: clamp(48px, 5.3vw, 78px); line-height: 0.98; }
.faq-intro p { color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 23px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; border: 0; background: transparent; text-align: start; cursor: pointer; font-weight: 700; }
.faq-question span:last-child { font-size: 22px; font-weight: 400; transition: transform 180ms ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 260ms ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 680px; margin: 0; padding: 0 0 23px; color: var(--ink-soft); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.cta-panel { position: relative; min-height: 520px; padding: clamp(40px, 7vw, 92px); display: grid; grid-template-columns: 1fr 0.85fr; gap: 50px; align-items: center; overflow: hidden; border-radius: 38px; background: #171616; color: white; }
.cta-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,19,19,0.98) 0%, rgba(20,19,19,0.78) 47%, rgba(20,19,19,0.3) 100%); z-index: 1; }
html[dir="rtl"] .cta-panel::before { background: linear-gradient(270deg, rgba(20,19,19,0.98) 0%, rgba(20,19,19,0.78) 47%, rgba(20,19,19,0.3) 100%); }
.cta-photo { position: absolute; inset: 0 0 0 45%; }
html[dir="rtl"] .cta-photo { inset: 0 45% 0 0; }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; animation: photo-drift 10s ease-in-out infinite alternate; }
.cta-copy { position: relative; z-index: 2; max-width: 670px; }
.cta-copy h2 { margin-bottom: 20px; font-size: clamp(52px, 6vw, 88px); line-height: 0.96; }
.cta-copy p { max-width: 560px; margin-bottom: 30px; color: #c9c2bc; font-size: 18px; }
.cta-points { padding: 0; margin: 0 0 28px; list-style: none; display: grid; gap: 12px; }
.cta-points li { position: relative; padding-inline-start: 24px; color: #e6dfd9; font-size: 15px; }
.cta-points li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--lilac); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.on-dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.24); color: white; }
.on-dark:hover { background: rgba(255,255,255,0.14); }
.cta-copy .cta-note { margin-bottom: 0; color: #bfb8b2; font-size: 14px; }

.site-footer { padding-block: 34px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.footer-links { display: flex; gap: 22px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; text-align: center; margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero::before { left: 27%; }
  .dashboard-wrap { min-height: 560px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-copy { max-width: 780px; }
  .workflow-visual { min-height: 650px; }
  .feature-card.large, .feature-card.small { grid-column: span 6; }
  .feature-card.wide { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { max-width: 650px; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; top: 92px; left: 15px; right: 15px; padding: 22px; display: grid; gap: 0; border: 1px solid var(--line); border-radius: 18px; background: rgba(251,250,248,0.98); box-shadow: var(--shadow-soft); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 180ms ease, transform 180ms ease; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .header-actions .header-link, .header-actions .button { display: none; }
  .menu-button { display: block; }
  .header-actions { gap: 8px; }
  .dashboard { grid-template-columns: 110px 1fr; }
  .dashboard-main { padding: 18px; }
  .dashboard-sidebar { padding-inline: 9px; }
  .nav-item { font-size: 8px; padding-inline: 7px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid .metric:last-child { display: none; }
  .dashboard-panels { grid-template-columns: 1fr; }
  .dashboard-panels .dashboard-panel:last-child { display: none; }
  .float-chip { display: none; }
  .feature-card.large, .feature-card.small, .feature-card.wide { grid-column: span 12; }
  .audience-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-photo { inset: 35% 0 0 35%; }
  html[dir="rtl"] .cta-photo { inset: 35% 35% 0 0; }
  .cta-panel::before, html[dir="rtl"] .cta-panel::before { background: linear-gradient(180deg, rgba(20,19,19,0.98) 0%, rgba(20,19,19,0.82) 62%, rgba(20,19,19,0.45) 100%); }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 26px), var(--max-width)); }
  .site-header { width: calc(100% - 20px); top: 10px; height: 62px; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(53px, 15vw, 75px); }
  html[lang="ar"] .hero h1 { font-size: clamp(47px, 13vw, 68px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .dashboard-wrap { min-height: 430px; margin-inline: -6px; }
  .dashboard { min-height: 385px; grid-template-columns: 82px 1fr; border-radius: 18px; }
  .dashboard-sidebar { padding: 15px 6px; }
  .dashboard-logo { margin-inline: 7px; font-size: 18px; }
  .nav-item { font-size: 6.5px; gap: 4px; padding: 7px 5px; }
  .nav-item .badge { display: none; }
  .dashboard-main { padding: 14px 11px; }
  .dashboard-top h3 { font-size: 12px; }
  .dashboard-top button { display: none; }
  .metric-grid { margin-top: 15px; }
  .metric { padding: 10px; }
  .metric strong { font-size: 20px; }
  .action-row { grid-template-columns: 25px 1fr; }
  .action-row button { display: none; }
  .avatar { width: 25px; height: 25px; }
  .workflow-visual { min-height: 590px; }
  .photo-card.left { width: 60%; height: 72%; }
  .photo-card.right { width: 54%; height: 60%; }
  .workflow-card { width: 92%; padding: 19px; }
  .workflow-card-content h3 { font-size: 29px; }
  .mock-row { grid-template-columns: 1fr; }
  .offer-ui { grid-template-columns: 1fr; }
  .offer-status { grid-column: auto; }
  .feature-card { min-height: 390px; border-radius: 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .button { width: 100%; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
