/* ==========================================================================
   TAQATUA — Brand Stylesheet
   Colors are HSL custom properties, matching the token names and values
   used in the Hostinger AI Builder build (index.css) — safe to retint by
   editing :root only. Fonts: Space Grotesk (display), Inter (body),
   IBM Plex Mono (eyebrow labels / mono accents).
   ========================================================================== */

:root {
  --background: 215 24% 8%;
  --foreground: 40 22% 95%;
  --card: 215 20% 11%;
  --card-foreground: 40 22% 95%;
  --primary: 182 100% 40%;
  --primary-foreground: 215 24% 8%;
  --secondary: 215 19% 23%;
  --secondary-foreground: 40 22% 95%;
  --muted: 215 18% 15%;
  --muted-foreground: 212 14% 65%;
  --accent: 35 35% 52%;
  --accent-foreground: 215 24% 8%;
  --destructive: 0 72% 55%;
  --border: 215 18% 20%;
  --input: 215 18% 20%;
  --radius: 0.5rem;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono-taq: 'IBM Plex Mono', monospace;
  --container-w: 90rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.font-mono-taq { font-family: var(--font-mono-taq); }
.eyebrow {
  font-family: var(--font-mono-taq); font-size: 12px; text-transform: uppercase;
  letter-spacing: .15em; color: hsl(var(--primary)); margin-bottom: 1rem; display: block;
}
.text-gradient-gold {
  background: linear-gradient(120deg, #B08D5B, #C9A876);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bg-grid {
  background-image:
    linear-gradient(hsl(var(--border) / .5) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--border) / .5) 1px, transparent 1px);
  background-size: 48px 48px;
}
.glow-teal { box-shadow: 0 0 60px -10px hsl(var(--primary) / .35); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: .75rem 1.25rem; z-index: 999; border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.75rem; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; text-align: center;
  border: 1px solid transparent; cursor: pointer; transition: all .2s ease;
}
.btn-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: hsl(var(--foreground)); border-color: hsl(var(--border)); }
.btn-outline:hover { border-color: hsl(var(--primary)); }
.btn-block { width: 100%; }
@media (min-width: 640px) { .btn-block { width: auto; } }
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: hsl(var(--background) / .92); backdrop-filter: blur(14px);
  border-bottom: 1px solid hsl(var(--border));
  height: 72px; display: flex; align-items: center;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo-link { display: flex; align-items: center; gap: .75rem; }
.logo-mark { height: 32px; width: auto; flex-shrink: 0; display: block; }
.logo-divider { height: 32px; width: 1px; background: hsl(var(--border)); display: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-word { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: hsl(var(--foreground)); letter-spacing: .01em; }
.logo-arabic { font-family: var(--font-body); font-size: 14px; color: hsl(var(--muted-foreground)); }
.logo-tagline { font-family: var(--font-mono-taq); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: hsl(var(--muted-foreground)); margin-top: 2px; }

.primary-nav { display: none; align-items: center; gap: 2rem; }
.primary-nav a:not(.btn) { color: hsl(var(--muted-foreground)); font-size: 14.5px; font-weight: 500; transition: color .2s ease; }
.primary-nav a:not(.btn):hover { color: hsl(var(--foreground)); }
.primary-nav .btn { padding: .6rem 1.4rem; font-size: 14px; }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid hsl(var(--border)); border-radius: var(--radius);
  cursor: pointer; color: hsl(var(--foreground));
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }

.mobile-nav {
  position: fixed; top: 72px; right: 0; bottom: 0; left: 0; height: calc(100vh - 72px);
  background: hsl(var(--background));
  display: none; flex-direction: column; padding: 1.5rem; gap: .25rem; z-index: 99; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a:not(.btn) { padding: 1rem 0; font-size: 17px; color: hsl(var(--foreground)); border-bottom: 1px solid hsl(var(--border)); }
.mobile-nav .btn { margin-top: 1.5rem; }

@media (min-width: 1024px) {
  .primary-nav { display: flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid hsl(var(--border)); padding-top: 72px; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--background) / .85), hsl(var(--background))); }
.hero-grid-bg { position: absolute; inset: 0; opacity: .4; }
.hero-inner { position: relative; padding: 6rem 0 7rem; }
@media (min-width: 768px) { .hero-inner { padding: 8rem 0 9rem; } }
.hero-copy { max-width: 48rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px; border: 1px solid hsl(var(--border));
  background: hsl(var(--card) / .6); padding: .4rem 1rem; font-family: var(--font-mono-taq); font-size: 12px;
  text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--muted-foreground));
}
.hero h1 { margin-top: 1.75rem; font-size: clamp(2.75rem, 6vw, 4.2rem); line-height: 1.02; color: hsl(var(--foreground)); }
.hero-lead { margin-top: 1.75rem; font-size: 18px; line-height: 1.6; color: hsl(var(--muted-foreground)); max-width: 34rem; }
.hero-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.hero-note { margin-top: 2rem; font-size: 13px; color: hsl(var(--muted-foreground)); }
.hero-stats {
  margin-top: 4rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  border-top: 1px solid hsl(var(--border)); padding-top: 2.5rem;
}
.hero-stat {
  padding: 1.25rem 1rem; border: 1px solid hsl(var(--border)); background: hsl(var(--card) / .4);
  border-radius: .75rem; text-align: center; transition: border-color .2s ease, transform .2s ease;
}
.hero-stat:hover { border-color: hsl(var(--primary)); transform: translateY(-2px); }
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: hsl(var(--foreground)); }
.hero-stat-label { margin-top: .25rem; font-size: 13px; color: hsl(var(--muted-foreground)); }

/* ---------- Section shared ---------- */
section { padding: 6rem 0; border-bottom: 1px solid hsl(var(--border)); scroll-margin-top: 72px; }
.section-intro { max-width: 42rem; }
.section-intro.wide { margin-bottom: 4rem; }
.section-intro h2 { font-size: clamp(2rem, 3vw, 2.5rem); line-height: 1.2; color: hsl(var(--foreground)); }
.section-intro p { margin-top: 1.25rem; font-size: 15px; line-height: 1.7; color: hsl(var(--muted-foreground)); }

/* ---------- Why ---------- */
.value-grid { margin-top: 4rem; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.card { border: 1px solid hsl(var(--border)); background: hsl(var(--card) / .4); border-radius: .75rem; }
.value-card { padding: 2rem; }
.icon-box {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: var(--radius); background: hsl(var(--primary) / .1); border: 1px solid hsl(var(--primary) / .25);
  margin-bottom: 1.5rem; color: hsl(var(--primary));
}
.icon-box.accent { background: hsl(var(--accent) / .1); border-color: hsl(var(--accent) / .25); color: hsl(var(--accent)); }
.icon-box svg { width: 20px; height: 20px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: .5rem; color: hsl(var(--foreground)); }
.value-card p { font-size: 14.5px; line-height: 1.7; color: hsl(var(--muted-foreground)); }

/* ---------- How it works ---------- */
.how-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .how-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 1.25rem; }
.step-num {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid hsl(var(--primary) / .4);
  background: hsl(var(--primary) / .1); font-family: var(--font-mono-taq); font-size: 13px; font-weight: 600; color: hsl(var(--primary));
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; color: hsl(var(--foreground)); }
.step p { font-size: 14px; line-height: 1.7; color: hsl(var(--muted-foreground)); }
.highlights { display: flex; flex-direction: column; gap: 1.5rem; }
.highlight-card { padding: 1.75rem; display: flex; gap: 1rem; }
.highlight-card svg { width: 20px; height: 20px; color: hsl(var(--accent)); flex-shrink: 0; margin-top: 2px; }
.highlight-card h4 { font-size: 1rem; margin-bottom: .4rem; color: hsl(var(--foreground)); }
.highlight-card p { font-size: 13.5px; line-height: 1.7; color: hsl(var(--muted-foreground)); }
.inline-link { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: .75rem 1.5rem; font-size: 14px; font-weight: 600; color: hsl(var(--foreground)); transition: border-color .2s ease; }
.inline-link:hover { border-color: hsl(var(--primary)); }
.inline-link svg { width: 14px; height: 14px; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card { padding: 1.75rem; }
.feature-card .icon-box { width: 40px; height: 40px; margin-bottom: 1.25rem; }
.feature-card .icon-box svg { width: 18px; height: 18px; }
.feature-card h3 { font-size: 1rem; margin-bottom: .5rem; color: hsl(var(--foreground)); }
.feature-card p { font-size: 13.5px; line-height: 1.7; color: hsl(var(--muted-foreground)); }

/* ---------- Compliance ---------- */
.disclaimer {
  display: flex; gap: 1rem; align-items: flex-start; border-radius: .75rem;
  border: 1px solid hsl(var(--accent) / .3); background: hsl(var(--accent) / .05);
  padding: 1.25rem 1.5rem; margin: 2.5rem 0 3.5rem;
}
.disclaimer svg { width: 20px; height: 20px; color: hsl(var(--accent)); flex-shrink: 0; margin-top: 2px; }
.disclaimer p { font-size: 14px; line-height: 1.7; color: hsl(var(--foreground) / .8); }
.disclaimer strong { color: hsl(var(--foreground)); font-weight: 600; }
.compliance-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .compliance-grid { grid-template-columns: 1fr 1fr; } }
.compliance-card { padding: 2.25rem; }
.compliance-card h3 { font-size: 1.4rem; margin-bottom: .5rem; color: hsl(var(--foreground)); }
.compliance-card > p { font-size: 14.5px; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; line-height: 1.7; }
.check-list { display: flex; flex-direction: column; gap: .75rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 14px; color: hsl(var(--foreground) / .9); }
.check-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: hsl(var(--primary)); }
.compliance-card.accent .check-list svg { color: hsl(var(--accent)); }
.five-corner-block { margin-top: 3.5rem; padding: 2.25rem; }
.five-corner-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.five-corner-head svg { width: 20px; height: 20px; color: hsl(var(--primary)); }
.five-corner-head h3 { font-size: 1.3rem; color: hsl(var(--foreground)); }
.five-corner-block > p { font-size: 14px; color: hsl(var(--foreground) / .7); max-width: 42rem; margin-bottom: 2rem; line-height: 1.7; }
.five-corner-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .five-corner-grid { grid-template-columns: repeat(5, 1fr); } }
.corner-box { border: 1px solid hsl(var(--border)); background: hsl(var(--background)); border-radius: .5rem; padding: 1.25rem; text-align: center; }
.corner-box p { font-size: 13px; font-weight: 500; color: hsl(var(--foreground)); }

/* ---------- Industries ---------- */
.industry { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; margin-bottom: 5rem; }
.industry:last-child { margin-bottom: 0; }
@media (min-width: 1024px) { .industry { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.industry.reverse .industry-media { order: 1; }
@media (min-width: 1024px) { .industry.reverse .industry-media { order: 2; } .industry.reverse .industry-copy { order: 1; } }
.industry-media { position: relative; border-radius: .75rem; overflow: hidden; border: 1px solid hsl(var(--border)); aspect-ratio: 4 / 3; }
.industry-media img { width: 100%; height: 100%; object-fit: cover; }
.industry-copy .eyebrow { margin-bottom: 1rem; }
.industry-copy h3 { font-size: 1.6rem; margin-bottom: 1rem; color: hsl(var(--foreground)); }
.industry-copy > p { font-size: 14.5px; line-height: 1.7; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
.dot-list { display: flex; flex-direction: column; gap: .75rem; }
.dot-list li { display: flex; align-items: center; gap: .75rem; font-size: 14px; color: hsl(var(--foreground) / .9); }
.dot-list li::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: hsl(var(--primary)); flex-shrink: 0; }
.industries-cta { margin-top: 5rem; padding-top: 4rem; border-top: 1px solid hsl(var(--border)); text-align: center; }
.industries-cta h3 { font-size: 1.6rem; margin-bottom: 1rem; color: hsl(var(--foreground)); }
.industries-cta p { font-size: 14.5px; color: hsl(var(--muted-foreground)); max-width: 36rem; margin: 0 auto 2rem; line-height: 1.7; }

/* ---------- CTA ---------- */
.cta-section { background: hsl(var(--card) / .3); text-align: center; }
.cta-section .container { display: flex; flex-direction: column; align-items: center; }
.cta-section h2 { font-size: clamp(1.9rem, 3vw, 2.3rem); max-width: 42rem; margin-bottom: 1.25rem; color: hsl(var(--foreground)); }
.cta-section p { font-size: 15px; color: hsl(var(--muted-foreground)); max-width: 36rem; margin-bottom: 2rem; line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 3.5rem; } }
.contact-intro h2 { font-size: clamp(2rem, 3vw, 2.3rem); line-height: 1.2; margin-bottom: 1.25rem; color: hsl(var(--foreground)); }
.contact-intro > p.lead { font-size: 14.5px; line-height: 1.7; color: hsl(var(--muted-foreground)); margin-bottom: 2.5rem; }
.contact-card { padding: 1.5rem; margin-bottom: 1.5rem; font-size: 14px; color: hsl(var(--muted-foreground)); }
.contact-card a:hover { color: hsl(var(--primary)); }
.contact-card + .contact-card { margin-top: 0; }
.contact-card p { line-height: 1.7; }
.contact-card h4 { font-size: 15px; margin-bottom: .5rem; color: hsl(var(--foreground)); }

.contact-form { padding: 2rem; }
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-row { display: flex; flex-direction: column; gap: .5rem; }
.form-row label { font-size: 13px; font-weight: 500; color: hsl(var(--foreground) / .9); }
.form-row input, .form-row select, .form-row textarea {
  border-radius: var(--radius); border: 1px solid hsl(var(--input)); background: hsl(var(--background));
  color: hsl(var(--foreground)); font-family: var(--font-body); font-size: 14.5px; padding: .65rem 1rem; outline: none;
}
.form-row select option { background: hsl(var(--card)); color: hsl(var(--foreground)); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: hsl(var(--primary)); }
.form-row textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { margin-top: 1rem; font-size: 13.5px; min-height: 1.2em; }
.form-status.success { color: hsl(var(--primary)); }
.form-status.error { color: hsl(var(--destructive)); }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 3rem 0; }
.form-success.show { display: flex; }
.form-success svg { width: 48px; height: 48px; color: hsl(var(--primary)); margin-bottom: 1.25rem; }
.form-success h3 { font-size: 1.4rem; margin-bottom: .5rem; color: hsl(var(--foreground)); }
.form-success p { font-size: 14.5px; color: hsl(var(--muted-foreground)); max-width: 22rem; line-height: 1.7; }
#contactFormEl.hide { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: hsl(var(--background)); padding: 3.5rem 0 2rem; border-bottom: none; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid hsl(var(--border)); }
@media (min-width: 768px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.6fr repeat(4, 1fr); } }
.footer-brand p { margin-top: 1.25rem; font-size: 14px; line-height: 1.7; color: hsl(var(--muted-foreground)); max-width: 22rem; }
.footer-brand .wusol-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-size: 13.5px; color: hsl(var(--accent)); }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: hsl(var(--foreground) / .9); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col span { font-size: 14px; color: hsl(var(--muted-foreground)); }
.footer-col a:hover { color: hsl(var(--primary)); }
.footer-bottom { padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 13px; color: hsl(var(--muted-foreground) / .7); }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: hsl(var(--primary)); }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 767px) {
  section { padding: 4rem 0; }
  .values-grid, .diffs-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SEO landing-page template additions (breadcrumb, compact page hero,
   prose content blocks, link/ERP cross-link grid, FAQ list)
   ========================================================================== */

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar { padding: 88px 0 0; background: hsl(var(--background)); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; padding: 1.25rem 0; font-family: var(--font-mono-taq); font-size: 12px; color: hsl(var(--muted-foreground)); }
.breadcrumb a { color: hsl(var(--muted-foreground)); }
.breadcrumb a:hover { color: hsl(var(--primary)); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: hsl(var(--foreground)); }

/* ---------- Compact page hero (SEO landing pages) ---------- */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid hsl(var(--border)); }
.page-hero .hero-grid-bg { opacity: .3; }
.page-hero-inner { position: relative; padding: 1rem 0 4rem; }
@media (min-width: 768px) { .page-hero-inner { padding: 1.5rem 0 5rem; } }
.page-hero-inner .hero-badge { margin-bottom: 0; }
.page-hero h1 { margin-top: 1.5rem; font-size: clamp(2.1rem, 4.6vw, 3.1rem); line-height: 1.1; color: hsl(var(--foreground)); max-width: 46rem; }
.page-hero-lead { margin-top: 1.5rem; font-size: 16.5px; line-height: 1.7; color: hsl(var(--muted-foreground)); max-width: 40rem; }
.page-hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* ---------- Prose content blocks ---------- */
.prose { max-width: 46rem; }
.prose p { font-size: 15px; line-height: 1.8; color: hsl(var(--foreground) / .82); margin-bottom: 1.25rem; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { font-size: 1.2rem; margin: 0 0 .85rem; color: hsl(var(--foreground)); }
.prose ul { margin: 1.25rem 0 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.prose ul:last-child { margin-bottom: 0; }
.prose li { display: flex; align-items: flex-start; gap: .75rem; font-size: 14.5px; line-height: 1.7; color: hsl(var(--foreground) / .85); }
.prose li::before { content: ''; width: 6px; height: 6px; margin-top: .55em; border-radius: 999px; background: hsl(var(--primary)); flex-shrink: 0; }
.prose strong { color: hsl(var(--foreground)); font-weight: 600; }
.content-columns { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .content-columns.with-aside { grid-template-columns: 1fr 20rem; } }
.aside-card { padding: 1.75rem; align-self: start; position: sticky; top: 96px; }
.aside-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-display); color: hsl(var(--foreground) / .9); margin-bottom: 1rem; }
.aside-card ul { display: flex; flex-direction: column; gap: .6rem; }
.aside-card a { font-size: 13.5px; color: hsl(var(--muted-foreground)); }
.aside-card a:hover { color: hsl(var(--primary)); }

/* ---------- Cross-link / ERP grid ---------- */
.link-grid { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .link-grid { grid-template-columns: repeat(3, 1fr); } }
.link-card { display: flex; flex-direction: column; gap: .5rem; padding: 1.5rem; border: 1px solid hsl(var(--border)); background: hsl(var(--card) / .4); border-radius: .75rem; transition: border-color .2s ease, transform .2s ease; }
.link-card:hover { border-color: hsl(var(--primary)); transform: translateY(-2px); }
.link-card .link-card-title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: hsl(var(--foreground)); }
.link-card p { font-size: 13px; line-height: 1.65; color: hsl(var(--muted-foreground)); }
.link-card .link-card-cta { margin-top: .25rem; display: inline-flex; align-items: center; gap: .35rem; font-size: 12px; font-family: var(--font-mono-taq); text-transform: uppercase; letter-spacing: .08em; color: hsl(var(--primary)); }
.link-card .link-card-cta svg { width: 12px; height: 12px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; max-width: 46rem; }
.faq-item { padding: 1.75rem 2rem; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: .6rem; color: hsl(var(--foreground)); }
.faq-item p { font-size: 14px; line-height: 1.75; color: hsl(var(--muted-foreground)); }
