:root {
  --bg: #0c0c0c;
  --bg-elevated: #161616;
  --bg-card: #1a1a1a;
  --fg: #e8e2d6;
  --fg-muted: #9a9488;
  --accent: #d4922a;
  --accent-glow: rgba(212, 146, 42, 0.15);
  --accent-soft: #c4863a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1120px;
  --space-section: 140px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 146, 42, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero h1 .accent {
  color: var(--accent);
  position: relative;
}

.lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(232, 226, 214, 0.1);
}

.hero-gradient {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 146, 42, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ========== PROBLEM ========== */
.problem {
  padding: var(--space-section) 40px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem-label,
.system-label,
.verticals-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2,
.system h2,
.verticals h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
}

.problem-icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  background: var(--accent-glow);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ========== SYSTEM ========== */
.system {
  padding: var(--space-section) 40px;
}

.system-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.system-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
  transition: background 0.2s;
}

.system-item:hover {
  background: var(--accent-glow);
}

.system-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.system-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.system-content p {
  color: var(--fg-muted);
  font-size: 15px;
}

.system-note {
  margin-top: 50px;
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  background: var(--accent-glow);
  border-radius: 0 12px 12px 0;
}

.system-note p {
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
}

/* ========== VERTICALS ========== */
.verticals {
  padding: var(--space-section) 40px;
  background: var(--bg-elevated);
}

.verticals-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.verticals-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.vertical-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border: 1px solid rgba(232, 226, 214, 0.12);
  border-radius: 100px;
  transition: all 0.25s;
  cursor: default;
}

.vertical-tag:nth-child(odd) {
  border-color: rgba(212, 146, 42, 0.25);
  color: var(--accent-soft);
}

.vertical-tag:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
}

.verticals-subtext {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 560px;
}

/* ========== CLOSING ========== */
.closing {
  padding: var(--space-section) 40px 80px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.closing-line {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 60px 40px;
  border-top: 1px solid rgba(232, 226, 214, 0.06);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  :root { --space-section: 90px; }

  .hero { padding: 100px 24px 80px; min-height: auto; }
  .hero-badge { margin-bottom: 28px; }
  .hero h1 { margin-bottom: 24px; }
  .lede { font-size: 17px; margin-bottom: 40px; }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .stat-divider { width: 50px; height: 1px; }

  .problem, .system, .verticals, .closing { padding-left: 24px; padding-right: 24px; }

  .problem-grid { grid-template-columns: 1fr; gap: 20px; }
  .problem-card { padding: 28px 24px; }

  .system-grid { grid-template-columns: 1fr; }
  .system-item { padding: 20px 16px; }

  .verticals-row { gap: 10px; }
  .vertical-tag { font-size: 14px; padding: 10px 20px; }

  .closing h2 { margin-bottom: 20px; }
  .closing-text { font-size: 17px; }
}

/* ========== NAV ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-nav.nav--scrolled {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(232, 226, 214, 0.07);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-brand:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link--active {
  color: var(--fg);
  background: rgba(232, 226, 214, 0.06);
}

.nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  margin-left: 8px;
}

.nav-cta:hover { background: var(--accent-soft); transform: translateY(-1px); }
.nav-cta--active { background: var(--accent-soft); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ========== SHARED PAGE HERO ========== */
.page-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}

/* ========== SHARED BUTTONS ========== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--bg);
  background: var(--accent);
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}

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

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  background: transparent;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(212, 146, 42, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-outline:hover { border-color: var(--accent); background: var(--accent-glow); transform: translateY(-1px); }

.btn-full { width: 100%; text-align: center; }

.accent-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 146, 42, 0.3);
  transition: border-color 0.2s;
}

.accent-link:hover { border-color: var(--accent); }

/* ========== PRICING ========== */
.pricing-section {
  padding: 60px 40px var(--space-section);
}

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.pricing-card:hover {
  border-color: rgba(212, 146, 42, 0.2);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: var(--bg-elevated);
  border-color: rgba(212, 146, 42, 0.35);
  padding-top: 52px;
  /* Gold top line */
  border-top: 3px solid var(--accent);
  box-shadow: 0 0 60px rgba(212, 146, 42, 0.1);
}

.pricing-card--featured:hover {
  border-color: rgba(212, 146, 42, 0.55);
  box-shadow: 0 0 80px rgba(212, 146, 42, 0.15);
  transform: translateY(-4px);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -2px;
  color: var(--fg);
}

.price-period {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 400;
}

.pricing-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: rgba(232, 226, 214, 0.07);
  margin: 28px 0;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-footer-note {
  text-align: center;
  margin-top: 52px;
  color: var(--fg-muted);
  font-size: 16px;
}

.pricing-faq {
  padding: 80px 40px var(--space-section);
  background: var(--bg-elevated);
}

.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.8px;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  padding: 32px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(232, 226, 214, 0.06);
}

.faq-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ========== AUDIT FORM ========== */
.audit-section {
  padding: 60px 40px var(--space-section);
}

.audit-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.audit-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.audit-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: 20px;
  padding: 48px;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--fg-muted);
  font-size: 15px;
  margin-bottom: 36px;
}

.form-row { margin-bottom: 20px; }

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.form-row--two .form-group { margin-bottom: 0; }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.req { color: var(--accent); }

.form-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid rgba(232, 226, 214, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder { color: rgba(154, 148, 136, 0.5); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9488' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-card);
  color: var(--fg);
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fca5a5;
  font-size: 14px;
  margin-bottom: 16px;
}

.form-fine-print {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 14px;
  opacity: 0.7;
}

.audit-success {
  background: var(--bg-card);
  border: 1px solid rgba(212, 146, 42, 0.25);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 146, 42, 0.12);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.audit-success h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.audit-success > p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.success-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-bottom: 36px;
}

.success-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-glow);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-step strong { display: block; margin-bottom: 2px; }

.success-step p {
  color: var(--fg-muted);
  font-size: 14px;
  margin: 0;
}

/* Audit sidebar */
.audit-what-you-get {
  background: var(--bg-elevated);
  border-radius: 20px;
  border: 1px solid rgba(232, 226, 214, 0.07);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}

.audit-what-you-get h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}

.audit-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.audit-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.check-icon {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: -1px;
}

.audit-proof {
  display: flex;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(232, 226, 214, 0.07);
}

.proof-stat { flex: 1; }

.proof-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ========== DASHBOARD ========== */
.dashboard-section {
  padding: 40px 40px var(--space-section);
}

.dashboard-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.demo-notice {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid rgba(232, 226, 214, 0.07);
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 40px;
}

.demo-badge {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.07);
  border-radius: 16px;
  padding: 28px 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.kpi-card:hover { border-color: rgba(212, 146, 42, 0.2); transform: translateY(-2px); }

.kpi-card--featured {
  border-color: rgba(212, 146, 42, 0.25);
  background: var(--bg-elevated);
  box-shadow: 0 0 40px rgba(212, 146, 42, 0.08);
}

.kpi-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.kpi-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1;
}

.kpi-unit {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--fg-muted);
}

.kpi-delta {
  font-size: 13px;
  font-weight: 500;
}

.kpi-delta--up { color: #5eba7d; }
.kpi-delta--neutral { color: var(--fg-muted); }

/* Bar chart */
.chart-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.07);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 28px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}

.chart-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

.chart-subtitle {
  font-size: 14px;
  color: var(--fg-muted);
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 100%;
  background: rgba(212, 146, 42, 0.25);
  border-radius: 6px 6px 0 0;
  transition: background 0.2s;
  min-height: 4px;
}

.chart-bar-wrap:hover .chart-bar { background: rgba(212, 146, 42, 0.45); }

.chart-bar--current {
  background: var(--accent);
}

.chart-bar-wrap--current:hover .chart-bar--current { background: var(--accent-soft); }

.chart-bar-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Two column panels */
.dashboard-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.dash-panel {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.07);
  border-radius: 20px;
  padding: 32px;
}

.panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
}

.review-list { display: flex; flex-direction: column; gap: 24px; }

.review-item { padding-bottom: 20px; border-bottom: 1px solid rgba(232, 226, 214, 0.05); }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }

.review-stars { color: var(--accent); font-size: 14px; margin-bottom: 6px; }

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 8px;
  font-style: italic;
}

.review-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

.review-source {
  color: var(--accent);
  font-weight: 600;
}

.activity-log { display: flex; flex-direction: column; gap: 20px; }

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.activity-dot--green { background: #5eba7d; box-shadow: 0 0 8px rgba(94, 186, 125, 0.4); }
.activity-dot--accent { background: var(--accent); box-shadow: 0 0 8px rgba(212, 146, 42, 0.4); }

.activity-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.activity-item p { font-size: 13px; color: var(--fg-muted); margin: 0; }

/* Dashboard CTA */
.dashboard-cta {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-elevated);
  border-radius: 24px;
  border: 1px solid rgba(212, 146, 42, 0.12);
}

.dashboard-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.dashboard-cta p {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}

.dashboard-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== RESPONSIVE (new pages) ========== */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { padding-top: 52px; }
  .faq-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-layout { grid-template-columns: 1fr; }
  .audit-what-you-get { position: static; }
  .dashboard-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12, 12, 12, 0.97);
    backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(232, 226, 214, 0.07);
    gap: 4px;
  }

  .nav-links--open { display: flex; }

  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .nav-hamburger { display: flex; }

  .page-hero { padding: 130px 24px 80px; }

  .pricing-section, .audit-section, .pricing-faq, .dashboard-section { padding-left: 24px; padding-right: 24px; }

  .audit-form-wrap { padding: 32px 24px; }

  .form-row--two { grid-template-columns: 1fr; }

  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .kpi-value { font-size: 28px; }

  .chart-bars { height: 120px; }

  .dashboard-cols { grid-template-columns: 1fr; }

  .dashboard-cta { padding: 48px 24px; }
}