:root {
  color-scheme: light dark;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --paper: #f8fafc;
  --white: #ffffff;
  --navy: #1e293b;
  --teal: #0ea5e9;
  --green: #10b981;
  --blue: #3b82f6;
  --gold: #f59e0b;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.03);
  --shadow-lift: 0 20px 40px rgba(15, 23, 42, 0.06);
  --hero-gradient: linear-gradient(
    90deg,
    rgb(3 7 18 / 97%) 0%,
    rgb(3 7 18 / 90%) 45%,
    rgb(3 7 18 / 42%) 100%
  );
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --paper: #030712;
  --white: rgba(17, 24, 39, 0.7);
  --navy: #1f2937;
  --teal: #00f2fe;
  --green: #10b981;
  --blue: #3b82f6;
  --gold: #fbbf24;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-lift: 0 20px 40px rgba(0, 0, 0, 0.5);
  --hero-gradient: linear-gradient(90deg, #030712 0%, rgba(3, 7, 18, 0.95) 45%, rgba(3, 7, 18, 0.4) 100%);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Outfit,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

a,
button,
select,
input,
textarea {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

:focus-visible {
  outline: 3px solid rgb(15 139 141 / 34%);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgb(246 248 251 / 88%);
  border-bottom: 1px solid rgb(220 227 234 / 78%);
  backdrop-filter: blur(16px);
}

.logo {
  text-decoration: none;
  line-height: 1;
}

.logo span,
.logo small {
  display: block;
}

.logo span {
  font-size: 19px;
  font-weight: 850;
  letter-spacing: 0;
}

.logo small {
  margin-top: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 4vw, 34px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: white;
  background: var(--navy);
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0b1b2a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--hero-gradient),
    url("assets/avatar.jpg") right center / auto 100% no-repeat,
    radial-gradient(circle at 80% 30%, rgba(0, 242, 254, 0.15), transparent 45%),
    linear-gradient(135deg, var(--paper), var(--navy) 46%, rgba(15, 139, 141, 0.1));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
  padding: 92px 0 108px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: #d8e4ec;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 9px 12px;
  color: #e7f0f4;
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
}

.button.primary {
  background: linear-gradient(135deg, var(--green), #059669);
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
  border: none;
  font-weight: 750;
}

.button.primary:hover {
  background: linear-gradient(135deg, #10b981, #047857);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
  transform: translateY(-2.5px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}

[data-theme="dark"] .button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.button.secondary.dark {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-strong);
}

.button.secondary.dark:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px var(--shadow-soft);
  transform: translateY(-2px);
}

.intro,
.outcomes,
.audience,
.audit,
.calculator,
.consultation,
.lead-magnet,
.section,
.benefits,
.contact {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 36px;
  align-items: end;
  padding: 64px 0 34px;
}

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

.outcomes article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  min-height: 112px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.outcomes article,
.advisor,
.consultation-grid article,
.audience-grid p,
.benefit-grid article {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.outcomes article:hover,
.advisor:hover,
.consultation-grid article:hover,
.audience-grid p:hover,
.benefit-grid article:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.outcomes strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 14px;
}

.outcomes span {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.32;
  font-weight: 820;
}

.intro-copy h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy p,
.contact p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.advisor {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.advisor img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.advisor strong,
.advisor span {
  display: block;
}

.advisor strong {
  font-size: 18px;
}

.advisor span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.advisor a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.audience {
  padding: 28px 0 52px;
}

.audience h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

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

.audience-grid p {
  min-height: 126px;
  margin: 0;
  padding: 22px;
  color: #24364a;
  background: #edf3f6;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 720;
}

.audit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 30px;
  align-items: start;
  padding: 54px;
  background: var(--navy);
  border-radius: 8px;
  color: white;
  box-shadow: 0 24px 60px rgb(16 32 51 / 14%);
}

.audit-copy {
  position: sticky;
  top: 100px;
}

.audit-copy .eyebrow,
.audit-result .eyebrow {
  color: var(--gold);
}

.audit h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.audit-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #cbd8e2;
  font-size: 17px;
  line-height: 1.6;
}

.audit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
}

.audit-form label {
  display: grid;
  gap: 8px;
}

.audit-form label span {
  color: #e8f1f5;
  font-size: 13px;
  font-weight: 820;
}

.audit-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
}

.audit-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
  outline: 0;
}

.audit-form button {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
}

.audit-result {
  grid-column: 2;
  padding: 24px;
  background: white;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgb(0 0 0 / 14%);
}

.audit-result h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
}

.audit-score {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 14px;
  padding: 0 12px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
}

.audit-meter {
  height: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #e6edf2;
  border-radius: 999px;
}

.audit-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--green));
  border-radius: inherit;
}

.audit-result-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.audit-result-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #24364a;
  background: #edf3f6;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 820;
}

.audit-result h4 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.audit-next-step {
  padding: 14px 16px;
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audit-result p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.audit-result ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 19px;
  color: #2b3d50;
  font-size: 15px;
  line-height: 1.45;
}

.audit-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.consultation {
  padding: 64px 0 28px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.consultation-grid article {
  min-height: 230px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.consultation-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.consultation-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.15;
}

.consultation-grid h3 {
  margin-top: 26px;
}

.consultation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.lead-magnet {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.lead-magnet h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead-magnet p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.lead-magnet .eyebrow {
  color: var(--teal);
}

.lead-magnet-actions {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

.checklist-page {
  background: #edf3f6;
}

.checklist-document {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 56px;
}

.checklist-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.checklist-header p {
  margin: 0;
}

.checklist-hero {
  padding: 42px;
  color: white;
  background: var(--navy);
  border-radius: 8px;
}

.checklist-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.checklist-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #d9e5ec;
  font-size: 18px;
  line-height: 1.6;
}

.checklist-hero .button {
  margin-top: 26px;
}

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

.checklist-grid article {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checklist-grid h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.checklist-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.checklist-note {
  color: white;
  background: var(--navy) !important;
}

.checklist-note h2 {
  color: white;
}

.checklist-note p {
  margin: 0 0 22px;
  color: #d9e5ec;
  font-size: 17px;
  line-height: 1.6;
}

.benefits {
  padding: 70px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading .eyebrow,
.contact .eyebrow {
  color: var(--teal);
}

.benefit-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.benefit-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.15;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.benefits {
  border-top: 1px solid var(--line);
}

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

.benefit-grid article {
  padding: 22px;
}

.benefit-grid h3 {
  margin-top: 0;
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 56px;
  padding: 40px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgb(16 32 51 / 14%);
}

.contact h2 {
  color: white;
}

.contact p {
  color: #cbd8e2;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #e8f1f5;
  font-size: 13px;
  font-weight: 820;
}

.contact-form label span small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8794a4;
}

.audit-form select,
.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form .wide,
.contact-form button,
.contact-form a {
  grid-column: 1 / -1;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.contact-form .button.secondary {
  background: rgb(255 255 255 / 12%);
  color: white;
  border-color: rgb(255 255 255 / 24%);
}

.contact-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  color: #fecaca;
  background: rgb(127 29 29 / 30%);
  border: 1px solid rgb(248 113 113 / 35%);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-trust {
  grid-column: 1 / -1;
  margin: -2px 0 0 !important;
  color: #cbd8e2 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  text-align: center;
}

.site-footer {
  width: min(1120px, calc(100% - 36px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 34px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer > div {
  display: grid;
  gap: 6px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.site-footer nav a {
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--teal);
}

.site-footer strong {
  color: var(--ink);
}

.consultation-process,
.faq {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
  padding: 96px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 30px;
  background: var(--white);
}

.process-steps li > span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-steps h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-cta {
  margin-top: 28px;
}

.faq {
  padding-top: 36px;
}

.faq-list {
  max-width: 900px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 750;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--teal);
  font-size: 30px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.knowledge {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
  padding: 72px 0 96px;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.knowledge-card {
  display: block;
  padding: 30px;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.knowledge-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.knowledge-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.knowledge-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
}

.knowledge-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.knowledge-card strong {
  color: var(--teal);
  font-size: 14px;
}

.article-page {
  background: var(--paper);
}

.guide-article {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.article-hero {
  max-width: 900px;
  padding: 86px 0 74px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--teal);
  text-decoration: none;
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.article-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.55;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
  padding-bottom: 100px;
}

.article-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 13px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.article-toc strong {
  margin-bottom: 5px;
}

.article-toc a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--teal);
}

.article-content > section {
  padding: 0 0 58px;
  scroll-margin-top: 100px;
}

.article-content h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
}

.article-content h3 {
  margin: 0 0 8px;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-content p {
  margin: 0 0 18px;
}

.article-checklist,
.article-steps {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-left: 26px;
}

.article-checklist li::marker,
.article-steps li::marker {
  color: var(--teal);
  font-weight: 800;
}

.article-note {
  margin-top: 28px;
  padding: 26px;
  background: color-mix(in srgb, var(--teal) 8%, var(--white));
  border-left: 4px solid var(--teal);
  border-radius: 8px;
}

.article-note p {
  margin: 8px 0 0;
}

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

.tax-grid {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.tax-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.tax-grid article p {
  margin: 0;
  font-size: 16px;
}

.debt-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.debt-comparison article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.debt-comparison article p {
  margin: 0;
  font-size: 16px;
}

.risk-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.risk-grid article p {
  margin: 0;
  font-size: 16px;
}

.article-cta {
  margin-top: 12px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--navy);
  border-radius: 14px;
  color: white;
}

.article-cta h2 {
  color: white;
}

.article-cta p:not(.eyebrow) {
  color: #d8e4ec;
}

.checklist-guide-link {
  display: block;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 750;
  line-height: 1.5;
  text-decoration: none;
}

@media (max-width: 720px) {
  .consultation-process,
  .faq {
    padding: 68px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    padding: 24px 20px;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .knowledge {
    padding: 56px 0 72px;
  }

  .knowledge-grid,
  .risk-grid,
  .debt-comparison {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 54px 0 48px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 70px;
  }

  .article-toc {
    position: static;
  }

  .article-content p,
  .article-content li {
    font-size: 17px;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .consultation-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit,
  .contact {
    padding: 40px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 64px;
    padding: 10px 18px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding-inline: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(
        0deg,
        rgb(9 23 35 / 96%) 0%,
        rgb(9 23 35 / 86%) 54%,
        rgb(9 23 35 / 62%) 100%
      ),
      url("assets/avatar.jpg") center top / 100% auto no-repeat,
      radial-gradient(circle at 50% 20%, #2f6d7a 0, transparent 34%),
      linear-gradient(135deg, #102d43, #173852 46%, #0e5e66);
  }

  .hero-bg::after {
    height: 28%;
    background: linear-gradient(0deg, var(--paper), rgb(246 248 251 / 0%));
  }

  .hero-content {
    padding: 186px 0 36px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 37px;
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 350px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

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

  .hero-actions .button,
  .lead-magnet-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-proof span {
    padding: 8px 11px;
    font-size: 12px;
  }

  .intro,
  .audit,
  .lead-magnet,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro,
  .outcomes,
  .audience,
  .audit,
  .consultation,
  .lead-magnet,
  .section,
  .benefits,
  .contact,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .audit {
    padding: 28px 20px;
  }

  .audit-copy {
    position: static;
  }

  .audit-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .audit-form label,
  .contact-form label {
    gap: 9px;
  }

  .audit-form label span,
  .contact-form label span {
    font-size: 14px;
  }

  .audit-form select,
  .contact-form select,
  .contact-form input {
    min-height: 58px;
    padding: 0 46px 0 16px;
    font-size: 16px;
    line-height: 1.2;
  }

  .contact-form textarea {
    min-height: 132px;
    padding: 15px 16px;
    font-size: 16px;
    line-height: 1.35;
  }

  .audit-result {
    grid-column: auto;
  }

  .audit-result h3 {
    font-size: 26px;
  }

  .audit-result-actions .button {
    width: 100%;
  }

  .outcomes,
  .audience-grid,
  .consultation-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    padding: 42px 0;
  }

  .intro {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .outcomes {
    padding-top: 26px;
  }

  .outcomes article {
    min-height: auto;
    padding: 18px;
  }

  .outcomes span {
    font-size: 17px;
  }

  .consultation {
    padding: 42px 0 12px;
  }

  .lead-magnet {
    margin-top: 24px;
    padding: 24px 18px;
  }

  .lead-magnet-actions {
    min-width: 0;
  }

  .lead-magnet-actions .button {
    justify-self: stretch;
  }

  .checklist-document {
    width: min(100% - 28px, 980px);
    padding-top: 20px;
  }

  .checklist-header {
    display: block;
  }

  .checklist-header p {
    margin-top: 12px;
  }

  .checklist-hero {
    padding: 28px 20px;
  }

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

  .checklist-grid article {
    padding: 22px;
  }

  .intro-copy h2,
  .section-heading h2,
  .contact h2 {
    font-size: 29px;
  }

  .intro-copy p,
  .contact p {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact {
    padding: 28px 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .contact-form .wide,
  .contact-form button,
  .contact-form a {
    grid-column: auto;
  }

  .audit-form .button,
  .contact-form .button {
    width: 100%;
  }

  .site-footer {
    display: block;
    margin-bottom: 24px;
  }

  .site-footer span {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .logo span {
    font-size: 17px;
  }

  .logo small {
    font-size: 11px;
  }

  .header-cta {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy,
  .intro-copy p,
  .contact p {
    font-size: 16px;
  }
}

/* ==========================================================================
   DARK THEME SYSTEM & VARIABLES
   ========================================================================== */
[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: #334155;
  --line-strong: #475569;
  --paper: #090f1d;
  --white: #111a2e;
  --navy: #1e293b;
  --teal: #38bdf8;
  --green: #22c55e;
  --blue: #3b82f6;
  --shadow-soft: 0 14px 34px rgb(0 0 0 / 40%);
  --shadow-lift: 0 16px 36px rgb(0 0 0 / 50%);
}

[data-theme="dark"] body {
  background-color: var(--paper);
  color: var(--ink);
}

[data-theme="dark"] .outcomes article,
[data-theme="dark"] .advisor,
[data-theme="dark"] .consultation-grid article,
[data-theme="dark"] .audience-grid p,
[data-theme="dark"] .benefit-grid article,
[data-theme="dark"] .lead-magnet,
[data-theme="dark"] .audit-result {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .outcomes article:hover,
[data-theme="dark"] .advisor:hover,
[data-theme="dark"] .consultation-grid article:hover,
[data-theme="dark"] .audience-grid p:hover,
[data-theme="dark"] .benefit-grid article:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift);
}

[data-theme="dark"] .audit-copy p:not(.eyebrow) {
  color: #94a3b8;
}

[data-theme="dark"] .audit-meter {
  background: #1e293b;
}

[data-theme="dark"] .audit-result-summary span {
  background: #1e293b;
  color: #f8fafc;
  border-color: #334155;
}

[data-theme="dark"] .audit-next-step {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .site-header {
  background: rgb(9 15 29 / 85%);
  border-bottom-color: rgb(51 65 85 / 50%);
}

[data-theme="dark"] .site-nav {
  color: #cbd5e1;
}

[data-theme="dark"] .site-nav a:hover {
  color: #ffffff;
}

[data-theme="dark"] .audience-grid p {
  background: #131e36;
  color: #cbd5e1;
}

[data-theme="dark"] .site-footer {
  border-top-color: var(--line);
}

[data-theme="dark"] .site-footer strong {
  color: var(--teal);
}

[data-theme="dark"] .audit-form select,
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background-color: #0f172a;
  color: #f8fafc;
  border-color: #334155;
}

[data-theme="dark"] .audit-form select,
[data-theme="dark"] .contact-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);
}

/* ==========================================================================
   THEME TOGGLE COMPONENT
   ========================================================================== */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 160ms, color 160ms;
}

.theme-toggle:hover {
  background-color: var(--line);
  color: var(--teal);
}

[data-theme="dark"] .theme-toggle:hover {
  background-color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sun-icon {
  display: block;
}

.moon-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: none;
}

[data-theme="dark"] .moon-icon {
  display: block;
}

/* ==========================================================================
   GLASSMORPHISM STYLING
   ========================================================================== */
.glass-panel {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px 0 rgba(16, 32, 51, 0.04);
  border-radius: 12px;
}

[data-theme="dark"] .glass-panel {
  background: rgba(17, 26, 46, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   MORTGAGE CALCULATOR SECTION
   ========================================================================== */
.calculator {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.calculator-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.calculator-heading h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  margin: 0;
  line-height: 1.05;
}

[data-theme="dark"] .calculator-heading h2 {
  color: #ffffff;
}

.calculator-heading p {
  color: var(--muted);
  font-size: 18px;
  margin: 14px 0 0;
  line-height: 1.6;
}

.calculator-toggle {
  display: none;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.calculator-inputs,
.calculator-results {
  padding: 30px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.input-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-group label span {
  font-size: 14px;
  font-weight: 750;
  color: var(--ink);
}

[data-theme="dark"] .input-group label span {
  color: #e2e8f0;
}

.value-display {
  font-size: 16px !important;
  font-weight: 850 !important;
  color: var(--teal) !important;
}

.input-group input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--line-strong);
  border-radius: 3px;
  outline: none;
  margin: 10px 0;
}

[data-theme="dark"] .input-group input[type="range"] {
  background: #334155;
}

.input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  transition: transform 120ms;
}

.input-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.input-group input[type="number"] {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  background: var(--white);
  color: var(--ink);
}

[data-theme="dark"] .input-group input[type="number"] {
  border-color: #334155;
  background: #0f172a;
  color: #f8fafc;
}

.input-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-box {
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

[data-theme="dark"] .result-box {
  background: rgba(15, 23, 42, 0.4);
  border-color: #334155;
}

.result-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
  display: block;
}

.result-value {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 850;
  line-height: 1.1;
  margin-top: 8px;
  display: block;
  font-family: Outfit, sans-serif;
  color: var(--ink);
}

[data-theme="dark"] .result-value {
  color: #ffffff;
}

.result-value.safe {
  color: var(--green);
}

.result-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(15, 139, 141, 0.1);
}

[data-theme="dark"] .metric {
  background: rgba(15, 23, 42, 0.2);
  border-color: rgba(56, 189, 248, 0.1);
}

.metric-label {
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
  display: block;
}

.metric-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
  display: block;
}

[data-theme="dark"] .metric-value {
  color: #ffffff;
}

.calculator-actions button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.calculator-disclaimer {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.calculator-scenarios {
  margin-top: 24px;
  padding: 30px;
}

.scenario-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 36px;
  align-items: end;
}

.scenario-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.scenario-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.scenario-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
}

.scenario-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.scenario-table th,
.scenario-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.scenario-table th:first-child,
.scenario-table td:first-child {
  text-align: left;
}

.scenario-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scenario-table td {
  font-size: 16px;
  font-weight: 700;
}

.scenario-table tr.is-selected td {
  color: var(--teal);
  background: color-mix(in srgb, var(--teal) 7%, transparent);
}

.stress-metric {
  border-color: color-mix(in srgb, var(--gold) 35%, var(--line));
}

@media (max-width: 820px) {
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calculator-toggle {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 0 18px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
  }

  .calculator-toggle:hover {
    border-color: var(--teal);
  }

  .calculator.is-collapsed .calculator-body {
    display: none;
  }

  .calculator {
    padding: 42px 0;
  }
  .input-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .result-metrics {
    grid-template-columns: 1fr;
  }
  .scenario-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .calculator-scenarios {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   SCROLL REVEAL MICRO-ANIMATIONS
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   PRINT LAYOUT SYSTEM (@media print)
   ========================================================================== */
@media print {
  body {
    background: white !important;
    color: black !important;
    font-size: 11pt !important;
    font-family: 'Outfit', 'Inter', Arial, sans-serif !important;
  }

  /* Hide navigation, header, footer, forms, toggles and actions */
  .site-header,
  .site-nav,
  .header-actions,
  .hero-actions,
  .audit-form,
  .calculator-inputs,
  .calculator-actions,
  .contact,
  .contact-form,
  .site-footer,
  .lead-magnet-actions,
  .audit-result-actions,
  #theme-toggle {
    display: none !important;
  }

  /* Make sure the main layout prints nicely */
  main {
    display: block !important;
  }

  /* Force display of audit result even if hidden in browser */
  .audit-result {
    display: block !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: none !important;
    padding: 24px !important;
    background: #ffffff !important;
    color: black !important;
    page-break-inside: avoid;
  }

  .hero {
    min-height: auto !important;
    padding: 20px 0 !important;
    background: transparent !important;
  }

  .hero-bg {
    display: none !important;
  }

  .hero-content {
    padding: 0 !important;
    color: black !important;
  }

  .hero h1 {
    color: black !important;
    font-size: 24pt !important;
  }

  .hero-copy {
    color: #334155 !important;
    font-size: 12pt !important;
  }

  .audit {
    background: transparent !important;
    color: black !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: block !important;
    page-break-after: always;
  }

  .audit-copy h2 {
    color: black !important;
    font-size: 18pt !important;
  }

  .audit-copy p {
    color: #475569 !important;
  }

  .audit-score {
    background: #2c9b67 !important;
    color: white !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .audit-meter {
    border: 1px solid #cbd5e1 !important;
    background: #e2e8f0 !important;
  }

  .audit-meter span {
    background: #2c9b67 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .audit-result-summary span {
    background: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
  }

  .audit-next-step {
    border: 1px solid #cbd5e1 !important;
    background: #f8fafc !important;
  }

  .checklist-document {
    width: 100% !important;
    padding: 0 !important;
  }

  .checklist-hero {
    background: #12324b !important;
    color: white !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    padding: 24px !important;
  }

  .checklist-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  .checklist-grid article {
    border: 1px solid #cbd5e1 !important;
    page-break-inside: avoid;
  }

  .checklist-note {
    background: #f8fafc !important;
    color: black !important;
    border: 1px solid #cbd5e1 !important;
  }
}

/* ==========================================================================
   CONTACT SUCCESS STATE STYLING
   ========================================================================== */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
}

[data-theme="dark"] .contact-success {
  background: rgba(17, 26, 46, 0.55);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.contact-success h3 {
  color: var(--ink);
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.contact-success p {
  color: var(--muted) !important;
  font-size: 16px;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
