:root {
  --ink: #071513;
  --text: #273936;
  --muted: #62746f;
  --line: #d7e2de;
  --soft: #f3f7f5;
  --paper: #ffffff;
  --teal: #0c8f7a;
  --teal-dark: #05594d;
  --blue: #3157d5;
  --coral: #d86f45;
  --amber: #e8b35b;
  --gold: #d7b46a;
  --navy: #071513;
  --navy-2: #0d2420;
  --green-soft: #e1f4ee;
  --blue-soft: #e8efff;
  --coral-soft: #fff0e8;
  --shadow: 0 24px 70px rgba(7, 21, 19, 0.16);
  --shadow-soft: 0 12px 34px rgba(7, 21, 19, 0.09);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf9 36%, #eef5f2 72%, #ffffff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::after {
  content: "";
  display: block;
  height: 0;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  max-width: 100%;
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(215, 226, 222, 0.66);
  box-shadow: 0 10px 34px rgba(7, 21, 19, 0.05);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0da48d, #082d27);
  box-shadow: 0 10px 24px rgba(12, 143, 122, 0.22);
  color: #fff;
  font-size: 14px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.main-nav a {
  color: #4f625d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(215, 226, 222, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.language-switch a {
  color: var(--muted);
  text-decoration: none;
}

.language-switch a:hover,
.language-switch .active {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 8px 12px;
  font-weight: 700;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #0fa98f, #056354);
  color: #fff;
  box-shadow: 0 18px 42px rgba(12, 143, 122, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #12b89d, #074d43);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.84);
  color: var(--teal-dark);
  border-color: rgba(12, 143, 122, 0.35);
  box-shadow: 0 16px 34px rgba(7, 21, 19, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  border-color: var(--teal);
  background: var(--green-soft);
}

.hero,
.page-hero {
  background: var(--soft);
  border-bottom: 1px solid rgba(215, 226, 222, 0.78);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(118deg, rgba(215, 180, 106, 0.18) 0%, transparent 22%),
    linear-gradient(300deg, rgba(49, 87, 213, 0.14) 0%, transparent 28%),
    linear-gradient(135deg, #031411 0%, #071b17 44%, #102c27 68%, #2a261c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 12, 0.78) 0%, rgba(6, 28, 24, 0.16) 58%, rgba(3, 14, 12, 0.34) 100%),
    linear-gradient(145deg, transparent 0 42%, rgba(255, 255, 255, 0.055) 42% 43%, transparent 43% 100%),
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -34%;
  z-index: -1;
  width: 68%;
  height: 68%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(215, 180, 106, 0.11));
  transform: skewY(-9deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(500px, 0.96fr);
  align-items: start;
  gap: 46px;
  max-width: 100%;
  min-width: 0;
  min-height: 620px;
  padding-block: 62px 52px;
}

.audit-landing .hero-inner {
  min-height: 540px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.hero .hero-copy h1,
.hero .hero-copy .hero-sub,
.hero .trust-line {
  color: #f7fffc;
}

.hero .hero-copy h1 {
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero .hero-sub {
  color: rgba(244, 255, 251, 0.9);
}

.hero .trust-line {
  color: rgba(232, 247, 241, 0.82);
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(215, 180, 106, 0.48);
  border-radius: 999px;
  background: rgba(16, 28, 24, 0.58);
  color: #f3d38a;
  padding: 8px 12px;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 48px;
  max-width: 820px;
}

h2 {
  margin: 0 0 14px;
  font-size: 34px;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

p {
  margin: 0 0 16px;
}

.hero-sub,
.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--text);
  font-size: 19px;
  overflow-wrap: break-word;
}

.trust-line {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.hero-actions,
.form-actions,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 22px;
}

.bossflow-disclosure {
  max-width: 760px;
  margin: 14px 0 0;
  color: #42534f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.bossflow-disclosure.compact {
  max-width: 620px;
  color: rgba(244, 255, 251, 0.74);
}

.page-hero .bossflow-disclosure,
.article-aside .bossflow-disclosure {
  margin-top: 16px;
}

.matrix-panel {
  border-left: 4px solid var(--gold);
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin-top: 22px;
}

.quick-proof span,
.keyword-row span,
.field-list span,
.status-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 32px;
  border: 1px solid rgba(215, 226, 222, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 800;
}

.hero .quick-proof span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #f4fffb;
  backdrop-filter: blur(10px);
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 720px;
}

.hero-signals div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  padding: 14px;
  backdrop-filter: blur(12px);
}

.hero-signals strong,
.hero-signals span {
  display: block;
}

.hero-signals strong {
  color: #f6d78f;
  font-size: 15px;
}

.hero-signals span {
  margin-top: 4px;
  color: rgba(244, 255, 251, 0.74);
  font-size: 12px;
  line-height: 1.45;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-block: 1px solid rgba(215, 226, 222, 0.78);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 249, 0.92)),
    linear-gradient(135deg, rgba(12, 143, 122, 0.08), rgba(215, 180, 106, 0.08));
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(215, 226, 222, 0.72);
}

.trust-strip article {
  min-width: 0;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px 20px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-dashboard {
  min-height: 430px;
  display: grid;
  align-items: start;
  min-width: 0;
}

.premium-console {
  perspective: 1200px;
}

.console-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 240, 0.92)),
    linear-gradient(135deg, rgba(12, 143, 122, 0.18), rgba(49, 87, 213, 0.1));
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.34),
    0 14px 32px rgba(12, 143, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transform: none;
}

.console-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 143, 122, 0.13), transparent 30%),
    linear-gradient(300deg, rgba(215, 180, 106, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 28%);
  pointer-events: none;
}

.console-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(7, 21, 19, 0.04);
  pointer-events: none;
}

.console-glow-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #0fa98f, #d7b46a, #3157d5);
}

.console-topline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(215, 226, 222, 0.8);
  background: rgba(255, 255, 255, 0.44);
  padding: 18px 22px 16px 28px;
}

.console-topline span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-topline strong {
  color: var(--ink);
  font-size: 14px;
}

.console-main {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 18px 14px 28px;
}

.console-sidebar {
  display: grid;
  gap: 8px;
  align-content: start;
}

.console-sidebar span {
  border: 1px solid rgba(215, 226, 222, 0.8);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 900;
}

.console-sidebar .active {
  border-color: rgba(12, 143, 122, 0.28);
  background: #0c8f7a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(12, 143, 122, 0.18);
}

.console-panel {
  border: 1px solid rgba(215, 226, 222, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(7, 21, 19, 0.09);
}

.primary-panel {
  overflow: hidden;
}

.panel-title-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  padding: 16px;
}

.panel-title-row p,
.micro-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-title-row h3,
.side-console h3 {
  margin: 0;
  font-size: 18px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--teal-dark);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfa;
  padding: 0 16px;
}

.window-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c4d0cb;
}

.window-top span:nth-child(1) {
  background: var(--coral);
}

.window-top span:nth-child(2) {
  background: var(--amber);
}

.window-top span:nth-child(3) {
  background: var(--teal);
}

.window-top strong {
  margin-left: 8px;
  color: var(--ink);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(215, 226, 222, 0.84);
}

.metric-row div {
  min-height: 84px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 250, 0.92));
  padding: 16px;
}

.metric-row b {
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.metric-row small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.ops-table-preview {
  display: grid;
  border-top: 1px solid rgba(215, 226, 222, 0.82);
  border-bottom: 1px solid rgba(215, 226, 222, 0.82);
  background: rgba(248, 251, 250, 0.76);
}

.ops-row {
  display: grid;
  grid-template-columns: minmax(90px, 1.4fr) minmax(56px, 0.7fr) minmax(78px, 0.8fr) minmax(86px, 0.9fr);
  gap: 10px;
  align-items: center;
  min-height: 38px;
  border-top: 1px solid rgba(215, 226, 222, 0.62);
  padding: 7px 16px;
  color: var(--text);
  font-size: 12px;
}

.ops-row:first-child {
  border-top: 0;
}

.ops-row strong {
  color: var(--ink);
  white-space: nowrap;
}

.ops-head {
  min-height: 34px;
  background: rgba(7, 21, 19, 0.04);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.chip {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.chip.green {
  background: var(--green-soft);
  color: var(--teal-dark);
}

.chip.amber {
  background: #fff4d9;
  color: #8a5a0f;
}

.chip.red {
  background: #ffe8df;
  color: #9d3e20;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 14px 14px;
}

.workflow-list div {
  display: grid;
  grid-template-columns: 10px 1fr;
  column-gap: 8px;
  align-items: start;
  min-height: 74px;
  border: 1px solid rgba(215, 226, 222, 0.92);
  border-radius: 10px;
  background: rgba(248, 251, 250, 0.72);
  padding: 10px;
}

.workflow-list strong,
.workflow-list small {
  grid-column: 2;
}

.workflow-list small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.workflow-list strong {
  font-size: 12px;
  line-height: 1.3;
}

.dot {
  grid-row: 1 / span 2;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
}

.dot.green {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(12, 143, 122, 0.12);
}

.dot.orange {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(216, 111, 69, 0.12);
}

.dot.blue {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(49, 87, 213, 0.12);
}

.side-console {
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  grid-column: 1 / -1;
  padding: 16px;
}

.audit-mini-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.audit-mini-list span {
  border: 1px solid rgba(215, 226, 222, 0.88);
  border-radius: 10px;
  background: #fff;
  padding: 9px 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.progress-track {
  grid-column: 1 / -1;
  height: 8px;
  border-radius: 999px;
  background: #dde8e4;
  overflow: hidden;
  margin: 14px 0 12px;
}

.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0fa98f, #d7b46a);
}

.side-console small {
  grid-column: 1 / -1;
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.console-footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 20px 28px;
}

.console-footer span {
  border-radius: 999px;
  background: rgba(7, 21, 19, 0.06);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 84px 68px;
  background:
    repeating-linear-gradient(90deg, rgba(7, 21, 19, 0.035) 0, rgba(7, 21, 19, 0.035) 1px, transparent 1px, transparent 104px),
    linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
}

.section {
  padding-block: 86px;
}

.compact-section {
  padding-block: 46px;
}

.muted {
  background: var(--soft);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-intro p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.pain-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.pain-section .info-card {
  padding: 28px;
}

.pain-section .info-card h3 {
  font-size: 21px;
}

.pain-section .info-card p {
  color: #40514d;
}

.solution-section {
  background:
    linear-gradient(135deg, #071513 0%, #0b211d 48%, #11322d 100%);
  color: rgba(244, 255, 251, 0.82);
}

.solution-section .section-intro h2,
.solution-section .section-intro .kicker,
.solution-section .module-card h3 {
  color: #fff;
}

.solution-section .section-intro p:last-child {
  color: rgba(244, 255, 251, 0.72);
}

.solution-section .module-card {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  box-shadow: none;
}

.solution-section .module-card::before {
  background: linear-gradient(90deg, var(--gold), rgba(12, 143, 122, 0.9));
}

.solution-section .module-card p,
.solution-section .module-card strong {
  color: rgba(244, 255, 251, 0.82);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.module-card,
.link-card,
.pricing-card,
.side-panel,
.process-step,
.article-aside,
.lead-form,
.dashboard-mockup {
  min-width: 0;
  border: 1px solid rgba(215, 226, 222, 0.86);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 251, 0.96));
  box-shadow: var(--shadow-soft);
}

.info-card,
.module-card,
.link-card,
.pricing-card,
.side-panel,
.process-step,
.article-aside {
  padding: 24px;
}

.info-card,
.module-card,
.link-card {
  position: relative;
  overflow: hidden;
}

.info-card::before,
.module-card::before,
.link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(215, 180, 106, 0.88));
  opacity: 0.86;
}

.info-card p:last-child,
.module-card p:last-child,
.link-card p:last-child,
.pricing-card p:last-child,
.side-panel p:last-child {
  margin-bottom: 0;
}

.info-card strong,
.module-card strong {
  color: var(--ink);
}

.link-card a,
.article-card a,
.footer-grid a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.link-card a:hover,
.footer-grid a:hover {
  text-decoration: underline;
}

.module-card:nth-child(3n + 1) {
  border-top: 0;
}

.module-card:nth-child(3n + 2) {
  border-top: 0;
}

.module-card:nth-child(3n + 3) {
  border-top: 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.dashboard-mockup {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(7, 21, 19, 0.12);
}

.mockup-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(215, 226, 222, 0.9);
  background:
    linear-gradient(135deg, #f9fcfb, #eef6f2);
  padding: 18px 22px;
}

.mockup-label {
  margin: 0 0 4px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mockup-head h3 {
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
}

.comparison-table {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 21, 19, 0.08);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f4f8f6;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: var(--text);
}

.split-section,
.two-column,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 36px;
  align-items: start;
}

.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.lead-form {
  padding: 28px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.98));
  box-shadow: 0 28px 74px rgba(7, 21, 19, 0.14);
}

.compact-form {
  padding: 24px;
  border-color: rgba(12, 143, 122, 0.18);
}

.compact-form .form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lead-form label,
.lead-form legend {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd8d3;
  border-radius: 10px;
  background: #fbfdfc;
  color: var(--text);
  padding: 13px 14px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(11, 122, 107, 0.18);
  border-color: var(--teal);
}

.lead-form fieldset {
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #fbfdfc;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.option-row label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-weight: 700;
}

.option-row input {
  width: auto;
}

.privacy-note,
.form-promise,
.form-handoff,
.whatsapp-nudge,
.footer-note,
.pricing-note {
  color: var(--muted);
  font-size: 14px;
}

.form-promise,
.form-handoff {
  margin: 0 0 18px;
  border: 1px solid rgba(12, 143, 122, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(225, 244, 238, 0.9), rgba(255, 243, 216, 0.72));
  color: var(--teal-dark);
  padding: 13px 14px;
  font-weight: 800;
}

.whatsapp-nudge {
  margin: 14px 0 0;
  color: #52665f;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -100vw;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}

.three-column,
.process-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-soft), #fff3d8);
  color: var(--teal-dark);
  font-weight: 900;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.pricing-note {
  max-width: 860px;
  margin: 22px 0 0;
}

.pricing-mini {
  display: grid;
  gap: 12px;
  align-self: stretch;
}

.pricing-mini div {
  border: 1px solid rgba(215, 226, 222, 0.86);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.pricing-mini h3,
.pricing-mini p {
  margin: 0;
}

.pricing-mini p {
  color: var(--muted);
  font-weight: 700;
}

.field-list,
.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.field-list.compact span {
  border-radius: 8px;
}

.mini-keywords {
  padding-left: 18px;
  color: var(--muted);
}

.workflow-steps {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0;
  padding-left: 24px;
}

.workflow-steps li {
  padding-left: 6px;
}

.cta-band {
  background:
    linear-gradient(135deg, #061512 0%, #0b2823 62%, #123b34 100%);
  color: #fff;
}

.cta-band h2,
.cta-band .kicker {
  color: #fff;
}

.cta-band p {
  color: #d9e7e2;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.faq-section {
  background: #fbfcfc;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  padding: 18px;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 310px;
}

.article-content {
  max-width: 760px;
}

.article-content section {
  margin-bottom: 34px;
}

.article-content h2 {
  font-size: 28px;
}

.article-aside {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
}

.article-aside .btn {
  width: 100%;
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(8, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
  background-size: 96px 96px, auto;
}

.blog-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.featured-article-card,
.blog-decision-panel,
.inline-audit-cta,
.related-article-links {
  border: 1px solid rgba(8, 17, 15, 0.1);
  border-radius: 8px;
  background: #fff;
}

.featured-article-card {
  padding: 32px;
  box-shadow: 0 22px 60px rgba(8, 17, 15, 0.1);
}

.featured-article-card h2 {
  max-width: 820px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
}

.featured-article-card p {
  max-width: 760px;
  color: #40514d;
  font-size: 18px;
}

.blog-decision-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  background: #071513;
  color: rgba(244, 255, 251, 0.82);
}

.blog-decision-panel h2,
.blog-decision-panel .kicker {
  color: #fff;
}

.blog-decision-panel p {
  color: rgba(244, 255, 251, 0.78);
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.premium-article-card {
  display: grid;
  gap: 12px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #566662;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-meta-row span {
  border: 1px solid rgba(8, 17, 15, 0.1);
  border-radius: 999px;
  padding: 6px 9px;
  background: #f7faf9;
}

.article-points {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.article-points li {
  position: relative;
  padding-left: 22px;
  color: #233632;
  font-weight: 700;
}

.article-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-points {
  max-width: 780px;
}

.blog-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.blog-topic-strip span,
.related-article-links a {
  border: 1px solid rgba(8, 17, 15, 0.1);
  border-radius: 999px;
  background: #f8fbfa;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  padding: 9px 12px;
}

.inline-audit-cta {
  display: grid;
  gap: 10px;
  margin: 8px 0 34px;
  padding: 22px;
  background: #f8fbfa;
}

.inline-audit-cta strong {
  color: var(--ink);
  font-size: 18px;
}

.inline-audit-cta p {
  margin: 0;
}

.inline-audit-cta .btn {
  justify-self: start;
}

.related-article-links {
  padding: 22px;
}

.related-article-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-article-links a {
  text-decoration: none;
}

.system-link-list {
  display: grid;
  gap: 10px;
}

.system-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(8, 17, 15, 0.1);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
  padding: 16px 18px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7, 21, 19, 0.06);
}

.system-link-list a::after {
  content: ">";
  color: var(--teal-dark);
  flex: 0 0 auto;
}

.system-link-list a:hover {
  border-color: rgba(12, 143, 122, 0.35);
  transform: translateY(-1px);
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.related-article-links a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8fbfa;
  padding-block: 46px 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 30px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
}

.footer-language {
  margin-top: 14px;
}

.footer-language .language-switch {
  border-color: rgba(7, 21, 19, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 44px;
  }

  .hero-inner,
  .split-section,
  .two-column,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-block: 58px;
  }

  .hero-dashboard {
    min-height: auto;
  }

  .console-shell {
    transform: none;
  }

  .console-main {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .side-console {
    grid-column: 1 / -1;
  }

  .card-grid,
  .three-column,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    min-height: 66px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-actions .language-switch {
    min-height: 32px;
    padding-inline: 9px;
    font-size: 12px;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-sub,
  .page-hero p {
    font-size: 18px;
  }

  .section {
    padding-block: 56px;
  }

  .page-hero {
    padding-block: 56px 46px;
  }

  .hero {
    background:
      linear-gradient(120deg, rgba(215, 180, 106, 0.16) 0%, transparent 28%),
      linear-gradient(300deg, rgba(49, 87, 213, 0.12) 0%, transparent 35%),
      linear-gradient(180deg, #031411 0%, #071b17 58%, #102d27 100%);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 14, 12, 0.2), rgba(3, 14, 12, 0.72)),
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 62px 62px, 62px 62px;
  }

  .console-main {
    grid-template-columns: 1fr;
  }

  .console-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .console-sidebar span {
    text-align: center;
    padding-inline: 6px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 70px;
  }

  .brand > span:last-child {
    display: none;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 25px;
  }

  .card-grid,
  .three-column,
  .process-grid,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    display: block;
    width: min(100% - 24px, var(--container));
    padding-block: 36px 38px;
  }

  .audit-landing .hero-inner {
    padding-block: 34px 30px;
  }

  .hero-copy,
  .hero-copy > *,
  .page-hero .container,
  .page-hero .container > * {
    width: 100%;
    max-width: 100%;
  }

  .hero-dashboard {
    width: 100%;
    margin-top: 20px;
  }

  .console-shell {
    border-radius: 16px;
  }

  .console-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 14px 14px 12px 18px;
  }

  .console-main {
    padding: 12px 12px 12px 18px;
  }

  .console-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-table-preview {
    overflow-x: auto;
  }

  .ops-row {
    min-width: 460px;
  }

  .console-footer {
    padding: 0 14px 18px 20px;
  }

  .side-console,
  .workflow-list,
  .console-footer {
    display: none;
  }

  .quick-proof {
    margin-top: 16px;
    gap: 7px;
  }

  .quick-proof span {
    min-height: 28px;
    padding: 4px 9px;
    font-size: 12px;
  }

  .hero-signals {
    display: none;
  }

  .hero-sub,
  .trust-line,
  .page-hero p {
    overflow-wrap: break-word;
  }

  .hero-sub,
  .page-hero p {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.5;
  }

  .trust-line {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .quick-proof span,
  .keyword-row span,
  .field-list span {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .form-actions,
  .cta-stack {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .form-actions .btn,
  .cta-stack .btn {
    width: 100%;
  }

  .metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-row div {
    min-height: 68px;
    padding: 10px;
  }

  .metric-row b {
    font-size: 24px;
  }

  .metric-row small {
    font-size: 11px;
    line-height: 1.25;
  }

  .mockup-head,
  .cta-band-inner {
    align-items: stretch;
    flex-direction: column;
  }

  table {
    min-width: 680px;
  }

  .lead-form {
    padding: 18px;
  }

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

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    padding: 14px 16px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: auto;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100vw;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 -8px 22px rgba(16, 35, 31, 0.1);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 58px;
    color: var(--ink);
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    background: var(--teal);
    color: #fff;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium redesign layer */
:root {
  --ink: #08110f;
  --text: #26322f;
  --muted: #67726d;
  --line: #dce4df;
  --soft: #f4f6f2;
  --paper: #ffffff;
  --teal: #0b8a76;
  --teal-dark: #075b50;
  --blue: #2447c6;
  --coral: #c95f3e;
  --amber: #c69139;
  --gold: #b98a3f;
  --green-soft: #e6f3ee;
  --blue-soft: #edf2ff;
  --coral-soft: #fff0e9;
  --shadow: 0 28px 70px rgba(8, 17, 15, 0.16);
  --shadow-soft: 0 12px 30px rgba(8, 17, 15, 0.07);
  --radius: 8px;
  --container: 1200px;
}

body {
  background:
    linear-gradient(90deg, rgba(8, 17, 15, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 17, 15, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcfa 0%, #f1f4f0 48%, #ffffff 100%);
  background-size: 120px 120px, 120px 120px, auto;
  color: var(--text);
}

.container {
  width: min(100% - 40px, var(--container));
}

.site-header {
  background: rgba(252, 253, 250, 0.86);
  border-bottom: 1px solid rgba(8, 17, 15, 0.08);
  box-shadow: 0 8px 28px rgba(8, 17, 15, 0.06);
}

.nav-shell {
  min-height: 70px;
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    #08110f;
  box-shadow: 0 14px 26px rgba(8, 17, 15, 0.18);
  font-size: 11px;
  letter-spacing: 0;
}

.main-nav {
  gap: 8px;
}

.main-nav a {
  border-radius: 8px;
  color: #4b5853;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a:hover {
  background: rgba(8, 17, 15, 0.05);
  color: var(--ink);
  text-decoration: none;
}

.language-switch {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.btn,
button.btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  box-shadow: none;
}

.btn-primary {
  background: #0a7c6a;
  border-color: #0a7c6a;
  color: #fff;
  box-shadow: 0 16px 32px rgba(10, 124, 106, 0.22);
}

.btn-primary:hover {
  background: #075f52;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(8, 17, 15, 0.16);
  color: var(--ink);
}

.btn-outline:hover {
  background: #fff;
  border-color: rgba(10, 124, 106, 0.42);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(27, 89, 78, 0.38), transparent 34%),
    linear-gradient(135deg, #06100e 0%, #0a1815 48%, #16251e 100%);
  background-size: 84px 84px, 84px 84px, auto, auto;
  border-bottom: 0;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(6, 16, 14, 0.86) 0%, rgba(6, 16, 14, 0.18) 54%, rgba(6, 16, 14, 0.6) 100%),
    linear-gradient(132deg, transparent 0 48%, rgba(255, 255, 255, 0.055) 48% 48.3%, transparent 48.3% 100%);
  background-size: auto;
}

.hero::after {
  display: none;
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.88fr);
  gap: 54px;
  min-height: 650px;
  padding-block: 72px 62px;
}

.audit-landing .hero-inner {
  min-height: 590px;
}

.audit-hero-conversion {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 14% 14%, rgba(10, 124, 106, 0.28), transparent 28%),
    linear-gradient(135deg, #06100e 0%, #0d1815 54%, #18261f 100%);
  background-size: 84px 84px, 84px 84px, auto, auto;
}

.audit-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.72fr);
  align-items: start;
  min-height: auto;
}

.audit-hero-form {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.audit-hero-grid .hero-copy {
  padding-top: 30px;
}

.audit-hero-form .lead-form {
  padding: 24px;
  box-shadow: 0 36px 78px rgba(0, 0, 0, 0.28);
}

.audit-hero-form .form-header {
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.audit-hero-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.audit-hero-form .lead-form label,
.audit-hero-form .lead-form legend {
  font-size: 13px;
}

.audit-hero-form .lead-form input,
.audit-hero-form .lead-form select,
.audit-hero-form .lead-form textarea {
  padding: 11px 12px;
}

.audit-hero-form .lead-form fieldset {
  margin: 12px 0;
  padding: 12px;
}

.audit-hero-form .lead-form textarea[name="description"] {
  min-height: 94px;
}

.audit-outcome-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.audit-outcome-list div,
.contact-trust-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
}

.audit-outcome-list strong,
.audit-outcome-list span,
.contact-trust-card strong,
.contact-trust-card span {
  display: block;
}

.audit-outcome-list strong {
  color: #e7c36e;
  font-size: 14px;
}

.audit-outcome-list span {
  margin-top: 4px;
  color: rgba(246, 251, 248, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.contact-trust-card {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  color: rgba(246, 251, 248, 0.76);
}

.contact-trust-card strong {
  color: #fff;
}

.contact-trust-card a {
  color: #e7c36e;
  font-weight: 900;
  text-decoration: none;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow,
.kicker,
.micro-label {
  color: var(--teal-dark);
  font-size: 12px;
}

.hero .eyebrow {
  border-radius: 8px;
  border-color: rgba(217, 186, 117, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #e7c36e;
  padding: 7px 10px;
}

h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  max-width: 880px;
}

h2 {
  font-size: clamp(29px, 3.2vw, 44px);
  line-height: 1.08;
}

h3 {
  line-height: 1.18;
}

.hero-sub,
.page-hero p {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.58;
}

.hero .hero-sub {
  color: rgba(246, 251, 248, 0.82);
}

.hero .trust-line {
  color: rgba(246, 251, 248, 0.66);
}

.quick-proof {
  gap: 10px;
  margin-top: 24px;
}

.quick-proof span,
.keyword-row span,
.field-list span,
.status-pill {
  min-height: 34px;
  border-radius: 8px;
  border-color: rgba(8, 17, 15, 0.1);
  background: #fff;
  color: #2b3834;
}

.hero .quick-proof span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
}

.hero-signals {
  gap: 12px;
  margin-top: 24px;
}

.hero-signals div {
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.065);
}

.trust-strip {
  margin-top: 0;
  border-block: 1px solid rgba(8, 17, 15, 0.08);
  background: #fbfcfa;
}

.trust-strip-inner {
  gap: 0;
  background: transparent;
  border-inline: 1px solid rgba(8, 17, 15, 0.08);
}

.trust-strip article {
  background: rgba(255, 255, 255, 0.64);
  border-right: 1px solid rgba(8, 17, 15, 0.08);
  padding: 22px 24px;
}

.trust-strip article:last-child {
  border-right: 0;
}

.console-shell {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 249, 245, 0.96));
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.console-shell::before {
  background:
    linear-gradient(90deg, rgba(10, 124, 106, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(8, 17, 15, 0.03) 1px, transparent 1px);
  background-size: auto, 44px 44px;
}

.console-glow-bar {
  width: 4px;
  background: linear-gradient(180deg, #0a7c6a, #b98a3f, #2447c6);
}

.console-topline {
  background: #fbfcfa;
  padding: 18px 22px 16px 26px;
}

.console-topline span,
.mockup-label {
  color: #91652a;
}

.console-main {
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 16px 14px 24px;
}

.console-sidebar span {
  border-radius: 8px;
  border-color: rgba(8, 17, 15, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.console-sidebar .active {
  background: #08110f;
  border-color: #08110f;
  color: #fff;
  box-shadow: none;
}

.console-panel {
  border-radius: 10px;
  border-color: rgba(8, 17, 15, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.panel-title-row {
  padding: 18px;
}

.panel-title-row h3,
.side-console h3 {
  font-size: 19px;
}

.live-pill {
  border-radius: 8px;
  background: #edf2ff;
  color: #2447c6;
}

.metric-row {
  background: rgba(8, 17, 15, 0.08);
}

.metric-row div {
  background: #fbfcfa;
}

.metric-row b {
  font-size: 38px;
  color: #08110f;
}

.ops-table-preview {
  background: #ffffff;
}

.ops-row {
  grid-template-columns: minmax(118px, 1.5fr) minmax(62px, 0.68fr) minmax(88px, 0.95fr) minmax(82px, 0.76fr);
  min-height: 42px;
  border-top-color: rgba(8, 17, 15, 0.08);
}

.ops-head {
  background: #f3f5f1;
}

.chip {
  border-radius: 8px;
}

.workflow-list div,
.audit-mini-list span {
  border-radius: 8px;
  border-color: rgba(8, 17, 15, 0.08);
  background: #fbfcfa;
}

.side-console {
  border-top: 1px solid rgba(8, 17, 15, 0.06);
}

.console-footer span {
  border-radius: 8px;
  background: rgba(8, 17, 15, 0.055);
}

.page-hero {
  border-bottom: 1px solid rgba(8, 17, 15, 0.08);
  background:
    linear-gradient(90deg, rgba(8, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 17, 15, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcfa 0%, #f4f6f2 100%);
  background-size: 120px 120px, 120px 120px, auto;
  padding-block: 86px 72px;
}

.section {
  padding-block: 72px;
}

.compact-section {
  padding-block: 48px;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.muted,
.pain-section {
  background: rgba(244, 246, 242, 0.72);
}

.solution-section,
.cta-band {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #08110f 0%, #101d19 55%, #173229 100%);
  background-size: 92px 92px, 92px 92px, auto;
}

.card-grid {
  gap: 16px;
}

.info-card,
.module-card,
.link-card,
.pricing-card,
.side-panel,
.process-step,
.article-aside,
.lead-form,
.dashboard-mockup {
  border-radius: 8px;
  border-color: rgba(8, 17, 15, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(8, 17, 15, 0.055);
}

.info-card,
.module-card,
.link-card,
.pricing-card,
.side-panel,
.process-step,
.article-aside {
  padding: 24px;
}

.info-card::before,
.module-card::before,
.link-card::before {
  height: 0;
}

.pain-section .info-card {
  background:
    linear-gradient(180deg, #fff, #fafbf8);
  padding: 26px;
}

.module-card {
  border-left: 3px solid rgba(10, 124, 106, 0.72);
}

.solution-section .module-card {
  border-left-color: rgba(231, 195, 110, 0.75);
  background: rgba(255, 255, 255, 0.075);
}

.dashboard-grid {
  gap: 20px;
}

.dashboard-mockup {
  border-radius: 10px;
  overflow: hidden;
}

.mockup-head {
  background: #fbfcfa;
}

table {
  min-width: 740px;
}

th {
  background: #f3f5f1;
}

th,
td {
  border-bottom-color: rgba(8, 17, 15, 0.09);
}

.split-section,
.two-column,
.article-layout {
  gap: 42px;
}

.lead-form {
  padding: 30px;
  border: 1px solid rgba(8, 17, 15, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 248, 0.98));
  box-shadow: 0 22px 54px rgba(8, 17, 15, 0.1);
}

.form-header {
  border-bottom: 1px solid rgba(8, 17, 15, 0.08);
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.form-header h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.form-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-radius: 8px;
  border-color: rgba(8, 17, 15, 0.16);
  background: #fff;
}

.lead-form fieldset {
  border-radius: 8px;
  border-color: rgba(8, 17, 15, 0.1);
  background: #f8faf6;
}

.option-row label {
  border: 1px solid rgba(8, 17, 15, 0.08);
  border-radius: 8px;
  background: #fff;
  padding: 7px 9px;
}

.form-promise {
  border-radius: 8px;
  border-color: rgba(10, 124, 106, 0.18);
  background: #eef7f3;
}

.process-grid {
  gap: 16px;
}

.process-step span {
  border-radius: 8px;
  background: #08110f;
  color: #fff;
}

.pricing-card {
  border-top: 4px solid rgba(10, 124, 106, 0.75);
}

.pricing-card:nth-child(2) {
  border-top-color: rgba(36, 71, 198, 0.75);
}

.pricing-card:nth-child(3) {
  border-top-color: rgba(185, 138, 63, 0.8);
}

.pricing-mini div {
  border-radius: 8px;
  border-left-color: rgba(10, 124, 106, 0.8);
}

.cta-band-inner {
  align-items: center;
}

details {
  border-radius: 8px;
  border-color: rgba(8, 17, 15, 0.1);
  box-shadow: 0 8px 20px rgba(8, 17, 15, 0.035);
}

.site-footer {
  background: #08110f;
  border-top: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2,
.footer-brand,
.site-footer strong {
  color: #fff;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-note {
  color: rgba(255, 255, 255, 0.58);
}

.footer-language .language-switch {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-language .language-switch a,
.footer-language .language-switch span {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .audit-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    min-height: 64px;
  }

  .main-nav {
    top: 64px;
    border-radius: 8px;
  }

  h1 {
    font-size: 38px;
  }

  .page-hero {
    padding-block: 58px 46px;
  }

  .section {
    padding-block: 54px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .container,
  .hero-inner {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    width: min(100% - 32px, 330px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 10px;
  }

  h1 {
    font-size: 33px;
    line-height: 1.05;
  }

  h2 {
    font-size: 27px;
  }

  .hero-inner {
    padding-block: 38px 34px;
  }

  .hero-sub,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-signals {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    border-inline: 0;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 17, 15, 0.08);
  }

  .console-shell {
    border-radius: 10px;
  }

  .console-main {
    padding: 12px;
  }

  .console-topline {
    padding: 14px;
  }

  .metric-row b {
    font-size: 28px;
  }

  .side-console,
  .workflow-list {
    display: grid;
  }

  .side-console {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .audit-mini-list {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 20px;
  }

  .audit-hero-form .lead-form {
    padding: 18px;
  }

  .audit-outcome-list {
    grid-template-columns: 1fr;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .option-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    background: rgba(255, 255, 255, 0.94);
    padding-bottom: env(safe-area-inset-bottom);
    backdrop-filter: blur(18px);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }

  .audit-section,
  .audit-hero-form,
  .lead-form {
    scroll-margin-bottom: 90px;
  }

  .lead-form {
    margin-bottom: 18px;
  }

  .mobile-cta a {
    min-height: 60px;
  }

  .mobile-cta a:first-child {
    background: #0a7c6a;
    color: #fff;
  }

  .audit-hero-conversion h1 {
    max-width: calc(100vw - 28px);
    font-size: 30px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .audit-hero-conversion .hero-copy,
  .audit-hero-conversion .hero-copy > *,
  .audit-hero-conversion .hero-sub,
  .audit-hero-conversion .trust-line {
    width: 100%;
    max-width: 360px;
  }

  .audit-hero-conversion .hero-sub,
  .audit-hero-conversion .trust-line {
    padding-right: 8px;
  }

  .audit-hero-grid,
  .audit-hero-grid .hero-copy,
  .audit-hero-form,
  .audit-hero-form .lead-form {
    max-width: 100%;
    min-width: 0;
  }

  .audit-hero-form,
  .audit-hero-form .lead-form {
    width: 100%;
    max-width: 360px;
  }

  .audit-hero-grid .hero-copy {
    padding-top: 0;
  }

  .audit-outcome-list {
    display: none;
  }

  .audit-hero-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .blog-feature-grid,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .featured-article-card h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .featured-article-card,
  .blog-decision-panel,
  .inline-audit-cta,
  .related-article-links {
    padding: 20px;
  }

  .featured-article-card h2 {
    font-size: 30px;
  }

  .article-meta-row {
    font-size: 12px;
  }

  .inline-audit-cta .btn {
    width: 100%;
  }
}
