:root {
  --bg-0: #07070b; --bg-1: #0c0c12; --bg-2: #12121a;
  /* ✨ panel = surface elevated on the page (cards). panel-2 = inner card surface */
  --panel: #0f1117; --panel-2: #161821;
  --surface: rgba(255,255,255,0.03); --surface-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08); --border-strong: rgba(255,255,255,0.14);
  --text-0: #ffffff; --text-1: #e6e6ea; --text-2: #a1a1aa; --text-3: #71717a;
  --accent: #10b981; --accent-2: #34d399; --accent-3: #6ee7b7;
  --accent-glow: rgba(16,185,129,0.35);
  --gold: #fbbf24; --gold-2: #f59e0b;
  --danger: #f43f5e; --danger-2: #fb7185;
  --heat-red: #ef4444; --heat-yellow: #eab308; --heat-green: #22c55e;
  --radius-sm: 8px; --radius: 14px; --radius-lg: 22px; --radius-xl: 28px;
  --shadow: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --font-ar: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  --font-en: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Accessibility: skip to main content (visible on focus only) */
.skip-link { position: absolute; top: -40px; left: 8px; background: var(--accent); color: white; padding: 8px 16px; border-radius: 6px; text-decoration: none; z-index: 10000; font-weight: 600; }
.skip-link:focus { top: 8px; outline: 3px solid var(--text-0); }
body {
  font-family: var(--font-ar); background: var(--bg-0); color: var(--text-1);
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(16,185,129,0.20), transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(99,102,241,0.10), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 30%, rgba(251,191,36,0.06), transparent 60%);
  z-index: -2; pointer-events: none;
}
body::after {
  content: ''; position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
  z-index: -1; pointer-events: none;
}
::selection { background: var(--accent); color: white; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Lang switch */
html[lang="en"] body { font-family: var(--font-en); }
html[lang="en"] .hero h1, html[lang="en"] .section-head h2, html[lang="en"] .cta-final h2 { letter-spacing: -0.025em; }
html[dir="ltr"] .btn-icon-forward { transform: scaleX(-1); }
html[dir="ltr"] .diff-arrow svg { transform: scaleX(-1); }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-1); font-size: 13px;
  cursor: pointer; transition: all 0.15s; font-family: var(--font-en); font-weight: 600;
}
.lang-toggle:hover { background: var(--surface-hover); border-color: var(--border-strong); color: var(--text-0); }
.lang-toggle svg { width: 14px; height: 14px; opacity: 0.7; }

/* Announcement */
.announce {
  background: linear-gradient(90deg, rgba(16,185,129,0.15), rgba(251,191,36,0.15), rgba(16,185,129,0.15));
  background-size: 200% 100%; animation: shimmer-bg 8s linear infinite;
  border-bottom: 1px solid rgba(16,185,129,0.25);
  padding: 10px 16px; text-align: center;
  font-size: 13px; color: var(--text-1); position: relative; z-index: 99;
}
@keyframes shimmer-bg { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }
.announce strong { color: var(--gold); font-weight: 700; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(7,7,11,0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text-0); }
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #059669);
  display: grid; place-items: center;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.logo-mark svg { width: 18px; height: 18px; }

/* New brand logo (cvmizan-logo.webp) — replaces old logo-mark on all pages */
.logo-img { padding: 0; }
.logo-img img {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-img:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .logo-img img { height: 38px; width: 38px; }
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--text-2); transition: color 0.2s; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--text-0); }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta { display: flex; gap: 12px; align-items: center; }

.nav-burger {
  display: none; width: 40px; height: 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-1);
  cursor: pointer; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.nav-burger:hover { background: var(--surface-hover); border-color: var(--border-strong); }
.nav-burger svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: inline-flex; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(7,7,11,0.95); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none; flex-direction: column; padding: 24px;
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.mobile-menu.show { display: flex; opacity: 1; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-close {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-1); display: grid; place-items: center;
  cursor: pointer; font-family: inherit;
}
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; list-style: none; }
.mobile-menu-links a {
  display: block; padding: 16px 20px; font-size: 18px;
  color: var(--text-1); font-weight: 500; border-radius: var(--radius);
  transition: background 0.15s;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active {
  background: var(--surface); color: var(--text-0);
}
.mobile-menu-links a.active { color: var(--accent-2); }
.mobile-menu-foot { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); }
.mobile-menu-foot .btn { width: 100%; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius);
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.2s var(--ease); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-ghost { background: transparent; color: var(--text-1); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface-hover); border-color: var(--border-strong); }
.btn-primary {
  background: linear-gradient(180deg, #10b981, #059669); color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 24px -8px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 16px 40px -8px var(--accent-glow); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25), transparent 70%);
  transform: translateX(-100%); transition: transform 0.6s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary.glow { animation: glow-pulse 2.5s ease-in-out infinite; }
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 24px -8px var(--accent-glow); }
  50% { box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 12px 36px 0 rgba(16,185,129,0.5); }
}
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-xl { padding: 20px 36px; font-size: 16px; }
.btn-icon { width: 16px; height: 16px; }

/* Hero */
.hero { padding: 64px 0 80px; text-align: center; position: relative; }
.hero.compact { padding: 48px 0 40px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13px; color: var(--text-2); margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.hero h1 {
  font-size: clamp(38px, 6.5vw, 80px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.035em;
  color: var(--text-0); margin-bottom: 20px;
  max-width: 1000px; margin-inline: auto;
}
.hero.compact h1 { font-size: clamp(32px, 5vw, 56px); }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-3) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .strike { position: relative; display: inline-block; color: var(--text-3); }
.hero h1 .strike::after {
  content: ''; position: absolute; inset-block: 50%; inset-inline: -4%;
  height: 4px; background: var(--danger); border-radius: 2px;
  transform: rotate(-3deg);
}
.hero p { font-size: clamp(16px, 2vw, 20px); color: var(--text-2); max-width: 680px; margin: 0 auto 36px; line-height: 1.7; }
.hero p strong { color: var(--text-0); font-weight: 600; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 24px; justify-content: center; color: var(--text-3); font-size: 13px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 6px; }

.proof-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 760px; margin: 48px auto 0;
}
@media (max-width: 700px) { .proof-stats { grid-template-columns: 1fr; } }
.proof-stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
  backdrop-filter: blur(12px); transition: transform 0.3s var(--ease);
}
.proof-stat:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.3); }
.proof-num, .proof-num-static {
  font-family: var(--font-en); font-size: 44px; font-weight: 800;
  line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-label { color: var(--text-2); font-size: 13px; line-height: 1.5; }

/* Hero preview */
.hero-preview { margin-top: 72px; perspective: 2000px; position: relative; }
.preview-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 24px; box-shadow: var(--shadow-lg);
  transform: rotateX(6deg); transform-origin: 50% 100%;
  max-width: 1040px; margin: 0 auto; position: relative;
}
.preview-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius-xl);
  padding: 1px; background: linear-gradient(180deg, rgba(16,185,129,0.4), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.preview-grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; }
@media (max-width: 900px) { .preview-grid { grid-template-columns: 1fr; } }
.preview-doc {
  background: #fafafa; border-radius: var(--radius);
  padding: 28px; color: #1f2937; text-align: right;
  font-size: 12px; min-height: 420px; position: relative; overflow: hidden;
}
html[dir="ltr"] .preview-doc { text-align: left; }
.preview-doc h3 { font-size: 20px; color: #111827; margin-bottom: 4px; font-weight: 700; }
.preview-doc .role { color: #4b5563; margin-bottom: 16px; font-size: 12px; }
.section-title { color: var(--accent); font-weight: 700; font-size: 11px; margin: 14px 0 6px; border-bottom: 1px solid #e5e7eb; padding-bottom: 4px; letter-spacing: 0.05em; }
.heat-line {
  position: relative; padding: 4px 10px; margin: 4px 0;
  border-radius: 6px; font-size: 11.5px; line-height: 1.6;
  color: #374151; border-right: 3px solid transparent;
}
html[dir="ltr"] .heat-line { border-right: none; border-left: 3px solid transparent; }
.heat-line.heat-red { background: rgba(239,68,68,0.10); border-right-color: var(--heat-red); }
.heat-line.heat-yellow { background: rgba(234,179,8,0.10); border-right-color: var(--heat-yellow); }
.heat-line.heat-green { background: rgba(34,197,94,0.12); border-right-color: var(--heat-green); }
html[dir="ltr"] .heat-line.heat-red { border-left-color: var(--heat-red); }
html[dir="ltr"] .heat-line.heat-yellow { border-left-color: var(--heat-yellow); }
html[dir="ltr"] .heat-line.heat-green { border-left-color: var(--heat-green); }
.heat-line strong { color: #111827; font-weight: 600; }
.heat-line .num { font-family: var(--font-mono); color: #059669; font-weight: 600; background: rgba(16,185,129,0.08); padding: 0 4px; border-radius: 3px; }

.preview-side { display: flex; flex-direction: column; gap: 12px; }
.score-card {
  background: linear-gradient(180deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
  border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius); padding: 18px;
}
.score-label { font-size: 12px; color: var(--text-2); margin-bottom: 6px; display: flex; justify-content: space-between; }
.score-label .zone-tag { color: var(--accent-2); font-weight: 600; font-family: var(--font-en); font-size: 11px; padding: 2px 8px; background: rgba(16,185,129,0.12); border-radius: 999px; border: 1px solid rgba(16,185,129,0.25); }
.score-number { font-family: var(--font-en); font-size: 52px; font-weight: 700; line-height: 1; color: var(--accent-2); margin-bottom: 4px; letter-spacing: -0.02em; }
.score-number small { font-size: 18px; color: var(--text-2); font-weight: 500; }
.score-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; margin-top: 10px; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 3px; box-shadow: 0 0 12px var(--accent-glow); }

.dims { display: flex; flex-direction: column; gap: 8px; }
.dim { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font-size: 12px; }
.dim-head { display: flex; justify-content: space-between; margin-bottom: 4px; }
.dim-name { color: var(--text-1); font-weight: 500; }
.dim-val { font-family: var(--font-en); color: var(--text-0); font-weight: 600; }
.dim-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.dim-bar-fill { height: 100%; border-radius: 2px; }
.fill-green { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.fill-yellow { background: linear-gradient(90deg, #ca8a04, #eab308); }
.fill-red { background: linear-gradient(90deg, #dc2626, #ef4444); }

/* Logos */
.logos {
  padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2); overflow: hidden;
}
.logos-title {
  text-align: center; color: var(--text-3); font-size: 13px;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em;
}
.logos-track-wrap { overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.logos-track { display: flex; gap: 48px; width: max-content; animation: marquee 40s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-2); font-weight: 600; font-size: 17px;
  padding: 12px 20px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); white-space: nowrap; transition: all 0.2s;
}
.logo-item:hover { color: var(--text-0); border-color: var(--border-strong); }
.logo-item .em { color: var(--accent-2); font-family: var(--font-en); font-weight: 800; }

/* Sections */
section { padding: 80px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  color: var(--accent-2); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px; font-family: var(--font-en);
}
.section-head h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--text-0); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-head p { color: var(--text-2); font-size: 17px; line-height: 1.7; }

/* Stats */
.stats { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-en); font-size: 44px; font-weight: 700;
  background: linear-gradient(180deg, var(--text-0), var(--text-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em;
}
.stat-label { color: var(--text-3); font-size: 13px; }

/* Wizard */
.wizard-section { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wizard {
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.wizard::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(16,185,129,0.08), transparent);
  pointer-events: none;
}
.wizard-steps { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; position: relative; z-index: 1; flex-wrap: wrap; }
.wz-step { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); font-family: var(--font-en); }
.wz-step .dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; font-weight: 600; font-size: 12px;
}
.wz-step.active .dot { background: var(--accent); border-color: var(--accent); color: white; box-shadow: 0 0 0 4px rgba(16,185,129,0.15); }
.wz-step.active { color: var(--text-0); }
.wz-step-line { width: 32px; height: 1px; background: var(--border); }
.wz-title { font-size: 22px; font-weight: 600; color: var(--text-0); margin-bottom: 6px; text-align: center; }
.wz-subtitle { color: var(--text-2); text-align: center; margin-bottom: 32px; font-size: 14px; }
.fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 24px; position: relative; z-index: 1; }
@media (max-width: 700px) { .fields { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--text-2); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.field label .req { color: var(--accent-2); }
.field .hint { font-size: 11px; color: var(--text-3); }
.field input, .field select, .field textarea {
  background: var(--bg-0); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  color: var(--text-1); font-family: inherit; font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%; box-sizing: border-box;
  color-scheme: dark;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--border-strong); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(16,185,129,0.15); background: var(--bg-1); }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

/* Custom select — hides native arrow and draws a clean chevron */
.field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding-inline-end: 38px;
}
html[dir="rtl"] .field select { background-position: left 14px center; }
html[dir="ltr"] .field select { background-position: right 14px center; }
.field select::-ms-expand { display: none; }
.field select option { background: #0d1117; color: var(--text-0); padding: 10px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; font-size: 13px; color: var(--text-1);
  cursor: pointer; transition: all 0.15s var(--ease); font-family: inherit;
}
.chip:hover { border-color: var(--border-strong); background: var(--surface-hover); }
.chip.active { background: rgba(16,185,129,0.12); border-color: var(--accent); color: var(--accent-2); font-weight: 600; }
.chip .ch-icon { margin-inline-end: 4px; }
.wz-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); position: relative; z-index: 1; flex-wrap: wrap; gap: 16px; }
.wz-hint { color: var(--text-3); font-size: 12px; display: flex; align-items: center; gap: 6px; }

/* Scoring rubric */
.rubric { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 900px) { .rubric { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .rubric { grid-template-columns: 1fr; } }
.rub-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; position: relative; transition: all 0.3s var(--ease);
}
.rub-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.rub-weight {
  font-family: var(--font-en); font-size: 12px;
  color: var(--accent-2); font-weight: 600; margin-bottom: 8px;
  background: rgba(16,185,129,0.08); display: inline-block;
  padding: 3px 10px; border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.2);
}
.rub-card h4 { font-size: 17px; font-weight: 600; color: var(--text-0); margin: 14px 0 8px; }
.rub-card p { color: var(--text-2); font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.rub-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(16,185,129,0.1); color: var(--accent-2);
  display: grid; place-items: center; margin-bottom: 4px;
}
.rub-icon svg { width: 20px; height: 20px; }
.rub-checks { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--border); }
.rub-checks li { font-size: 12px; color: var(--text-3); display: flex; gap: 6px; }
.rub-checks li::before { content: '✓'; color: var(--accent-2); font-weight: 700; }

/* Philosophy */
.testimonials-section { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .philosophy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .philosophy-grid { grid-template-columns: 1fr; } }
.phil-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: all 0.3s var(--ease);
}
.phil-card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow); }
.phil-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(16,185,129,0.18), rgba(16,185,129,0.04));
  border: 1px solid rgba(16,185,129,0.2);
  display: grid; place-items: center; margin-bottom: 18px;
  color: var(--accent-2);
}
.phil-icon svg { width: 22px; height: 22px; }
.phil-card h4 { color: var(--text-0); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.phil-card p { color: var(--text-2); font-size: 14px; line-height: 1.7; }

/* Reviews */
.reviews-section { background: var(--bg-0); }
.reviews-summary {
  max-width: 720px; margin: 0 auto 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.reviews-summary-left { display: flex; align-items: center; gap: 16px; }
.reviews-avg { font-family: var(--font-en); font-size: 36px; font-weight: 700; color: var(--text-0); line-height: 1; letter-spacing: -0.02em; }
.reviews-avg small { color: var(--text-3); font-size: 16px; font-weight: 500; }
.reviews-summary-meta { display: flex; flex-direction: column; gap: 4px; }
.reviews-summary-stars { display: flex; gap: 2px; color: var(--gold); }
.reviews-summary-stars svg { width: 16px; height: 16px; fill: currentColor; }
.reviews-summary-stars svg.empty { color: var(--text-3); fill: none; stroke: currentColor; stroke-width: 1.5; }
.reviews-summary-count { color: var(--text-2); font-size: 13px; }

.reviews-list { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .reviews-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-list { grid-template-columns: 1fr; } }
.review-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column;
  transition: all 0.3s var(--ease);
}
.review-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--gold); }
.review-stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-stars svg.empty { color: var(--text-3); fill: none; stroke: currentColor; stroke-width: 1.5; }
.review-text { color: var(--text-1); font-size: 15px; line-height: 1.7; margin-bottom: 16px; flex: 1; white-space: pre-wrap; word-break: break-word; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: white;
  font-weight: 700; font-size: 14px; flex-shrink: 0; font-family: var(--font-ar);
}
.review-author-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.review-author-info .rname { color: var(--text-0); font-weight: 600; font-size: 14px; }
.review-author-info .rmeta { color: var(--text-3); font-size: 12px; }
.review-date { color: var(--text-3); font-size: 11px; font-family: var(--font-en); }

.reviews-empty {
  max-width: 540px; margin: 0 auto;
  background: var(--surface); border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg); padding: 56px 32px; text-align: center;
}
.reviews-empty-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 16px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  display: grid; place-items: center; color: var(--accent-2);
}
.reviews-empty-icon svg { width: 28px; height: 28px; }
.reviews-empty h4 { color: var(--text-0); font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.reviews-empty p { color: var(--text-2); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.reviews-disclaimer {
  text-align: center; max-width: 640px; margin: 24px auto 0;
  color: var(--text-3); font-size: 12px; line-height: 1.7;
  padding: 14px 18px; background: rgba(251,191,36,0.04);
  border: 1px solid rgba(251,191,36,0.15); border-radius: var(--radius);
}

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity 0.25s var(--ease);
}
.modal-backdrop.show { display: flex; opacity: 1; }
.modal {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  padding: 32px; max-width: 540px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.96); transition: transform 0.25s var(--ease);
  position: relative;
}
.modal-backdrop.show .modal { transform: scale(1); }
.modal-close {
  position: absolute; top: 16px; left: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); display: grid; place-items: center;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.modal-close:hover { background: var(--surface-hover); color: var(--text-0); }
.modal-close svg { width: 14px; height: 14px; }
.modal h3 { color: var(--text-0); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.modal p.sub { color: var(--text-2); font-size: 14px; margin-bottom: 24px; }
.star-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; margin: 4px 0; }
.star-input input { display: none; }
.star-input label { cursor: pointer; color: var(--text-3); transition: color 0.15s; }
.star-input label svg { width: 28px; height: 28px; fill: currentColor; }
.star-input label:hover, .star-input label:hover ~ label, .star-input input:checked ~ label { color: var(--gold); }
.checkbox-row {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  cursor: pointer; transition: border-color 0.15s;
}
.checkbox-row:has(input:checked) { border-color: var(--accent); background: rgba(16,185,129,0.05); }
.checkbox-row input { margin-top: 4px; accent-color: var(--accent); flex-shrink: 0; }
.checkbox-row span { font-size: 13px; color: var(--text-1); line-height: 1.5; }
.modal-foot { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--border); }
.modal-foot .btn { flex: 1; }
.toast-success {
  position: fixed; top: 80px; left: 50%; transform: translate(-50%, -20px);
  background: var(--accent); color: white;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 12px 40px -10px var(--accent-glow);
  z-index: 300; opacity: 0; transition: opacity 0.3s, transform 0.3s var(--ease);
  pointer-events: none;
}
.toast-success.show { opacity: 1; transform: translate(-50%, 0); }

/* Keyword match */
.kw-section { background: var(--bg-0); }
.kw-wrap { max-width: 900px; margin: 0 auto; background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow); }
.kw-score-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.kw-score-left h3 { font-size: 18px; color: var(--text-0); margin-bottom: 4px; }
.kw-score-left p { color: var(--text-2); font-size: 13px; }
.kw-score-ring {
  width: 96px; height: 96px; border-radius: 50%;
  background: conic-gradient(var(--accent) 0% 78%, rgba(255,255,255,0.06) 78% 100%);
  display: grid; place-items: center; position: relative;
}
.kw-score-ring::before { content: ''; position: absolute; inset: 8px; border-radius: 50%; background: var(--bg-1); }
.kw-score-ring span { font-family: var(--font-en); font-size: 26px; font-weight: 700; color: var(--text-0); position: relative; z-index: 1; }
.kw-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .kw-cols { grid-template-columns: 1fr; } }
.kw-col h5 { font-size: 13px; color: var(--text-2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.kw-col h5 .count { font-family: var(--font-en); color: var(--text-3); font-weight: 500; }
.kw-list { display: flex; flex-direction: column; gap: 6px; }
.kw-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-radius: 10px; font-size: 13px; }
.kw-item.found { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); color: var(--text-1); }
.kw-item.missing { background: rgba(244,63,94,0.08); border: 1px solid rgba(244,63,94,0.2); color: var(--text-1); }
.kw-item .kw-count { font-family: var(--font-en); font-size: 11px; color: var(--text-3); background: rgba(0,0,0,0.25); padding: 2px 8px; border-radius: 999px; }
.kw-item .kw-ico { width: 14px; height: 14px; margin-inline-end: 8px; }
.kw-item.found .kw-ico { color: var(--accent-2); }
.kw-item.missing .kw-ico { color: var(--danger-2); }
.kw-item-left { display: flex; align-items: center; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; position: relative; transition: all 0.3s var(--ease);
}
.step:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num { font-family: var(--font-en); font-size: 13px; color: var(--accent-2); font-weight: 600; margin-bottom: 20px; }
.step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(16,185,129,0.18), rgba(16,185,129,0.04));
  border: 1px solid rgba(16,185,129,0.2);
  display: grid; place-items: center; margin-bottom: 20px;
}
.step-icon svg { width: 24px; height: 24px; color: var(--accent-2); }
.step h3 { color: var(--text-0); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* Diff view */
.diff-section { position: relative; overflow: hidden; }
.diff-wrap { max-width: 1080px; margin: 0 auto; }
.diff-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 4px; width: fit-content; margin-inline: auto; }
.diff-tab { padding: 8px 18px; font-size: 13px; color: var(--text-2); border-radius: 999px; cursor: pointer; transition: all 0.2s; font-weight: 500; border: none; background: transparent; font-family: inherit; }
.diff-tab.active { background: var(--bg-0); color: var(--text-0); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.diff-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: start; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; } .diff-arrow { transform: rotate(90deg); margin: -8px auto; } }
.diff-pane {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.diff-pane.before { border-top: 3px solid var(--danger); }
.diff-pane.after { border-top: 3px solid var(--accent); }
.diff-head { padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); font-size: 13px; }
.diff-head .tag { padding: 3px 10px; border-radius: 999px; font-family: var(--font-en); font-size: 11px; font-weight: 600; }
.diff-head .tag.bad { background: rgba(244,63,94,0.12); color: var(--danger-2); border: 1px solid rgba(244,63,94,0.25); }
.diff-head .tag.good { background: rgba(16,185,129,0.12); color: var(--accent-2); border: 1px solid rgba(16,185,129,0.25); }
.diff-head .score-mini { font-family: var(--font-en); font-weight: 700; font-size: 20px; color: var(--text-0); }
.diff-body { padding: 20px; min-height: 280px; font-size: 13px; }
.diff-body .d-line { padding: 8px 10px; border-radius: 8px; margin-bottom: 8px; line-height: 1.6; color: var(--text-1); }
.diff-body .d-line.del { background: rgba(244,63,94,0.08); text-decoration: line-through; color: var(--text-2); border-right: 2px solid var(--danger); }
.diff-body .d-line.add { background: rgba(16,185,129,0.10); border-right: 2px solid var(--accent); color: var(--text-0); }
html[dir="ltr"] .diff-body .d-line.del { border-right: none; border-left: 2px solid var(--danger); }
html[dir="ltr"] .diff-body .d-line.add { border-right: none; border-left: 2px solid var(--accent); }
.diff-body .d-line .num { font-family: var(--font-mono); color: var(--accent-2); background: rgba(16,185,129,0.12); padding: 0 4px; border-radius: 3px; font-weight: 600; }
.diff-body .d-line .strong-verb { color: var(--accent-2); font-weight: 700; }
.diff-arrow {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #059669);
  display: grid; place-items: center; margin: auto;
  box-shadow: 0 8px 24px var(--accent-glow);
  align-self: center; position: sticky; top: 100px;
}
.diff-arrow svg { width: 24px; height: 24px; color: white; }
.diff-summary { margin-top: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 700px) { .diff-summary { grid-template-columns: repeat(2, 1fr); } }
.diff-stat { text-align: center; }
.diff-stat .v { font-family: var(--font-en); font-size: 28px; font-weight: 700; color: var(--accent-2); }
.diff-stat .l { color: var(--text-3); font-size: 12px; margin-top: 4px; }
.diff-stat .v.delta::before { content: '+'; }

/* ROI */
.roi-section { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.roi-card {
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(251,191,36,0.05));
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  padding: 48px 40px; position: relative; overflow: hidden;
}
.roi-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(16,185,129,0.15), transparent);
  pointer-events: none;
}
.roi-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; position: relative; }
@media (max-width: 800px) { .roi-grid { grid-template-columns: 1fr; } .roi-sep { display: none; } }
.roi-box { text-align: center; }
.roi-box .label { color: var(--text-3); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.roi-box .value { font-family: var(--font-en); font-size: 44px; font-weight: 800; line-height: 1; color: var(--text-0); margin-bottom: 6px; letter-spacing: -0.02em; }
.roi-box .value.accent { color: var(--accent-2); }
.roi-box .value.gold { color: var(--gold); }
.roi-box .sub { color: var(--text-2); font-size: 13px; }
.roi-sep { font-size: 28px; color: var(--text-3); font-weight: 300; }
.roi-footer { text-align: center; margin-top: 32px; color: var(--text-2); font-size: 15px; position: relative; }
.roi-footer strong { color: var(--gold); font-weight: 700; font-family: var(--font-en); font-size: 20px; }

/* Comparison table */
.vs-section { background: var(--bg-0); }
.vs-table-wrap { max-width: 1000px; margin: 0 auto; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-xl); background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); }
.vs-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.vs-table th, .vs-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--border); font-size: 14px; }
.vs-table th { color: var(--text-2); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.vs-table th:first-child, .vs-table td:first-child { text-align: right; color: var(--text-1); font-weight: 500; }
html[dir="ltr"] .vs-table th:first-child, html[dir="ltr"] .vs-table td:first-child { text-align: left; }
.vs-table th.us { background: rgba(16,185,129,0.08); color: var(--accent-2); font-weight: 700; font-family: var(--font-en); text-transform: none; font-size: 15px; letter-spacing: 0; border-bottom: 1px solid rgba(16,185,129,0.3); }
.vs-table td.us { background: rgba(16,185,129,0.04); font-weight: 600; color: var(--text-0); }
.vs-table tr:last-child td { border-bottom: none; }
.vs-yes { color: var(--accent-2); font-weight: 700; }
.vs-no { color: var(--text-3); }
.vs-partial { color: var(--gold); font-weight: 600; }
.vs-table .price { font-family: var(--font-en); font-weight: 600; }
.vs-table .price.us { color: var(--accent-2); font-size: 16px; }
.vs-note { text-align: center; color: var(--text-3); font-size: 12px; margin-top: 16px; }

/* KSA */
.ksa-section { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ksa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .ksa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ksa-grid { grid-template-columns: 1fr; } }
.ksa-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; position: relative; overflow: hidden;
  transition: all 0.3s var(--ease);
}
.ksa-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-4px); }
.ksa-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(16,185,129,0.10), transparent 70%);
  pointer-events: none;
}
.ksa-flag {
  width: 36px; height: 24px; border-radius: 4px; margin-bottom: 16px;
  background: linear-gradient(180deg, #006c35, #006c35);
  position: relative; display: grid; place-items: center;
}
.ksa-flag::after { content: '🇸🇦'; font-size: 20px; }
.ksa-card h4 { color: var(--text-0); font-size: 17px; font-weight: 600; margin-bottom: 8px; position: relative; }
.ksa-card p { color: var(--text-2); font-size: 14px; line-height: 1.6; position: relative; }
.ksa-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; position: relative; }
.ksa-tag {
  font-size: 11px; padding: 3px 10px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px; color: var(--text-2);
  font-family: var(--font-en);
}

/* Guarantee */
.guarantee {
  max-width: 820px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(16,185,129,0.08));
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: var(--radius-xl); padding: 40px;
  display: flex; gap: 28px; align-items: center;
  position: relative; overflow: hidden;
}
@media (max-width: 700px) { .guarantee { flex-direction: column; text-align: center; } }
.guarantee::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(251,191,36,0.1), transparent);
  pointer-events: none;
}
.guarantee-shield {
  flex-shrink: 0; width: 96px; height: 96px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  border-radius: 24px; display: grid; place-items: center;
  box-shadow: 0 12px 40px -8px rgba(251,191,36,0.5);
  position: relative; z-index: 1;
}
.guarantee-shield svg { width: 48px; height: 48px; color: #1f1607; }
.guarantee-content { position: relative; z-index: 1; }
.guarantee-content h3 { color: var(--text-0); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.guarantee-content p { color: var(--text-2); font-size: 15px; line-height: 1.7; }
.guarantee-content strong { color: var(--gold); }

/* Upload */
.upload-section { background: var(--bg-0); }
.upload-wrap { max-width: 640px; margin: 0 auto; }
.dropzone {
  display: block;
  border: 2px dashed var(--border-strong); border-radius: var(--radius-lg);
  padding: 56px 32px; text-align: center;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  transition: all 0.3s var(--ease); cursor: pointer; position: relative; overflow: hidden;
}
.dropzone::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(16,185,129,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.3s var(--ease); pointer-events: none;
}
.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: linear-gradient(180deg, rgba(16,185,129,0.06), var(--bg-1)); transform: translateY(-2px); }
.dropzone:hover::before, .dropzone.drag::before { opacity: 1; }
.dropzone-icon {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(16,185,129,0.18), rgba(16,185,129,0.04));
  border: 1px solid rgba(16,185,129,0.3);
  display: grid; place-items: center; position: relative; z-index: 1;
  box-shadow: 0 8px 24px -12px rgba(16,185,129,0.4);
}
.dropzone-icon svg { width: 32px; height: 32px; color: var(--accent-2); }
.dropzone h4 { font-size: 19px; color: var(--text-0); font-weight: 600; margin-bottom: 6px; position: relative; z-index: 1; }
.dropzone p { color: var(--text-1); font-size: 14px; margin-bottom: 16px; position: relative; z-index: 1; }
.dropzone-formats { color: var(--text-3); font-size: 12px; font-family: var(--font-en); letter-spacing: 0.4px; position: relative; z-index: 1; }
.pay-row {
  margin-top: 24px; background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.pay-info { display: flex; flex-direction: column; }
.pay-price { font-family: var(--font-en); font-size: 32px; font-weight: 700; color: var(--text-0); line-height: 1; }
.pay-price small { font-size: 14px; color: var(--text-2); font-weight: 500; margin-inline-start: 4px; }
.pay-desc { color: var(--text-3); font-size: 13px; margin-top: 4px; }
.pay-methods { display: flex; justify-content: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.pay-method {
  padding: 6px 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; font-size: 11px; color: var(--text-2); font-weight: 600;
  font-family: var(--font-en);
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.2s; }
.faq-item[open] { background: var(--surface-hover); border-color: var(--border-strong); }
.faq-item summary { padding: 20px 24px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; color: var(--text-0); font-weight: 500; font-size: 15px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--text-2); transition: transform 0.2s; font-family: var(--font-en); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; color: var(--text-2); font-size: 14px; line-height: 1.7; }

/* Final CTA */
.cta-final { text-align: center; background: radial-gradient(ellipse at top, rgba(16,185,129,0.22), transparent 70%); padding: 100px 0; }
.cta-final h2 { font-size: clamp(32px, 5vw, 60px); font-weight: 700; color: var(--text-0); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 20px; }
.cta-final p { color: var(--text-2); font-size: 18px; margin-bottom: 36px; max-width: 560px; margin-inline: auto; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 48px 0 32px; background: var(--bg-1); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
@media (max-width: 768px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand p { color: var(--text-3); font-size: 14px; margin-top: 12px; max-width: 320px; line-height: 1.6; }
.foot-badges { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; align-items: center; }
.foot-badge { padding: 4px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; font-size: 11px; color: var(--text-3); font-family: var(--font-en); }
.foot-freelance {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 8px 12px;
  background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.15);
  border-radius: 8px; font-size: 11px; color: var(--text-2);
}
.foot-freelance img { width: 32px; height: 32px; border-radius: 4px; background: white; padding: 2px; object-fit: contain; }
.foot-freelance strong { color: var(--text-1); font-weight: 600; display: block; font-size: 12px; }
.foot-freelance code { font-family: var(--font-en); color: var(--accent-2); font-size: 10px; }
.foot-col h5 { color: var(--text-0); font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--text-2); font-size: 14px; transition: color 0.2s; }
.foot-col a:hover { color: var(--text-0); }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; color: var(--text-3); font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* Sticky bottom CTA (mobile) */
.sticky-cta {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 98;
  background: rgba(7,7,11,0.92); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-info { display: flex; flex-direction: column; min-width: 0; }
.sticky-cta-price { font-family: var(--font-en); font-weight: 700; color: var(--text-0); font-size: 16px; line-height: 1; }
.sticky-cta-desc { color: var(--text-3); font-size: 11px; margin-top: 3px; }
.sticky-cta .btn { flex-shrink: 0; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════════════════════ */
.err-wrap {
  min-height: calc(100vh - 180px);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px;
}
.err-content {
  text-align: center; max-width: 640px;
}
.err-code {
  font-family: var(--font-en); font-size: clamp(120px, 22vw, 220px);
  font-weight: 900; line-height: 0.9; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-3) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px; position: relative;
}
.err-code::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.15), transparent 60%);
  z-index: -1; filter: blur(30px);
}
.err-title { font-size: clamp(24px, 4vw, 36px); color: var(--text-0); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.err-subtitle { color: var(--text-2); font-size: 16px; line-height: 1.7; margin-bottom: 32px; max-width: 480px; margin-inline: auto; }
.err-suggestions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.err-suggestion {
  padding: 10px 16px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-1); font-size: 13px;
  transition: all 0.15s; display: inline-flex; align-items: center; gap: 8px;
}
.err-suggestion:hover { border-color: var(--accent); background: rgba(16,185,129,0.05); color: var(--text-0); }
.err-suggestion svg { width: 14px; height: 14px; color: var(--accent-2); }

/* ═══════════════════════════════════════════════════════════════
   SUCCESS / ORDER CONFIRMATION PAGE
═══════════════════════════════════════════════════════════════ */
.success-wrap { padding: 60px 24px 100px; }
.success-hero { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.success-icon {
  width: 96px; height: 96px; margin: 0 auto 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #059669);
  display: grid; place-items: center;
  box-shadow: 0 20px 60px -10px var(--accent-glow);
  position: relative;
  animation: success-pop 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
@keyframes success-pop {
  0% { transform: scale(0) rotate(-90deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.success-icon::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(16,185,129,0.3); animation: success-ring 2s infinite;
}
@keyframes success-ring {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
.success-icon svg { width: 48px; height: 48px; color: white; }
.success-hero h1 { font-size: clamp(28px, 4vw, 44px); color: var(--text-0); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.success-hero p { color: var(--text-2); font-size: 17px; line-height: 1.7; }

.order-card {
  max-width: 560px; margin: 0 auto 32px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow);
}
.order-card-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.order-card-head h3 { color: var(--text-0); font-size: 16px; font-weight: 600; }
.order-card-head .status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: var(--accent-2); border-radius: 999px; font-size: 12px; font-weight: 600; }
.order-card-head .status-pill::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.order-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.order-row .label { color: var(--text-3); }
.order-row .value { color: var(--text-1); font-family: var(--font-en); font-weight: 500; }
.order-row .value.strong { color: var(--text-0); font-weight: 700; }
.order-row.total { border-top: 1px dashed var(--border); margin-top: 10px; padding-top: 16px; font-size: 15px; }
.order-row.total .value { color: var(--accent-2); font-weight: 700; font-size: 18px; }

.success-next {
  max-width: 560px; margin: 0 auto 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.success-next h4 { color: var(--text-0); font-size: 15px; font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.success-next h4 svg { width: 16px; height: 16px; color: var(--accent-2); }
.success-next ol { padding-inline-start: 20px; color: var(--text-2); font-size: 14px; line-height: 1.9; }
.success-next ol li::marker { color: var(--accent-2); font-weight: 700; }

.success-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 560px; margin: 0 auto; }
.success-actions .btn { min-width: 180px; justify-content: center; }

.guarantee-strip {
  max-width: 560px; margin: 32px auto 0; padding: 14px 20px;
  background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--radius); color: var(--text-2); font-size: 13px;
  display: flex; gap: 12px; align-items: center; line-height: 1.6;
}
.guarantee-strip svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   REPORT / SAMPLE DASHBOARD
═══════════════════════════════════════════ */
.report-header {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 0 0 !important;
}
.report-meta { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.report-title small { color: var(--text-3); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-en); }
.report-title h2 { color: var(--text-0); font-size: 28px; font-weight: 700; margin: 6px 0 4px; }
.report-title .subtitle { color: var(--text-2); font-size: 14px; }

.report-score-big {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(251,191,36,0.06));
  border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-lg);
  padding: 16px 24px;
}
.score-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: conic-gradient(var(--accent) 0% 87%, rgba(255,255,255,0.06) 87% 100%);
  display: grid; place-items: center; position: relative;
  font-family: var(--font-en); font-size: 26px; font-weight: 800; color: var(--text-0);
}
.score-circle::before { content: ''; position: absolute; inset: 6px; border-radius: 50%; background: var(--bg-1); }
.score-circle > span { position: relative; z-index: 1; }
.report-score-big .meta { display: flex; flex-direction: column; }
.report-score-big .meta strong { color: var(--text-0); font-size: 18px; font-weight: 700; }
.report-score-big .meta small { color: var(--text-2); font-size: 13px; }

.report-tabs {
  display: flex; gap: 4px; overflow-x: auto;
  border-top: 1px solid var(--border); padding: 4px 0;
  margin: 0 -24px; padding-inline: 24px;
  scrollbar-width: none;
}
.report-tabs::-webkit-scrollbar { display: none; }
.report-tab {
  padding: 14px 20px; font-size: 14px; color: var(--text-2);
  cursor: pointer; transition: all 0.2s; font-weight: 500;
  border: none; background: transparent; font-family: inherit;
  border-bottom: 2px solid transparent; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.report-tab svg { width: 16px; height: 16px; }
.report-tab:hover { color: var(--text-1); }
.report-tab.active { color: var(--accent-2); border-bottom-color: var(--accent); }
.report-tab .count {
  background: var(--surface); color: var(--text-3); font-family: var(--font-en);
  font-size: 11px; padding: 2px 6px; border-radius: 999px;
  border: 1px solid var(--border);
}
.report-tab.active .count { background: rgba(16,185,129,0.12); color: var(--accent-2); border-color: rgba(16,185,129,0.25); }

.report-content { padding: 48px 0 80px; }
.tab-pane { display: none; animation: fadeIn 0.3s var(--ease); }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.report-section-title {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-0); font-size: 18px; font-weight: 600;
  margin-bottom: 20px;
}
.report-section-title svg { width: 20px; height: 20px; color: var(--accent-2); }

/* Overview dashboard */
.dashboard-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
@media (max-width: 900px) { .dashboard-grid { grid-template-columns: 1fr; } }

.dims-panel {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px;
}
.dims-list { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.dims-list .dim { background: var(--bg-0); padding: 14px 16px; border-radius: var(--radius); }
.dims-list .dim-head { margin-bottom: 8px; font-size: 14px; }
.dims-list .dim-bar { height: 6px; }
.dims-list .dim-pct { color: var(--text-3); font-size: 11px; font-family: var(--font-en); margin-top: 6px; }

.quick-stats { display: flex; flex-direction: column; gap: 12px; }
.qs-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px;
}
.qs-card .qs-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.qs-card .qs-label { color: var(--text-3); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-en); }
.qs-card .qs-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(16,185,129,0.1); display: grid; place-items: center; color: var(--accent-2); }
.qs-card .qs-icon svg { width: 14px; height: 14px; }
.qs-card .qs-value { font-family: var(--font-en); font-size: 28px; font-weight: 700; color: var(--text-0); line-height: 1; }
.qs-card .qs-sub { color: var(--text-2); font-size: 12px; margin-top: 4px; }

.swot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
@media (max-width: 700px) { .swot-grid { grid-template-columns: 1fr; } }
.swot-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px;
}
.swot-card.strong { border-inline-start: 3px solid var(--accent); }
.swot-card.weak { border-inline-start: 3px solid var(--danger); }
.swot-card h3 { color: var(--text-0); font-size: 16px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.swot-card h3 svg { width: 18px; height: 18px; }
.swot-card.strong h3 svg { color: var(--accent-2); }
.swot-card.weak h3 svg { color: var(--danger-2); }
.swot-item { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); }
.swot-item:first-of-type { border-top: none; padding-top: 0; }
.swot-item-rank { font-family: var(--font-en); font-weight: 700; color: var(--text-3); font-size: 13px; min-width: 20px; }
.swot-item-body { flex: 1; }
.swot-item-body strong { color: var(--text-0); font-size: 14px; display: block; margin-bottom: 4px; }
.swot-item-body p { color: var(--text-2); font-size: 13px; line-height: 1.6; margin: 0; }

/* 23 criteria checklist */
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 12px; }
.criterion {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.criterion.pass { border-inline-start: 3px solid var(--accent); }
.criterion.warn { border-inline-start: 3px solid var(--gold); }
.criterion.fail { border-inline-start: 3px solid var(--danger); }
.criterion-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; }
.criterion.pass .criterion-icon { background: rgba(16,185,129,0.12); color: var(--accent-2); }
.criterion.warn .criterion-icon { background: rgba(251,191,36,0.12); color: var(--gold); }
.criterion.fail .criterion-icon { background: rgba(244,63,94,0.12); color: var(--danger-2); }
.criterion-icon svg { width: 14px; height: 14px; }
.criterion-body strong { color: var(--text-0); font-size: 13px; display: block; margin-bottom: 3px; }
.criterion-body small { color: var(--text-3); font-size: 11px; line-height: 1.5; }
.criterion-category {
  font-family: var(--font-en); font-size: 10px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}

/* Action plan */
.action-plan { display: flex; flex-direction: column; gap: 14px; }
.action-step {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.action-step:hover { border-color: var(--border-strong); transform: translateX(-4px); }
html[dir="ltr"] .action-step:hover { transform: translateX(4px); }
.action-rank {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05));
  border: 1px solid rgba(16,185,129,0.3);
  display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 800; font-size: 18px; color: var(--accent-2);
}
.action-body { flex: 1; min-width: 0; }
.action-body h4 { color: var(--text-0); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.action-body p { color: var(--text-2); font-size: 13px; line-height: 1.7; margin: 0 0 10px; }
.action-impact {
  display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.action-impact span {
  font-size: 11px; padding: 3px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-2);
}
.action-impact .impact { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); color: var(--accent-2); font-family: var(--font-en); font-weight: 600; }
.action-impact .time { color: var(--text-3); }

/* Jobs matcher */
.jobs-header {
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(251,191,36,0.04));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; margin-bottom: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.jobs-header .count-big { font-family: var(--font-en); font-size: 48px; font-weight: 800; color: var(--accent-2); line-height: 1; }
.jobs-header .label { color: var(--text-2); font-size: 14px; }
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.job-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; transition: all 0.3s var(--ease);
}
.job-card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.job-match-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.job-match-pct { font-family: var(--font-en); font-weight: 700; font-size: 13px; color: var(--accent-2); min-width: 36px; }
.job-match-track { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.job-match-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 3px; }
.job-title { color: var(--text-0); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.job-company { color: var(--text-2); font-size: 13px; margin-bottom: 12px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.job-meta span { font-size: 11px; padding: 3px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; color: var(--text-2); }
.job-why { color: var(--text-3); font-size: 12px; line-height: 1.6; padding-top: 12px; border-top: 1px dashed var(--border); }
.job-why strong { color: var(--accent-2); }

/* ATS Simulator */
.ats-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.ats-tab {
  padding: 10px 16px; font-size: 13px; font-family: inherit; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-2); cursor: pointer; transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.ats-tab.active { background: rgba(16,185,129,0.08); border-color: var(--accent); color: var(--accent-2); }
.ats-tab .brand { font-family: var(--font-en); font-weight: 700; }
.ats-tab .status { font-size: 10px; padding: 1px 6px; border-radius: 999px; font-family: var(--font-en); }
.ats-tab.ok .status { background: rgba(16,185,129,0.15); color: var(--accent-2); }
.ats-tab.warn .status { background: rgba(251,191,36,0.15); color: var(--gold); }

.ats-view {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px;
}
.ats-view-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.ats-view-head h3 { color: var(--text-0); font-size: 16px; font-weight: 600; }
.ats-score-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); border-radius: 999px; padding: 6px 14px; color: var(--accent-2); font-size: 13px; font-weight: 600; font-family: var(--font-en); }
.ats-score-badge.warn { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.25); color: var(--gold); }

.ats-extracted { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .ats-extracted { grid-template-columns: 1fr; } }
.ats-col h5 { color: var(--text-2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; font-family: var(--font-en); }
.ats-field {
  background: var(--bg-0); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px; margin-bottom: 8px;
  font-size: 13px; display: flex; justify-content: space-between; gap: 10px;
}
.ats-field .key { color: var(--text-3); flex-shrink: 0; }
.ats-field .val { color: var(--text-1); text-align: end; }
.ats-field .val.missed { color: var(--danger-2); text-decoration: line-through; }

/* Interview + Cover letter */
.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .apply-grid { grid-template-columns: 1fr; } }

.cover-letter-card {
  background: #fafafa; color: #1f2937; padding: 32px;
  border-radius: var(--radius-lg); font-family: var(--font-ar);
  text-align: start; font-size: 13px; line-height: 1.8;
  position: relative; overflow: hidden;
}
.cover-letter-card::before {
  content: 'نموذج · SAMPLE'; position: absolute; top: 20%; left: 50%;
  transform: translateX(-50%) rotate(-15deg); font-size: 80px;
  color: rgba(0,0,0,0.04); font-weight: 900; pointer-events: none;
  font-family: var(--font-en); letter-spacing: 0.1em;
}
.cover-letter-card h4 { color: #111827; font-size: 16px; margin-bottom: 4px; position: relative; }
.cover-letter-card .meta { color: #6b7280; font-size: 11px; margin-bottom: 16px; position: relative; }
.cover-letter-card p { position: relative; margin-bottom: 10px; }
.cover-letter-card strong { color: #059669; }

.interview-list { display: flex; flex-direction: column; gap: 10px; }
.iv-q {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px;
}
.iv-q-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 6px; }
.iv-q-text { color: var(--text-0); font-size: 13px; font-weight: 500; flex: 1; line-height: 1.6; }
.iv-q-level {
  font-size: 10px; padding: 2px 8px; border-radius: 999px; font-family: var(--font-en);
  flex-shrink: 0; font-weight: 600;
}
.iv-q-level.easy { background: rgba(16,185,129,0.1); color: var(--accent-2); }
.iv-q-level.medium { background: rgba(251,191,36,0.1); color: var(--gold); }
.iv-q-level.hard { background: rgba(244,63,94,0.1); color: var(--danger-2); }
.iv-q-tip { color: var(--text-3); font-size: 11px; line-height: 1.6; padding-top: 6px; }
.iv-q-tip strong { color: var(--accent-2); }

.sample-tag {
  display: inline-block; padding: 4px 10px;
  background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.2);
  color: var(--gold); font-size: 11px; font-weight: 600; border-radius: 999px;
  margin-bottom: 16px; font-family: var(--font-en);
}

/* Long-form content pages (legal, about, contact) */
.page-content { max-width: 760px; margin: 0 auto; }
.page-content .updated {
  display: inline-block; color: var(--text-3); font-size: 12px;
  font-family: var(--font-en); background: var(--surface);
  border: 1px solid var(--border); padding: 6px 12px;
  border-radius: 999px; margin-bottom: 32px;
}
.page-content h2 {
  font-size: 22px; color: var(--text-0); margin: 40px 0 12px;
  font-weight: 600; letter-spacing: -0.01em;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 16px; color: var(--text-0); margin: 24px 0 8px;
  font-weight: 600;
}
.page-content p, .page-content li {
  color: var(--text-1); font-size: 15px; line-height: 1.9;
}
.page-content p { margin-bottom: 14px; }
.page-content ul, .page-content ol { padding-inline-start: 22px; margin-bottom: 18px; }
.page-content li { margin-bottom: 8px; }
.page-content strong { color: var(--text-0); font-weight: 600; }
.page-content a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--accent-3); }
.page-content .callout {
  background: var(--surface); border: 1px solid var(--border);
  border-inline-start: 3px solid var(--accent);
  border-radius: var(--radius); padding: 16px 20px;
  margin: 18px 0; font-size: 14px;
}
.page-content .callout.warn { border-inline-start-color: var(--gold); background: rgba(251,191,36,0.04); }
.page-content hr { border: none; height: 1px; background: var(--border); margin: 32px 0; }

/* Contact form */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 960px; margin: 0 auto;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-info-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 16px;
}
.contact-info-card h3 { color: var(--text-0); font-size: 16px; margin-bottom: 12px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.contact-info-card h3 svg { width: 18px; height: 18px; color: var(--accent-2); }
.contact-info-card p { color: var(--text-2); font-size: 14px; line-height: 1.7; }
.contact-info-card a { color: var(--accent-2); }
.contact-form {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  padding: 32px;
}
.contact-form .fields { grid-template-columns: 1fr; }

/* ═══════════════════════════════════════════
   THEMES · 3 color schemes (dark / cream / light)
   Switchable via html[data-theme="..."]
   ═══════════════════════════════════════════ */

/* Cream theme — soft warm off-white (easy on eyes) */
html[data-theme="cream"] {
  --bg-0: #f5f0e6; --bg-1: #faf5ec; --bg-2: #ffffff;
  --panel: #ffffff; --panel-2: #faf5ec;
  --surface: rgba(0,0,0,0.035); --surface-hover: rgba(0,0,0,0.065);
  --border: rgba(0,0,0,0.1); --border-strong: rgba(0,0,0,0.18);
  --text-0: #1a1a1a; --text-1: #2d2d2d; --text-2: #5c5c5c; --text-3: #8a8a8a;
  --accent: #059669; --accent-2: #047857; --accent-3: #065f46;
  --accent-glow: rgba(5,150,105,0.25);
  --gold: #d97706; --gold-2: #b45309;
  --danger: #dc2626; --danger-2: #b91c1c;
  --shadow: 0 8px 30px rgba(60,40,15,0.08);
  --shadow-lg: 0 20px 60px rgba(60,40,15,0.12);
  color-scheme: light;
}
html[data-theme="cream"] body::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(5,150,105,0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(217,119,6,0.08), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 30%, rgba(180,83,9,0.05), transparent 60%);
}
html[data-theme="cream"] body::after {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.025) 1px, transparent 1px);
}
html[data-theme="cream"] .nav { background: rgba(245,240,230,0.75); }
html[data-theme="cream"] .nav.scrolled { background: rgba(245,240,230,0.92); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
html[data-theme="cream"] .announce { background: linear-gradient(90deg, rgba(5,150,105,0.1), rgba(217,119,6,0.1), rgba(5,150,105,0.1)); border-bottom-color: rgba(5,150,105,0.25); }
html[data-theme="cream"] .field select option { background: #ffffff; color: #1a1a1a; }
html[data-theme="cream"] .field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); }
html[data-theme="cream"] .field input, html[data-theme="cream"] .field select, html[data-theme="cream"] .field textarea { color-scheme: light; }
html[data-theme="cream"] .mobile-menu { background: rgba(245,240,230,0.97); }
html[data-theme="cream"] .sticky-cta { background: rgba(245,240,230,0.95); }
html[data-theme="cream"] .foot-freelance img { background: #f5f0e6; }
html[data-theme="cream"] .guide-btn-badge { border-color: #f5f0e6; color: white; background: var(--gold); }
html[data-theme="cream"] .logo-mark { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
html[data-theme="cream"] footer { background: linear-gradient(180deg, var(--bg-1), var(--bg-2)); border-top: 1px solid var(--border); }

/* Light theme — pure natural white */
html[data-theme="light"] {
  --bg-0: #ffffff; --bg-1: #fafafa; --bg-2: #f4f4f5;
  --panel: #ffffff; --panel-2: #fafafa;
  --surface: rgba(0,0,0,0.03); --surface-hover: rgba(0,0,0,0.06);
  --border: rgba(0,0,0,0.08); --border-strong: rgba(0,0,0,0.16);
  --text-0: #09090b; --text-1: #27272a; --text-2: #52525b; --text-3: #71717a;
  --accent: #059669; --accent-2: #10b981; --accent-3: #34d399;
  --accent-glow: rgba(5,150,105,0.25);
  --gold: #eab308; --gold-2: #ca8a04;
  --danger: #ef4444; --danger-2: #dc2626;
  --shadow: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  color-scheme: light;
}
html[data-theme="light"] body::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(5,150,105,0.1), transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(99,102,241,0.06), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 30%, rgba(234,179,8,0.04), transparent 60%);
}
html[data-theme="light"] body::after {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.02) 1px, transparent 1px);
}
html[data-theme="light"] .nav { background: rgba(255,255,255,0.8); }
html[data-theme="light"] .nav.scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 2px 16px rgba(0,0,0,0.04); }
html[data-theme="light"] .announce { background: linear-gradient(90deg, rgba(5,150,105,0.08), rgba(234,179,8,0.08), rgba(5,150,105,0.08)); border-bottom-color: rgba(5,150,105,0.2); }
html[data-theme="light"] .field select option { background: #ffffff; color: #09090b; }
html[data-theme="light"] .field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); }
html[data-theme="light"] .field input, html[data-theme="light"] .field select, html[data-theme="light"] .field textarea { color-scheme: light; }
html[data-theme="light"] .mobile-menu { background: rgba(255,255,255,0.98); }
html[data-theme="light"] .sticky-cta { background: rgba(255,255,255,0.95); }
html[data-theme="light"] .foot-freelance img { background: #ffffff; }
html[data-theme="light"] .guide-btn-badge { border-color: #ffffff; color: white; background: var(--gold); }
html[data-theme="light"] footer { background: linear-gradient(180deg, var(--bg-1), var(--bg-2)); border-top: 1px solid var(--border); }

/* "Other" industry free-text input — appears below select when industry=other */
.industry-other-input {
  background: var(--bg-0);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text-1); font-family: inherit; font-size: 14px;
  width: 100%; box-sizing: border-box;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
  animation: industryOtherSlide 0.25s var(--ease);
}
.industry-other-input:focus { outline: none; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
@keyframes industryOtherSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Style the <optgroup> labels to match the dark theme */
.field select optgroup {
  background: #0a0a0f; color: var(--accent-2);
  font-weight: 700; font-family: var(--font-ar);
  padding: 6px 0;
}
html[data-theme="cream"] .field select optgroup { background: #faf5ec; color: var(--accent); }
html[data-theme="light"] .field select optgroup { background: #fafafa; color: var(--accent); }

/* Theme toggle button (next to lang toggle) */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 10px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-1);
  cursor: pointer; transition: all 0.15s; font-family: var(--font-en); font-weight: 600;
  margin-inline-start: 6px;
}
.theme-toggle:hover { background: var(--surface-hover); border-color: var(--border-strong); color: var(--text-0); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .tt-swatches { display: inline-flex; gap: 3px; }
.theme-toggle .tt-swatch { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--border-strong); }
.theme-toggle .tt-label { font-size: 12px; }
@media (max-width: 640px) { .theme-toggle .tt-label { display: none; } .theme-toggle { padding: 8px 9px; margin-inline-start: 4px; } }

/* ═══════════════════════════════════════════
   INTERACTIVE GUIDE · floating help button + modal
   ═══════════════════════════════════════════ */
.guide-btn {
  position: fixed; bottom: 96px; inset-inline-start: 20px;
  z-index: 97; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none; border-radius: 999px;
  color: white; font-family: var(--font-ar); font-weight: 700; font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px -8px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: guide-pulse 2.4s ease-in-out infinite;
}
.guide-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 36px -8px var(--accent-glow), 0 6px 16px rgba(0,0,0,0.25); }
.guide-btn.seen { animation: none; }
.guide-btn-icon {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
}
.guide-btn-icon svg { width: 16px; height: 16px; color: white; }
.guide-btn-badge {
  position: absolute; top: -4px; inset-inline-end: -4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: #1a1a1a;
  display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 900; font-size: 14px;
  border: 2px solid var(--bg-0);
  box-shadow: 0 4px 12px rgba(251,191,36,0.5);
}
.guide-btn-label { font-size: 13px; letter-spacing: 0.2px; }
@keyframes guide-pulse {
  0%, 100% { box-shadow: 0 10px 30px -8px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.2), 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 10px 30px -8px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.2), 0 0 0 14px transparent; }
}
@media (max-width: 640px) {
  .guide-btn { bottom: 80px; padding: 10px 14px 10px 10px; font-size: 13px; }
  .guide-btn-label { display: none; }
}

.guide-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity 0.2s var(--ease);
}
.guide-modal.show { display: flex; opacity: 1; }
.guide-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 28px; position: relative;
  box-shadow: var(--shadow-lg);
  animation: guide-slide-up 0.35s var(--ease);
}
@keyframes guide-slide-up {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.guide-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.guide-eyebrow {
  display: inline-block; font-family: var(--font-en); font-size: 11px;
  color: var(--accent-2); font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 8px;
  padding: 4px 10px; background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25); border-radius: 999px;
}
.guide-title { font-size: 20px; color: var(--text-0); font-weight: 700; line-height: 1.35; }
.guide-close {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); cursor: pointer; display: grid; place-items: center;
  transition: all 0.15s;
}
.guide-close:hover { background: var(--surface-hover); color: var(--text-0); border-color: var(--border-strong); }
.guide-close svg { width: 18px; height: 18px; }

.guide-progress {
  height: 4px; background: var(--surface); border-radius: 999px;
  overflow: hidden; margin-bottom: 20px;
}
.guide-progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px; transition: width 0.4s var(--ease);
}

.guide-body {
  color: var(--text-1); font-size: 15px; line-height: 1.8;
  margin-bottom: 18px;
}
.guide-body strong { color: var(--text-0); font-weight: 700; }
.guide-body em { color: var(--accent-2); font-style: normal; font-family: var(--font-mono); font-size: 13px; background: rgba(16,185,129,0.08); padding: 2px 6px; border-radius: 4px; }

.guide-tip {
  background: linear-gradient(180deg, rgba(251,191,36,0.08), rgba(251,191,36,0.03));
  border: 1px solid rgba(251,191,36,0.25); border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 22px;
  font-size: 13px; color: var(--text-1); line-height: 1.65;
}
.guide-tip strong { color: var(--gold); font-weight: 700; }

.guide-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.guide-btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-1);
  font-family: var(--font-ar); font-weight: 600; font-size: 13px;
  cursor: pointer; transition: all 0.15s;
}
.guide-btn-nav:hover:not(:disabled) { background: var(--surface-hover); border-color: var(--border-strong); color: var(--text-0); }
.guide-btn-nav:disabled { opacity: 0.4; cursor: not-allowed; }
.guide-btn-nav svg { width: 14px; height: 14px; }
.guide-btn-nav.guide-btn-next {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent; color: white;
  box-shadow: 0 4px 12px -2px var(--accent-glow);
}
.guide-btn-nav.guide-btn-next:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 16px -2px var(--accent-glow); color: white; }
html[dir="ltr"] .guide-btn-nav svg { transform: scaleX(-1); }

.guide-dots { display: flex; gap: 6px; }
.guide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s;
}
.guide-dot:hover { border-color: var(--border-strong); }
.guide-dot.done { background: rgba(16,185,129,0.4); border-color: var(--accent); }
.guide-dot.active { background: var(--accent); border-color: var(--accent); transform: scale(1.4); box-shadow: 0 0 0 3px var(--accent-glow); }

@media (max-width: 560px) {
  .guide-card { padding: 22px 20px; border-radius: var(--radius-lg); }
  .guide-title { font-size: 17px; }
  .guide-body { font-size: 14px; }
  .guide-btn-nav { padding: 8px 12px; font-size: 12px; }
  .guide-dots { gap: 4px; }
  .guide-dot { width: 6px; height: 6px; }
}
