/* ═══════════════════════════════════════════════════════════
   AWAN AGENT — Light Enterprise Design System
   Theme : Enterprise white · Slate borders · Indigo accents
   Fonts : Space Grotesk (display) · Inter (body) · JetBrains Mono
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg:        oklch(0.985 0.002 247);   /* ~#F9FAFB */
  --surface:   oklch(1 0 0);             /* #FFFFFF   */
  --surface-2: oklch(0.967 0.003 264);   /* Slate 100 */
  --surface-3: oklch(0.95  0.02  274);   /* Indigo 50 tint */

  /* Typography */
  --text:       oklch(0.21 0.04 265);    /* Slate 900 */
  --text-muted: oklch(0.51 0.02 257);    /* Slate 500 */
  --text-dim:   oklch(0.67 0.015 257);   /* Slate 400 */

  /* Brand — Indigo */
  --primary:      oklch(0.51 0.21 274);  /* Indigo 600  ~#4F46E5 */
  --primary-fg:   oklch(1 0 0);          /* white */
  --primary-glow: oklch(0.58 0.2  274);  /* Indigo 500  ~#6366F1 */

  /* Accent tints (NOT text — use --primary for text) */
  --accent:        oklch(0.95 0.02 274); /* Indigo 50   subtle tint */
  --accent-fg:     oklch(0.34 0.13 274); /* Indigo 900  deep */
  --accent-dim:    oklch(0.95 0.02 274); /* alias → --accent */
  --accent-border: oklch(0.82 0.08 274); /* Indigo 200 */
  --accent-glow:   rgba(79,70,229,0.08);

  /* Borders */
  --border:   oklch(0.93 0.006 264);    /* Slate 200 ~#E2E8F0 */
  --border-2: oklch(0.87 0.01  264);    /* Slate 300 ~#CBD5E1 */

  /* Status */
  --success:     oklch(0.55 0.15 152);  /* Emerald 600 */
  --warning:     oklch(0.68 0.16  65);  /* Amber 600   */
  --destructive: oklch(0.58 0.22  27);  /* Red 600     */

  /* Shadows */
  --shadow-card:    0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow-elegant: 0 10px 30px -12px rgba(15,23,42,.12);
  --shadow-glow:    0 0 0 3px rgba(79,70,229,.12);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg,oklch(0.51 0.21 274),oklch(0.58 0.2 274));
  --gradient-surface: linear-gradient(180deg,#fff,oklch(0.985 0.002 247));

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono','Courier New', monospace;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius:    0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Layout */
  --max-w:      760px;
  --max-w-wide: 1100px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: opacity .15s; }
a:hover { opacity: .75; text-decoration: underline; text-decoration-color: oklch(0.51 0.21 274 / .3); }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.9rem,5vw,3rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.3rem,3vw,1.8rem); margin: 3rem 0 1rem; padding-top: .5rem; }
h2:first-of-type { margin-top: 2rem; }
h3 {
  font-size: 1rem; margin: 2rem 0 .5rem;
  font-family: var(--font-body); font-weight: 700;
  color: var(--primary); letter-spacing: 0;
}
p { margin-bottom: 1.2rem; color: var(--text); }
ul,ol { margin: 0 0 1.4rem 1.5rem; }
li { margin-bottom: .55rem; }
strong { color: var(--text); font-weight: 700; }
hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ── Layout ────────────────────────────────────────────────── */
.container      { max-width: var(--max-w);      margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 1.5rem; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w-wide); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 62px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--text); text-decoration: none !important; letter-spacing: -0.03em;
}
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none !important; transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); opacity: 1; }
.btn-nav {
  background: var(--primary) !important;
  color: #ffffff !important;
  padding: .45rem 1.1rem; border-radius: var(--radius);
  font-weight: 600 !important; font-size: .8125rem !important;
  text-decoration: none !important; letter-spacing: -.01em;
  box-shadow: var(--shadow-card); transition: opacity .15s !important;
}
.btn-nav:hover { opacity: .85 !important; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  font-size: .78rem; color: var(--text-dim);
  display: flex; gap: .35rem; align-items: center; flex-wrap: wrap;
  padding: 1.2rem 0 0;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none !important; }
.breadcrumb a:hover { color: var(--primary); opacity: 1; }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--text-muted); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(100,116,139,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,116,139,.04) 1px, transparent 1px),
    var(--gradient-surface);
  background-size: 32px 32px, 32px 32px, 100% 100%;
}
.hero .container { text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent); border: 1px solid var(--accent-border);
  color: var(--accent-fg);
  font-size: .72rem; font-weight: 600; font-family: var(--font-display);
  padding: .3rem .9rem; border-radius: 100px;
  margin-bottom: 1.2rem; letter-spacing: .01em;
}
.hero h1 { max-width: 700px; margin: 0 auto 1.1rem; }
.hero .lead {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 1.8rem; line-height: 1.75;
}
.meta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.4rem; flex-wrap: wrap;
  font-size: .78rem; color: var(--text-dim); margin-bottom: .5rem;
}
.meta-row .sep { opacity: .35; }
.meta-row a { color: var(--text-muted); font-weight: 600; }
.meta-row strong { color: var(--text); }

/* ── Article body ──────────────────────────────────────────── */
.article-body { padding: 3rem 0 5rem; }

/* ── Snippet block (Featured Snippet target) ───────────────── */
.snippet-block {
  background: var(--accent);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem; margin: 1.75rem 0 2.5rem;
  box-shadow: var(--shadow-card);
}
.snippet-label {
  display: block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--primary); margin-bottom: .55rem;
  font-family: var(--font-display);
}
.snippet-block p { font-size: .96rem; line-height: 1.72; color: var(--text); margin: 0; }

/* ── Snippet answer (inline Q&A) ───────────────────────────── */
.snippet-answer {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.2rem 1.5rem; margin: 1.5rem 0;
  box-shadow: var(--shadow-card);
}
.snippet-answer .q {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--primary);
  margin-bottom: .5rem; font-family: var(--font-display);
}
.snippet-answer p { margin: 0; font-size: .95rem; line-height: 1.7; color: var(--text); }

/* ── Numbered step list ────────────────────────────────────── */
.step-list { list-style: none; margin: .5rem 0 2rem; padding: 0; counter-reset: steps; }
.step-list > li {
  counter-increment: steps; margin: 0;
  display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; align-items: start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.step-list > li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--primary); padding-top: 3px; letter-spacing: -.02em;
}
.step-list .step-title { font-weight: 700; color: var(--text); display: block; margin-bottom: .25rem; font-family: var(--font-display); font-size: .97rem; }
.step-list p { margin: 0; font-size: .93rem; color: var(--text-muted); }

/* ── Evidence list ─────────────────────────────────────────── */
.evidence-list { list-style: none; margin: .5rem 0 2rem; padding: 0; counter-reset: ev; }
.evidence-list > li {
  counter-increment: ev; margin: 0;
  display: grid; grid-template-columns: 2rem 1fr; gap: .85rem; align-items: start;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
}
.evidence-list > li::before {
  content: counter(ev);
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--accent); border: 1px solid var(--accent-border);
  color: var(--primary); font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-family: var(--font-display);
}
.evidence-list .ev-title { font-weight: 700; color: var(--text); display: block; margin-bottom: .2rem; font-family: var(--font-display); font-size: .95rem; }
.evidence-list p { margin: 0; font-size: .91rem; color: var(--text-muted); }

/* ── Table ─────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto; margin: 1.5rem 0 2rem;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
table { width: 100%; border-collapse: collapse; font-size: .875rem; }
th {
  background: var(--surface-2); padding: .75rem 1rem;
  text-align: left; font-weight: 600; color: var(--text-muted);
  font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 1px solid var(--border); font-family: var(--font-display);
}
td { padding: .8rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text-muted); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: oklch(0.985 0.002 247 / .6); }
td:first-child { font-weight: 600; color: var(--text); }
.tick  { color: var(--success); font-weight: 700; }
.cross { color: var(--text-dim); }
.awan  { color: var(--primary) !important; font-weight: 700; }

/* ── FAQ accordion ─────────────────────────────────────────── */
.faq-section { margin: 2.5rem 0; }
.faq-section > h2 { margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1.1rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; color: var(--text);
}
.faq-q .icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border-2); display: flex; align-items: center;
  justify-content: center; color: var(--primary);
  font-size: 1rem; line-height: 1; transition: background .15s, border-color .15s;
}
.faq-q[aria-expanded="true"] .icon { background: var(--accent); border-color: var(--accent-border); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .32s ease; }
.faq-a-inner { padding: 0 0 1.2rem; font-size: .94rem; color: var(--text-muted); line-height: 1.75; }
.faq-a-inner p { margin-bottom: .6rem; color: var(--text-muted); }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ── CTA block (gradient) ──────────────────────────────────── */
.cta-block {
  margin: 3.5rem 0;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl); padding: 3rem 2rem;
  text-align: center; box-shadow: var(--shadow-elegant);
}
.cta-block h2 { margin: 0 0 .75rem; font-size: clamp(1.3rem,3vw,1.7rem); color: #fff; }
.cta-block p { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ────────────────────────────────────────────────── */
/* Default buttons — for light / white backgrounds */
.btn {
  display: inline-block;
  background: var(--primary); color: #ffffff !important;
  font-weight: 700; font-size: .875rem; font-family: var(--font-body);
  padding: .75rem 1.75rem; border-radius: var(--radius);
  text-decoration: none !important; letter-spacing: -.01em;
  box-shadow: 0 1px 2px rgba(79,70,229,.18), 0 1px 8px rgba(79,70,229,.12);
  transition: opacity .15s, transform .1s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: var(--surface); color: var(--text-muted) !important;
  border: 1px solid var(--border-2); font-family: var(--font-body);
  font-weight: 600; font-size: .875rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  text-decoration: none !important;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-ghost:hover { background: var(--surface-2); color: var(--text) !important; border-color: var(--border-2); opacity: 1; }

/* Buttons inside gradient .cta-block — invert for contrast */
.cta-block .btn {
  background: #ffffff; color: var(--primary) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.cta-block .btn:hover { opacity: .93; transform: translateY(-1px); }
.cta-block .btn-ghost {
  background: transparent; color: rgba(255,255,255,.88) !important;
  border-color: rgba(255,255,255,.32);
}
.cta-block .btn-ghost:hover { background: rgba(255,255,255,.12); color: #ffffff !important; border-color: rgba(255,255,255,.5); }

/* ── Inline CTA banner ─────────────────────────────────────── */
.inline-cta {
  background: var(--accent); border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg); padding: 1.2rem 1.5rem; margin: 2.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.inline-cta p { margin: 0; font-size: .9rem; color: var(--text-muted); }
.inline-cta strong { color: var(--text); }
.btn-sm {
  background: var(--primary); color: #fff !important;
  font-weight: 600; font-size: .78rem; font-family: var(--font-body);
  padding: .5rem 1.1rem; border-radius: var(--radius);
  text-decoration: none !important; white-space: nowrap; transition: opacity .15s;
}
.btn-sm:hover { opacity: .85; }

/* ── Info / tip box ────────────────────────────────────────── */
.info-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.5rem; margin: 2rem 0;
  box-shadow: var(--shadow-card);
}
.info-box p { margin: 0; font-size: .9rem; color: var(--text-muted); }
.info-box strong { color: var(--text); }
.info-box.tip { border-color: var(--accent-border); background: var(--accent); }
.info-box.tip p { color: var(--accent-fg); }

/* ── Tags / badges ─────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-muted); font-size: .69rem; font-weight: 600;
  padding: .2rem .6rem; border-radius: var(--radius-sm);
  text-transform: uppercase; letter-spacing: .05em;
  margin: 0 .3rem .3rem 0; font-family: var(--font-display);
}
.tag.green { color: var(--accent-fg); border-color: var(--accent-border); background: var(--accent); }

/* ── Feature cards ─────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  box-shadow: var(--shadow-card); transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-elegant); border-color: var(--border-2); }
.card-icon { font-size: 1.4rem; margin-bottom: .7rem; }
.card h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.card p  { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--border); margin-top: 5rem; }
.footer-main {
  max-width: var(--max-w-wide); margin: 0 auto; padding: 3rem 1.5rem 2rem;
  display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between;
}
.footer-brand { max-width: 260px; }
.footer-logo {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text); display: block; margin-bottom: .6rem;
  letter-spacing: -.02em; text-decoration: none !important;
}
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.footer-frameworks { display: flex; gap: .35rem; flex-wrap: wrap; }
.fw-tag {
  font-size: .68rem; background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); padding: .15rem .5rem; border-radius: var(--radius-sm); font-weight: 500;
}
.footer-col h5 {
  font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: .85rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .83rem; color: var(--text-dim); text-decoration: none !important; }
.footer-col a:hover { color: var(--primary); opacity: 1; }
.footer-bottom {
  max-width: var(--max-w-wide); margin: 0 auto; padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  font-size: .77rem; color: var(--text-dim);
}

/* ── Terminal (product visual — stays dark) ────────────────── */
.product-visual {
  background: #0f172a !important;
  border: 1px solid #1e293b !important;
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.terminal-bar { display: flex; gap: .4rem; margin-bottom: 1rem; }
.terminal-bar span { width: 10px; height: 10px; border-radius: 50%; }
.t-red   { background: #ff5f57; }
.t-amber { background: #febc2e; }
.t-green { background: #28c840; }
.terminal-body { font-family: var(--font-mono); font-size: .8rem; line-height: 1.9; }
.t-dim    { color: #64748b; }
.t-accent { color: #818cf8; }
.t-white  { color: #e2e8f0; }
.t-warn   { color: #f59e0b; }
.t-ok     { color: #34d399; }

/* ── GDPR page — checks grid ───────────────────────────────── */
.checks-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: .9rem; margin: 1.5rem 0 2.5rem; }
.check-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.1rem 1.2rem;
  display: flex; gap: .75rem; align-items: flex-start;
  box-shadow: var(--shadow-card); transition: box-shadow .15s;
}
.check-item:hover { box-shadow: var(--shadow-elegant); }
.check-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.check-item h4 { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.check-item p  { font-size: .8rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

.how-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.25rem; margin: 1.5rem 0 2.5rem; counter-reset: how; }
.how-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.6rem 1.4rem;
  counter-increment: how; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card); transition: box-shadow .2s, border-color .2s;
}
.how-step:hover { box-shadow: var(--shadow-elegant); border-color: var(--accent-border); }
.how-step::before {
  content: counter(how);
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--accent); border: 1px solid var(--accent-border);
  color: var(--primary); font-size: .82rem; font-weight: 700;
  font-family: var(--font-display); flex-shrink: 0;
  margin-bottom: .9rem;
}
.how-step h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.how-step p  { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

.report-list { list-style: none; margin: 1rem 0 2rem; padding: 0; }
.report-list li {
  display: flex; gap: .75rem; align-items: center;
  padding: .7rem 0; border-bottom: 1px solid var(--border);
  font-size: .93rem; color: var(--text-muted); margin: 0;
}
.report-list li::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; }

.competitor-note {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.5rem 0;
  display: flex; gap: .75rem; align-items: flex-start;
}
.competitor-note .note-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.competitor-note p { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.competitor-note strong { color: var(--text); }

/* ── AI audit tools page ───────────────────────────────────── */
.features-list { list-style: none; margin: 1rem 0 2rem; padding: 0; }
.features-list li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .85rem 0; border-bottom: 1px solid var(--border); margin: 0; font-size: .93rem;
}
.features-list li::before { content: '→'; color: var(--primary); font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.features-list strong { color: var(--text); display: block; margin-bottom: .15rem; font-family: var(--font-display); font-size: .9rem; }
.features-list span { color: var(--text-muted); font-size: .88rem; }

.internal-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.internal-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.2rem;
  text-decoration: none !important; transition: box-shadow .15s, border-color .15s;
  display: block; box-shadow: var(--shadow-card);
}
.internal-card:hover { box-shadow: var(--shadow-elegant); border-color: var(--border-2); opacity: 1; }
.internal-card .label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--primary); margin-bottom: .5rem; display: block; font-family: var(--font-display);
}
.internal-card h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; line-height: 1.3; }
.internal-card p  { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ── AI summarization page ─────────────────────────────────── */
.feature-check-list { list-style: none; margin: .75rem 0 2rem; padding: 0; }
.feature-check-list li { display: flex; gap: .8rem; align-items: flex-start; padding: .75rem 0; border-bottom: 1px solid var(--border); margin: 0; font-size: .92rem; }
.feature-check-list li .ficon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.feature-check-list strong { color: var(--text); display: block; margin-bottom: .15rem; font-family: var(--font-display); font-size: .9rem; font-weight: 700; }
.feature-check-list span { color: var(--text-muted); font-size: .87rem; }

.workflow-steps { counter-reset: wf; list-style: none; margin: .75rem 0 2rem; padding: 0; }
.workflow-steps li {
  counter-increment: wf;
  display: grid; grid-template-columns: 2.2rem 1fr; gap: .9rem;
  padding: .9rem 0; border-bottom: 1px solid var(--border); margin: 0; align-items: start;
}
.workflow-steps li::before {
  content: counter(wf);
  background: var(--accent); border: 1px solid var(--accent-border);
  color: var(--primary); font-size: .78rem; font-weight: 700;
  width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0; margin-top: 2px; font-family: var(--font-display);
}
.workflow-steps strong { color: var(--text); display: block; font-size: .92rem; margin-bottom: .2rem; font-family: var(--font-display); font-weight: 600; }
.workflow-steps p { margin: 0; font-size: .88rem; color: var(--text-muted); }

.vs-block { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0 2.5rem; }
.vs-col {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--shadow-card);
}
.vs-col.accent { border-color: var(--accent-border); background: var(--accent); }
.vs-col h4 { font-family: var(--font-display); font-size: .82rem; font-weight: 700; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.vs-col.accent h4 { color: var(--primary); }
.vs-col ul { list-style: none; margin: 0; padding: 0; }
.vs-col li { font-size: .84rem; color: var(--text-muted); padding: .35rem 0; border-bottom: 1px solid var(--border); margin: 0; display: flex; gap: .5rem; align-items: center; }
.vs-col li:last-child { border-bottom: none; }
.vs-col li::before { content: '✗'; color: var(--text-dim); flex-shrink: 0; }
.vs-col.accent li::before { content: '✓'; color: var(--success); font-weight: 700; }
@media(max-width:560px){ .vs-block{grid-template-columns:1fr} }

/* ── Responsive ────────────────────────────────────────────── */
@media(max-width:640px){
  .nav-links { display: none; }
  .hero { padding: 2.5rem 0 2rem; }
  .cta-block { padding: 2rem 1.25rem; }
  .inline-cta { flex-direction: column; gap: .75rem; }
  .footer-main { flex-direction: column; gap: 1.8rem; }
  .table-wrap { font-size: .82rem; }
}
