:root {
  --bg: #111214;
  --bg-deep: #070b0f;
  --panel: #191b1f;
  --paper: #f5f1e9;
  --ink: #1c1d20;
  --muted: #6b6f76;
  --line: #d9d3c7;
  --gold: #d2a95d;
  --gold-dark: #8b6424;
  --navy: #0b1b28;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

input,
select,
textarea,
summary {
  overflow-wrap: anywhere;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .62;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px clamp(16px, 4vw, 44px);
  background: rgba(7, 11, 15, .97);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: min(520px, 48vw);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(210, 169, 93, .45);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: auto;
  display: block;
}

.brand small {
  display: block;
  color: var(--white);
  font-size: 11px;
  line-height: 1.1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.1;
}

.brand-credential {
  max-width: 470px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 18px);
  margin-left: auto;
}

.site-nav a,
.header-call {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 13px;
  overflow-wrap: normal;
  white-space: nowrap;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.header-call {
  padding: 8px 12px;
  border: 1px solid rgba(200, 164, 93, .7);
  color: var(--gold);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: var(--white);
  padding: 9px 12px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: clamp(500px, 70vh, 680px);
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 78% 22%, rgba(210, 169, 93, .16), transparent 34%),
    linear-gradient(135deg, #070b0f 0%, #0d1b25 52%, #14110d 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, .94) 0%, rgba(7, 11, 15, .74) 48%, rgba(7, 11, 15, .22) 100%),
    linear-gradient(0deg, rgba(7, 11, 15, .7), transparent 34%);
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  max-width: 760px;
  text-wrap: balance;
}

.hero-name {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.08;
  color: var(--gold);
  font-weight: 700;
}

.hero-credential {
  margin: 14px 0 0;
  max-width: 620px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .68);
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.55vw, 19px);
}

.hero-media {
  justify-self: end;
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(210, 169, 93, .28);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .44);
  background: #0d1115;
}

.hero-media.home,
.hero-media.criminal,
.hero-media.product,
.hero-media.about {
  aspect-ratio: 4 / 5;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 32%;
  filter: saturate(.95) contrast(1.03);
}

.hero-media.home img {
  object-position: 56% 40%;
}

.hero-media.product img {
  object-position: 62% 42%;
}

.hero-media.about img {
  object-position: 64% 34%;
}

.hero-actions,
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button,
.related-grid a,
.contact-rail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: normal;
  text-align: center;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.button.primary {
  background: linear-gradient(135deg, #e2bd73, var(--gold));
  color: #17130b;
  box-shadow: 0 12px 30px rgba(210, 169, 93, .24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
}

.button:hover,
.related-grid a:hover,
.contact-rail a:hover {
  transform: translateY(-1px);
}

.page-content,
.related {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}

.page-content {
  padding: 46px 0;
}

.home-page-content {
  width: 100%;
  padding: 0;
}

.cta-block,
.contact-panel,
.form-panel,
.upload-panel,
.faq-preview {
  width: min(980px, calc(100% - 36px));
  margin: 42px auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel h2,
.form-panel h2,
.upload-panel h2,
.faq-preview h2,
.related h2,
.content-section h2,
.cta-block strong {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.legal-note.dark {
  color: var(--muted);
}

.contact-panel,
.form-panel,
.upload-panel,
.faq-preview {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
}

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

.contact-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-card.primary {
  background: linear-gradient(135deg, var(--bg-deep), var(--navy));
  color: var(--white);
  border-color: var(--bg);
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(210, 169, 93, .64);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
}

.contact-card.primary span {
  color: rgba(255, 255, 255, .62);
}

.contact-card strong {
  font-size: 18px;
}

.email-card {
  grid-column: 1 / -1;
}

.email-card strong {
  font-size: clamp(15px, 2vw, 18px);
  overflow-wrap: anywhere;
}

.form-panel {
  box-shadow: none;
  background: #fbfaf7;
}

.form-panel .button.primary {
  background: var(--bg);
  color: var(--white);
  box-shadow: none;
}

.form-intro {
  max-width: 760px;
  margin-bottom: 22px;
}

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

.form-field,
.file-field,
.checkbox-field {
  display: grid;
  gap: 7px;
}

.form-field span,
.file-field span {
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea,
.file-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfc6b7;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.file-field input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(210, 169, 93, .18);
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field:has(textarea),
.checkbox-field,
.file-field,
.form-state,
.form-submit {
  grid-column: 1 / -1;
}

.form-privacy {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.form-field small,
.file-field small {
  color: var(--muted);
  font-size: 13px;
}

.selected-files {
  grid-column: 1 / -1;
}

.file-empty {
  margin: 0;
  color: var(--muted);
}

.file-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.file-list small {
  color: var(--muted);
}

.file-list button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 7px 10px;
}

.file-error {
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff0ed;
  color: #7a231c;
  font-weight: 700;
}

.checkbox-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.checkbox-field input {
  margin-top: 5px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

[aria-invalid="true"] {
  border-color: #a33a32 !important;
  outline: 2px solid rgba(163, 58, 50, .16);
}

.form-state {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fff0ed;
  color: #7a231c;
  font-weight: 700;
}

.form-state.success {
  background: #edf8f1;
  color: #195b35;
}

.lead-form.is-loading {
  opacity: .78;
}

.upload-panel {
  background: #fcfbf8;
}

.faq-preview-list {
  display: grid;
  gap: 10px;
}

.faq-preview details {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.faq-preview summary {
  cursor: pointer;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-dark);
  font-weight: 800;
}

.content-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.home-page-content .content-section {
  width: 100%;
  margin: 0;
  padding: clamp(42px, 6vw, 68px) max(18px, calc((100vw - 1080px) / 2));
  border-bottom: 1px solid rgba(28, 29, 32, .1);
}

.home-page-content .content-section:nth-child(even) {
  background: #fffdf8;
}

.home-page-content .content-section:nth-child(2) {
  background: #101820;
  color: var(--white);
}

.home-page-content .content-section:nth-child(2) p,
.home-page-content .content-section:nth-child(2) li {
  color: rgba(255, 255, 255, .76);
}

.home-page-content .content-section:nth-child(4) {
  background: #ece6db;
}

.content-section h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  max-width: 720px;
}

.home-page-content .content-section > * {
  max-width: 760px;
}

.home-page-content .content-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  max-width: 920px;
  padding-left: 0;
  list-style: none;
}

.home-page-content .content-section li {
  padding: 11px 13px;
  border: 1px solid rgba(139, 100, 36, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .64);
}

.home-page-content .content-section:nth-child(2) li {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(210, 169, 93, .24);
}

h3 {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.24;
}

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

p {
  max-width: 760px;
}

ul {
  padding-left: 22px;
}

code {
  padding: 2px 5px;
  background: #ece7dc;
  border-radius: 4px;
}

pre {
  max-width: 100%;
  overflow: auto;
  padding: 18px;
  background: #ece7dc;
  border-radius: var(--radius);
}

.inline-cta {
  display: inline-flex;
  margin: 8px 8px 8px 0;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-dark);
  font-weight: 700;
}

.cta-block {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(210, 169, 93, .18), transparent 34%),
    linear-gradient(135deg, var(--bg-deep), var(--navy));
  color: var(--white);
}

.cta-block.urgent {
  background: #181012;
}

.cta-block.product {
  background: #17211d;
}

.cta-block strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.cta-block p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: 260px;
}

.button.light {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
}

.contact-rail {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.contact-rail a {
  min-height: 40px;
  padding: 9px 12px;
  background: var(--bg);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.contact-rail a:first-child {
  background: var(--gold);
  color: #17130b;
}

.related {
  padding: 0 0 58px;
}

.related h2 {
  font-size: 28px;
}

.related-grid a {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--bg);
  color: rgba(255, 255, 255, .78);
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-mark {
  flex: 0 0 auto;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: flex-end;
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  grid-column: 1 / -1;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.legal-note {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    padding-top: 12px;
  }

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

  .header-call {
    width: auto;
    text-align: center;
    justify-content: center;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 1180px) and (min-width: 861px) {
  .contact-rail {
    position: sticky;
    top: 65px;
    right: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(245, 241, 233, .96);
    border-bottom: 1px solid var(--line);
  }

  .contact-rail a {
    box-shadow: none;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 54px;
  }

  .contact-rail {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .contact-rail a {
    border-radius: 0;
    box-shadow: none;
    padding: 8px 4px;
    font-size: 12px;
    white-space: normal;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .cta-block,
  .contact-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 11, 15, .96) 0%, rgba(7, 11, 15, .82) 54%, rgba(7, 11, 15, .42) 100%);
  }

  .hero-media {
    justify-self: stretch;
    width: 100%;
    max-height: 440px;
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .hero-media img {
    object-position: 54% 28%;
  }

  .lead-form,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
    min-width: 0;
  }

}

/* Approved PART 9D homepage */
body[data-page="home"] {
  background: #080e14;
  color: var(--white);
}

body[data-page="home"] main {
  background: #080e14;
}

.icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.home-contact-strip {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr .8fr .7fr 1.7fr;
  gap: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  background: #0d1720;
  border-bottom: 1px solid rgba(210, 169, 93, .2);
}

.home-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 58px;
  padding: 10px clamp(10px, 1.4vw, 20px);
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.home-contact-link:first-child {
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.home-contact-link .icon {
  color: var(--gold);
}

.home-contact-link span {
  display: grid;
  min-width: 0;
}

.home-contact-link small {
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  line-height: 1.1;
}

.home-contact-link strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.3;
}

.home-contact-link.priority strong {
  color: var(--white);
  font-size: 15px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  align-items: center;
  min-height: 470px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 34px clamp(18px, 5vw, 72px) 0;
  border-bottom: 1px solid rgba(210, 169, 93, .24);
  overflow: hidden;
}

.home-hero-copy {
  z-index: 1;
  padding: 28px 0 44px;
}

.home-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.home-hero h1 span,
.home-hero h1 small {
  display: block;
}

.home-hero h1 span {
  color: var(--white);
  font-size: clamp(48px, 6vw, 76px);
}

.home-hero h1 small {
  margin-top: 7px;
  color: var(--gold);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 600;
}

.home-experience {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.45;
}

.home-positioning {
  margin: 8px 0 22px;
  color: rgba(255, 255, 255, .58);
  font-size: 15px;
}

.home-hero .button {
  gap: 9px;
}

.home-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.home-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.home-trust .icon {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.home-hero-photo {
  align-self: end;
  width: min(100%, 430px);
  height: 440px;
  margin: 0;
  justify-self: end;
  border-left: 1px solid rgba(210, 169, 93, .3);
  border-right: 1px solid rgba(210, 169, 93, .16);
  overflow: hidden;
}

.home-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 27%;
  filter: saturate(.9) contrast(1.04) brightness(.9);
}

.home-services,
.home-expertise,
.home-final-contact {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px clamp(18px, 4vw, 48px);
}

.home-services h2,
.home-expertise h2,
.home-final-contact h2,
.pension-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.12;
}

.home-services h2 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 24px;
}

.home-services h2 span {
  color: var(--white);
  font-size: clamp(29px, 3.1vw, 40px);
}

.home-services h2 b {
  margin: 0 .22em 0 .16em;
  color: var(--white);
  font-size: clamp(27px, 3vw, 38px);
}

.home-services h2 strong {
  color: var(--gold);
  font-size: clamp(27px, 2.8vw, 37px);
  font-weight: 600;
}

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

.service-card {
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  gap: 10px;
  align-items: center;
  min-height: 92px;
  padding: 15px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(210, 169, 93, .32);
  border-radius: 4px;
  background: #0e1821;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #14222d;
}

.service-card > .icon:first-child {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.service-card > .icon:last-child {
  width: 17px;
  height: 17px;
  color: rgba(210, 169, 93, .72);
}

.service-card span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.pension-banner {
  position: relative;
  display: grid;
  min-height: 260px;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(210, 169, 93, .38);
  border-bottom: 1px solid rgba(210, 169, 93, .38);
  overflow: hidden;
}

.pension-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 12, 19, .98) 0%, rgba(5, 12, 19, .87) 46%, rgba(5, 12, 19, .16) 100%);
}

.pension-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pension-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 660px;
  padding: 34px clamp(18px, 4vw, 48px);
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pension-banner h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.pension-banner p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.5;
}

.pension-button {
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.pension-button .icon {
  width: 17px;
  height: 17px;
}

.home-expertise {
  padding-top: 38px;
  padding-bottom: 38px;
}

.home-expertise h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3vw, 37px);
}

.home-expertise h2 span {
  color: var(--gold);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(210, 169, 93, .2);
  border: 1px solid rgba(210, 169, 93, .2);
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 72px;
  padding: 13px 16px;
  background: #0b141c;
}

.expertise-item .icon {
  color: var(--gold);
}

.expertise-item span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.35;
}

.home-final-contact {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.4fr);
  gap: 30px;
  align-items: center;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1144px) / 2));
  padding-right: max(18px, calc((100vw - 1144px) / 2));
  background: #0f1922;
  border-top: 1px solid rgba(210, 169, 93, .26);
}

.home-final-contact h2 {
  font-size: clamp(27px, 3vw, 36px);
}

.home-final-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.45;
}

.home-final-links {
  display: grid;
  grid-template-columns: 1fr 1.15fr .7fr .6fr 1.55fr;
}

.home-final-links .home-contact-link {
  min-height: 68px;
  padding: 8px 11px;
}

@media (max-width: 980px) {
  .brand {
    min-width: 250px;
  }

  .home-contact-strip {
    grid-template-columns: 1fr 1.2fr .72fr .62fr 1.45fr;
  }

  .home-contact-link {
    padding-inline: 9px;
  }

  .home-contact-link .icon {
    width: 17px;
    height: 17px;
  }

  .home-contact-link strong,
  .home-contact-link.priority strong {
    font-size: 12px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  }

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

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

  .home-final-contact {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-final-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-final-links .home-contact-link.email {
    grid-column: span 2;
  }
}

@media (max-width: 780px) {
  .site-header {
    gap: 10px;
  }

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

  .brand-credential {
    display: none;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .header-call {
    order: 4;
    width: 100%;
  }

  .home-contact-strip {
    grid-template-columns: 1fr 1fr;
    padding: 0 12px;
  }

  .home-contact-link {
    min-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .home-contact-link.email {
    grid-column: 1 / -1;
  }

  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .home-hero-copy {
    padding: 34px 0 26px;
  }

  .home-hero-photo {
    width: 100%;
    height: min(98vw, 430px);
    justify-self: stretch;
    border-top: 1px solid rgba(210, 169, 93, .24);
  }

  .home-trust {
    gap: 9px 16px;
  }

  .pension-banner::after {
    background: rgba(5, 12, 19, .76);
  }

  .home-final-links {
    grid-template-columns: 1fr 1fr;
  }

  .home-final-links .home-contact-link.email {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  body[data-page="home"] {
    padding-bottom: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .menu-toggle {
    padding: 7px 9px;
  }

  .home-contact-strip {
    padding-inline: 8px;
  }

  .home-contact-link:nth-child(3),
  .home-contact-link:nth-child(4) {
    min-height: 44px;
  }

  .home-hero h1 span {
    font-size: 44px;
  }

  .home-hero h1 small {
    font-size: 29px;
    line-height: 1.08;
  }

  .home-experience {
    margin-top: 18px;
    font-size: 16px;
  }

  .home-positioning {
    font-size: 13px;
  }

  .home-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-trust li:last-child {
    grid-column: 1 / -1;
  }

  .home-services,
  .home-expertise,
  .home-final-contact {
    padding: 32px 14px;
  }

  .home-services h2 {
    align-items: center;
  }

  .home-services h2 span,
  .home-services h2 b,
  .home-services h2 strong {
    font-size: 25px;
  }

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

  .service-card {
    grid-template-columns: 25px 1fr;
    gap: 8px;
    min-height: 104px;
    padding: 11px;
  }

  .service-card > .icon:first-child {
    width: 23px;
    height: 23px;
  }

  .service-card > .icon:last-child {
    display: none;
  }

  .service-card span {
    font-size: 12px;
  }

  .pension-banner {
    display: grid;
    min-height: 0;
  }

  .pension-banner > img {
    position: static;
    inset: auto;
    grid-row: 2;
    height: 150px;
    object-position: right center;
  }

  .pension-banner::after {
    display: none;
  }

  .pension-copy {
    grid-row: 1;
    background: #0a141d;
    padding: 28px 18px;
  }

  .pension-banner h2 {
    font-size: 25px;
  }

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

  .expertise-item {
    min-height: 62px;
  }

  .home-final-links .home-contact-link {
    min-height: 58px;
  }

  .site-footer {
    padding: 16px 14px 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .hero-name {
    font-size: 25px;
  }

  .hero-credential {
    font-size: 12px;
  }

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

  .hero-media {
    max-height: 320px;
  }

  .cta-block,
  .contact-panel,
  .form-panel,
  .upload-panel,
  .faq-preview {
    width: min(100% - 24px, 980px);
  }

  .hero-actions,
  .cta-actions,
  .related-grid {
    display: grid;
  }

  .home-page-content .content-section {
    padding: 34px 18px;
  }

  .home-page-content .content-section ul {
    grid-template-columns: 1fr;
  }

  .button,
  .related-grid a,
  .contact-rail a {
    width: 100%;
    white-space: normal;
  }

  .contact-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .contact-rail a {
    min-width: 0;
    font-size: 11px;
  }

  .file-list li {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Owner-approved PART 9E visual fidelity */
body[data-page="home"] {
  padding-bottom: 0;
}

body[data-page="home"] .site-header {
  min-height: 76px;
  padding: 6px clamp(28px, 3vw, 46px);
  border-top: 4px solid var(--gold);
  border-bottom-color: rgba(210, 169, 93, .38);
}

body[data-page="home"] .brand {
  min-width: min(550px, 49vw);
  gap: 13px;
}

body[data-page="home"] .brand-mark {
  width: 60px;
  height: 60px;
  border: 0;
  background: transparent;
}

body[data-page="home"] .brand-mark img {
  width: 56px;
}

body[data-page="home"] .brand-copy {
  gap: 1px;
}

body[data-page="home"] .brand-copy small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

body[data-page="home"] .brand-copy strong {
  font-size: 23px;
}

body[data-page="home"] .brand-credential {
  max-width: 570px;
  color: rgba(255, 255, 255, .76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  line-height: 1.15;
}

body[data-page="home"] .site-nav {
  gap: 34px;
}

body[data-page="home"] .site-nav a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

body[data-page="home"] .header-call {
  gap: 8px;
  min-height: 42px;
  padding: 9px 16px;
  color: #17130b;
  background: var(--gold);
  border-color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

body[data-page="home"] .header-call .icon {
  width: 16px;
  height: 16px;
}

.home-contact-strip {
  grid-template-columns: 1fr .85fr .9fr .72fr 1.45fr;
  padding: 0 clamp(32px, 4vw, 56px);
  border-bottom-color: rgba(210, 169, 93, .55);
}

.home-contact-link {
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 5px 18px;
  border-right-color: rgba(210, 169, 93, .35);
}

.home-contact-link:first-child {
  border-left: 0;
}

.home-contact-link:last-child {
  border-right: 0;
}

.home-contact-link .icon {
  width: 22px;
  height: 22px;
}

.home-contact-link strong,
.home-contact-link.priority strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.home-contact-link strong > span {
  display: inline;
}

.home-hero {
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: stretch;
  min-height: 400px;
  max-width: 1320px;
  padding: 0 0 0 clamp(38px, 4.2vw, 58px);
}

.home-hero-copy {
  align-self: center;
  padding: 28px 24px 28px 0;
}

.home-hero h1 span {
  font-size: clamp(47px, 4.7vw, 60px);
}

.home-hero h1 small {
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(32px, 3.25vw, 41px);
  white-space: nowrap;
}

.home-experience {
  max-width: 470px;
  margin: 26px 0 0 4px;
  padding-left: 20px;
  border-left: 6px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.32;
}

.home-positioning {
  margin: 14px 0 14px;
  color: rgba(255, 255, 255, .82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.home-hero-action-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-hero-action-row .button {
  min-height: 50px;
  padding: 10px 22px;
  font-size: 15px;
}

.home-trust {
  display: grid;
  gap: 5px;
  margin: 0;
}

.home-trust li {
  gap: 9px;
  color: rgba(255, 255, 255, .86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.home-trust .icon {
  width: 20px;
  height: 20px;
}

.home-hero-photo {
  width: 100%;
  height: 400px;
  border: 0;
}

.home-hero-photo img {
  object-position: 54% 28%;
  filter: none;
}

.home-services {
  max-width: 1200px;
  padding: 18px 30px 20px;
}

.home-services h2 {
  margin-bottom: 12px;
  white-space: nowrap;
}

.home-services h2 span {
  font-size: clamp(31px, 3vw, 38px);
}

.home-services h2 b {
  margin: 0 .24em;
  font-size: clamp(29px, 2.8vw, 36px);
}

.home-services h2 strong {
  font-size: clamp(29px, 2.8vw, 36px);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px 9px;
}

.service-card {
  grid-template-columns: 38px 1fr 17px;
  gap: 11px;
  min-height: 70px;
  padding: 9px 14px;
  border-color: rgba(255, 255, 255, .25);
  border-radius: 7px;
  background: rgba(10, 22, 32, .72);
}

.service-card > .icon:first-child {
  width: 32px;
  height: 32px;
}

.service-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.18;
}

.pension-banner {
  min-height: 188px;
  max-width: 1200px;
  border: 2px solid var(--gold);
  border-radius: 9px;
}

.pension-banner::after {
  background: linear-gradient(90deg, rgba(5, 12, 19, .98) 0%, rgba(5, 12, 19, .82) 42%, rgba(5, 12, 19, .08) 72%);
}

.pension-banner > img {
  object-position: center;
}

.pension-copy {
  max-width: 590px;
  padding: 14px 30px;
}

.pension-banner h2 {
  color: var(--gold);
  font-size: clamp(24px, 2.25vw, 28px);
  line-height: 1.02;
}

.pension-banner p {
  margin: 6px 0 10px;
  color: rgba(255, 255, 255, .9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.28;
}

.pension-button {
  min-height: 39px;
  padding: 7px 18px;
  color: #17130b;
  background: var(--gold);
  font-size: 13px;
}

.pension-right-phrase {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.08;
  text-align: center;
}

.home-expertise {
  max-width: 1200px;
  padding: 8px 30px 12px;
}

.home-expertise h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  font-size: clamp(29px, 2.8vw, 35px);
}

.home-expertise h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.home-expertise h2 span {
  color: var(--white);
}

.expertise-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 0;
  background: transparent;
}

.expertise-item {
  flex-direction: column;
  justify-content: flex-start;
  gap: 7px;
  min-height: 116px;
  padding: 6px 10px;
  border-right: 1px solid rgba(210, 169, 93, .4);
  background: transparent;
  text-align: center;
}

.expertise-item:last-child {
  border-right: 0;
}

.expertise-item .icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.expertise-item span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.15;
}

.home-final-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  max-width: none;
  padding: 11px max(34px, calc((100vw - 1120px) / 2));
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.home-final-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-final-contact h2 {
  flex: 0 0 auto;
  font-size: clamp(25px, 2.5vw, 32px);
}

.home-final-copy p {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.home-final-copy p::before {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--gold);
}

.home-final-links {
  grid-template-columns: .85fr 1.4fr .8fr .65fr 1.65fr;
}

.home-final-links .home-contact-link {
  justify-content: flex-start;
  min-height: 38px;
  padding: 3px 14px;
}

.home-final-links .home-contact-link strong,
.home-final-links .home-contact-link.priority strong {
  font-size: 14px;
}

body[data-page="home"] + * {
  min-width: 0;
}

body[data-page="home"] .site-footer {
  min-height: 54px;
  padding: 10px clamp(34px, 4vw, 54px);
}

body[data-page="home"] .site-footer p,
body[data-page="home"] .site-footer .legal-note,
body[data-page="home"] .site-footer a {
  font-size: 11px;
}

@media (max-width: 1100px) and (min-width: 781px) {
  body[data-page="home"] .brand {
    min-width: min(500px, 50vw);
  }

  body[data-page="home"] .brand-copy strong {
    font-size: 20px;
  }

  body[data-page="home"] .site-nav {
    gap: 18px;
  }

  .home-contact-strip {
    padding-inline: 20px;
  }

  .home-contact-link {
    padding-inline: 9px;
  }

  .home-contact-link strong,
  .home-contact-link.priority strong {
    font-size: 13px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    min-height: 385px;
  }

  .home-hero-photo {
    height: 385px;
  }

  .home-hero-action-row {
    gap: 14px;
  }

  .home-trust li {
    font-size: 12px;
  }

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

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

  .expertise-item {
    min-height: 92px;
  }

  .expertise-item:nth-child(3) {
    border-right: 0;
  }

  .home-final-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-final-links .home-contact-link.email {
    grid-column: span 2;
  }
}

@media (max-width: 780px) {
  body[data-page="home"] .site-header {
    min-height: 0;
    padding: 7px 12px;
  }

  body[data-page="home"] .brand {
    min-width: 0;
  }

  body[data-page="home"] .brand-mark {
    width: 40px;
    height: 40px;
  }

  body[data-page="home"] .brand-mark img {
    width: 38px;
  }

  .home-contact-strip {
    grid-template-columns: 1fr 1fr;
    padding-inline: 8px;
  }

  .home-contact-link {
    justify-content: flex-start;
    min-height: 38px;
    padding: 4px 8px;
  }

  .home-contact-link .icon {
    width: 17px;
    height: 17px;
  }

  .home-contact-link strong,
  .home-contact-link.priority strong {
    font-size: 11px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    padding-left: 14px;
  }

  .home-hero-copy {
    padding: 25px 14px 22px 0;
  }

  .home-hero-action-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .home-hero-photo {
    width: 100%;
    height: min(92vw, 390px);
    justify-self: stretch;
    border-top: 1px solid rgba(210, 169, 93, .3);
  }

  .home-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .home-services h2 {
    white-space: normal;
  }

  .home-hero h1 small {
    white-space: normal;
  }

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

  .pension-right-phrase {
    top: auto;
    right: 12px;
    bottom: 22px;
    translate: none;
    font-size: 11px;
  }

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

  .expertise-item,
  .expertise-item:nth-child(3) {
    min-height: 92px;
    border-right: 1px solid rgba(210, 169, 93, .4);
  }

  .expertise-item:nth-child(even) {
    border-right: 0;
  }

  .home-final-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .home-final-copy p::before {
    display: none;
  }
}

@media (max-width: 520px) {
  .home-hero h1 span {
    font-size: 40px;
  }

  .home-hero h1 small {
    font-size: 27px;
  }

  .home-experience {
    margin-top: 17px;
    padding-left: 12px;
    border-left-width: 4px;
    font-size: 15px;
  }

  .home-positioning {
    margin: 10px 0 12px;
  }

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

  .home-trust li:last-child {
    grid-column: 1 / -1;
  }

  .home-services,
  .home-expertise,
  .home-final-contact {
    padding: 22px 10px;
  }

  .home-services h2 span,
  .home-services h2 b,
  .home-services h2 strong {
    font-size: 23px;
  }

  .service-card {
    grid-template-columns: 23px 1fr;
    min-height: 78px;
    padding: 8px;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .service-card > .icon:first-child {
    width: 22px;
    height: 22px;
  }

  .service-card span {
    font-size: 11px;
  }

  .pension-banner {
    display: grid;
    min-height: 0;
    border-radius: 0;
  }

  .pension-banner::after {
    display: none;
  }

  .pension-banner > img {
    position: static;
    inset: auto;
    grid-row: 2;
    height: 145px;
    object-position: 72% center;
  }

  .pension-copy {
    grid-row: 1;
    background: #0a141d;
    padding: 20px 14px;
  }

  .pension-banner h2 {
    font-size: 23px;
  }

  .home-expertise h2 {
    display: block;
    font-size: 25px;
  }

  .home-expertise h2::after {
    display: none;
  }

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

  .expertise-item {
    min-height: 96px;
    padding: 6px;
  }

  .expertise-item .icon {
    width: 34px;
    height: 34px;
    padding: 7px;
  }

  .expertise-item span {
    font-size: 10px;
  }

  .home-final-contact {
    padding-block: 16px;
  }

  .home-final-links {
    grid-template-columns: 1fr 1fr;
  }

  .home-final-links .home-contact-link.email {
    grid-column: 1 / -1;
  }

  .home-final-links .home-contact-link strong,
  .home-final-links .home-contact-link.priority strong {
    font-size: 11px;
  }
}

/* PART 9F homepage scale compression */
@media (min-width: 781px) {
  body[data-page="home"] .site-header {
    min-height: 68px;
    padding: 4px clamp(28px, 3vw, 46px);
  }

  body[data-page="home"] .brand-mark {
    width: 54px;
    height: 54px;
  }

  body[data-page="home"] .brand-mark img {
    width: 50px;
    height: 50px;
  }

  body[data-page="home"] .brand-copy small {
    font-size: 12px;
  }

  body[data-page="home"] .brand-copy strong {
    font-size: 21px;
  }

  body[data-page="home"] .brand-credential {
    font-size: 11px;
  }

  body[data-page="home"] .nav-list {
    gap: 30px;
  }

  body[data-page="home"] .nav-list a {
    font-size: 14px;
  }

  body[data-page="home"] .header-call {
    min-height: 38px;
    padding: 7px 14px;
    font-size: 12px;
  }

  body[data-page="home"] .home-contact-strip {
    min-height: 37px;
    padding: 3px 16px;
  }

  body[data-page="home"] .home-contact-link .icon {
    width: 19px;
    height: 19px;
  }

  body[data-page="home"] .home-contact-link strong,
  body[data-page="home"] .home-contact-link.priority strong {
    font-size: 14px;
  }

  body[data-page="home"] .home-hero {
    min-height: 350px;
  }

  body[data-page="home"] .home-hero-copy {
    padding: 22px 22px 22px clamp(38px, 4vw, 50px);
  }

  body[data-page="home"] .home-hero h1 span {
    font-size: clamp(38px, 4.15vw, 53px);
  }

  body[data-page="home"] .home-hero h1 small {
    font-size: clamp(27px, 2.9vw, 36px);
  }

  body[data-page="home"] .home-experience {
    margin-top: 20px;
    padding-left: 16px;
    border-left-width: 5px;
    font-size: clamp(17px, 1.55vw, 20px);
  }

  body[data-page="home"] .home-positioning {
    margin: 10px 0 12px;
    font-size: 14px;
  }

  body[data-page="home"] .home-hero-action-row {
    gap: 18px;
  }

  body[data-page="home"] .home-primary-action {
    min-height: 44px;
    padding: 8px 18px;
    font-size: 14px;
  }

  body[data-page="home"] .home-trust {
    gap: 3px;
  }

  body[data-page="home"] .home-trust .icon {
    width: 17px;
    height: 17px;
  }

  body[data-page="home"] .home-trust span {
    font-size: 12px;
  }

  body[data-page="home"] .home-hero-photo {
    height: 350px;
  }

  body[data-page="home"] .home-services {
    padding: 14px 30px 15px;
  }

  body[data-page="home"] .home-services h2 {
    margin-bottom: 9px;
  }

  body[data-page="home"] .home-services h2 span {
    font-size: clamp(28px, 2.65vw, 34px);
  }

  body[data-page="home"] .home-services h2 b,
  body[data-page="home"] .home-services h2 strong {
    font-size: clamp(27px, 2.55vw, 32px);
  }

  body[data-page="home"] .service-grid {
    gap: 5px 7px;
  }

  body[data-page="home"] .service-card {
    grid-template-columns: 33px 1fr 18px;
    min-height: 60px;
    padding: 7px 12px;
  }

  body[data-page="home"] .service-card > .icon:first-child {
    width: 28px;
    height: 28px;
  }

  body[data-page="home"] .service-card span {
    font-size: 14px;
  }

  body[data-page="home"] .pension-banner {
    min-height: 155px;
  }

  body[data-page="home"] .pension-copy {
    padding: 10px 24px;
  }

  body[data-page="home"] .pension-banner h2 {
    font-size: clamp(21px, 2vw, 25px);
  }

  body[data-page="home"] .pension-banner p {
    margin: 4px 0 7px;
    font-size: 12px;
  }

  body[data-page="home"] .pension-banner .button {
    min-height: 34px;
    padding: 5px 14px;
    font-size: 12px;
  }

  body[data-page="home"] .pension-right-phrase {
    font-size: 13px;
  }

  body[data-page="home"] .home-expertise {
    padding: 6px 30px 8px;
  }

  body[data-page="home"] .home-expertise h2 {
    margin-bottom: 4px;
    font-size: clamp(26px, 2.45vw, 31px);
  }

  body[data-page="home"] .expertise-item {
    min-height: 98px;
    padding: 5px 8px;
    gap: 5px;
  }

  body[data-page="home"] .expertise-item .icon {
    width: 36px;
    height: 36px;
    padding: 7px;
  }

  body[data-page="home"] .expertise-item span {
    font-size: 11px;
  }

  body[data-page="home"] .home-final-contact {
    padding: 8px 30px;
    gap: 4px;
  }

  body[data-page="home"] .home-final-copy {
    gap: 14px;
  }

  body[data-page="home"] .home-final-copy h2 {
    font-size: clamp(24px, 2.2vw, 28px);
  }

  body[data-page="home"] .home-final-copy p {
    font-size: 12px;
  }

  body[data-page="home"] .home-final-links .home-contact-link {
    min-height: 32px;
    padding: 2px 12px;
  }

  body[data-page="home"] .home-final-links .home-contact-link strong,
  body[data-page="home"] .home-final-links .home-contact-link.priority strong {
    font-size: 13px;
  }

}

/* PART 9G owner-reference fit correction */
@media (min-width: 1101px) {
  body[data-page="home"] .site-header {
    min-height: 56px;
    padding-block: 2px;
  }

  body[data-page="home"] .brand {
    gap: 9px;
  }

  body[data-page="home"] .brand-mark {
    width: 45px;
    height: 45px;
  }

  body[data-page="home"] .brand-mark img {
    width: 43px;
    height: 43px;
  }

  body[data-page="home"] .brand-copy small {
    font-size: 11px;
  }

  body[data-page="home"] .brand-copy strong {
    font-size: 20px;
  }

  body[data-page="home"] .brand-credential {
    font-size: 9px;
  }

  body[data-page="home"] .site-nav {
    gap: 28px;
  }

  body[data-page="home"] .site-nav a {
    font-size: 13px;
  }

  body[data-page="home"] .header-call {
    min-height: 34px;
    padding: 5px 13px;
    font-size: 12px;
  }

  body[data-page="home"] .home-contact-strip {
    min-height: 34px;
    padding-block: 0;
  }

  body[data-page="home"] .home-contact-link {
    min-height: 33px;
    padding-block: 2px;
  }

  body[data-page="home"] .home-contact-link .icon {
    width: 17px;
    height: 17px;
  }

  body[data-page="home"] .home-contact-link strong,
  body[data-page="home"] .home-contact-link.priority strong {
    font-size: 13px;
  }

  body[data-page="home"] .home-hero {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    min-height: 280px;
    padding-left: clamp(34px, 3.5vw, 48px);
  }

  body[data-page="home"] .home-hero-copy {
    padding: 14px 18px 14px 0;
  }

  body[data-page="home"] .home-hero h1 span {
    font-size: clamp(40px, 3.25vw, 46px);
  }

  body[data-page="home"] .home-hero h1 small {
    margin-top: 4px;
    font-size: clamp(28px, 2.35vw, 33px);
  }

  body[data-page="home"] .home-experience {
    max-width: 440px;
    margin-top: 13px;
    padding-left: 13px;
    border-left-width: 4px;
    font-size: 17px;
    line-height: 1.22;
  }

  body[data-page="home"] .home-positioning {
    margin: 7px 0 8px;
    font-size: 13px;
  }

  body[data-page="home"] .home-hero-action-row {
    gap: 14px;
  }

  body[data-page="home"] .home-primary-action {
    min-height: 38px;
    padding: 6px 15px;
    font-size: 13px;
  }

  body[data-page="home"] .home-trust {
    gap: 1px;
  }

  body[data-page="home"] .home-trust li {
    gap: 6px;
    font-size: 11px;
  }

  body[data-page="home"] .home-trust .icon {
    width: 15px;
    height: 15px;
  }

  body[data-page="home"] .home-hero-photo {
    display: flex;
    justify-content: flex-end;
    height: 280px;
    background: #071019;
  }

  body[data-page="home"] .home-hero-photo img {
    width: 84%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 37%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 100%);
  }

  body[data-page="home"] .home-services {
    padding: 9px 30px 10px;
  }

  body[data-page="home"] .home-services h2 {
    margin-bottom: 5px;
  }

  body[data-page="home"] .home-services h2 span {
    font-size: clamp(26px, 2.15vw, 30px);
  }

  body[data-page="home"] .home-services h2 b,
  body[data-page="home"] .home-services h2 strong {
    font-size: clamp(25px, 2.05vw, 29px);
  }

  body[data-page="home"] .service-grid {
    gap: 4px 6px;
  }

  body[data-page="home"] .service-card {
    grid-template-columns: 27px 1fr 15px;
    gap: 8px;
    min-height: 46px;
    padding: 4px 10px;
  }

  body[data-page="home"] .service-card > .icon:first-child {
    width: 23px;
    height: 23px;
  }

  body[data-page="home"] .service-card span {
    font-size: 13px;
    line-height: 1.12;
  }

  body[data-page="home"] .pension-banner {
    min-height: 105px;
    border-radius: 7px;
  }

  body[data-page="home"] .pension-copy {
    max-width: 540px;
    padding: 7px 22px;
  }

  body[data-page="home"] .pension-banner h2 {
    font-size: clamp(19px, 1.7vw, 23px);
  }

  body[data-page="home"] .pension-banner p {
    margin: 3px 0 5px;
    font-size: 13px;
    line-height: 1.15;
  }

  body[data-page="home"] .pension-banner .button {
    min-height: 29px;
    padding: 4px 12px;
    font-size: 11px;
  }

  body[data-page="home"] .pension-right-phrase {
    right: 15px;
    font-size: 11px;
  }

  body[data-page="home"] .home-expertise {
    padding: 4px 30px 5px;
  }

  body[data-page="home"] .home-expertise h2 {
    gap: 9px;
    margin-bottom: 2px;
    font-size: clamp(24px, 1.95vw, 28px);
  }

  body[data-page="home"] .expertise-item {
    min-height: 66px;
    padding: 2px 7px;
    gap: 3px;
  }

  body[data-page="home"] .expertise-item .icon {
    width: 29px;
    height: 29px;
    padding: 5px;
  }

  body[data-page="home"] .expertise-item span {
    font-size: 11px;
    line-height: 1.08;
  }

  body[data-page="home"] .home-final-contact {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px 24px;
    padding: 6px max(30px, calc((100vw - 1160px) / 2));
  }

  body[data-page="home"] .home-final-copy {
    display: contents;
  }

  body[data-page="home"] .home-final-copy h2 {
    grid-column: 1;
    font-size: clamp(21px, 1.8vw, 25px);
  }

  body[data-page="home"] .home-final-copy p {
    grid-column: 2;
    gap: 10px;
    font-size: 13px;
    line-height: 1.2;
  }

  body[data-page="home"] .home-final-copy p::before {
    width: 34px;
  }

  body[data-page="home"] .home-final-links {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .home-final-links .home-contact-link {
    min-height: 26px;
    padding: 1px 10px;
  }

  body[data-page="home"] .home-final-links .home-contact-link .icon {
    width: 15px;
    height: 15px;
  }

  body[data-page="home"] .home-final-links .home-contact-link strong,
  body[data-page="home"] .home-final-links .home-contact-link.priority strong {
    font-size: 11px;
  }

  body[data-page="home"] .site-footer {
    min-height: 40px;
    padding: 6px clamp(30px, 3vw, 44px);
  }

  body[data-page="home"] .site-footer p,
  body[data-page="home"] .site-footer .legal-note,
  body[data-page="home"] .site-footer a {
    font-size: 11px;
  }
}

/* PART 9H height-aware laptop viewport fit */
@media (min-width: 1101px) and (max-height: 0px) {
  body[data-page="home"] .site-header {
    min-height: 52px;
    padding-block: 1px;
  }

  body[data-page="home"] .brand {
    gap: 8px;
  }

  body[data-page="home"] .brand-mark {
    width: 41px;
    height: 41px;
  }

  body[data-page="home"] .brand-mark img {
    width: 39px;
    height: 39px;
  }

  body[data-page="home"] .brand-copy strong {
    font-size: 19px;
  }

  body[data-page="home"] .brand-credential {
    font-size: 10px;
  }

  body[data-page="home"] .header-call {
    min-height: 31px;
    padding: 4px 12px;
  }

  body[data-page="home"] .home-contact-strip {
    min-height: 30px;
  }

  body[data-page="home"] .home-contact-link {
    min-height: 29px;
    padding-block: 1px;
  }

  body[data-page="home"] .home-contact-link .icon {
    width: 15px;
    height: 15px;
  }

  body[data-page="home"] .home-contact-link strong,
  body[data-page="home"] .home-contact-link.priority strong {
    font-size: 12px;
  }

  body[data-page="home"] .home-hero {
    min-height: 220px;
  }

  body[data-page="home"] .home-hero-copy {
    padding-block: 8px;
  }

  body[data-page="home"] .home-hero h1 span {
    font-size: clamp(40px, 3vw, 43px);
  }

  body[data-page="home"] .home-hero h1 small {
    margin-top: 2px;
    font-size: clamp(27px, 2.15vw, 30px);
  }

  body[data-page="home"] .home-experience {
    max-width: 420px;
    margin-top: 8px;
    padding-left: 11px;
    font-size: 15px;
    line-height: 1.15;
  }

  body[data-page="home"] .home-positioning {
    margin: 5px 0 6px;
    font-size: 12px;
  }

  body[data-page="home"] .home-hero-action-row {
    gap: 11px;
  }

  body[data-page="home"] .home-primary-action {
    min-height: 34px;
    padding: 4px 13px;
    font-size: 12px;
  }

  body[data-page="home"] .home-trust li {
    gap: 5px;
    font-size: 10px;
  }

  body[data-page="home"] .home-trust .icon {
    width: 13px;
    height: 13px;
  }

  body[data-page="home"] .home-hero-photo {
    height: 220px;
  }

  body[data-page="home"] .home-hero-photo img {
    width: 66%;
  }

  body[data-page="home"] .home-services {
    padding: 5px 30px 6px;
  }

  body[data-page="home"] .home-services h2 {
    margin-bottom: 3px;
  }

  body[data-page="home"] .home-services h2 span {
    font-size: clamp(28px, 2.15vw, 30px);
  }

  body[data-page="home"] .home-services h2 b,
  body[data-page="home"] .home-services h2 strong {
    font-size: clamp(26px, 2vw, 28px);
  }

  body[data-page="home"] .service-grid {
    gap: 3px 5px;
  }

  body[data-page="home"] .service-card {
    grid-template-columns: 24px 1fr 14px;
    gap: 7px;
    min-height: 42px;
    padding: 3px 9px;
  }

  body[data-page="home"] .service-card > .icon:first-child {
    width: 20px;
    height: 20px;
  }

  body[data-page="home"] .service-card span {
    font-size: 12px;
  }

  body[data-page="home"] .pension-banner {
    min-height: 80px;
  }

  body[data-page="home"] .pension-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title action"
      "copy action";
    column-gap: 12px;
    align-items: center;
    max-width: 650px;
    padding: 4px 20px;
  }

  body[data-page="home"] .pension-banner h2 {
    grid-area: title;
    align-self: end;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1;
  }

  body[data-page="home"] .pension-banner p {
    grid-area: copy;
    align-self: start;
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.08;
  }

  body[data-page="home"] .pension-banner .button {
    grid-area: action;
    min-height: 27px;
    padding: 3px 10px;
    font-size: 10px;
  }

  body[data-page="home"] .pension-right-phrase {
    font-size: 10px;
  }

  body[data-page="home"] .home-expertise {
    padding: 2px 30px 3px;
  }

  body[data-page="home"] .home-expertise h2 {
    margin-bottom: 1px;
    font-size: clamp(21px, 1.75vw, 24px);
  }

  body[data-page="home"] .expertise-item {
    min-height: 50px;
    padding: 1px 6px;
    gap: 2px;
  }

  body[data-page="home"] .expertise-item .icon {
    width: 23px;
    height: 23px;
    padding: 4px;
  }

  body[data-page="home"] .expertise-item span {
    font-size: 10px;
    line-height: 1.02;
  }

  body[data-page="home"] .home-final-contact {
    gap: 3px 20px;
    padding-block: 3px;
  }

  body[data-page="home"] .home-final-copy h2 {
    font-size: clamp(20px, 1.65vw, 23px);
  }

  body[data-page="home"] .home-final-copy p {
    font-size: 11px;
  }

  body[data-page="home"] .home-final-links .home-contact-link {
    min-height: 22px;
    padding-block: 0;
  }

  body[data-page="home"] .home-final-links .home-contact-link .icon {
    width: 13px;
    height: 13px;
  }

  body[data-page="home"] .home-final-links .home-contact-link strong,
  body[data-page="home"] .home-final-links .home-contact-link.priority strong {
    font-size: 10px;
  }

  body[data-page="home"] .site-footer {
    min-height: 28px;
    padding-block: 3px;
  }

  body[data-page="home"] .site-footer p,
  body[data-page="home"] .site-footer .legal-note,
  body[data-page="home"] .site-footer a {
    font-size: 10px;
  }
}

@media (min-width: 1101px) and (min-height: 821px) and (max-height: 0px) {
  body[data-page="home"] .home-hero,
  body[data-page="home"] .home-hero-photo {
    min-height: 260px;
    height: 260px;
  }

  body[data-page="home"] .home-hero-photo img {
    width: 78%;
  }

  body[data-page="home"] .pension-banner {
    min-height: 95px;
  }

  body[data-page="home"] .expertise-item {
    min-height: 58px;
  }

  body[data-page="home"] .site-footer {
    min-height: 34px;
    padding-block: 4px;
  }
}

/* PART 9I usability rebalance and intrinsic portrait geometry */
@media (min-width: 1101px) {
  body[data-page="home"] .site-header {
    min-height: 60px;
    padding-block: 3px;
  }

  body[data-page="home"] .brand {
    gap: 10px;
  }

  body[data-page="home"] .brand-mark {
    width: 48px;
    height: 48px;
  }

  body[data-page="home"] .brand-mark img {
    width: 46px;
    height: 46px;
  }

  body[data-page="home"] .brand-copy small {
    font-size: 12px;
  }

  body[data-page="home"] .brand-copy strong {
    font-size: 21px;
  }

  body[data-page="home"] .brand-credential {
    font-size: 11px;
  }

  body[data-page="home"] .site-nav a {
    font-size: 14px;
  }

  body[data-page="home"] .header-call {
    min-height: 36px;
    padding: 6px 14px;
    font-size: 13px;
  }

  body[data-page="home"] .home-contact-strip {
    min-height: 40px;
    padding-block: 0;
  }

  body[data-page="home"] .home-contact-link {
    min-height: 39px;
    padding-block: 3px;
  }

  body[data-page="home"] .home-contact-link .icon {
    width: 18px;
    height: 18px;
  }

  body[data-page="home"] .home-contact-link strong,
  body[data-page="home"] .home-contact-link.priority strong {
    font-size: 14px;
  }

  body[data-page="home"] .home-hero {
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    min-height: 360px;
  }

  body[data-page="home"] .home-hero-copy {
    padding: 20px 22px 20px 0;
  }

  body[data-page="home"] .home-hero h1 span {
    font-size: clamp(44px, 3.65vw, 52px);
  }

  body[data-page="home"] .home-hero h1 small {
    margin-top: 5px;
    font-size: clamp(30px, 2.55vw, 36px);
  }

  body[data-page="home"] .home-experience {
    max-width: 455px;
    margin-top: 18px;
    padding-left: 15px;
    font-size: 18px;
    line-height: 1.25;
  }

  body[data-page="home"] .home-positioning {
    margin: 10px 0 11px;
    font-size: 14px;
  }

  body[data-page="home"] .home-hero-action-row {
    gap: 16px;
  }

  body[data-page="home"] .home-primary-action {
    min-height: 44px;
    padding: 8px 18px;
    font-size: 14px;
  }

  body[data-page="home"] .home-trust {
    gap: 3px;
  }

  body[data-page="home"] .home-trust li {
    gap: 7px;
    font-size: 12px;
  }

  body[data-page="home"] .home-trust .icon {
    width: 17px;
    height: 17px;
  }

  body[data-page="home"] .home-hero-photo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 360px;
    background: #071019;
  }

  body[data-page="home"] .home-hero-photo img {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    height: 170%;
    aspect-ratio: 1023 / 1537;
    object-fit: contain;
    object-position: center;
    margin-right: 3%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  body[data-page="home"] .home-services {
    padding: 13px 30px 15px;
  }

  body[data-page="home"] .home-services h2 {
    margin-bottom: 8px;
  }

  body[data-page="home"] .home-services h2 span {
    font-size: clamp(29px, 2.45vw, 34px);
  }

  body[data-page="home"] .home-services h2 b,
  body[data-page="home"] .home-services h2 strong {
    font-size: clamp(28px, 2.3vw, 32px);
  }

  body[data-page="home"] .service-grid {
    gap: 6px 8px;
  }

  body[data-page="home"] .service-card {
    grid-template-columns: 32px 1fr 17px;
    gap: 10px;
    min-height: 58px;
    padding: 7px 12px;
  }

  body[data-page="home"] .service-card > .icon:first-child {
    width: 27px;
    height: 27px;
  }

  body[data-page="home"] .service-card span {
    font-size: 14px;
    line-height: 1.16;
  }

  body[data-page="home"] .pension-banner {
    min-height: 135px;
  }

  body[data-page="home"] .pension-copy {
    display: block;
    max-width: 570px;
    padding: 10px 24px;
  }

  body[data-page="home"] .pension-banner h2 {
    font-size: clamp(21px, 1.9vw, 25px);
    line-height: 1.02;
  }

  body[data-page="home"] .pension-banner p {
    margin: 4px 0 7px;
    font-size: 13px;
    line-height: 1.2;
  }

  body[data-page="home"] .pension-banner .button {
    min-height: 33px;
    padding: 5px 14px;
    font-size: 12px;
  }

  body[data-page="home"] .pension-right-phrase {
    font-size: 12px;
  }

  body[data-page="home"] .home-expertise {
    padding: 6px 30px 8px;
  }

  body[data-page="home"] .home-expertise h2 {
    margin-bottom: 4px;
    font-size: clamp(26px, 2.25vw, 31px);
  }

  body[data-page="home"] .expertise-item {
    min-height: 88px;
    padding: 4px 8px;
    gap: 5px;
  }

  body[data-page="home"] .expertise-item .icon {
    width: 34px;
    height: 34px;
    padding: 7px;
  }

  body[data-page="home"] .expertise-item span {
    font-size: 11px;
    line-height: 1.1;
  }

  body[data-page="home"] .home-final-contact {
    gap: 6px 22px;
    padding-block: 7px;
  }

  body[data-page="home"] .home-final-copy h2 {
    font-size: clamp(23px, 2vw, 28px);
  }

  body[data-page="home"] .home-final-copy p {
    font-size: 13px;
  }

  body[data-page="home"] .home-final-links .home-contact-link {
    min-height: 30px;
    padding-block: 2px;
  }

  body[data-page="home"] .home-final-links .home-contact-link .icon {
    width: 16px;
    height: 16px;
  }

  body[data-page="home"] .home-final-links .home-contact-link strong,
  body[data-page="home"] .home-final-links .home-contact-link.priority strong {
    font-size: 12px;
  }

  body[data-page="home"] .site-footer {
    min-height: 44px;
    padding-block: 7px;
  }

  body[data-page="home"] .site-footer p,
  body[data-page="home"] .site-footer .legal-note,
  body[data-page="home"] .site-footer a {
    font-size: 11px;
  }
}

/* PART 9J approved centered proportions and natural vertical flow */
@media (min-width: 1101px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .home-contact-strip,
  body[data-page="home"] .home-hero,
  body[data-page="home"] .home-services,
  body[data-page="home"] .pension-banner,
  body[data-page="home"] .home-expertise,
  body[data-page="home"] .home-final-contact,
  body[data-page="home"] .site-footer {
    width: min(calc(100% - 48px), 1200px);
    margin-right: auto;
    margin-left: auto;
  }

  body[data-page="home"] .site-header {
    min-height: 68px;
    padding: 4px 0;
  }

  body[data-page="home"] .brand {
    min-width: min(540px, 48vw);
    gap: 11px;
  }

  body[data-page="home"] .brand-mark {
    width: 54px;
    height: 54px;
  }

  body[data-page="home"] .brand-mark img {
    width: 51px;
    height: 51px;
  }

  body[data-page="home"] .brand-copy small {
    font-size: 12px;
  }

  body[data-page="home"] .brand-copy strong {
    font-size: 23px;
  }

  body[data-page="home"] .brand-credential {
    font-size: 10px;
  }

  body[data-page="home"] .site-nav {
    gap: 30px;
  }

  body[data-page="home"] .site-nav a {
    font-size: 15px;
  }

  body[data-page="home"] .header-call {
    min-height: 40px;
    padding: 8px 15px;
    font-size: 13px;
  }

  body[data-page="home"] .home-contact-strip {
    min-height: 46px;
    padding: 0 18px;
  }

  body[data-page="home"] .home-contact-link {
    min-height: 45px;
    padding: 4px 14px;
  }

  body[data-page="home"] .home-contact-link .icon {
    width: 20px;
    height: 20px;
  }

  body[data-page="home"] .home-contact-link strong,
  body[data-page="home"] .home-contact-link.priority strong {
    font-size: 15px;
  }

  body[data-page="home"] .home-hero {
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    min-height: 410px;
    padding-left: 42px;
  }

  body[data-page="home"] .home-hero-copy {
    padding: 28px 24px 28px 0;
  }

  body[data-page="home"] .home-hero h1 span {
    font-size: clamp(48px, 4vw, 56px);
  }

  body[data-page="home"] .home-hero h1 small {
    margin-top: 7px;
    font-size: clamp(33px, 2.75vw, 38px);
  }

  body[data-page="home"] .home-experience {
    max-width: 470px;
    margin-top: 23px;
    padding-left: 18px;
    border-left-width: 5px;
    font-size: 20px;
    line-height: 1.3;
  }

  body[data-page="home"] .home-positioning {
    margin: 13px 0 14px;
    font-size: 15px;
  }

  body[data-page="home"] .home-hero-action-row {
    gap: 20px;
  }

  body[data-page="home"] .home-primary-action {
    min-height: 48px;
    padding: 9px 20px;
    font-size: 15px;
  }

  body[data-page="home"] .home-trust {
    gap: 4px;
  }

  body[data-page="home"] .home-trust li {
    gap: 8px;
    font-size: 13px;
  }

  body[data-page="home"] .home-trust .icon {
    width: 19px;
    height: 19px;
  }

  body[data-page="home"] .home-hero-photo {
    height: 410px;
  }

  body[data-page="home"] .home-hero-photo img {
    width: auto;
    max-width: none;
    height: 150%;
    aspect-ratio: 1023 / 1537;
    object-fit: contain;
    object-position: center;
    margin-right: 2%;
  }

  body[data-page="home"] .home-services {
    padding: 19px 30px 21px;
  }

  body[data-page="home"] .home-services h2 {
    margin-bottom: 12px;
  }

  body[data-page="home"] .home-services h2 span {
    font-size: clamp(32px, 2.7vw, 37px);
  }

  body[data-page="home"] .home-services h2 b,
  body[data-page="home"] .home-services h2 strong {
    font-size: clamp(30px, 2.55vw, 35px);
  }

  body[data-page="home"] .service-grid {
    gap: 8px 10px;
  }

  body[data-page="home"] .service-card {
    grid-template-columns: 37px 1fr 18px;
    gap: 11px;
    min-height: 66px;
    padding: 9px 14px;
  }

  body[data-page="home"] .service-card > .icon:first-child {
    width: 31px;
    height: 31px;
  }

  body[data-page="home"] .service-card span {
    font-size: 15px;
    line-height: 1.18;
  }

  body[data-page="home"] .pension-banner {
    min-height: 165px;
  }

  body[data-page="home"] .pension-copy {
    max-width: 580px;
    padding: 13px 28px;
  }

  body[data-page="home"] .pension-banner h2 {
    font-size: clamp(23px, 2.1vw, 27px);
  }

  body[data-page="home"] .pension-banner p {
    margin: 6px 0 10px;
    font-size: 13px;
    line-height: 1.25;
  }

  body[data-page="home"] .pension-banner .button {
    min-height: 38px;
    padding: 7px 17px;
    font-size: 13px;
  }

  body[data-page="home"] .pension-right-phrase {
    right: 18px;
    font-size: 14px;
  }

  body[data-page="home"] .home-expertise {
    padding: 10px 30px 14px;
  }

  body[data-page="home"] .home-expertise h2 {
    margin-bottom: 7px;
    font-size: clamp(29px, 2.5vw, 34px);
  }

  body[data-page="home"] .expertise-item {
    min-height: 112px;
    padding: 7px 10px;
    gap: 7px;
  }

  body[data-page="home"] .expertise-item .icon {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  body[data-page="home"] .expertise-item span {
    font-size: 12px;
    line-height: 1.15;
  }

  body[data-page="home"] .home-final-contact {
    gap: 8px 24px;
    padding: 10px 24px;
  }

  body[data-page="home"] .home-final-copy h2 {
    font-size: clamp(26px, 2.25vw, 31px);
  }

  body[data-page="home"] .home-final-copy p {
    font-size: 13px;
  }

  body[data-page="home"] .home-final-links .home-contact-link {
    min-height: 36px;
    padding: 3px 13px;
  }

  body[data-page="home"] .home-final-links .home-contact-link .icon {
    width: 18px;
    height: 18px;
  }

  body[data-page="home"] .home-final-links .home-contact-link strong,
  body[data-page="home"] .home-final-links .home-contact-link.priority strong {
    font-size: 13px;
  }

  body[data-page="home"] .site-footer {
    min-height: 50px;
    padding: 9px 24px;
  }

  body[data-page="home"] .site-footer p,
  body[data-page="home"] .site-footer .legal-note,
  body[data-page="home"] .site-footer a {
    font-size: 11px;
  }
}

/* PART 9K header and PART 10C exact approved hero composition */
@media (min-width: 1101px) {
  body[data-page="home"] .brand-copy strong {
    font-size: 27px;
    line-height: 1;
  }

  body[data-page="home"] .brand-copy small {
    font-size: 12px;
  }

  body[data-page="home"] .home-hero {
    position: relative;
    isolation: isolate;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    min-height: 560px;
  }

  body[data-page="home"] .home-hero::before,
  body[data-page="home"] .home-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
  }

  body[data-page="home"] .home-hero::before {
    z-index: 0;
    background-color: #071019;
    background-image: url("/assets/img/home-hero-owner-approved-10c.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100%;
  }

  body[data-page="home"] .home-hero::after {
    z-index: 1;
    background: linear-gradient(90deg, rgba(7, 16, 25, 1) 0%, rgba(7, 16, 25, 1) 34%, rgba(7, 16, 25, .78) 40%, rgba(7, 16, 25, .35) 49%, rgba(7, 16, 25, .08) 58%, transparent 65%);
  }

  body[data-page="home"] .home-hero-copy {
    position: relative;
    z-index: 2;
  }

  body[data-page="home"] .home-hero-photo {
    position: relative;
    z-index: 2;
    height: 560px;
    overflow: visible;
    background: transparent;
  }

  body[data-page="home"] .home-hero-photo::before,
  body[data-page="home"] .home-hero-photo::after {
    display: none;
  }

  body[data-page="home"] .home-hero-photo img {
    display: none;
  }
}

/* PART 10D Criminal Practice owner-review page */
body[data-page="premium-criminal"] {
  background: #071019;
  color: #f7f4ee;
}

body[data-page="premium-criminal"] main {
  background: #071019;
}

body[data-page="premium-criminal"] .criminal-hero-10d,
body[data-page="premium-criminal"] .criminal-section,
body[data-page="premium-criminal"] .criminal-final-contact {
  width: min(calc(100% - 48px), 1200px);
  margin-right: auto;
  margin-left: auto;
}

body[data-page="premium-criminal"] .criminal-hero-10d {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  border-top: 1px solid rgba(210, 169, 93, .3);
  border-bottom: 1px solid rgba(210, 169, 93, .42);
  background: #071019;
}

body[data-page="premium-criminal"] .criminal-hero-10d::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #071019 0%, rgba(7, 16, 25, .99) 34%, rgba(7, 16, 25, .84) 43%, rgba(7, 16, 25, .38) 55%, rgba(7, 16, 25, .08) 64%, transparent 72%);
}

body[data-page="premium-criminal"] .criminal-hero-copy {
  position: relative;
  z-index: 2;
  width: 58%;
  padding: 62px 28px 52px 42px;
}

body[data-page="premium-criminal"] .criminal-hero-copy .eyebrow,
body[data-page="premium-criminal"] .criminal-section-heading .eyebrow,
body[data-page="premium-criminal"] .criminal-final-contact .eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-page="premium-criminal"] .criminal-hero-copy h1 {
  max-width: 620px;
  margin: 12px 0 16px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 3.9vw, 50px);
  line-height: 1.02;
  letter-spacing: 0;
}

body[data-page="premium-criminal"] .criminal-hero-lead {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.42;
}

body[data-page="premium-criminal"] .criminal-experience {
  max-width: 520px;
  margin: 24px 0 0;
  padding-left: 17px;
  border-left: 5px solid var(--gold);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.3;
}

body[data-page="premium-criminal"] .criminal-positioning {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

body[data-page="premium-criminal"] .criminal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

body[data-page="premium-criminal"] .criminal-hero-actions .button {
  gap: 8px;
  min-height: 48px;
}

body[data-page="premium-criminal"] .criminal-hero-actions .icon {
  width: 18px;
  height: 18px;
}

body[data-page="premium-criminal"] .criminal-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  background: #071019;
}

body[data-page="premium-criminal"] .criminal-hero-media img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
}

body[data-page="premium-criminal"] .criminal-section {
  padding: 38px 30px 42px;
  border-bottom: 1px solid rgba(210, 169, 93, .26);
}

body[data-page="premium-criminal"] .criminal-section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

body[data-page="premium-criminal"] .criminal-section-heading h2,
body[data-page="premium-criminal"] .criminal-final-contact h2 {
  margin: 7px 0 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 39px);
  line-height: 1.08;
  letter-spacing: 0;
}

body[data-page="premium-criminal"] .criminal-section-heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.45;
}

body[data-page="premium-criminal"] .criminal-trigger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="premium-criminal"] .criminal-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: #0a1823;
  color: rgba(255, 255, 255, .9);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

body[data-page="premium-criminal"] .criminal-trigger .icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--gold);
}

body[data-page="premium-criminal"] .criminal-services-10d {
  background: #081620;
}

body[data-page="premium-criminal"] .criminal-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="premium-criminal"] .criminal-service-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  background: #091722;
  color: var(--white);
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

body[data-page="premium-criminal"] .criminal-service-card:hover,
body[data-page="premium-criminal"] .criminal-service-card:focus-visible {
  border-color: var(--gold);
  background: #0d202d;
  transform: translateY(-2px);
}

body[data-page="premium-criminal"] .criminal-service-card > .icon:first-child {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

body[data-page="premium-criminal"] .criminal-service-card > .icon:last-child {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

body[data-page="premium-criminal"] .criminal-service-card span {
  display: grid;
  gap: 6px;
}

body[data-page="premium-criminal"] .criminal-service-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.15;
}

body[data-page="premium-criminal"] .criminal-service-card small {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.35;
}

body[data-page="premium-criminal"] .criminal-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

body[data-page="premium-criminal"] .criminal-expertise-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 14px 18px;
  border-right: 1px solid rgba(210, 169, 93, .3);
  border-bottom: 1px solid rgba(210, 169, 93, .3);
  color: rgba(255, 255, 255, .86);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

body[data-page="premium-criminal"] .criminal-expertise-item:nth-child(3n) {
  border-right: 0;
}

body[data-page="premium-criminal"] .criminal-expertise-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

body[data-page="premium-criminal"] .criminal-expertise-item .icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--gold);
}

body[data-page="premium-criminal"] .criminal-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="premium-criminal"] .criminal-process-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
}

body[data-page="premium-criminal"] .criminal-process-list b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

body[data-page="premium-criminal"] .criminal-process-list span {
  display: grid;
  gap: 6px;
}

body[data-page="premium-criminal"] .criminal-process-list strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

body[data-page="premium-criminal"] .criminal-process-list small {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.4;
}

body[data-page="premium-criminal"] .criminal-final-contact {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: center;
  padding: 31px 30px 34px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: #0a1823;
}

body[data-page="premium-criminal"] .criminal-final-contact p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.4;
}

body[data-page="premium-criminal"] .criminal-contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body[data-page="premium-criminal"] .criminal-contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease;
}

body[data-page="premium-criminal"] .criminal-contact-links a:hover,
body[data-page="premium-criminal"] .criminal-contact-links a:focus-visible {
  border-color: var(--gold);
  background: rgba(210, 169, 93, .08);
}

body[data-page="premium-criminal"] .criminal-contact-links a:first-child {
  background: var(--gold);
  color: #17130b;
}

body[data-page="premium-criminal"] .criminal-contact-links a:last-child {
  grid-column: 1 / -1;
}

body[data-page="premium-criminal"] .criminal-contact-links .icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
}

body[data-page="premium-criminal"] .site-footer {
  width: min(calc(100% - 48px), 1200px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1101px) {
  body[data-page="premium-criminal"] .site-header {
    width: min(calc(100% - 48px), 1200px);
    min-height: 68px;
    margin-right: auto;
    margin-left: auto;
    padding: 4px 0;
  }

  body[data-page="premium-criminal"] .brand-copy strong {
    font-size: 27px;
    line-height: 1;
  }

  body[data-page="premium-criminal"] .brand-copy small {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  body[data-page="premium-criminal"] .criminal-trigger-grid,
  body[data-page="premium-criminal"] .criminal-expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="premium-criminal"] .criminal-expertise-item:nth-child(3n) {
    border-right: 1px solid rgba(210, 169, 93, .3);
  }

  body[data-page="premium-criminal"] .criminal-expertise-item:nth-child(2n) {
    border-right: 0;
  }

  body[data-page="premium-criminal"] .criminal-expertise-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(210, 169, 93, .3);
  }

  body[data-page="premium-criminal"] .criminal-expertise-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  body[data-page="premium-criminal"] .criminal-final-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body[data-page="premium-criminal"] .criminal-hero-10d,
  body[data-page="premium-criminal"] .criminal-section,
  body[data-page="premium-criminal"] .criminal-final-contact,
  body[data-page="premium-criminal"] .site-footer {
    width: min(calc(100% - 24px), 1200px);
  }

  body[data-page="premium-criminal"] .criminal-hero-10d {
    display: grid;
    min-height: 0;
  }

  body[data-page="premium-criminal"] .criminal-hero-10d::after {
    display: none;
  }

  body[data-page="premium-criminal"] .criminal-hero-copy {
    width: 100%;
    padding: 34px 18px 30px;
  }

  body[data-page="premium-criminal"] .criminal-hero-copy h1 {
    font-size: clamp(38px, 11vw, 49px);
  }

  body[data-page="premium-criminal"] .criminal-hero-lead {
    font-size: 16px;
  }

  body[data-page="premium-criminal"] .criminal-experience {
    font-size: 17px;
  }

  body[data-page="premium-criminal"] .criminal-hero-media {
    position: relative;
    aspect-ratio: 4 / 3;
  }

  body[data-page="premium-criminal"] .criminal-hero-media img {
    width: 100%;
    height: auto;
  }

  body[data-page="premium-criminal"] .criminal-section {
    padding: 32px 18px 35px;
  }

  body[data-page="premium-criminal"] .criminal-service-grid,
  body[data-page="premium-criminal"] .criminal-process-list {
    grid-template-columns: 1fr;
  }

  body[data-page="premium-criminal"] .criminal-service-card {
    min-height: 98px;
  }

  body[data-page="premium-criminal"] .criminal-final-contact {
    padding: 29px 18px 31px;
  }
}

@media (max-width: 520px) {
  body[data-page="premium-criminal"] .criminal-trigger-grid,
  body[data-page="premium-criminal"] .criminal-expertise-grid,
  body[data-page="premium-criminal"] .criminal-contact-links {
    grid-template-columns: 1fr;
  }

  body[data-page="premium-criminal"] .criminal-expertise-item,
  body[data-page="premium-criminal"] .criminal-expertise-item:nth-child(2n),
  body[data-page="premium-criminal"] .criminal-expertise-item:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid rgba(210, 169, 93, .3);
  }

  body[data-page="premium-criminal"] .criminal-expertise-item:last-child {
    border-bottom: 0;
  }

  body[data-page="premium-criminal"] .criminal-contact-links a:last-child {
    grid-column: auto;
  }

  body[data-page="premium-criminal"] .criminal-hero-actions .button {
    width: 100%;
  }
}

/* PART 10J compact compensation conversion pass */
body[data-page="product-track-01"] .page-content,
body[data-page="product-track-01"] .contact-panel,
body[data-page="product-track-01"] .form-panel,
body[data-page="product-track-01"] .upload-panel,
body[data-page="product-track-01"] .cta-block {
  width: min(1180px, calc(100% - 48px));
}

body[data-page="product-track-01"] .page-content {
  padding: 30px 0 10px;
}

body[data-page="product-track-01"] .page-content > p {
  margin-top: 0;
}

body[data-page="product-track-01"] .page-content > .inline-cta {
  margin: 4px 0 18px;
}

body[data-page="product-track-01"] .content-section {
  padding: 24px 0;
}

body[data-page="product-track-01"] .content-section h2 {
  font-size: clamp(25px, 2.4vw, 34px);
}

body[data-page="product-track-01"] .content-section h3 {
  margin-top: 18px;
}

body[data-page="product-track-01"] .content-section p,
body[data-page="product-track-01"] .content-section li {
  line-height: 1.5;
}

body[data-page="product-track-01"] .content-section p {
  margin-bottom: 10px;
}

body[data-page="product-track-01"] .contact-panel,
body[data-page="product-track-01"] .form-panel,
body[data-page="product-track-01"] .upload-panel,
body[data-page="product-track-01"] .cta-block {
  margin-top: 24px;
}

body[data-page="product-track-01"] .contact-panel,
body[data-page="product-track-01"] .form-panel,
body[data-page="product-track-01"] .upload-panel {
  padding: 26px;
}

body[data-page="product-track-01"] .form-panel,
body[data-page="product-track-01"] .upload-panel {
  padding-top: 21px;
  padding-bottom: 21px;
}

body[data-page="product-track-01"] .contact-card {
  min-height: 66px;
  padding: 12px;
}

body[data-page="product-track-01"] .form-intro {
  margin-bottom: 0;
}

body[data-page="product-track-01"] .lead-form {
  gap: 12px;
}

body[data-page="product-track-01"] .form-field,
body[data-page="product-track-01"] .file-field,
body[data-page="product-track-01"] .checkbox-field {
  gap: 5px;
}

body[data-page="product-track-01"] .form-field input,
body[data-page="product-track-01"] .form-field select,
body[data-page="product-track-01"] .file-field input {
  min-height: 44px;
  padding: 8px 10px;
}

body[data-page="product-track-01"] .form-field textarea {
  min-height: 96px;
}

body[data-page="product-track-01"] .upload-form textarea {
  height: 116px;
  min-height: 116px;
}

body[data-page="product-track-01"] .upload-form .button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold-dark);
  box-shadow: none;
}

body[data-page="product-track-01"] .upload-form .button.secondary:hover {
  background: rgba(210, 169, 93, .12);
}

.contact-rail {
  transition: opacity .18s ease, transform .18s ease, visibility .18s step-start;
}

.contact-rail.is-clear-of-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s step-end;
}

body[data-page="product-track-01"] .checkbox-field {
  padding: 11px 12px;
}

body[data-page="product-track-01"] .cta-block {
  padding: 22px 26px;
}

@media (min-width: 901px) {
  body[data-page="product-track-01"] .hero {
    min-height: clamp(500px, 64vh, 620px);
    padding-top: 54px;
    padding-bottom: 54px;
  }

  body[data-page="product-track-01"] .page-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 38px;
  }

  body[data-page="product-track-01"] .page-content > p:nth-child(1) {
    grid-column: 1;
  }

  body[data-page="product-track-01"] .page-content > p:nth-child(2) {
    grid-column: 2;
  }

  body[data-page="product-track-01"] .page-content > p:nth-child(3),
  body[data-page="product-track-01"] .page-content > .inline-cta,
  body[data-page="product-track-01"] .page-content > p:nth-child(5) {
    grid-column: 1 / -1;
  }

  body[data-page="product-track-01"] .page-content > p:nth-child(3) {
    max-width: 920px;
    margin-bottom: 14px;
  }

  body[data-page="product-track-01"] .page-content > p:nth-child(5) {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 14px;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(-n + 4) {
    padding: 27px 24px 25px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(odd):nth-of-type(-n + 4) {
    padding-left: 0;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(even):nth-of-type(-n + 4) {
    padding-right: 0;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(n + 5) {
    grid-column: 1 / -1;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(5) {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 0 38px;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(5) h2 {
    grid-column: 1 / -1;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(5) > p:first-of-type,
  body[data-page="product-track-01"] .content-section:nth-of-type(5) > ul {
    grid-column: 1;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(5) > p:last-of-type {
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: start;
    margin: 0;
    padding: 18px 20px;
    border-left: 4px solid var(--gold);
    background: #f5f0e7;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(6) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(6) h2 {
    grid-column: 1 / -1;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(6) h3:nth-of-type(1),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) p:nth-of-type(1),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) h3:nth-of-type(3),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) p:nth-of-type(3) {
    grid-column: 1;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(6) h3:nth-of-type(2),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) p:nth-of-type(2),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) h3:nth-of-type(4),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) p:nth-of-type(4) {
    grid-column: 2;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(6) h3:nth-of-type(1),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) h3:nth-of-type(2) {
    grid-row: 2;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(6) p:nth-of-type(1),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) p:nth-of-type(2) {
    grid-row: 3;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(6) h3:nth-of-type(3),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) h3:nth-of-type(4) {
    grid-row: 4;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(6) p:nth-of-type(3),
  body[data-page="product-track-01"] .content-section:nth-of-type(6) p:nth-of-type(4) {
    grid-row: 5;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(7) {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: 0 38px;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(7) h2,
  body[data-page="product-track-01"] .content-section:nth-of-type(7) > p:first-of-type {
    grid-column: 1;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(7) > p:nth-of-type(2),
  body[data-page="product-track-01"] .content-section:nth-of-type(7) > ul {
    grid-column: 2;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(7) > p:nth-of-type(2) {
    grid-row: 1;
    align-self: end;
    margin-top: 0;
  }

  body[data-page="product-track-01"] .contact-panel {
    grid-template-columns: minmax(230px, .48fr) minmax(0, 1.52fr);
    align-items: center;
  }

  body[data-page="product-track-01"] .contact-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  body[data-page="product-track-01"] .contact-panel .email-card {
    grid-column: auto;
  }

  body[data-page="product-track-01"] .contact-card strong {
    font-size: 15px;
  }

  body[data-page="product-track-01"] .form-panel,
  body[data-page="product-track-01"] .upload-panel {
    display: grid;
    grid-template-columns: minmax(250px, .52fr) minmax(0, 1.48fr);
    gap: 30px;
    align-items: start;
  }
}

@media (max-width: 900px) {
  body[data-page="product-track-01"] .page-content,
  body[data-page="product-track-01"] .contact-panel,
  body[data-page="product-track-01"] .form-panel,
  body[data-page="product-track-01"] .upload-panel,
  body[data-page="product-track-01"] .cta-block {
    width: min(100% - 24px, 1180px);
  }

  body[data-page="product-track-01"] .page-content {
    display: block;
    padding-top: 26px;
  }

  body[data-page="product-track-01"] .content-section:nth-of-type(5),
  body[data-page="product-track-01"] .content-section:nth-of-type(6),
  body[data-page="product-track-01"] .content-section:nth-of-type(7) {
    display: block;
  }

  body[data-page="product-track-01"] .form-panel,
  body[data-page="product-track-01"] .upload-panel {
    display: block;
  }

  body[data-page="product-track-01"] .form-intro {
    margin-bottom: 18px;
  }
}

/* PART 10L compact Contacts page */
body[data-page="contact"] .hero {
  min-height: 408px;
  padding-top: 24px;
  padding-bottom: 24px;
}

body[data-page="contact"] .hero-copy p {
  max-width: 650px;
}

body[data-page="contact"] .hero-media {
  height: 360px;
}

body[data-page="contact"] .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

body[data-page="contact"] .contact-panel,
body[data-page="contact"] .form-panel,
body[data-page="contact"] .contact-final-note {
  width: min(1180px, calc(100% - 48px));
}

body[data-page="contact"] .contact-panel,
body[data-page="contact"] .form-panel {
  margin-top: 18px;
  padding: 18px 22px;
}

body[data-page="contact"] .contact-panel {
  grid-template-columns: minmax(220px, .46fr) minmax(0, 1.54fr);
  align-items: center;
}

body[data-page="contact"] .contact-panel h2,
body[data-page="contact"] .form-panel h2 {
  margin-bottom: 8px;
}

body[data-page="contact"] .contact-panel p,
body[data-page="contact"] .form-panel p {
  margin-bottom: 0;
}

body[data-page="contact"] .contact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

body[data-page="contact"] .contact-card,
body[data-page="contact"] .contact-panel .email-card {
  grid-column: auto;
  min-height: 66px;
  padding: 12px;
}

body[data-page="contact"] .contact-card strong {
  font-size: 14px;
}

body[data-page="contact"] .form-panel {
  display: grid;
  grid-template-columns: minmax(230px, .46fr) minmax(0, 1.54fr);
  gap: 26px;
  align-items: start;
}

body[data-page="contact"] .form-intro {
  margin-bottom: 0;
}

body[data-page="contact"] .lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="contact"] .form-field,
body[data-page="contact"] .checkbox-field {
  gap: 5px;
}

body[data-page="contact"] .form-field input,
body[data-page="contact"] .form-field select {
  min-height: 44px;
  padding: 8px 10px;
}

body[data-page="contact"] .form-field textarea {
  min-height: 104px;
  height: 104px;
}

body[data-page="contact"] .checkbox-field {
  padding: 10px 12px;
}

body[data-page="contact"] .contact-final-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 18px auto 24px;
  padding: 13px 18px;
  border-left: 4px solid var(--gold);
  background: #f5f0e7;
}

body[data-page="contact"] .contact-final-note p {
  margin: 0;
}

@media (max-width: 900px) {
  body[data-page="contact"] .hero {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  body[data-page="contact"] .hero-media {
    height: auto;
  }

  body[data-page="contact"] .contact-panel,
  body[data-page="contact"] .form-panel,
  body[data-page="contact"] .contact-final-note {
    width: min(100% - 24px, 1180px);
  }

  body[data-page="contact"] .contact-panel,
  body[data-page="contact"] .form-panel {
    display: block;
    padding: 20px;
  }

  body[data-page="contact"] .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  body[data-page="contact"] .contact-panel .email-card {
    grid-column: 1 / -1;
  }

  body[data-page="contact"] .form-intro {
    margin-bottom: 18px;
  }

  body[data-page="contact"] .contact-final-note {
    display: block;
  }

  body[data-page="contact"] .contact-final-note p + p {
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  body[data-page="contact"] .contact-grid,
  body[data-page="contact"] .lead-form {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .form-field,
  body[data-page="contact"] .checkbox-field,
  body[data-page="contact"] .form-state,
  body[data-page="contact"] .form-submit,
  body[data-page="contact"] .contact-panel .email-card {
    grid-column: 1;
  }
}

/* PART 10O concise About page */
body[data-page="about"] {
  background: var(--bg-deep);
  color: var(--white);
}

.about-hero-10o,
.about-section,
.about-contact-10o {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.about-hero-10o {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  min-height: 430px;
  border-bottom: 1px solid rgba(210, 169, 93, .45);
}

.about-hero-copy {
  align-self: center;
  padding: 42px 54px 42px 0;
}

.about-hero-copy h1 {
  max-width: 650px;
  margin: 10px 0 14px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.02;
}

.about-experience {
  max-width: 610px;
  margin: 0 0 14px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.about-certificate {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

.about-hero-actions,
.about-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-hero-photo {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.about-section {
  padding: 30px 0;
  border-bottom: 1px solid rgba(210, 169, 93, .25);
}

.about-background,
.about-value,
.about-principles {
  display: grid;
  grid-template-columns: minmax(250px, .42fr) minmax(0, 1.58fr);
  gap: 36px;
}

.about-section-heading h2,
.about-contact-10o h2 {
  margin: 7px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.about-background-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-background-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.about-value-grid,
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-value-card,
.about-principle {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 15px;
  border: 1px solid rgba(210, 169, 93, .3);
  background: var(--navy);
}

.about-value-card .icon,
.about-principle .icon {
  flex: 0 0 auto;
  color: var(--gold);
}

.about-value-card strong,
.about-principle span {
  color: var(--white);
  line-height: 1.25;
}

.about-personal-note {
  grid-column: 2;
  margin: 16px 0 0;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .04);
}

.about-contact-10o {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0 30px;
}

.about-contact-10o p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .7);
}

.about-contact-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.inline-label {
  margin: 10px 0 4px;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .about-hero-10o,
  .about-section,
  .about-contact-10o {
    width: min(100% - 24px, 1180px);
  }

  .about-hero-10o {
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    padding: 34px 0;
  }

  .about-hero-photo {
    min-height: auto;
    aspect-ratio: 3 / 2;
    grid-row: 1;
  }

  .about-background,
  .about-value,
  .about-principles {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-personal-note {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .about-hero-copy h1 {
    font-size: 44px;
  }

  .about-experience {
    font-size: 19px;
  }

  .about-background-copy,
  .about-value-grid,
  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-contact-10o {
    display: block;
  }

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

/* PART 10M compact utility pages */
.utility-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 146px);
  padding: 48px 24px;
  background:
    linear-gradient(90deg, rgba(4, 14, 20, .98), rgba(9, 24, 29, .94)),
    var(--bg);
}

.utility-panel {
  width: min(680px, 100%);
  padding: 42px;
  border: 1px solid rgba(210, 169, 93, .4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  color: var(--white);
  box-shadow: var(--shadow);
}

.utility-copy h1 {
  max-width: 620px;
  margin: 10px 0 14px;
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
}

.utility-copy > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.utility-copy .utility-next-step {
  margin-top: 12px;
  color: var(--white);
}

.utility-status {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 25px;
  font-weight: 700;
}

.utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

@media (max-width: 600px) {
  .utility-main {
    min-height: calc(100vh - 184px);
    padding: 24px 12px;
  }

  .utility-panel {
    padding: 28px 20px;
  }

  .utility-copy h1 {
    font-size: 38px;
  }

  .utility-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
