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

:root {
  --ink: #0f0f0d;
  --paper: #f5f2ec;
  --paper2: #ede9e0;
  --accent: #1a3a2a;
  --accent2: #2d6a4a;
  --warm: #c8b89a;
  --muted: #7a7468;
  --red: #c0392b;
  --amber: #d47c0a;
  --green: #1a6b3a;
  --white: #faf9f6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span { color: var(--accent2); font-style: italic; }

.logo-by {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--warm);
  letter-spacing: 0.04em;
  margin-left: 12px;
  font-weight: 400;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 15px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }

/* LANG SWITCH */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--warm);
  cursor: pointer;
  padding: 4px 6px;
  letter-spacing: 0.04em;
  transition: color 0.2s, font-weight 0.2s;
  line-height: 1;
  text-decoration: none;
}

.lang-btn.active {
  color: var(--ink);
  font-weight: 600;
}

.lang-btn:hover:not(.active) {
  color: var(--muted);
}

.nav-lang-mobile {
  display: none;
  align-items: center;
  gap: 4px;
}

.lang-sep {
  font-size: 12px;
  color: var(--warm);
  opacity: 0.5;
  user-select: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--warm);
}

h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 28px;
}

h1 em {
  font-style: italic;
  color: var(--accent2);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }

.btn-secondary {
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--ink); }

.hero-share {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.hero-share a {
  color: var(--accent2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-trusted {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  max-width: 520px;
}

.trusted-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 16px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 24px 32px;
  flex-wrap: wrap;
}

.trusted-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  color: var(--warm);
  letter-spacing: 0.05em;
}

/* DIVIDER */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm), transparent);
  opacity: 0.4;
}

/* HISTORY SECTION */
.history {
  background: var(--ink);
  color: var(--white);
  padding: 100px 48px;
}

.history-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.history-item {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.history-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--warm);
  opacity: 0.3;
}

.history-year {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.history-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.history-text strong {
  color: var(--white);
  font-weight: 500;
}

.history-mission {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.history-mission p {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

.history-mission p strong {
  color: var(--white);
  font-style: normal;
}

/* PROBLEMS */
.problems {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--warm);
  opacity: 0.4;
  max-width: 60px;
}

h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 60px;
  font-weight: 300;
}

.problems-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 48px;
  overflow-x: auto;
}

.tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: 'DM Sans', sans-serif;
}

.tab.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
  font-weight: 500;
}

.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.problem-stat {
  padding: 40px;
  background: var(--paper2);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
}

.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 72px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}

.stat-number span { color: var(--accent2); }

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 280px;
}

.problem-desc h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.problem-desc p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.problem-cta {
  font-size: 14px;
  color: var(--accent2);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* SOLUTIONS */
.solutions {
  background: var(--ink);
  padding: 100px 48px;
}

.solutions-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.solutions .section-label { color: rgba(255,255,255,0.4); }
.solutions .section-label::after { background: var(--warm); }

.solutions h2 { color: var(--white); }
.solutions .section-sub { color: rgba(255,255,255,0.5); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.solution-card {
  background: var(--ink);
  padding: 40px;
  transition: background 0.2s;
  cursor: default;
}

.solution-card:hover { background: #1a1a18; }

.solution-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 24px;
}

.solution-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

.solution-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm);
  opacity: 0.7;
}

/* PROCESS */
.process {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
}

.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  text-align: right;
  padding-top: 4px;
}

.step-content h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  font-weight: 300;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--paper2);
  padding: 100px 48px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
}

.quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: var(--warm);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  color: var(--muted);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.author-title {
  font-size: 12px;
  color: var(--muted);
}

/* FAQ */
.faq {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
  font-weight: 300;
}

/* CTA */
.cta-section {
  background: var(--ink);
  padding: 100px 48px;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}

.cta-section h2 em {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
}

.cta-section .btn-primary,
.roi-cta .btn-primary,
.uc-cta .btn-primary,
.cs-cta .btn-primary,
.cso-cta .btn-primary,
[id="contact"] .btn-primary {
  background: var(--white) !important;
  color: var(--ink) !important;
}
.cta-section .btn-primary:hover,
.roi-cta .btn-primary:hover,
.uc-cta .btn-primary:hover,
.cs-cta .btn-primary:hover,
.cso-cta .btn-primary:hover,
[id="contact"] .btn-primary:hover {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.cta-form input,
.cta-form select {
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 15px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.cta-form input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form input:focus,
.cta-form select:focus { border-color: rgba(255,255,255,0.3); }

.cta-form select {
  color: rgba(255,255,255,0.5);
  -webkit-appearance: none;
}

.cta-form select option { background: #1a1a18; color: white; }

.btn-submit {
  background: var(--white);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* FOOTER */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer-logo span { font-style: italic; color: rgba(255,255,255,0.6); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.5); }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label { animation: fadeUp 0.5s ease both; }
h1 { animation: fadeUp 0.5s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.5s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.3s ease both; }
.hero-trusted { animation: fadeUp 0.5s 0.4s ease both; }

/* RISK SIGNAL WIDGET */
.risk-widget {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  overflow: hidden;
  animation: fadeUp 0.6s 0.5s ease both;
}

.widget-header {
  padding: 14px 16px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.widget-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.widget-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #4ade80;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.widget-body { padding: 16px; }

.risk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.risk-row:last-child { border-bottom: none; }

.risk-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}

.risk-sub {
  font-size: 10px;
  color: var(--muted);
}

.risk-score {
  font-size: 13px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 12px;
}

.risk-score.red { background: #fef2f2; color: var(--red); }
.risk-score.amber { background: #fffbeb; color: var(--amber); }
.risk-score.green { background: #f0fdf4; color: var(--green); }

.widget-footer {
  padding: 12px 16px;
  background: rgba(0,0,0,0.02);
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-relative {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* WIDGET — BIGGER DASHBOARD */
.widget-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}

.widget-kpi {
  background: var(--white);
  padding: 12px 10px;
  text-align: center;
}

.widget-kpi-value {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 2px;
}

.widget-kpi-value.kpi-red { color: var(--red); }
.widget-kpi-value.kpi-amber { color: var(--amber); }
.widget-kpi-value.kpi-green { color: var(--green); }

.widget-kpi-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}

.widget-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.widget-table thead th {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  text-align: left;
  padding: 8px 6px 6px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.widget-table tbody td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  vertical-align: middle;
}

.widget-table .risk-name {
  font-size: 11px;
  font-weight: 500;
}

.widget-table .risk-sub {
  font-size: 10px;
  color: var(--muted);
}

.widget-table .risk-score {
  font-size: 11px;
  padding: 2px 6px;
  margin-left: 0;
}

.trend-arrow {
  font-size: 10px;
  font-weight: 600;
}

.trend-arrow.trend-up { color: var(--red); }
.trend-arrow.trend-down { color: var(--green); }
.trend-arrow.trend-stable { color: var(--amber); }

/* BEFORE / AFTER */
.before-after {
  background: var(--paper);
  padding: 100px 48px;
}

.before-after-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ba-toggle {
  display: flex;
  gap: 0;
  margin: 40px 0 32px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.ba-btn {
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all 0.25s;
}

.ba-btn.active {
  background: var(--ink);
  color: var(--white);
  font-weight: 500;
}

.ba-panel {
  display: none;
}

.ba-panel.active {
  display: block;
  animation: fadeUp 0.4s ease both;
}

.ba-mockup {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

.ba-mockup-header {
  padding: 12px 16px;
  background: rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-file-icon {
  font-size: 14px;
}

.ba-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: auto;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ba-tag-red {
  background: #fef2f2;
  color: var(--red);
}

.ba-tag-green {
  background: #f0fdf4;
  color: var(--green);
}

.ba-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ba-table thead th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  text-align: left;
  padding: 10px 14px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ba-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 13px;
  color: var(--ink);
}

.ba-cell-warn {
  color: var(--red);
  font-weight: 500;
  font-style: italic;
}

.ba-cell-stale {
  color: var(--amber);
  font-size: 12px;
}

.ba-cell-empty {
  color: var(--muted);
  opacity: 0.4;
}

.ba-signal {
  font-size: 12px;
  color: var(--muted);
}

.ba-bottom-row {
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.05);
  background: rgba(0,0,0,0.015);
}

.ba-effort-badge {
  font-size: 11px;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0,0,0,0.04);
}

.ba-effort-good {
  background: #f0fdf4;
  color: var(--green);
}

.ba-messy .ba-table tbody tr:nth-child(odd) {
  background: rgba(192,57,43,0.03);
}

/* PRODUCT PREVIEW */
.product-preview {
  background: var(--ink);
  padding: 100px 48px;
}

.product-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-preview .section-label { color: rgba(255,255,255,0.4); }
.product-preview .section-label::after { background: var(--warm); }
.product-preview .section-sub { color: rgba(255,255,255,0.5); }

.preview-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.preview-tab {
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.4);
  transition: all 0.25s;
}

.preview-tab.active {
  color: var(--white);
  border-bottom-color: var(--white);
  font-weight: 500;
}

.preview-screen {
  display: none;
}

.preview-screen.active {
  display: block;
  animation: fadeUp 0.4s ease both;
}

.preview-mockup {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}

.preview-mockup-bar {
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pmb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.pmb-title {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.preview-table {
  width: 100%;
  border-collapse: collapse;
}

.preview-table thead th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  text-align: left;
  padding: 12px 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.preview-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.preview-bar-col {
  min-width: 140px;
}

.score-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}

.score-bar-fill.red-fill { background: var(--red); }
.score-bar-fill.amber-fill { background: var(--amber); }
.score-bar-fill.green-fill { background: var(--green); }

/* Early Warning Cards */
.ew-cards {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ew-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}

.ew-card:hover {
  background: rgba(255,255,255,0.04);
}

.ew-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

.ew-project {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.ew-signal {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 300;
}

.ew-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ew-time {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* Report Mockup */
.report-mockup {
  padding: 24px;
}

.report-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.report-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  color: var(--white);
  font-style: italic;
}

.report-meta {
  margin-left: auto;
  text-align: right;
}

.report-title-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.report-date {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

.report-section {
  margin-bottom: 20px;
}

.report-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-bottom: 8px;
}

.report-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

.report-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.report-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.report-highlight.red-hl {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.15);
}

.report-highlight.amber-hl {
  background: rgba(212,124,10,0.1);
  border: 1px solid rgba(212,124,10,0.15);
}

.rh-score {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--white);
  min-width: 28px;
}

.rh-name {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.rh-delta {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.report-list {
  list-style: none;
  padding: 0;
}

.report-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  padding: 4px 0 4px 16px;
  position: relative;
  font-weight: 300;
}

.report-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent2);
}

/* WALKTHROUGH */
.walkthrough {
  background: var(--paper);
  padding: 100px 48px;
}

.walkthrough-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0 32px;
}

.wt-step {
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--white);
}

.wt-step:hover {
  border-color: rgba(0,0,0,0.12);
}

.wt-step.active {
  border-color: var(--accent2);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.wt-step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.wt-step.active .wt-step-num {
  color: var(--accent2);
}

.wt-step-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
}

.wt-step.active .wt-step-label {
  color: var(--ink);
}

.wt-step-progress {
  margin-top: 12px;
  height: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: 1px;
  overflow: hidden;
}

.wt-step-bar {
  width: 0%;
  height: 100%;
  background: var(--accent2);
  border-radius: 1px;
  transition: width 0.1s linear;
}

.wt-step.active .wt-step-bar {
  animation: wtProgress 4s linear forwards;
}

@keyframes wtProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.wt-screen {
  display: none;
}

.wt-screen.active {
  display: block;
  animation: fadeUp 0.4s ease both;
}

.wt-visual {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
  padding: 40px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Walkthrough Step 1: Data flows */
.wt-flow-sources {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wt-source {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  background: var(--paper);
}

.wt-source-icon {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent2);
  background: rgba(45,106,74,0.08);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.wt-source-label {
  font-size: 12px;
  color: var(--muted);
}

.wt-flow-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 24px;
}

.wt-arrow {
  font-size: 18px;
  color: var(--accent2);
  opacity: 0.5;
}

.wt-flow-target {
  text-align: center;
  padding: 24px;
  border: 2px solid var(--accent2);
  border-radius: 12px;
  background: rgba(45,106,74,0.04);
}

.wt-target-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.wt-target-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* Walkthrough Step 2: Analysis */
.wt-analysis {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wt-scan-row {
  display: grid;
  grid-template-columns: 160px 1fr 40px;
  gap: 12px;
  align-items: center;
}

.wt-scan-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.wt-scan-bar {
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.wt-scan-fill {
  height: 100%;
  background: var(--accent2);
  border-radius: 3px;
  animation: scanGrow 1s ease both;
}

@keyframes scanGrow {
  from { width: 0% !important; }
}

.wt-scan-val {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}

/* Walkthrough Step 3: Alerts */
.wt-alerts {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wt-alert {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  background: var(--paper);
}

.wt-alert-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.wt-alert-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wt-alert-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* Walkthrough Step 4: Report */
.wt-report {
  width: 100%;
  max-width: 460px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

.wt-report-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.wt-report-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--accent2);
  margin-bottom: 4px;
}

.wt-report-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.wt-report-date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.wt-report-body {
  padding: 16px 20px;
}

.wt-report-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.wt-report-kpi {
  text-align: center;
  padding: 8px;
  background: var(--paper);
  border-radius: 6px;
}

.wt-rkpi-val {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

.wt-rkpi-val.kpi-red { color: var(--red); }
.wt-rkpi-val.kpi-amber { color: var(--amber); }
.wt-rkpi-val.kpi-green { color: var(--green); }

.wt-rkpi-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 2px;
}

.wt-report-line {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 12px 0;
}

.wt-report-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 12px;
}

.wt-report-badge {
  font-size: 11px;
  color: var(--green);
  background: #f0fdf4;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* Walkthrough animations */
.wt-anim-pop {
  animation: wtPop 0.5s ease both;
}

@keyframes wtPop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.wt-anim-flow {
  animation: wtFlow 1.2s ease infinite;
}

@keyframes wtFlow {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

.wt-anim-scan {
  animation: wtScanIn 0.6s ease both;
}

@keyframes wtScanIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.wt-anim-slide {
  animation: wtSlideIn 0.5s ease both;
}

@keyframes wtSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.wt-anim-fade {
  animation: wtFadeIn 0.8s ease both;
}

@keyframes wtFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── USE CASES SHOWCASE ── */
.uc-showcase {
  background: var(--paper2);
  padding: 100px 48px;
}
.uc-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.uc-showcase h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 48px;
}
.uc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.uc-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 28px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.uc-card:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.uc-card-stat {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 90px;
  text-align: center;
}
.uc-card-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.uc-card-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.uc-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent2);
  transition: transform 0.2s;
  display: inline-block;
}
.uc-card:hover .uc-card-link {
  transform: translateX(4px);
}

/* ── INDUSTRIES SHOWCASE ── */
.ind-showcase {
  background: var(--ink);
  padding: 100px 48px;
}
.ind-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ind-showcase h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 8px;
}
.ind-showcase h2 em {
  font-style: italic;
  color: var(--warm);
}
.ind-showcase .section-label { color: rgba(255,255,255,0.4); }
.ind-showcase .section-label::after { background: var(--warm); }
.ind-showcase .section-sub { color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.ind-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid #3d7fff;
  border-radius: 10px;
  padding: 20px 20px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.25s, transform 0.25s;
}
.ind-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}
.ind-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.ind-card-icon {
  font-size: 20px;
  line-height: 1;
}
.ind-card-name {
  font-size: 15px;
  font-weight: 600;
}
.ind-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.ind-all-link {
  text-align: center;
  margin-top: 36px;
}
.ind-all-link .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.ind-all-link .btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ── ROI BANNER ── */
.roi-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #1a5a3a 100%);
  padding: 48px;
}
.roi-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.roi-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.roi-banner-icon {
  font-size: 36px;
  flex-shrink: 0;
}
.roi-banner h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}
.roi-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.roi-banner-cta {
  background: var(--white);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.roi-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.roi-callout {
  text-align: center;
  padding: 32px 0;
}
.roi-callout p {
  font-size: 16px;
  color: var(--muted);
}
.roi-callout a {
  color: var(--accent2);
  font-weight: 600;
  text-decoration: none;
}
.roi-callout a:hover {
  text-decoration: underline;
}

/* ── CASE STUDIES SHOWCASE ── */
.case-studies-showcase {
  background: var(--paper2);
  padding: 100px 48px;
}
.cs-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cs-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.cs-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.cs-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(45,106,74,0.08);
  color: var(--accent2);
  letter-spacing: 0.02em;
}
.cs-card-stat {
  font-family: 'Instrument Serif', serif;
  font-size: 42px;
  line-height: 1;
  color: var(--accent2);
  margin-bottom: 4px;
}
.cs-card-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.cs-card h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
  flex: 1;
}
.cs-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent2);
  transition: transform 0.2s;
  display: inline-block;
}
.cs-card:hover .cs-card-link {
  transform: translateX(4px);
}
.cs-all-link {
  text-align: center;
  margin-top: 36px;
}

/* ── SHARE INTERNALLY ── */
.share-section {
  background: var(--paper);
  padding: 100px 48px;
}
.share-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.share-section h2 em {
  color: var(--accent2);
  font-style: italic;
}
.share-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.share-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.share-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.share-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.share-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.share-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.share-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent2);
  display: inline-block;
  transition: transform 0.2s;
}
.share-card:hover .share-card-link {
  transform: translateX(4px);
}

/* ── DETECT ANALYZE ACT ── */
.daa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.daa-card {
  background: var(--ink);
  padding: 40px;
}
.daa-card:hover { background: #1a1a18; }
.daa-num {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.daa-persona-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(45,106,74,0.15);
  color: var(--accent2);
  margin-bottom: 20px;
}
.daa-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.daa-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
}
.daa-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.daa-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.daa-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent2);
}

/* ── SCENARIO MOCKUP ── */
.scenario-mockup { padding: 24px; }
.scenario-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.scenario-project { font-weight: 600; font-size: 16px; color: var(--ink); }
.scenario-tag { font-size: 12px; color: var(--muted); }
.scenario-bars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.scenario-row { display: grid; grid-template-columns: 90px 1fr 180px; gap: 12px; align-items: center; }
.scenario-label { font-size: 13px; font-weight: 500; color: var(--ink); }
.scenario-bar-track { height: 24px; background: rgba(0,0,0,0.04); border-radius: 4px; overflow: hidden; }
.scenario-bar-fill { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.scenario-value { font-size: 12px; font-weight: 500; }
.scenario-drivers { padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.08); }
.scenario-driver-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.scenario-driver-row { display: grid; grid-template-columns: 180px 1fr 80px; gap: 12px; align-items: center; padding: 6px 0; font-size: 12px; color: var(--muted); }
.scenario-impact-bar { height: 6px; background: rgba(0,0,0,0.06); border-radius: 3px; overflow: hidden; }
.scenario-impact-fill { height: 100%; background: var(--accent2); border-radius: 3px; }
.scenario-impact-pct { font-size: 11px; color: var(--muted); text-align: right; }

/* ── AI RECOMMENDATIONS MOCKUP ── */
.ai-reco-mockup { padding: 24px; }
.ai-reco-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.ai-reco-avatar { width: 36px; height: 36px; background: var(--accent2); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-size: 18px; font-weight: 600; }
.ai-reco-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.ai-reco-status { font-size: 12px; color: var(--muted); }
.ai-reco-list { display: flex; flex-direction: column; gap: 12px; }
.ai-reco-item { padding: 16px; border-radius: 8px; border-left: 4px solid; }
.ai-reco-critical { background: rgba(192,57,43,0.04); border-left-color: var(--red); }
.ai-reco-high { background: rgba(212,124,10,0.04); border-left-color: var(--amber); }
.ai-reco-watch { background: rgba(45,106,74,0.04); border-left-color: var(--accent2); }
.ai-reco-priority { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.ai-reco-critical .ai-reco-priority { color: var(--red); }
.ai-reco-high .ai-reco-priority { color: var(--amber); }
.ai-reco-watch .ai-reco-priority { color: var(--accent2); }
.ai-reco-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.ai-reco-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.ai-reco-impact { font-size: 12px; font-weight: 500; color: var(--accent2); }

/* ── TECHNOLOGY TEASER ── */
.tech-teaser {
  background: var(--ink);
  padding: 100px 48px;
}
.tech-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tech-teaser h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}
.tech-teaser h2 em {
  font-style: italic;
  color: var(--warm);
}
.tech-teaser .section-label {
  color: rgba(255,255,255,0.4);
}
.tech-teaser .section-label::after {
  background: var(--warm);
}
.tech-teaser p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 8px;
}
.tech-teaser .btn-primary {
  background: var(--white);
  color: var(--ink);
}
.tech-teaser .btn-primary:hover {
  background: var(--paper);
}
.tech-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tech-teaser-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.tech-teaser-card:hover {
  background: rgba(255,255,255,0.07);
}
.tech-teaser-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.tech-teaser-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.tech-teaser-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

@media (max-width: 900px) {
  .risk-widget {
    position: static;
    transform: none;
    width: 100%;
    max-width: 420px;
    margin: 48px auto 0;
  }
  nav { padding: 16px 24px; }
  .hero-relative, .problems, .solutions-inner, .process, .faq, .cta-inner { padding-left: 24px; padding-right: 24px; }
  .history { padding: 60px 24px; }
  .history-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .case-studies-showcase { padding: 60px 24px; }
  .cs-cards { grid-template-columns: 1fr; }
  .tech-teaser { padding: 60px 24px; }
  .tech-teaser-inner { grid-template-columns: 1fr; }
  .tech-teaser-grid { grid-template-columns: 1fr 1fr; }
  .tab-content.active { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .nav-links { display: none; }
  .nav-lang-mobile { display: flex; }
  .logo-by { display: none; }

  /* Before/After */
  .before-after { padding: 60px 24px; }
  .ba-toggle { flex-direction: column; width: 100%; }
  .ba-btn { width: 100%; text-align: center; }
  .ba-table { font-size: 11px; }
  .ba-table thead th { padding: 8px 8px 6px; font-size: 9px; }
  .ba-table tbody td { padding: 8px; font-size: 11px; }
  .ba-bottom-row { flex-direction: column; }

  /* Product Preview */
  .product-preview { padding: 60px 24px; }
  .product-preview-inner { padding-left: 0; padding-right: 0; }
  .preview-tabs { overflow-x: auto; }
  .preview-tab { white-space: nowrap; padding: 12px 16px; font-size: 13px; }
  .preview-table thead th, .preview-table tbody td { padding: 8px; font-size: 11px; }
  .preview-bar-col { min-width: 80px; }
  .ew-cards { padding: 12px; }
  .report-mockup { padding: 16px; }
  .report-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .report-meta { margin-left: 0; text-align: left; }

  /* Problems tabs */
  .problems-tabs { -webkit-overflow-scrolling: touch; flex-wrap: wrap; }
  .tab { padding: 10px 12px; font-size: 11px; flex: 1 1 auto; text-align: center; }

  /* Walkthrough */
  .walkthrough { padding: 60px 24px; }
  .wt-steps { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wt-visual { padding: 24px 16px; min-height: 220px; }
  .wt-flow-sources { gap: 6px; }
  .wt-source { padding: 6px 10px; }
  .wt-flow-arrows { margin: 0 12px; }
  .wt-flow-target { padding: 16px; }
  .wt-scan-row { grid-template-columns: 100px 1fr 36px; gap: 8px; }
  .wt-scan-label { font-size: 10px; }
  .wt-report-summary { grid-template-columns: repeat(2, 1fr); }
  .widget-table { font-size: 10px; }
  .widget-table thead th { font-size: 8px; padding: 6px 4px; }
  .widget-table tbody td { padding: 6px 4px; }

  /* Use Cases Showcase */
  .uc-showcase { padding: 60px 24px; }
  .uc-cards { grid-template-columns: 1fr; }
  .uc-card { padding: 20px; gap: 16px; }
  .uc-card-stat { font-size: 36px; min-width: 70px; }

  /* Industries Showcase */
  .ind-showcase { padding: 60px 24px; }
  .ind-cards { grid-template-columns: repeat(2, 1fr); }

  .roi-banner { padding: 32px 24px; }
  .roi-banner-inner { flex-direction: column; text-align: center; }
  .roi-banner-content { flex-direction: column; text-align: center; }
  .roi-banner-cta { width: 100%; text-align: center; }
  .share-section { padding: 60px 24px; }
  .share-cards { grid-template-columns: 1fr; }
  .daa-grid { grid-template-columns: 1fr; }
  .scenario-row { grid-template-columns: 80px 1fr; gap: 8px; }
  .scenario-value { grid-column: 1 / -1; }
  .scenario-driver-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .scenario-driver-row span:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .ind-cards { grid-template-columns: 1fr; }
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(245,242,236,0.98);
  backdrop-filter: blur(16px);
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent2); }
.mobile-menu a.mobile-cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  margin-top: 16px;
  border-bottom: none;
  padding: 16px;
  font-weight: 600;
}
.mobile-menu a.mobile-cta:hover { background: var(--accent); }
.mobile-menu-divider {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  padding: 20px 0 8px;
  border-bottom: none;
}

@media (max-width: 900px) {
  .hamburger { display: block; }
}
