:root {
  --orange: #f08818;
  --orange-dark: #b85f0c;
  --blue: #173b57;
  --teal: #1f8ea3;
  --ink: #1f2428;
  --gray: #66717a;
  --line: #e8ecef;
  --warm: #f7f3ee;
  --white: #fff;
  --max: 1200px;
}

/* Rework 2026-08-04: typographic audit treatment, no product mockup. */
.hero-grid {
  grid-template-columns: 1.65fr 0.65fr;
  align-items: end;
  gap: 100px;
}
.hero-context {
  border-left: 4px solid var(--orange);
  padding: 10px 0 10px 26px;
  margin: 0 0 12px;
}
.hero-context p {
  font: 600 1.45rem/1.4 Montserrat, Arial, sans-serif;
  margin: 0 0 14px;
  color: var(--blue);
}
.hero-context span {
  display: block;
  color: #65717a;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
}
.audit-section {
  background: var(--warm);
  border-top: 1px solid #e6ded4;
  border-bottom: 1px solid #e6ded4;
}
.audit-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: start;
}
.audit-heading h2 {
  max-width: 650px;
}
.audit-copy {
  padding-top: 34px;
  border-top: 4px solid var(--orange);
}
.audit-copy > p {
  font-size: 1.08rem;
  color: #46545e;
}
.audit-copy .audit-limit {
  font-size: 0.88rem;
  color: #66717a;
  margin: 26px 0;
}
.audit-copy .button {
  margin-top: 4px;
}
@media (max-width: 980px) {
  .hero-grid,
  .audit-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 50px;
  }
  .audit-layout {
    gap: 40px;
  }
  .audit-copy {
    padding-top: 24px;
  }
}
@media (max-width: 650px) {
  .hero-grid {
    gap: 44px;
  }
  .hero-context {
    padding-left: 20px;
  }
  .audit-copy .button {
    width: 100%;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
}
h1,
h2,
h3 {
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 800px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}
h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 20px;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.section {
  padding: 112px 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 36, 40, 0.08);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  display: block;
  width: 140px;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header nav > a:not(.button) {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}
.site-header nav > a:hover {
  color: var(--orange-dark);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--orange);
  color: #1f2428;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  border: 2px solid var(--orange);
  box-shadow: 0 6px 18px rgba(31, 36, 40, 0.1);
  transition: 0.2s;
}
.button:hover {
  background: #d97712;
  border-color: #d97712;
  transform: translateY(-2px);
}
.button:focus-visible,
a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(240, 136, 24, 0.5);
  outline-offset: 3px;
}
.button-small {
  font-size: 0.8rem;
  min-height: 44px;
  padding: 10px 18px;
}
.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: #89949d;
  box-shadow: none;
}
.button-secondary:hover {
  background: var(--line);
  border-color: var(--ink);
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #bbc3c9;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
}
.hero {
  padding: 118px 0 96px;
  background:
    radial-gradient(
      circle at 80% 16%,
      rgba(31, 142, 163, 0.14),
      transparent 28%
    ),
    linear-gradient(135deg, #fff 58%, #f1f5f6);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  align-items: center;
  gap: 80px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 18px;
}
.lead {
  font-size: 1.2rem;
  max-width: 730px;
  color: #47545e;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 12px;
}
.micro {
  font-size: 0.8rem;
  color: #68747c;
}
.hero-panel {
  background: var(--blue);
  color: #fff;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 24px 60px rgba(23, 59, 87, 0.18);
  position: relative;
  overflow: hidden;
}
.hero-panel:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 38px solid rgba(31, 142, 163, 0.18);
  border-radius: 50%;
  right: -92px;
  bottom: -100px;
}
.panel-line {
  display: flex;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  z-index: 1;
}
.panel-line:last-child {
  border: 0;
}
.panel-line > span {
  color: var(--orange);
  font-weight: 700;
  font-family: Montserrat;
}
.panel-line strong,
.panel-line small {
  display: block;
}
.panel-line small {
  color: #cbd8e1;
  margin-top: 5px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: end;
}
.split-heading > p {
  font-size: 1.1rem;
  color: #55616a;
}
.cards {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}
.four {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 36, 40, 0.1);
}
.card-no {
  display: block;
  color: var(--orange-dark);
  font-weight: 700;
  margin-bottom: 32px;
}
.card p {
  color: #59656e;
  margin: 0;
}
.section-muted {
  background: #f3f5f6;
}
.section-intro {
  max-width: 760px;
  margin: auto;
  text-align: center;
}
.section-intro > p:last-child {
  color: #5a6872;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 54px;
}
.service {
  display: flex;
  gap: 22px;
  padding: 32px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e7ea;
}
.service-icon {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}
.service p {
  color: #59656e;
  margin: 0;
}
.note {
  margin-top: 28px;
  background: var(--warm);
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  border-radius: 4px 14px 14px 4px;
}
.process-section {
  background: var(--blue);
  color: #fff;
}
.section-intro.light p {
  color: #c5d2dc;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.process-grid article {
  padding: 34px;
  background: var(--blue);
}
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 50px;
}
.process-grid p {
  color: #c7d4dd;
  margin: 0;
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
}
.proof-row div {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 20px;
}
.proof-row strong,
.proof-row span {
  display: block;
}
.proof-row strong {
  font: 700 1.7rem Montserrat;
  color: var(--orange);
}
.proof-row span {
  color: #c7d4dd;
}
.audit-band {
  padding: 72px 0;
  background: var(--warm);
}
.audit-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}
.audit-grid h2 {
  max-width: 800px;
}
.audit-grid p:last-child {
  max-width: 800px;
  color: #5c666d;
}
.blog-section {
  background: #fff;
}
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.blog-head > div {
  max-width: 800px;
}
.text-link,
.post-link {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  margin-top: 50px;
}
.post {
  border: 1px solid #dfe5e8;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 370px;
}
.post.featured {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.post-date {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 700;
}
.featured .post-date {
  color: #72c5d2;
}
.post h3 a {
  color: inherit;
  text-decoration: none;
}
.post > p:not(.post-date) {
  color: #5b6871;
}
.featured > p:not(.post-date) {
  color: #c8d5de;
}
.post-link {
  margin-top: auto;
}
.featured .post-link {
  color: #ffad51;
}
.contact-section {
  background: linear-gradient(180deg, #fff 45%, #f1f4f5 45%);
}
.contact-card {
  padding: 60px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(23, 59, 87, 0.16);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
}
.contact-card > div > p:last-child {
  color: #56636b;
  font-size: 1.05rem;
}
.contact-card address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid var(--line);
  padding-left: 40px;
  justify-content: center;
}
.contact-card address a {
  font: 600 1.15rem Montserrat;
  color: var(--blue);
  text-decoration: none;
}
.contact-card address strong {
  color: var(--ink);
}
.contact-trigger {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
}
.contact-modal {
  width: min(560px, calc(100% - 32px));
  border: 0;
  border-radius: 20px;
  padding: 40px;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(23, 59, 87, .28);
}
.contact-modal::backdrop {
  background: rgba(23, 45, 61, .58);
}
.contact-modal h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  padding-right: 28px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--gray);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.contact-modal form {
  display: grid;
  gap: 16px;
}
.contact-modal label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-weight: 600;
}
.contact-modal input,
.contact-modal textarea {
  width: 100%;
  border: 1px solid #d5dde2;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}
.contact-modal textarea {
  resize: vertical;
}
.contact-card small {
  color: #68747c;
}
footer {
  padding: 64px 0;
  background: #172d3d;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.footer-grid img {
  filter: brightness(0) invert(1);
  height: auto;
}
.footer-grid p {
  max-width: 560px;
  color: #c6d3dc;
}
.footer-grid > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  color: #c6d3dc;
}
.footer-grid > div:last-child a {
  color: #c6d3dc;
  text-decoration: none;
}
.footer-grid > div:last-child a:hover,
.footer-grid > div:last-child a:focus-visible {
  color: #fff;
  text-decoration: underline;
}
.footer-grid strong {
  color: #fff;
}
@media (max-width: 980px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .split-heading,
  .audit-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 50px;
  }
  .four,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .post.featured {
    grid-column: 1/-1;
  }
  .audit-grid .button {
    justify-self: start;
  }
  .contact-card {
    gap: 40px;
  }
  .contact-card address {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0 0;
  }
}
@media (max-width: 650px) {
  .container {
    width: min(100% - 32px, var(--max));
  }
  .section {
    padding: 72px 0;
  }
  .hero {
    padding: 76px 0 64px;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero-panel {
    padding: 26px;
  }
  .actions {
    flex-direction: column;
  }
  .actions .button {
    width: 100%;
  }
  .four,
  .services-grid,
  .process-grid,
  .proof-row,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .post.featured {
    grid-column: auto;
  }
  .split-heading {
    gap: 22px;
  }
  .service {
    padding: 24px;
  }
  .process-grid article {
    padding: 28px;
  }
  .process-grid span {
    margin-bottom: 28px;
  }
  .proof-row {
    gap: 24px;
  }
  .audit-grid {
    gap: 24px;
  }
  .contact-card {
    padding: 30px 24px;
  }
  .contact-modal {
    padding: 32px 24px 24px;
  }
  .blog-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .post {
    min-height: 0;
  }
  .footer-grid {
    gap: 30px;
  }
}

/* Final cascade for audit rework. */
.hero-grid {
  grid-template-columns: 1.65fr 0.65fr;
  align-items: end;
  gap: 100px;
}
.hero-context {
  border-left: 4px solid var(--orange);
  padding: 10px 0 10px 26px;
  margin: 0 0 12px;
}
.hero-context p {
  font: 600 1.45rem/1.4 Montserrat, Arial, sans-serif;
  margin: 0 0 14px;
  color: var(--blue);
}
.hero-context span {
  display: block;
  color: #65717a;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
}
.audit-section {
  background: var(--warm);
  border-top: 1px solid #e6ded4;
  border-bottom: 1px solid #e6ded4;
}
.audit-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: start;
}
.audit-heading h2 {
  max-width: 650px;
}
.audit-copy {
  padding-top: 34px;
  border-top: 4px solid var(--orange);
}
.audit-copy > p {
  font-size: 1.08rem;
  color: #46545e;
}
.audit-copy .audit-limit {
  font-size: 0.88rem;
  color: #66717a;
  margin: 26px 0;
}
.audit-copy .button {
  margin-top: 4px;
}
@media (max-width: 980px) {
  .hero-grid,
  .audit-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 50px;
  }
  .audit-layout {
    gap: 40px;
  }
  .audit-copy {
    padding-top: 24px;
  }
}
@media (max-width: 650px) {
  .hero-grid {
    gap: 44px;
  }
  .hero-context {
    padding-left: 20px;
  }
  .audit-copy .button {
    width: 100%;
  }
}
