.page-company {
  --company-max-copy: 780px;
}

.company-page {
  background:
    var(--bg-soft);
}

.company-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 92px) 0 96px;
  overflow: clip;
  isolation: isolate;
  background: #060a12;
}

.company-hero--compact {
  min-height: 560px;
}

.company-hero__media,
.company-hero__media::after,
.company-hero__media img {
  position: absolute;
  inset: 0;
}

.company-hero__media {
  z-index: -2;
  overflow: hidden;
}

.company-hero__media::after {
  content: "";
  z-index: 1;
  background:
    rgba(3, 7, 13, .58);
}

.company-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.company-hero__container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-inline: max(24px, calc((100vw - var(--container)) / 2));
}

.company-breadcrumb {
  margin: 0 0 26px;
  color: var(--hero-soft-on-media);
  font-size: 14px;
}

.company-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--hero-separator-on-media);
}

.company-breadcrumb a {
  color: var(--hero-muted-on-media);
}

.company-breadcrumb a:hover {
  color: #fff;
}

.company-eyebrow {
  margin: 0 0 14px;
  color: var(--hero-text-on-media);
  font-family: var(--font-title);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.company-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  color: #fff;
  font-size: var(--hero-title-size);
  line-height: 1.02;
  text-wrap: balance;
}

.company-hero__lead {
  max-width: 780px;
  margin: 0;
  color: rgba(238, 244, 252, .84);
  font-size: clamp(16px, 1.16vw, 19px);
  line-height: 1.72;
}

.company-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.company-hero__ghost {
  --btn-bg: rgba(255, 255, 255, .10);
  --btn-text: #fff;
  --btn-border: rgba(255, 255, 255, .22);
}

.company-section {
  position: relative;
  padding: clamp(72px, 8vw, 108px) 0;
}

.company-section--intro {
  padding-top: clamp(76px, 8vw, 116px);
}

.company-section--soft {
  background:
    var(--surface-solid);
  border-block: 1px solid var(--border);
}

.company-intro,
.company-split,
.company-cta__container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.company-intro__copy,
.company-split__copy {
  max-width: var(--company-max-copy);
}

.company-intro h2,
.company-split h2,
.company-section__head h2,
.company-cta h2 {
  margin: 0 0 var(--space-title-copy);
  font-size: var(--type-section-title);
  line-height: var(--type-section-title-line);
  text-wrap: var(--type-section-wrap);
}

.company-error h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.05;
  text-wrap: balance;
}

.company-intro p,
.company-split p,
.company-section__head p,
.company-cta p,
.company-error p {
  color: var(--text-muted);
  font-size: var(--type-section-lead);
  line-height: 1.68;
}

.company-intro p:last-child,
.company-split p:last-child,
.company-section__head p:last-child,
.company-cta p:last-child,
.company-error p:last-child {
  margin-bottom: 0;
}

.company-intro__panel {
  padding: clamp(24px, 3vw, 34px);
}

.company-panel__label {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-text);
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.company-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  line-height: 1.58;
}

.company-checklist li::before {
  content: "";
  position: absolute;
  top: .63em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px color-mix(in oklab, var(--brand) 14%, transparent);
}

.company-section__head {
  max-width: 900px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.company-section__head .kicker {
  margin-inline: auto;
}

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

.company-feature-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.company-feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--brand);
  opacity: .9;
}

.company-feature-card h3 {
  display: block;
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: var(--type-card-title);
  line-height: 1.12;
}

.company-feature-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.62;
}

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

.company-industry-list span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: color-mix(in oklab, var(--surface-solid) 78%, transparent);
  color: var(--text);
  font-family: var(--font-title);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.company-cta {
  padding: clamp(64px, 7vw, 94px) 0;
  background: var(--surface-solid);
  border-top: 1px solid var(--border);
}

.company-cta__container {
  align-items: center;
}

.company-cta__container .btn {
  justify-self: end;
}

.company-error {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 72px) 0 84px;
}

.company-error__container {
  max-width: 880px;
  padding: clamp(34px, 5vw, 62px);
  text-align: left;
}

.company-error .company-eyebrow {
  color: color-mix(in oklab, var(--brand) 82%, var(--text));
}

@media (max-width: 1180px) {
  .company-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .company-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 76px) 0 78px;
  }

  .company-hero__container {
    margin-inline: auto;
  }

  .company-intro,
  .company-split,
  .company-cta__container {
    grid-template-columns: 1fr;
  }

  .company-cta__container .btn {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .company-section {
    padding: 68px 0;
  }

  .company-card-grid,
  .company-industry-list {
    grid-template-columns: 1fr;
  }

  .company-feature-card,
  .company-intro__panel,
  .company-error__container {
    padding: 24px;
  }

}


/* About / Company Profile — article-style editorial hero */
.about-hero {
  padding: calc(var(--header-height) + 54px) 0 58px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.about-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.about-hero__content {
  min-width: 0;
}

.about-hero__eyebrow {
  margin-bottom: clamp(18px, 2.2vw, 26px);
  color: color-mix(in oklab, var(--text-muted) 82%, transparent);
}

.about-hero h1 {
  max-width: 690px;
  margin: 0 0 18px;
  font-size: var(--hero-title-size);
  line-height: 1.05;
  text-wrap: balance;
}

.about-hero__lead {
  max-width: 650px;
  margin: 0;
  color: color-mix(in oklab, var(--text-muted) 84%, var(--text));
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.72;
}

.about-hero__cta {
  margin-top: 24px;
}

.about-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 450px;
  margin: 0;
  overflow: visible;
  isolation: isolate;
}

.about-hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--surface-solid) 72%, transparent) 0 28%, transparent 72%);
  pointer-events: none;
}

.about-hero__visual img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(5, 12, 22, .12));
}

.about-overview {
  background: var(--bg);
}

.about-overview__layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(36px, 5.5vw, 82px);
}

.about-overview__heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.about-overview__heading .kicker,
.about-purpose__head .kicker {
  margin: 0 0 14px;
}

.about-overview__heading h2,
.about-purpose__head h2 {
  margin: 0;
  font-size: var(--type-section-title);
  line-height: var(--type-section-title-line);
  text-wrap: var(--type-section-wrap);
}

.about-overview__copy {
  max-width: 760px;
}

.about-overview__copy p {
  margin: 0 0 18px;
  color: color-mix(in oklab, var(--text-muted) 84%, var(--text));
  font-size: clamp(16px, 1vw, 17px);
  line-height: 1.75;
}

.about-overview__copy p:first-child {
  color: var(--text);
  font-size: clamp(18px, 1.2vw, 20px);
  font-weight: 650;
  line-height: 1.62;
}

.about-overview__copy p:last-child {
  margin-bottom: 0;
}

.about-purpose__head {
  max-width: 820px;
  margin-bottom: clamp(34px, 4vw, 52px);
}

.about-purpose__layout {
  display: grid;
  grid-template-columns: minmax(280px, .74fr) minmax(0, 1.26fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.about-vision {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-left: 22px;
  border-left: 3px solid var(--brand);
}

.about-purpose__label {
  margin: 0 0 13px;
  color: var(--brand-text);
  font-family: var(--font-title);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-vision__statement {
  margin: 0;
  color: var(--text);
  font-family: var(--font-title);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
}

.about-mission {
  display: grid;
}

.about-mission__item {
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.about-mission__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.about-mission__item h3,
.about-solution h3,
.about-support__item h3 {
  margin: 0 0 6px;
  font-size: var(--type-card-title);
  line-height: 1.12;
}

.about-mission__item p,
.about-solution p,
.about-support__item p {
  margin: 0;
  color: color-mix(in oklab, var(--text-muted) 84%, var(--text));
  font-size: 15px;
  line-height: 1.62;
}

.about-solutions {
  background: var(--bg);
}

.about-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-solution {
  min-width: 0;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid var(--border);
}

.about-solution:last-child {
  border-right: 0;
}

.about-solution__icon {
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 26px;
  border-radius: 0;
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: auto 70px;
}

.about-solution__icon img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.about-solution p {
  min-height: 88px;
}

.about-solution a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--link-text);
  font-size: 13px;
  font-weight: 750;
}

.about-solution a span {
  transition: transform .2s ease;
}

.about-solution a:hover span,
.about-solution a:focus-visible span {
  transform: translateX(4px);
}

.about-support__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.about-support__item {
  padding: 30px 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid var(--border);
}

.about-support__item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}


#fokus-solusi {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.about-solutions .company-section__head > p:last-child,
.about-support .company-section__head > p:last-child {
  color: color-mix(in oklab, var(--text-muted) 84%, var(--text));
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.68;
}

.about-page .company-cta__container {
  grid-template-columns: minmax(0, 640px) auto;
  gap: clamp(28px, 4vw, 52px);
  max-width: 980px;
  margin-inline: auto;
}

.about-page .company-cta__container > div {
  max-width: 640px;
}

.company-cta .kicker {
  width: max-content;
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: .2em;
}

:root[data-theme="dark"] .about-hero__visual::before {
  background: none;
}

@media (min-width: 1181px) {
  .about-purpose__head {
    max-width: none;
  }

  .about-purpose__head h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1040px) {
  .about-hero__layout {
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 30px;
  }

  .about-hero__visual {
    min-height: 400px;
  }

  .about-solution-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .about-solution {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    grid-template-areas:
      "icon title link"
      "icon copy link";
    column-gap: 24px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about-solution__icon {
    grid-area: icon;
    margin-bottom: 0;
  }

  .about-solution h3 {
    grid-area: title;
    align-self: end;
  }

  .about-solution p {
    grid-area: copy;
    min-height: 0;
    align-self: start;
  }

  .about-solution a {
    grid-area: link;
    margin-top: 0;
    white-space: nowrap;
  }

  .about-support__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .about-support__item:nth-child(2) {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .about-hero {
    padding: calc(var(--header-height) + 32px) 0 44px;
  }

  .about-hero__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-hero__visual {
    width: min(100%, 600px);
    min-height: 0;
    margin-inline: auto;
  }

  .about-hero__visual img {
    width: min(100%, 450px);
  }

  .about-overview__layout,
  .about-purpose__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-overview__heading,
  .about-vision {
    position: static;
  }

  .about-page .company-cta__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-page .company-cta__container .btn {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .about-hero {
    padding: calc(var(--header-height) + 24px) 0 38px;
  }

  .about-hero__layout {
    gap: 10px;
  }

  .about-hero__visual {
    width: min(100%, 410px);
    margin-top: -4px;
  }

  .about-hero__visual img {
    width: min(100%, 360px);
  }

  .about-hero__eyebrow {
    margin-bottom: 14px;
  }

  .about-hero h1 {
    margin-bottom: 14px;
  }

  .about-hero__lead {
    font-size: 15px;
    line-height: 1.72;
  }

  .about-hero__cta {
    margin-top: 18px;
  }

  .about-purpose__head {
    margin-bottom: 30px;
  }

  .about-vision {
    padding-left: 16px;
  }

  .about-vision__statement {
    font-size: clamp(21px, 7vw, 27px);
  }

  .about-mission__item {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .about-solution {
    display: block;
    padding: 30px 0;
  }

  .about-solution__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    contain-intrinsic-size: auto 62px;
  }

  .about-solution__icon img {
    width: 62px;
    height: 62px;
  }

  .about-solution p {
    min-height: 0;
  }

  .about-solution a {
    margin-top: 18px;
  }

  .about-support__grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .about-support__item,
  .about-support__item:nth-child(2) {
    margin: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about-support__item:first-child {
    padding-top: 0;
  }

  .about-support__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }


  .about-overview__copy p,
  .about-mission__item p,
  .about-solution p,
  .about-support__item p {
    font-size: 16px;
    line-height: 1.68;
  }

  .about-overview__copy p:first-child {
    font-size: 18px;
    line-height: 1.62;
  }

  .about-solutions .company-section__head > p:last-child,
  .about-support .company-section__head > p:last-child {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-page .company-cta {
    padding: 54px 0 58px;
  }

  .about-page .company-cta__container {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-solution a span {
    transition: none;
  }
}

/* Contact REV4 — immersive consultation hero */
.contact-entry {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(40px, 4vw, 58px)) 0 clamp(28px, 3vw, 42px);
  overflow: clip;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.contact-entry::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 12, 24, .92) 0%, rgba(5, 12, 24, .78) 38%, rgba(5, 12, 24, .38) 66%, rgba(5, 12, 24, .18) 100%),
    linear-gradient(0deg, rgba(5, 12, 24, .34), rgba(5, 12, 24, .08) 58%, rgba(5, 12, 24, .24));
}

.contact-entry__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  background: #111a28;
}

.contact-entry__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.contact-entry__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(500px, .97fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.contact-entry__content {
  min-width: 0;
  max-width: 680px;
  color: #fff;
}

.contact-breadcrumb {
  margin: 0 0 clamp(16px, 1.7vw, 22px);
  color: var(--hero-soft-on-media);
  font-size: 13px;
}

.contact-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--hero-separator-on-media);
}

.contact-breadcrumb a {
  color: var(--hero-muted-on-media);
}

.contact-breadcrumb a:hover,
.contact-breadcrumb a:focus-visible {
  color: #fff;
}

.contact-entry__kicker {
  margin: 0 0 10px;
  color: var(--hero-text-on-media);
}

:root[data-theme="light"] .contact-entry__kicker {
  color: var(--hero-text-on-media);
}

.contact-entry h1 {
  max-width: 690px;
  margin: 0 0 22px;
  color: #fff;
  font-size: var(--hero-title-size);
  line-height: 1.02;
  text-wrap: balance;
}

.contact-entry__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .87);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.68;
}

.contact-entry__quick {
  display: grid;
  max-width: 540px;
  margin-top: clamp(30px, 3.4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.contact-entry__quick-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.contact-entry__quick-link:last-child {
  border-bottom: 0;
}

.contact-entry__quick-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(5, 12, 24, .24);
  color: #fff;
}

.contact-entry__quick-icon svg {
  width: 19px;
  height: 19px;
}

.contact-entry__quick-link small,
.contact-entry__quick-link strong {
  display: block;
}

.contact-entry__quick-link small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-entry__quick-link strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-family: var(--font-title);
  font-size: 15px;
  line-height: 1.2;
}

.contact-entry__quick-link > span:last-child {
  color: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.contact-entry__quick-link:hover > span:last-child,
.contact-entry__quick-link:focus-visible > span:last-child {
  transform: translateX(4px);
}

.contact-entry__hours {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 700;
}

.contact-form-panel {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  padding: clamp(22px, 2.5vw, 32px) clamp(24px, 2.7vw, 34px) clamp(24px, 2.7vw, 34px);
  border: 1px solid color-mix(in oklab, var(--border) 78%, transparent);
  border-radius: 18px;
  background: color-mix(in oklab, var(--surface-solid) 98%, transparent);
  box-shadow: 0 28px 80px rgba(5, 12, 24, .32);
  backdrop-filter: saturate(1.05) blur(4px);
}

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

.contact-field {
  min-width: 0;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label {
  display: block;
  margin: 0 0 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.contact-field label span {
  color: var(--brand-text);
}

.contact-field__control {
  width: 100%;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: 0;
  background: var(--surface-solid);
  color: var(--text);
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-field__control::placeholder {
  color: color-mix(in oklab, var(--text-muted) 74%, transparent);
}

.contact-field__control:hover {
  border-color: color-mix(in oklab, var(--brand-2) 30%, var(--border));
}

.contact-field__control:focus {
  border-color: color-mix(in oklab, var(--brand-2) 72%, var(--border));
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand-2) 14%, transparent);
}

.contact-field__control--textarea {
  min-height: 116px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-form__actions .btn {
  min-width: 0;
  white-space: nowrap;
}

@media (min-width: 981px) and (max-height: 820px) {
  .contact-entry {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 20px;
  }

  .contact-breadcrumb {
    margin-bottom: 14px;
  }

  .contact-entry__kicker {
    margin-bottom: 8px;
  }

  .contact-entry h1 {
    margin-bottom: 16px;
  }

  .contact-entry__lead {
    line-height: 1.56;
  }

  .contact-entry__quick {
    margin-top: 22px;
  }

  .contact-entry__quick-link {
    padding: 10px 0;
  }

  .contact-entry__hours {
    margin-top: 12px;
  }

  .contact-form-panel {
    padding: 22px 26px 24px;
  }

  .contact-form__grid {
    gap: 10px 14px;
  }

  .contact-field label {
    margin-bottom: 5px;
  }

  .contact-field__control {
    min-height: 40px;
    padding-block: 8px;
  }

  .contact-field__control--textarea {
    min-height: 94px;
  }

  .contact-form__actions {
    margin-top: 14px;
  }
}

@media (max-width: 1160px) {
  .contact-entry__layout {
    grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
    gap: 38px;
  }

}

@media (max-width: 980px) {
  .contact-entry {
    min-height: 0;
    padding: var(--header-height) 0 48px;
  }

  .contact-entry::after {
    inset: 0 0 auto;
    height: 570px;
    background:
      linear-gradient(90deg, rgba(5, 12, 24, .88), rgba(5, 12, 24, .52)),
      linear-gradient(0deg, rgba(5, 12, 24, .46), rgba(5, 12, 24, .10) 58%, rgba(5, 12, 24, .24));
  }

  .contact-entry__backdrop {
    inset: 0 0 auto;
    height: 570px;
  }

  .contact-entry__backdrop img {
    object-position: 44% center;
  }

  .contact-entry__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-entry__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(570px - var(--header-height));
    max-width: 720px;
    padding: 48px 0;
  }

  .contact-form-panel {
    width: min(100%, 720px);
    max-width: none;
    justify-self: start;
  }

  .contact-entry__quick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .contact-entry__quick-link {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 0;
  }

  .contact-entry__quick-link:first-child {
    padding-left: 0;
  }

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

  .contact-entry__quick-link > span:last-child {
    display: none;
  }
}

@media (max-width: 680px) {
  .contact-entry {
    padding-bottom: 34px;
  }

  .contact-entry::after,
  .contact-entry__backdrop {
    height: 400px;
  }

  .contact-entry::after {
    background:
      linear-gradient(90deg, rgba(5, 12, 24, .82), rgba(5, 12, 24, .42)),
      linear-gradient(0deg, rgba(5, 12, 24, .62), rgba(5, 12, 24, .08) 54%, rgba(5, 12, 24, .24));
  }

  .contact-entry__backdrop img {
    object-position: 43% center;
  }

  .contact-entry__layout {
    gap: 22px;
  }

  .contact-entry__content {
    min-height: calc(400px - var(--header-height));
    padding: 30px 0 24px;
  }

  .contact-breadcrumb {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .contact-entry__kicker {
    margin-bottom: 10px;
  }

  .contact-entry h1 {
    max-width: 340px;
    margin-bottom: 0;
    line-height: 1.03;
  }

  .contact-entry__lead,
  .contact-entry__quick,
  .contact-entry__hours {
    display: none;
  }

  .contact-form-panel {
    width: 100%;
    padding: 22px 18px;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(5, 12, 24, .16);
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form__actions {
    align-items: stretch;
    gap: 8px;
  }

  .contact-form__actions .btn {
    flex: 1 1 0;
    padding-inline: 10px;
    font-size: clamp(11px, 3vw, 13px);
  }
}

@media (max-width: 380px) {
  .contact-form__actions {
    gap: 6px;
  }

  .contact-form__actions .btn {
    padding-inline: 7px;
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-field__control,
  .contact-entry__quick-link > span:last-child {
    transition: none;
  }
}

/* Privacy Policy */
.privacy-page {
  background: var(--bg-soft);
}

.privacy-hero {
  position: relative;
  overflow: clip;
  padding: calc(var(--header-height) + clamp(68px, 7vw, 104px)) 0 clamp(68px, 7vw, 96px);
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 22%, rgba(30, 94, 192, .28), transparent 31%),
    radial-gradient(circle at 14% 86%, rgba(210, 20, 4, .16), transparent 30%),
    linear-gradient(128deg, #070c15 0%, #0d1727 58%, #162238 100%);
}

.privacy-hero::before,
.privacy-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.privacy-hero::before {
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.privacy-hero::after {
  width: min(36vw, 520px);
  aspect-ratio: 1;
  right: -8vw;
  bottom: -48%;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(255, 255, 255, .025),
    0 0 0 104px rgba(255, 255, 255, .018);
}

.privacy-hero__container {
  position: relative;
  z-index: 1;
}

.privacy-hero .company-breadcrumb {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.privacy-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: #fff;
  font-size: var(--hero-title-size);
  line-height: 1.02;
  text-wrap: balance;
}

.privacy-hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(238, 244, 252, .84);
  font-size: clamp(16px, 1.16vw, 19px);
  line-height: 1.72;
}

.privacy-hero__updated {
  margin: 22px 0 0;
  color: rgba(238, 244, 252, .58);
  font-size: 13px;
  font-weight: 700;
}

.privacy-content {
  padding: clamp(68px, 7.5vw, 104px) 0 clamp(82px, 9vw, 128px);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: color-mix(in oklab, var(--surface-solid) 96%, transparent);
  box-shadow: 0 18px 48px rgba(5, 12, 24, .07);
}

.privacy-toc__title {
  margin: 0 0 14px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 15px;
}

.privacy-toc nav {
  display: grid;
}

.privacy-toc a {
  position: relative;
  padding: 9px 0 9px 16px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
  transition: color .2s ease, padding-left .2s ease;
}

.privacy-toc a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--brand) 78%, transparent);
  transform: translateY(-50%);
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
  padding-left: 20px;
  color: var(--brand-text);
}

.privacy-article {
  min-width: 0;
  max-width: 900px;
}

.privacy-intro {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(50px, 6vw, 76px);
  padding: clamp(24px, 3vw, 34px);
  border-left: 4px solid var(--brand);
  border-radius: 0 16px 16px 0;
  background: var(--surface-solid);
  box-shadow: 0 18px 48px rgba(5, 12, 24, .06);
}

.privacy-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.78;
}

.privacy-block {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  scroll-margin-top: calc(var(--header-height) + 26px);
  padding: clamp(32px, 4.5vw, 52px) 0;
  border-top: 1px solid var(--border);
}

.privacy-block__number {
  margin: 4px 0 0;
  color: color-mix(in oklab, var(--brand) 76%, var(--text-muted));
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: .08em;
}

.privacy-block h2,
.privacy-contact h2 {
  margin: 0 0 var(--space-title-copy);
  color: var(--text);
  font-size: var(--type-section-title);
  line-height: var(--type-section-title-line);
  text-wrap: var(--type-section-wrap);
}

.privacy-block p,
.privacy-block li,
.privacy-contact p {
  color: var(--text-muted);
  font-size: clamp(15px, .98vw, 17px);
  line-height: 1.76;
}

.privacy-block p {
  margin: 0 0 16px;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-block ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 0;
  list-style: none;
}

.privacy-block li {
  position: relative;
  padding-left: 22px;
}

.privacy-block li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px color-mix(in oklab, var(--brand) 12%, transparent);
}

.privacy-block--highlight {
  margin: 18px 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--border));
  border-radius: 18px;
  background: color-mix(in oklab, var(--surface-solid) 94%, var(--brand) 6%);
  box-shadow: 0 20px 58px rgba(5, 12, 24, .07);
}

.privacy-contact {
  scroll-margin-top: calc(var(--header-height) + 26px);
  margin-top: clamp(36px, 5vw, 64px);
  padding: clamp(28px, 4.5vw, 48px);
  border-radius: 20px;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--surface-solid) 95%, var(--brand) 5%), var(--surface-solid));
  border: 1px solid var(--border);
  box-shadow: 0 22px 64px rgba(5, 12, 24, .08);
}

.privacy-contact > p:not(.kicker):not(.privacy-contact__address) {
  max-width: 720px;
  margin: 0 0 22px;
}

.privacy-contact__email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-solid);
  color: var(--text);
  font-family: var(--font-title);
  overflow-wrap: anywhere;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.privacy-contact__email:hover,
.privacy-contact__email:focus-visible {
  border-color: color-mix(in oklab, var(--brand) 54%, var(--border));
  color: var(--brand-text);
  transform: translateY(-2px);
}

.privacy-contact__address {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.contact-form__privacy {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 11.5px;
  line-height: 1.52;
}

.contact-form__privacy a {
  color: var(--text);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: color-mix(in oklab, var(--brand) 52%, transparent);
  text-underline-offset: 3px;
}

.contact-form__privacy a:hover,
.contact-form__privacy a:focus-visible {
  color: var(--brand-text);
}

@media (max-width: 980px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .privacy-toc {
    position: static;
  }

  .privacy-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}

@media (max-width: 680px) {
  .privacy-hero {
    padding: calc(var(--header-height) + 46px) 0 54px;
  }

  .privacy-hero .company-breadcrumb {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .privacy-hero__lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .privacy-hero__updated {
    margin-top: 18px;
    font-size: 12px;
  }

  .privacy-content {
    padding: 48px 0 78px;
  }

  .privacy-toc {
    padding: 18px;
    border-radius: 14px;
  }

  .privacy-toc nav {
    grid-template-columns: 1fr;
  }

  .privacy-block {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 34px 0;
  }

  .privacy-block__number {
    margin: 0;
  }

  .privacy-block--highlight {
    margin: 12px 0;
    padding: 24px 20px;
  }

  .privacy-intro,
  .privacy-contact {
    padding: 22px 20px;
    border-radius: 14px;
  }

  .privacy-contact__email {
    width: 100%;
    justify-content: space-between;
  }

  .contact-form__privacy {
    margin-top: 12px;
    font-size: 10.75px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-toc a,
  .privacy-contact__email {
    transition: none;
  }
}

/* Website Inquiry form states */
.contact-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form__body.is-hidden,
.contact-form__success:not(.is-visible) {
  display: none;
}

.contact-form__feedback {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  border: 1px solid color-mix(in oklab, var(--brand) 34%, var(--border));
  border-radius: 10px;
  color: color-mix(in oklab, var(--brand) 84%, var(--text));
  background: color-mix(in oklab, var(--brand) 8%, var(--surface));
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.contact-form__feedback.is-visible {
  display: block;
}

.contact-form__actions .btn {
  flex: 1 1 100%;
  justify-content: center;
}

.contact-form__actions .btn:disabled {
  cursor: wait;
  opacity: .68;
}

.contact-form__success {
  min-height: 100%;
  padding: clamp(10px, 2vw, 24px) 0;
  text-align: center;
}

.contact-form__success.is-visible {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
}

.contact-form__success:focus {
  outline: none;
}

.contact-form__success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-2);
  box-shadow: 0 12px 28px color-mix(in oklab, var(--brand-2) 28%, transparent);
  font-size: 28px;
  font-weight: 800;
}

.contact-form__success .kicker {
  margin: 2px 0 0;
}

.contact-form__success h2 {
  max-width: 500px;
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.contact-form__success > p:not(.kicker) {
  max-width: 480px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-form__reference {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid color-mix(in oklab, var(--brand-2) 26%, var(--border));
  border-radius: 10px;
  color: var(--text);
  background: color-mix(in oklab, var(--brand-2) 7%, var(--surface));
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: .04em;
}

.contact-form__success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.contact-form__success-actions .btn {
  min-width: min(100%, 210px);
  justify-content: center;
}

@media (max-width: 680px) {
  .contact-form__success {
    padding: 8px 0;
  }

  .contact-form__success-actions {
    flex-direction: column;
  }

  .contact-form__success-actions .btn {
    width: 100%;
  }
}

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