/* ============================================
   INCLUDEIFY — Main Stylesheet
   Fonts: Syne (headings) + DM Sans (body)
   Colors: Navy #1a2e5a, Warm Grey rgb(245,245,245)
   ============================================ */

:root {
  --navy: #1a2e5a;
  --navy-light: #253f7a;
  --navy-dark: #111f3d;
  --grey-bg: rgb(245,245,245);
  --white: #ffffff;
  --black: #0a0a0a;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #999999;
  --border: #e4e4e4;
  --border-dark: #d0d0d0;
  --critical: #c0392b;
  --serious: #d97706;
  --moderate: #64748b;
  --verified: #16a34a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(26,46,90,0.10);
  --shadow-lg: 0 8px 40px rgba(26,46,90,0.13);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--white);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
  background: var(--black);
  color: #fff;
  padding: 11px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.banner-text { font-size: 12.5px; font-weight: 500; color: #e0e0e0; }
.banner-cta {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  white-space: nowrap;
  transition: background 0.2s;
}
.banner-cta:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   NAV
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.nav-logo span {
  background: var(--navy);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 1px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-login {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-login:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 32px; gap: 14px; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.mobile-nav .mobile-cta { color: var(--navy); font-weight: 700; }

/* ============================================
   HERO
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 80px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.hero h1 em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }

.btn-primary {
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-ghost {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.aria-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef3ff;
  border: 1px solid #c8d8f5;
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 12.5px;
  color: var(--navy);
}
.aria-dot {
  width: 7px; height: 7px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* DASHBOARD CARD */
.dash-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash-header {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-site { font-size: 12px; font-weight: 700; }
.dash-scan { font-size: 10px; opacity: 0.5; margin-top: 1px; }
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 9px; height: 9px; border-radius: 50%; display: block; }
.dash-body { padding: 16px; }
.score-row { display: flex; gap: 14px; margin-bottom: 14px; }
.score-box {
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  flex: 0 0 90px;
  text-align: center;
  border: 1px solid var(--border);
}
.score-letter { font-family: 'DM Sans', sans-serif; font-size: 40px; font-weight: 700; color: var(--critical); line-height: 1; }
.score-sub { font-size: 9.5px; color: var(--text-muted); margin-top: 3px; }
.score-meta { flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.meta-item {}
.meta-row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 4px; }
.meta-label { color: var(--text-muted); }
.meta-count { font-weight: 700; }
.critical-text { color: var(--critical); }
.serious-text { color: var(--serious); }
.moderate-text { color: var(--moderate); }
.meta-bar { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.meta-fill { height: 100%; border-radius: 3px; transition: width 1.6s cubic-bezier(.4,0,.2,1); }
.critical-fill { background: var(--critical); }
.serious-fill { background: var(--serious); }
.moderate-fill { background: var(--moderate); }
.v-section-title { font-size: 10px; font-weight: 700; color: #bbb; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 8px; }
.v-list {}
.v-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid #f4f4f4;
}
.v-row:last-child { border-bottom: none; }
.v-anim { animation: slideUp 0.4s ease both; }
.v-name { font-size: 11px; color: var(--text-primary); font-weight: 500; }
.v-badges { display: flex; gap: 5px; }
.vb { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; }
.bc { background: #fde8e8; color: var(--critical); }
.bs { background: #fef3cd; color: var(--serious); }
.bm { background: #f1f5f9; color: var(--moderate); }
.bo { background: #f0f0f0; color: #888; border-radius: 10px; }
.chart-area { margin-top: 12px; background: var(--grey-bg); border-radius: 8px; padding: 10px 12px; border: 1px solid var(--border); }
.chart-label { font-size: 9.5px; color: #bbb; margin-bottom: 6px; }
.ticker-bar {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px; padding: 8px 12px;
  background: #eef3ff; border-radius: 6px; border: 1px solid #c8d8f5;
}
.ticker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--navy); animation: pulse 1.5s infinite; flex-shrink: 0; }
.ticker-text { font-size: 10px; color: var(--navy); font-weight: 600; transition: opacity 0.3s; }

/* ============================================
   INDUSTRY STRIP
   ============================================ */
.industry-strip {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.industry-label { font-size: 11px; font-weight: 600; color: #ccc; white-space: nowrap; margin-right: 24px; text-transform: uppercase; letter-spacing: 0.5px; }
.industry-items { display: flex; gap: 32px; flex-wrap: wrap; }
.industry-items span { font-size: 12px; font-weight: 700; color: #d0d0d0; letter-spacing: -0.2px; }

/* ============================================
   STATS
   ============================================ */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--grey-bg);
  border-bottom: 1px solid var(--border);
}
.stat-card {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 12px;
}
.section-eyebrow.light { color: #fff; opacity: 0.7; }
.section-header h2 { font-size: clamp(24px, 3vw, 36px); color: var(--text-primary); }
.section-sub { font-size: 15px; color: var(--text-secondary); margin-top: 12px; max-width: 500px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-card {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--border-dark);
  margin-bottom: 14px;
}
.step-card h3 { font-size: 17px; margin-bottom: 10px; }
.step-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

/* ============================================
   ARIA SECTION
   ============================================ */
.aria-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px;
  background: var(--navy);
  color: #fff;
}
.aria-section h2 { font-size: clamp(24px, 2.8vw, 34px); color: #fff; margin-bottom: 16px; }
.aria-section p { font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; }
.aria-features { list-style: none; margin-bottom: 28px; }
.aria-features li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-left: 20px;
  position: relative;
}
.aria-features li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.btn-primary-light {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-light:hover { background: #e8efff; transform: translateY(-1px); }

/* ARIA CHAT */
.aria-chat {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
}
.chat-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.chat-status { font-size: 10.5px; color: #16a34a; font-weight: 600; }
.chat-messages { padding: 16px; min-height: 180px; max-height: 260px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.55;
}
.chat-msg.user {
  background: var(--navy);
  color: #fff;
  align-self: flex-end;
  border-radius: 12px 12px 2px 12px;
}
.chat-msg.aria {
  background: var(--grey-bg);
  color: var(--text-primary);
  align-self: flex-start;
  border-radius: 12px 12px 12px 2px;
}
.typing-dots { display: flex; gap: 4px; padding: 4px 2px; }
.typing-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
.chat-input-row {
  display: flex;
  border-top: 1px solid var(--border);
}
.chat-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-primary);
  background: transparent;
}
.chat-send {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-send:hover { background: var(--navy-light); }

/* ============================================
   DIFFERENTIATORS
   ============================================ */
.diff-section {
  padding: 80px;
  background: var(--grey-bg);
  border-bottom: 1px solid var(--border);
}
.diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.diff-icon { font-size: 18px; color: var(--navy); font-weight: 800; margin-bottom: 10px; }
.diff-card h3 { font-size: 16px; margin-bottom: 8px; }
.diff-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* COMPARISON TABLE */
.comparison-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.comp-header, .comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-header { background: var(--grey-bg); }
.comp-feature, .comp-brand, .comp-cell {
  padding: 13px 18px;
  font-size: 12.5px;
}
.comp-feature { font-weight: 500; color: var(--text-secondary); }
.comp-brand { font-weight: 700; text-align: center; color: var(--text-muted); font-size: 12px; }
.comp-brand.highlight { color: var(--navy); }
.comp-cell { text-align: center; color: var(--text-muted); font-size: 12.5px; }
.comp-cell.highlight { color: var(--navy); font-weight: 700; }
.comp-row:nth-child(odd) .comp-cell.highlight,
.comp-row:nth-child(even) .comp-cell.highlight { color: var(--navy); }

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  padding: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 32px; }
.pricing-card {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-2px); }
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 8px; opacity: 0.7; }
.plan-price { font-family: 'DM Sans', sans-serif; font-size: 38px; font-weight: 700; letter-spacing: -1.5px; margin-bottom: 4px; }
.plan-price span { font-size: 16px; font-weight: 500; opacity: 0.6; }
.plan-desc { font-size: 12px; opacity: 0.6; margin-bottom: 20px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-left: 18px;
  position: relative;
}
.pricing-card.featured .plan-features li { border-bottom-color: rgba(255,255,255,0.1); }
.plan-features li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; color: var(--navy); }
.pricing-card.featured .plan-features li::before { color: #4ade80; }

.btn-plan {
  display: block;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.btn-plan:hover { background: var(--navy-light); }
.btn-plan-featured {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.btn-plan-featured:hover { background: #e8efff; }

.manual-audit-cta {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.audit-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.audit-text strong { color: var(--text-primary); }
.btn-ghost-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost-dark:hover { background: var(--navy); color: #fff; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 80px;
  background: var(--grey-bg);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.testimonial-quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.author-title { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 40px;
}
.final-cta h2 { font-size: clamp(24px, 3vw, 38px); color: #fff; margin-bottom: 14px; font-family: 'DM Sans', sans-serif; font-weight: 700; line-height: 1.15; }
.final-cta p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.btn-primary-xl {
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-xl:hover { background: #e8efff; transform: translateY(-1px); }
.cta-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 14px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); color: #fff; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-logo span { background: var(--navy); padding: 1px 6px; border-radius: 3px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); font-style: italic; margin-bottom: 6px; }
.footer-contact { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 16px 80px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-body { background: var(--grey-bg); }
.demo-banner {
  background: #fff3cd;
  border-bottom: 1px solid #fde68a;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #92640a;
}
.demo-banner-cta {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 130px); }

/* SIDEBAR */
.dash-sidebar {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-site { display: flex; align-items: center; gap: 10px; padding: 0 8px; }
.site-favicon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}
.site-name { font-size: 12.5px; font-weight: 700; color: var(--text-primary); }
.site-url { font-size: 10.5px; color: var(--text-muted); }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.sidebar-link:hover { background: var(--grey-bg); color: var(--text-primary); }
.sidebar-link.active { background: #eef3ff; color: var(--navy); font-weight: 700; }
.sidebar-upgrade {
  margin-top: auto;
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.upgrade-title { font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.upgrade-body { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.upgrade-cta {
  display: block;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 9px;
  border-radius: var(--radius-sm);
}

/* DASH MAIN */
.dash-main { padding: 32px 40px; overflow-y: auto; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.dash-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.dash-page-title { font-size: 22px; margin-bottom: 4px; }
.dash-page-sub { font-size: 12.5px; color: var(--text-muted); }
.rescan-link { color: var(--navy); cursor: pointer; font-weight: 600; }
.dash-header-actions { display: flex; gap: 10px; }
.btn-dash-primary {
  background: var(--navy); color: #fff;
  font-size: 12.5px; font-weight: 700;
  padding: 9px 18px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
}
.btn-dash-secondary {
  background: var(--white); color: var(--text-primary);
  font-size: 12.5px; font-weight: 600;
  padding: 9px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); cursor: pointer;
}

/* KPI GRID */
.kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.kpi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.kpi-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.kpi-value { font-family: 'DM Sans', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -1px; margin-bottom: 4px; }
.kpi-sub { font-size: 11.5px; color: var(--text-muted); }
.score-f { color: var(--critical); }
.kpi-critical { color: var(--critical); }
.kpi-exposure { color: var(--serious); }

/* DASH GRID */
.dash-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.dash-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.dash-widget.full-width { }
.widget-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.severity-bars { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.sev-row { display: grid; grid-template-columns: 70px 1fr 30px; align-items: center; gap: 10px; }
.sev-label { font-size: 12px; color: var(--text-secondary); }
.sev-bar-wrap { background: var(--border); border-radius: 4px; height: 7px; overflow: hidden; }
.sev-bar { height: 100%; border-radius: 4px; transition: width 1.6s cubic-bezier(.4,0,.2,1); }
.critical-bg { background: var(--critical); }
.serious-bg { background: var(--serious); }
.moderate-bg { background: var(--moderate); }
.sev-count { font-size: 12px; font-weight: 700; text-align: right; }
.widget-divider { height: 1px; background: var(--border); margin: 16px 0; }
.status-breakdown { display: flex; flex-direction: column; gap: 8px; }
.status-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.open { background: var(--critical); }
.status-dot.inprogress { background: var(--serious); }
.status-dot.completed { background: var(--moderate); }
.status-dot.verified { background: var(--verified); }
.status-label { flex: 1; color: var(--text-secondary); }
.status-count { font-weight: 700; }
.score-chart-wrap { margin-bottom: 16px; }
.industry-rank-box {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.rank-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.rank-value { font-size: 13px; font-weight: 700; color: var(--navy); }
.rank-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* VIOLATIONS TABLE */
.violations-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.violations-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}
.violations-table td { padding: 12px 12px; border-bottom: 1px solid #f4f4f4; vertical-align: middle; }
.violations-table tr:last-child td { border-bottom: none; }
.tbl-btn {
  background: #eef3ff;
  color: var(--navy);
  border: none;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.tbl-btn:hover { background: #d8e8ff; }
.fixed-label { font-size: 11.5px; color: var(--verified); font-weight: 700; }

/* STATUS PILLS */
.status-pill { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 10px; }
.status-pill.open { background: #fde8e8; color: var(--critical); }
.status-pill.inprogress { background: #fef3cd; color: var(--serious); }
.status-pill.verified { background: #dcfce7; color: var(--verified); }
.grade-f { color: var(--critical); font-weight: 700; font-family: 'DM Sans', sans-serif; }

.table-blur-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  background: linear-gradient(to bottom, rgba(245,245,245,0) 0%, rgba(245,245,245,0.95) 100%);
  border-top: 1px solid var(--border);
  margin-top: -20px;
}
.blur-content { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.blur-cta {
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

/* FILTER */
.filter-row { display: flex; gap: 10px; }
.filter-select {
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
}

/* VIOLATION CARDS */
.violation-cards { display: flex; flex-direction: column; gap: 16px; }
.violation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.violation-card.blurred { overflow: hidden; }
.blur-overlay {
  position: absolute; inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(245,245,245,0.85);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  z-index: 2;
}
.blur-msg { text-align: center; max-width: 320px; }
.blur-msg strong { font-size: 16px; display: block; margin-bottom: 8px; }
.blur-msg p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.vc-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.vc-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vc-title { font-size: 16px; }
.vc-desc { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.6; }
.vc-pages { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.vc-fix {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 14px;
}
.fix-label { font-size: 10.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.fix-steps { font-size: 13px; color: var(--text-primary); line-height: 1.6; }
.vc-actions { display: flex; gap: 10px; }
.btn-ask-aria {
  background: #eef3ff;
  color: var(--navy);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-ask-aria:hover { background: #d8e8ff; }
.btn-verify {
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-verify:hover { background: var(--navy-light); }
.status-select {
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

/* ARIA FULL CHAT */
.aria-full-chat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 260px);
  min-height: 500px;
}
.aria-chat-messages { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.aria-welcome {
  display: flex;
  gap: 14px;
  background: var(--grey-bg);
  border-radius: var(--radius-md);
  padding: 20px;
}
.aria-avatar-lg {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.aria-welcome-text { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.aria-welcome-text strong { color: var(--text-primary); }
.aria-suggestions { display: flex; flex-wrap: wrap; gap: 8px; }
.suggestion-chip {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.suggestion-chip:hover { background: #eef3ff; border-color: #c8d8f5; }
.aria-chat-input {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
}
.aria-input-full {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}
.aria-input-full:focus { border-color: var(--navy); }
.aria-send-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.aria-send-btn:hover { background: var(--navy-light); }

/* HISTORY */
.history-chart-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}
.history-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.history-table-wrap .violations-table td,
.history-table-wrap .violations-table th { padding: 14px 20px; }

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-body { background: var(--grey-bg); min-height: 100vh; }
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-left {
  background: var(--navy);
  color: #fff;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
}
.auth-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
  display: block;
}
.auth-logo span { background: rgba(255,255,255,0.15); padding: 1px 7px; border-radius: 4px; }
.auth-left-content { flex: 1; }
.auth-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.auth-headline { font-size: clamp(22px, 2.5vw, 34px); color: #fff; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.auth-sub { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.auth-stats { display: flex; gap: 32px; }
.auth-stat-num { font-family: 'DM Sans', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -0.5px; }
.auth-stat-label { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.auth-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.auth-check { display: flex; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.8); }
.auth-check span { color: #4ade80; font-weight: 700; }
.auth-left-tagline { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; }
.auth-right { display: flex; align-items: center; justify-content: center; padding: 40px; }
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-title { font-size: 26px; margin-bottom: 6px; }
.auth-card-sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; }
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 20px;
}
.google-btn:hover { background: var(--grey-bg); border-color: var(--border-dark); }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--text-muted);
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-label-link { color: var(--navy); font-weight: 500; }
.form-input {
  display: block;
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--navy); }
.form-textarea { resize: vertical; min-height: 110px; }
.auth-submit {
  display: block;
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.auth-submit:hover { background: var(--navy-light); }
.auth-switch { font-size: 13px; color: var(--text-muted); text-align: center; }
.auth-switch a { color: var(--navy); font-weight: 700; }
.auth-terms { font-size: 11.5px; color: var(--text-muted); text-align: center; margin-bottom: 16px; line-height: 1.5; }
.auth-terms a { color: var(--navy); }
.auth-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}
.auth-message.success { background: #dcfce7; color: var(--verified); }
.auth-message.error { background: #fde8e8; color: var(--critical); }

/* PLAN SELECTOR */
.plan-selector { margin-bottom: 20px; }
.plan-selector-label { font-size: 12.5px; font-weight: 700; margin-bottom: 10px; }
.plan-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.plan-option input { display: none; }
.plan-option-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.plan-option input:checked + .plan-option-card { border-color: var(--navy); background: #eef3ff; }
.plan-popular-badge {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff;
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 10px;
  white-space: nowrap;
}
.plan-option-name { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.plan-option-price { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin: 4px 0; }
.plan-option-desc { font-size: 10.5px; color: var(--text-muted); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 80px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.about-hero h1 { font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 16px; font-family: 'DM Sans', sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
.about-hero-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.7; max-width: 640px; }
.about-content { padding: 80px; border-bottom: 1px solid var(--border); }
.about-founder {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.founder-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 22px;
  flex-shrink: 0;
}
.founder-text h2 { font-size: 24px; margin-bottom: 4px; }
.founder-title { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.founder-text p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.founder-email { color: var(--navy); font-weight: 700; font-size: 14px; }
.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-card {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.mission-card h3 { font-size: 18px; margin-bottom: 14px; }
.mission-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.contact-section { padding: 80px; background: var(--grey-bg); border-bottom: 1px solid var(--border); }
.contact-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; }
.contact-item { margin-bottom: 28px; }
.contact-item-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.contact-item-value { font-size: 14.5px; color: var(--text-primary); line-height: 1.6; }
.contact-item a { color: var(--navy); font-weight: 600; }

/* ============================================
   CONTRACT PAGE
   ============================================ */
.contract-page { max-width: 760px; margin: 0 auto; padding: 64px 40px; }
.contract-header { border-bottom: 2px solid var(--border); padding-bottom: 32px; margin-bottom: 40px; }
.contract-header h1 { font-size: 34px; margin-bottom: 8px; }
.contract-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.contract-notice {
  background: #fef3cd;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12.5px;
  color: #92640a;
  font-weight: 600;
}
.contract-body {}
.contract-section { margin-bottom: 36px; }
.contract-section h2 { font-size: 18px; margin-bottom: 12px; color: var(--navy); }
.contract-section p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.contract-section ul { list-style: disc; padding-left: 24px; }
.contract-section li { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 6px; }
.contract-section a { color: var(--navy); }
.contract-footer-note {
  margin-top: 48px;
  padding: 16px 20px;
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.3); }
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(8px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes typingBounce {
  0%,60%,100% { transform:translateY(0); opacity:0.4; }
  30% { transform:translateY(-4px); opacity:1; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-delay { animation: fadeUp 0.7s ease 0.2s both; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero { padding: 48px 40px; gap: 32px; }
  .how-it-works, .aria-section, .diff-section, .pricing-section, .testimonials-section, .final-cta { padding: 56px 40px; }
  .footer-top { padding: 40px; }
  .footer-bottom { padding: 14px 40px; }
  .industry-strip { padding: 14px 40px; }
  .stats-section .stat-card { padding: 20px; }
  .about-hero, .about-content, .contact-section { padding: 56px 40px; }
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .dash-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .hero-right { order: -1; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-login { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .about-founder { flex-direction: column; }
  .about-mission { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .footer-top { flex-direction: column; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
  .footer-bottom { padding: 14px 24px; flex-direction: column; gap: 4px; }
  .comp-header, .comp-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .manual-audit-cta { flex-direction: column; align-items: flex-start; }
  .how-it-works, .aria-section, .diff-section, .pricing-section, .testimonials-section { padding: 40px 24px; }
  .about-hero, .about-content, .contact-section { padding: 40px 24px; }
}

/* ============================================
   BAR CHART + EXPOSURE CALLOUT
   ============================================ */
.score-exposure-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: stretch;
}
.exposure-callout {
  flex: 1;
  background: #fff8f0;
  border: 1px solid #fde8c8;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exposure-label {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--serious);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.exposure-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--serious);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 3px;
}
.exposure-sub {
  font-size: 9px;
  color: #c4860a;
  opacity: 0.8;
}

.bar-chart {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 70px;
  padding: 0 4px;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
  justify-content: flex-end;
}
.bar-wrap {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: flex-end;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  background: var(--grey-bg);
}
.bar-fill {
  width: 100%;
  border-radius: 3px 3px 0 0;
  transition: height 1.4s cubic-bezier(.4,0,.2,1);
}
.bar-critical { background: var(--critical); }
.bar-serious { background: var(--serious); }
.bar-moderate { background: var(--moderate); }
.bar-count {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.bar-label {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   ARIA FLOATING WIDGET
   ============================================ */
.aria-widget-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(26,46,90,0.35);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  user-select: none;
}
.aria-widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,46,90,0.45);
}
.aria-widget-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.aria-widget-label {
  font-size: 14px;
  font-weight: 700;
}
.aria-widget-ping {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  background: #16a34a;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: ping 2s infinite;
}
@keyframes ping {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.aria-widget-panel {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(26,46,90,0.22);
  border: 1px solid var(--border);
  z-index: 998;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.aria-widget-panel.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.aria-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}
.aria-widget-header-left { display: flex; align-items: center; gap: 10px; }
.aria-widget-header-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.aria-widget-name { font-size: 14px; font-weight: 700; }
.aria-widget-status {
  font-size: 10.5px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}
.aria-online-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
.aria-widget-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.aria-widget-close:hover { background: rgba(255,255,255,0.25); }

.aria-widget-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aria-widget-welcome {
  background: var(--grey-bg);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.aria-widget-welcome strong { color: var(--text-primary); }
.aria-widget-suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aria-suggestion {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.aria-suggestion:hover { background: #eef3ff; border-color: #c8d8f5; }

/* Widget message bubbles */
.widget-msg-user {
  align-self: flex-end;
  background: var(--navy);
  color: #fff;
  padding: 9px 13px;
  border-radius: 12px 12px 2px 12px;
  font-size: 12.5px;
  max-width: 85%;
  line-height: 1.5;
}
.widget-msg-aria {
  align-self: flex-start;
  background: var(--grey-bg);
  color: var(--text-primary);
  padding: 9px 13px;
  border-radius: 12px 12px 12px 2px;
  font-size: 12.5px;
  max-width: 85%;
  line-height: 1.55;
}

.aria-widget-input-row {
  display: flex;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.aria-widget-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-primary);
  background: var(--white);
}
.aria-widget-send {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.aria-widget-send:hover { background: var(--navy-light); }

.aria-widget-footer {
  padding: 8px 16px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--grey-bg);
  flex-shrink: 0;
}
.aria-widget-footer a { color: var(--navy); font-weight: 600; }

/* Dashboard floating widget override - no label on dashboard */
.dashboard-body .aria-widget-btn .aria-widget-label { display: none; }
.dashboard-body .aria-widget-btn { padding: 12px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
.dashboard-body .aria-widget-avatar { width: 26px; height: 26px; }

/* ============================================
   ARIA CHIP ARROW + MOBILE HERO ORDER FIX
   ============================================ */
.aria-chip-arrow {
  font-size: 12px;
  opacity: 0.6;
  margin-left: 2px;
}
.aria-chip:hover {
  background: #e4ecff;
  border-color: #a8c0f0;
  transition: background 0.2s, border-color 0.2s;
}

/* Mobile: hero text always first, dashboard below */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 20px 40px;
  }
  .hero-left {
    order: 1;
  }
  .hero-right {
    order: 2;
  }
  /* Mobile nav - hamburger always visible, cta hidden from top bar */
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  /* Mobile nav dropdown full width CTA */
  .mobile-nav .mobile-cta {
    background: var(--navy);
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-align: center;
    margin-top: 4px;
  }
}
