:root {
  --navy: #10284f;
  --navy-deep: #07172d;
  --blue: #2a6bb7;
  --sky: #e8f2ff;
  --gold: #c9942b;
  --gold-soft: #f8ead0;
  --ink: #122033;
  --muted: #65748a;
  --line: rgba(16, 40, 79, 0.14);
  --surface: #ffffff;
  --page: #f5f7fa;
  --shadow: 0 24px 80px rgba(7, 23, 45, 0.16);
  --radius: 8px;
  --section-pad: clamp(46px, 6.5vw, 88px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

html[lang="th"] body {
  font-family: Tahoma, "Leelawadee UI", "Noto Sans Thai", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 246, 248, 0.88));
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: rgba(245, 247, 250, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 50px rgba(7, 23, 45, 0.1);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 90ms linear;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--surface);
  border: 1px solid rgba(16, 40, 79, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 40, 79, 0.14);
  transform: rotate(45deg);
}

.brand-mark span {
  position: absolute;
  width: 25px;
  height: 5px;
  background: var(--blue);
  border-radius: 999px;
}

.brand-mark span:nth-child(1) {
  transform: translateY(-9px);
}

.brand-mark span:nth-child(2) {
  width: 31px;
  background: var(--navy);
}

.brand-mark span:nth-child(3) {
  transform: translateY(9px);
  background: #5db0ea;
}

.brand-name {
  font-size: 1.13rem;
}

.site-nav {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  width: max-content;
  justify-self: center;
  padding: 6px;
  color: #30425e;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 40, 79, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 42px rgba(16, 40, 79, 0.08);
  font-size: 0.86rem;
  font-weight: 780;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: rgba(232, 242, 255, 0.72);
}

.site-nav a.is-active {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(16, 40, 79, 0.2);
}

.language-toggle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: 82px;
  height: 42px;
  padding: 4px;
  overflow: hidden;
  color: #607087;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 40, 79, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 23, 45, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0;
  -webkit-tap-highlight-color: transparent;
}

.language-toggle-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--navy);
  border-radius: 5px;
  box-shadow: 0 7px 18px rgba(7, 23, 45, 0.2);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), background-color 180ms ease;
}

.language-toggle[data-language="th"] .language-toggle-thumb {
  background: var(--blue);
  transform: translateX(100%);
}

.language-toggle-option {
  position: relative;
  z-index: 1;
  display: grid;
  height: 32px;
  place-items: center;
  transition: color 160ms ease;
}

.language-toggle-option.is-active {
  color: #ffffff;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(42, 107, 183, 0.45);
  box-shadow: 0 12px 30px rgba(7, 23, 45, 0.13);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.header-cta {
  gap: 9px;
  padding: 0 18px;
  color: var(--navy-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(201, 148, 43, 0.42);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.header-cta span {
  width: 8px;
  height: 8px;
  background: #15a66a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(21, 166, 106, 0.12);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #fff2d8;
  box-shadow: 0 14px 32px rgba(201, 148, 43, 0.2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 112px);
  padding: clamp(30px, 5vw, 64px) clamp(18px, 4vw, 54px) 18px;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 23, 45, 0.9) 0%, rgba(7, 23, 45, 0.72) 44%, rgba(7, 23, 45, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 23, 45, 0.28), rgba(7, 23, 45, 0.72));
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.64fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin: 0 0 22px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 12px 38px rgba(16, 40, 79, 0.08);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.95rem, 5.4vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.68;
}

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

.btn {
  min-width: 188px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(16, 40, 79, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy-deep);
}

.btn-secondary {
  color: var(--navy);
  background: var(--surface);
  border-color: rgba(16, 40, 79, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--blue);
}

.hero .btn-primary {
  color: var(--navy-deep);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #edf5ff;
}

.hero .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-facebook {
  gap: 10px;
  color: #ffffff;
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 38px rgba(24, 119, 242, 0.24);
}

.btn-facebook:hover,
.btn-facebook:focus-visible {
  background: #0f63d3;
}

.btn-facebook span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #1877f2;
  background: #ffffff;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

.hero .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--gold);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  padding: 1px;
  margin: 26px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(7, 23, 45, 0.58);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 780;
}

.hero-command {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.command-top,
.command-contact {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.command-top span,
.route-card span,
.command-contact span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.command-top strong,
.command-contact strong {
  color: #ffffff;
}

.route-card {
  padding: 18px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
}

.route-card strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-deep);
  font-size: 1.26rem;
}

.route-card p {
  margin: 14px 0 0;
  color: #4a5b72;
  line-height: 1.55;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.route-grid div {
  padding: 14px;
  background: rgba(7, 23, 45, 0.62);
}

.route-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
}

.route-grid strong,
.route-grid small {
  display: block;
}

.route-grid strong {
  margin-top: 8px;
  color: #ffffff;
}

.route-grid small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.35;
}

.command-contact {
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.command-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 760;
}

.command-links {
  display: grid;
  gap: 5px;
  justify-items: end;
}

.command-links a:last-child {
  color: #ffffff;
}

.service-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  width: min(1180px, 100%);
  padding: 12px 0 0;
  margin: clamp(18px, 3vw, 34px) auto 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-strip::-webkit-scrollbar {
  display: none;
}

.service-strip span {
  flex: 0 0 auto;
  padding: 10px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.proof-strip {
  padding: 18px clamp(18px, 4vw, 54px) 14px;
  background: #eef3f8;
}

.proof-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: rgba(16, 40, 79, 0.12);
  border: 1px solid rgba(16, 40, 79, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(16, 40, 79, 0.08);
}

.proof-shell div {
  min-height: 104px;
  padding: 17px 18px;
  background: #ffffff;
}

.proof-shell span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-shell strong {
  display: block;
  margin-top: 8px;
  color: var(--navy-deep);
  font-size: 0.93rem;
  line-height: 1.38;
}

.journey-band {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 clamp(30px, 4vw, 46px);
  margin: 0 auto;
  background: transparent;
  border: 0;
}

.journey-band figure {
  position: relative;
  min-height: 238px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 40, 79, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(16, 40, 79, 0.1);
}

.journey-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 700ms ease;
}

.journey-band figure:hover img {
  transform: scale(1.035);
}

.journey-band figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px;
  color: #ffffff;
  background: rgba(7, 23, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.journey-band span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.journey-band strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.25;
}

.services-overview {
  scroll-margin-top: 86px;
  padding: clamp(42px, 5.4vw, 68px) clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
  border-top: 1px solid rgba(16, 40, 79, 0.1);
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.66fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(24px, 3.4vw, 38px);
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: #4a5b72;
  font-size: 1rem;
  line-height: 1.75;
}

.eyebrow-dark {
  grid-column: 1 / -1;
  width: max-content;
  margin-bottom: 0;
  background: var(--navy);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--gold);
  box-shadow: none;
}

.service-catalog {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 286px;
  padding: clamp(20px, 2.4vw, 26px);
  overflow: hidden;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(16, 40, 79, 0.07);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.service-card-featured {
  grid-row: span 2;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(16, 40, 79, 0.98), rgba(7, 23, 45, 0.96));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 84px rgba(7, 23, 45, 0.2);
}

.service-card-featured::after {
  display: none;
}

.card-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--navy-deep);
  font-size: clamp(1.3rem, 2vw, 1.82rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.service-card p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #5b6a7f;
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-card-featured h3,
.service-card-featured p {
  color: #ffffff;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-list.compact {
  grid-template-columns: 1fr;
  gap: 8px;
}

.service-list li {
  display: flex;
  min-height: 35px;
  align-items: center;
  gap: 9px;
  color: #273a55;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.25;
}

.service-list li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  content: "";
  background: var(--blue);
  border-radius: 2px;
}

.service-card-featured .service-list li {
  color: rgba(255, 255, 255, 0.92);
}

.service-card-featured .service-list li::before {
  background: var(--gold);
}

.featured-note {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 720;
}

.materials-section {
  position: relative;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #07172d 0%, #10284f 58%, #132f58 100%);
  border-top: 1px solid rgba(16, 40, 79, 0.14);
}

.materials-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 148, 43, 0.76), transparent);
}

.materials-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.96fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
}

.materials-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.materials-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.materials-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.materials-section .btn-primary {
  color: var(--navy-deep);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.materials-section .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}

.materials-showcase {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.material-feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.material-feature-wide {
  min-height: 480px;
  margin-top: 42px;
}

.material-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 700ms ease;
}

.material-feature:hover img {
  transform: scale(1.035);
}

.material-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(7, 23, 45, 0.88) 100%);
  pointer-events: none;
}

.material-feature div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  padding: 15px;
  color: #ffffff;
  background: rgba(7, 23, 45, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.material-feature span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.material-feature strong {
  display: block;
  margin-top: 7px;
  font-size: 0.98rem;
  line-height: 1.42;
}

.scenario-section {
  padding: clamp(40px, 5.2vw, 66px) clamp(18px, 4vw, 54px);
  background: #ffffff;
  border-top: 1px solid rgba(16, 40, 79, 0.1);
}

.scenario-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.scenario-visual {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  grid-template-rows: 270px auto;
  background: #f4f7fb;
  border: 1px solid rgba(16, 40, 79, 0.12);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(16, 40, 79, 0.1);
}

.scenario-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.scenario-note {
  position: static;
  padding: 18px 20px;
  color: #ffffff;
  background: var(--navy);
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.scenario-note span,
.scenario-list span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scenario-note strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.24;
}

.scenario-content h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3.4vw, 3.18rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.scenario-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: #4a5b72;
  font-size: 1rem;
  line-height: 1.72;
}

.scenario-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.scenario-list article {
  position: relative;
  padding: 17px 18px 17px 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 40, 79, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 40, 79, 0.06);
}

.scenario-list article::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  content: "";
  background: var(--gold);
}

.scenario-list strong {
  display: block;
  margin-top: 7px;
  color: var(--navy-deep);
  font-size: 0.96rem;
  line-height: 1.42;
}

.process-section {
  position: relative;
  scroll-margin-top: 86px;
  padding: clamp(42px, 5.4vw, 68px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #061529 0%, #10284f 64%, #173862 100%);
}

.process-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 148, 43, 0.78), transparent);
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.process-copy,
.intake-panel,
.process-steps li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.process-copy {
  display: flex;
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
}

.eyebrow-light {
  width: max-content;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--gold);
  box-shadow: none;
}

.process-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 3.05vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.process-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn-gold {
  color: var(--navy-deep);
  background: var(--gold-soft);
  border-color: rgba(201, 148, 43, 0.5);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #ffe5ad;
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  min-height: 170px;
  padding: clamp(18px, 2.2vw, 24px);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: none;
}

.process-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: var(--gold-soft);
  border: 1px solid rgba(201, 148, 43, 0.35);
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 950;
}

.process-steps h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.process-steps p {
  grid-column: 2;
  margin: 8px 0 0;
  color: #53637a;
  font-size: 0.95rem;
  line-height: 1.58;
}

.intake-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(210px, 0.26fr) minmax(0, 1fr) minmax(190px, 0.24fr);
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.14);
}

.intake-panel h3 {
  grid-column: 1;
  margin: 8px 0 0;
  color: var(--navy-deep);
  font-size: clamp(1.18rem, 1.7vw, 1.56rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.intake-panel .card-kicker {
  grid-column: 1;
}

.intake-panel ul {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intake-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #30425c;
  font-size: 0.9rem;
  font-weight: 740;
  line-height: 1.4;
}

.intake-panel li::before {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  flex: 0 0 auto;
  content: "";
  background: var(--blue);
  border-radius: 2px;
}

.intake-contact {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  gap: 4px;
  padding: 16px;
  margin-top: 0;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px;
}

.intake-contact strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.intake-contact span {
  font-size: 1.12rem;
  font-weight: 900;
}

.reviews-section {
  scroll-margin-top: 86px;
  padding: clamp(42px, 5.2vw, 66px) clamp(18px, 4vw, 54px) var(--section-pad);
  background: linear-gradient(180deg, #eef3f8 0%, #ffffff 100%);
  border-top: 1px solid rgba(16, 40, 79, 0.12);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: clamp(22px, 5vw, 74px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.reviews-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.reviews-heading p:not(.eyebrow) {
  margin: 0;
  color: #4a5b72;
  font-size: 1rem;
  line-height: 1.75;
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 248px;
  padding: clamp(20px, 2.4vw, 26px);
  overflow: hidden;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(16, 40, 79, 0.08);
}

.review-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.review-card-large {
  min-height: 248px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(16, 40, 79, 0.98), rgba(7, 23, 45, 0.96));
  border-color: rgba(255, 255, 255, 0.12);
}

.review-card-large::after {
  display: none;
}

.review-score {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
}

.review-score strong {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  color: var(--navy-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(201, 148, 43, 0.38);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 950;
}

.review-score span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: #31445f;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.review-card-large p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 1.5vw, 1.26rem);
  line-height: 1.7;
}

.review-card footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid rgba(16, 40, 79, 0.12);
}

.review-card-large footer {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.review-card footer strong {
  color: var(--navy-deep);
  font-size: 0.98rem;
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.88rem;
}

.review-card-large footer strong {
  color: #ffffff;
}

.review-card-large footer span {
  color: rgba(255, 255, 255, 0.68);
}

.review-contact-card {
  color: #ffffff;
  background: linear-gradient(145deg, #173862, #07172d);
  border-color: rgba(255, 255, 255, 0.14);
}

.review-contact-card h3 {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.6vw, 1.52rem);
  line-height: 1.14;
}

.review-contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.review-contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
}

.review-contact-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--navy-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(201, 148, 43, 0.45);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.review-contact-actions a:last-child {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.faq-section {
  scroll-margin-top: 86px;
  padding: var(--section-pad) clamp(18px, 4vw, 54px) clamp(34px, 4.2vw, 54px);
  background: #ffffff;
  border-top: 1px solid rgba(16, 40, 79, 0.1);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.faq-copy h2 {
  max-width: 650px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.faq-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  color: #4a5b72;
  line-height: 1.72;
}

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

.faq-list details {
  background: rgba(245, 247, 250, 0.9);
  border: 1px solid rgba(16, 40, 79, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(16, 40, 79, 0.06);
}

.faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  content: "+";
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 8px;
  font-weight: 950;
}

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

.faq-list p {
  padding: 0 20px 20px;
  margin: 0;
  color: #53637a;
  line-height: 1.65;
}

.closing-cta {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 54px);
  color: #ffffff;
  background: linear-gradient(135deg, #10284f 0%, #07172d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.closing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.closing-cta h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.closing-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.closing-actions {
  display: grid;
  gap: 10px;
}

.privacy-hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  color: #ffffff;
  background: var(--navy-deep);
}

.privacy-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 23, 45, 0.92) 0%, rgba(7, 23, 45, 0.74) 52%, rgba(7, 23, 45, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 23, 45, 0.16), rgba(7, 23, 45, 0.7));
}

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

.privacy-hero .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--gold);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.privacy-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.72;
}

.privacy-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  padding: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.privacy-quick article {
  min-height: 132px;
  padding: 18px;
  background: rgba(7, 23, 45, 0.62);
  backdrop-filter: blur(14px);
}

.privacy-quick span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.privacy-quick strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.45;
}

.privacy-content {
  padding: var(--section-pad) clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, #eef3f8 0%, #ffffff 100%);
  border-top: 1px solid rgba(16, 40, 79, 0.12);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.privacy-index {
  position: sticky;
  top: 96px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(16, 40, 79, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(16, 40, 79, 0.08);
}

.privacy-index nav {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.privacy-index a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  color: #30425e;
  background: rgba(245, 247, 250, 0.88);
  border: 1px solid rgba(16, 40, 79, 0.1);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 820;
}

.privacy-index a:hover,
.privacy-index a:focus-visible {
  color: var(--navy-deep);
  background: var(--sky);
}

.privacy-document {
  display: grid;
  gap: 14px;
}

.privacy-document section {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 40, 79, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(16, 40, 79, 0.08);
  scroll-margin-top: 96px;
}

.privacy-document h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1.55rem, 2.8vw, 2.42rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.privacy-document p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #4a5b72;
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.privacy-contact-card a,
.privacy-contact-card span {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 0 14px;
  color: var(--navy-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(201, 148, 43, 0.38);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.privacy-contact-card a:nth-child(2),
.privacy-contact-card span {
  color: #ffffff;
  background: var(--navy);
  border-color: rgba(16, 40, 79, 0.2);
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(135deg, #07172d 0%, #10284f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, 100%);
  padding: clamp(42px, 7vw, 78px) clamp(18px, 4vw, 54px);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: max-content;
}

.site-footer .brand-mark {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.footer-social-facebook {
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-social-facebook:hover,
.footer-social-facebook:focus-visible {
  background: #0f63d3;
}

.footer-social span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--navy-deep);
  background: #ffffff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.footer-social-facebook span {
  color: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.84fr 1fr 1.08fr;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.footer-grid > div {
  min-height: 240px;
  padding: clamp(20px, 3vw, 26px);
  background: rgba(7, 23, 45, 0.54);
  backdrop-filter: blur(16px);
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid a,
.footer-grid span,
.footer-grid address {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-style: normal;
  font-weight: 690;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-map:hover,
.footer-map:focus-visible {
  color: #ffffff;
}

.footer-map {
  display: inline-flex;
  margin-top: 16px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  width: min(1180px, 100%);
  padding: 18px clamp(18px, 4vw, 54px) 24px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 720;
}

.footer-bottom a {
  color: #ffffff;
}

.footer-credit {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 820;
}

.footer-credit a {
  margin-left: 4px;
  color: var(--gold-soft);
  font-weight: 950;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #ffffff;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom-links a {
  font-weight: 850;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 18;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  cursor: pointer;
  pointer-events: none;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(7, 23, 45, 0.26);
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, background-color 160ms ease;
}

.back-to-top.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--blue);
  transform: translateY(-2px) scale(1);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mobile-contact-bar {
  display: none;
}

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

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

@media (max-width: 1320px) and (min-width: 1181px) {
  .site-header {
    gap: 12px;
  }

  .site-nav {
    font-size: 0.82rem;
  }

  .site-nav a {
    padding-right: 8px;
    padding-left: 8px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 10px;
    justify-content: stretch;
  }

  .nav-toggle {
    display: block;
    grid-column: 4;
    grid-row: 1;
  }

  .language-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: auto;
    justify-self: stretch;
    justify-items: stretch;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 8px;
  }

  .site-nav.is-open a::after {
    content: ">";
    color: var(--gold);
    font-weight: 900;
    margin-left: 16px;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible {
    background: var(--sky);
  }

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

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

  .journey-band {
    grid-template-columns: 1fr;
  }

  .journey-band figure {
    min-height: 260px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
  }

  .scenario-shell {
    grid-template-columns: 1fr;
  }

  .scenario-visual {
    min-height: 0;
  }

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

  .service-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .materials-shell {
    grid-template-columns: 1fr;
  }

  .materials-showcase {
    max-width: 820px;
  }

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

  .process-copy {
    grid-column: auto;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
  }

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

  .review-card-large {
    min-height: auto;
  }

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

  .closing-shell {
    grid-template-columns: 1fr;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

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

  .privacy-index {
    position: static;
  }

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 68px;
    gap: 8px;
    padding: 12px 16px;
  }

  .language-toggle {
    width: 74px;
    height: 40px;
    font-size: 0.68rem;
  }

  .language-toggle-option {
    height: 30px;
  }

  .brand-name {
    font-size: 1rem;
  }

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

  .hero {
    min-height: auto;
    padding: 22px 16px 14px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.4rem);
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .hero-metrics div {
    padding: 12px 10px;
  }

  .hero-metrics dt {
    font-size: 0.64rem;
  }

  .hero-metrics dd {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .hero-command {
    display: none;
  }

  .proof-strip {
    padding: 14px 16px 12px;
  }

  .proof-shell {
    display: flex;
    overflow-x: auto;
    border: 1px solid rgba(16, 40, 79, 0.12);
    border-radius: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .proof-shell::-webkit-scrollbar {
    display: none;
  }

  .proof-shell div {
    flex: 0 0 78vw;
    min-height: 122px;
    padding: 16px;
    scroll-snap-align: start;
  }

  .proof-shell strong {
    margin-top: 6px;
    font-size: 0.92rem;
  }

  .journey-band {
    display: flex;
    gap: 1px;
    width: calc(100% - 32px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .journey-band::-webkit-scrollbar {
    display: none;
  }

  .journey-band figure {
    flex: 0 0 82vw;
    min-height: 218px;
    scroll-snap-align: start;
  }

  .journey-band figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .services-overview {
    padding-top: 38px;
    padding-bottom: 38px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .materials-section {
    padding: 36px 16px;
  }

  .materials-copy h2 {
    font-size: clamp(2rem, 10vw, 2.86rem);
  }

  .materials-actions .btn {
    width: 100%;
  }

  .materials-showcase {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .materials-showcase::-webkit-scrollbar {
    display: none;
  }

  .material-feature,
  .material-feature-wide {
    flex: 0 0 82vw;
    min-height: 430px;
    margin-top: 0;
    scroll-snap-align: start;
  }

  .material-feature div {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px;
  }

  .scenario-section {
    padding: 34px 16px;
  }

  .scenario-visual {
    grid-template-rows: 220px auto;
    min-height: 0;
  }

  .scenario-note {
    padding: 15px;
  }

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

  .scenario-list article {
    padding: 16px 16px 16px 20px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.86rem);
  }

  .service-catalog,
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .service-list {
    margin-top: 22px;
  }

  .process-section {
    padding-top: 38px;
    padding-bottom: 38px;
    padding-right: 16px;
    padding-left: 16px;
  }

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

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

  .process-copy,
  .intake-panel,
  .process-steps li {
    padding: 22px;
  }

  .intake-panel {
    display: block;
  }

  .intake-panel ul {
    margin-top: 20px;
  }

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

  .process-steps li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-steps p {
    grid-column: auto;
  }

  .process-actions .btn {
    width: 100%;
  }

  .reviews-section {
    padding-top: 32px;
    padding-bottom: 38px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .faq-section {
    padding: 38px 16px 28px;
  }

  .faq-copy h2 {
    font-size: clamp(2rem, 10vw, 2.86rem);
  }

  .faq-list summary {
    min-height: 58px;
    padding: 0 16px;
  }

  .faq-list p {
    padding: 0 16px 18px;
  }

  .closing-cta {
    padding: 36px 16px;
  }

  .closing-cta h2 {
    font-size: clamp(2rem, 10vw, 2.86rem);
  }

  .privacy-hero {
    min-height: auto;
    padding: 40px 16px 36px;
  }

  .privacy-hero h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.35rem);
  }

  .privacy-hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .privacy-quick {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
    overflow: hidden;
  }

  .privacy-quick article {
    min-height: 0;
    padding: 14px 16px;
  }

  .privacy-quick strong {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .privacy-content {
    padding: 38px 16px;
  }

  .privacy-index {
    padding: 18px;
  }

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

  .privacy-document section {
    padding: 22px;
    scroll-margin-top: 78px;
  }

  .privacy-document h2 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .privacy-contact-card {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    margin-bottom: 22px;
  }

  .reviews-heading h2 {
    font-size: clamp(2rem, 10vw, 2.86rem);
  }

  .review-board {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
    padding: 22px;
  }

  .review-card p,
  .review-card-large p {
    margin-top: 22px;
    font-size: 1rem;
  }

  .footer-shell {
    padding: 34px 16px;
  }

  .footer-actions,
  .footer-bottom {
    align-items: stretch;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-grid > div {
    min-height: auto;
    padding: 22px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 76px 20px 16px;
    line-height: 1.45;
  }

  .footer-credit {
    justify-content: center;
    width: max-content;
    max-width: 100%;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 19;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(7, 23, 45, 0.26);
    backdrop-filter: blur(18px);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(7, 23, 45, 0.92);
    font-size: 0.88rem;
    font-weight: 900;
  }

  .mobile-contact-bar a:nth-child(2) {
    color: var(--navy-deep);
    background: var(--gold-soft);
  }

  .back-to-top {
    right: 16px;
    bottom: 76px;
    width: 44px;
    height: 44px;
  }
}

/* Cohesive editorial layout */
:root {
  --section-pad: clamp(44px, 5vw, 68px);
  --shadow: 0 18px 54px rgba(7, 23, 45, 0.12);
}

body {
  background: #ffffff;
}

.site-header {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.88);
}

.site-nav {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.hero {
  min-height: 700px;
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: 18px;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(7, 23, 45, 0.94) 0%, rgba(7, 23, 45, 0.8) 48%, rgba(7, 23, 45, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 23, 45, 0.08), rgba(7, 23, 45, 0.72));
}

.hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.99;
}

.hero-lede {
  max-width: 700px;
  line-height: 1.62;
}

.hero-command {
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(7, 23, 45, 0.74);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.command-top {
  display: grid;
  gap: 6px;
  justify-content: stretch;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.command-top strong {
  font-size: 1.15rem;
}

.hero-office {
  padding: 22px 20px;
  margin: 0;
  color: #ffffff;
  font-style: normal;
  background: rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-office span,
.hero-contact-list span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-office strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
}

.hero-office p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-contact-list {
  display: grid;
}

.hero-contact-list a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-contact-list a:hover,
.hero-contact-list a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.hero-contact-list strong {
  min-width: 0;
  color: #ffffff;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.hero-intake-note {
  padding: 16px 20px 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-strip {
  margin-top: clamp(22px, 3vw, 32px);
}

.proof-strip {
  padding: 0 clamp(18px, 4vw, 54px);
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 40, 79, 0.1);
}

.proof-shell {
  gap: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.proof-shell div {
  min-height: 112px;
  padding: 24px 22px;
  border-right: 1px solid rgba(16, 40, 79, 0.12);
}

.proof-shell div:first-child {
  padding-left: 0;
}

.proof-shell div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-shell strong {
  max-width: 230px;
  margin-top: 7px;
  font-size: 0.94rem;
  line-height: 1.42;
}

.services-overview {
  padding: var(--section-pad) clamp(18px, 4vw, 54px);
  background: #ffffff;
  border-top: 0;
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  margin-bottom: clamp(26px, 3.4vw, 40px);
}

.section-heading h2,
.reviews-heading h2,
.faq-copy h2 {
  font-size: clamp(2rem, 3.35vw, 3.2rem);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.reviews-heading p:not(.eyebrow),
.faq-copy p:not(.eyebrow) {
  line-height: 1.62;
}

.service-catalog {
  display: block;
  counter-reset: service;
  border-top: 1px solid rgba(16, 40, 79, 0.2);
}

.service-card,
.service-card-featured {
  display: grid;
  grid-template-columns: 66px minmax(250px, 0.75fr) minmax(380px, 1fr);
  grid-template-rows: auto auto auto auto;
  column-gap: clamp(20px, 3vw, 42px);
  min-height: 0;
  padding: 27px 0;
  color: var(--ink);
  counter-increment: service;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 40, 79, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.service-card::before,
.service-card-featured::before {
  position: static;
  display: block;
  grid-column: 1;
  grid-row: 1 / span 4;
  width: auto;
  height: auto;
  content: "0" counter(service);
  color: var(--blue);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card > .card-kicker {
  grid-column: 2;
  grid-row: 1;
}

.service-card h3 {
  grid-column: 2;
  grid-row: 2;
  margin-top: 9px;
  color: var(--navy-deep);
  font-size: clamp(1.35rem, 2vw, 1.78rem);
}

.service-card p,
.service-card-featured p {
  grid-column: 2;
  grid-row: 3;
  margin-top: 11px;
  color: #53637a;
  line-height: 1.55;
}

.service-card .service-list,
.service-card .service-list.compact {
  grid-column: 3;
  grid-row: 1 / span 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px 18px;
  margin: 0;
}

.service-card .service-list li,
.service-card-featured .service-list li {
  min-height: 30px;
  color: #273a55;
  font-size: 0.88rem;
}

.service-card-featured .service-list li::before {
  background: var(--blue);
}

.service-card .featured-note {
  grid-column: 2;
  grid-row: 4;
  padding-top: 12px;
  margin-top: 14px;
  color: var(--navy);
  border-top: 1px solid rgba(16, 40, 79, 0.14);
  font-size: 0.9rem;
}

.materials-section {
  padding: var(--section-pad) clamp(18px, 4vw, 54px);
  background: #0b213f;
}

.materials-shell {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
}

.materials-copy h2 {
  font-size: clamp(2rem, 3.45vw, 3.25rem);
  line-height: 1.06;
}

.materials-copy p:not(.eyebrow) {
  line-height: 1.62;
}

.material-feature {
  min-height: 470px;
}

.material-feature-wide {
  min-height: 430px;
  margin-top: 30px;
}

.process-section {
  padding: var(--section-pad) clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: #f2f5f8;
}

.process-section::before {
  display: none;
}

.process-shell {
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 74px);
}

.process-copy {
  min-height: 0;
  padding: 0;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.process-copy h2 {
  margin-top: 0;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3.35vw, 3.15rem);
  line-height: 1.05;
}

.process-copy p:not(.eyebrow) {
  color: #53637a;
  line-height: 1.62;
}

.process-steps {
  display: block;
  border-top: 1px solid rgba(16, 40, 79, 0.2);
}

.process-steps li {
  display: grid;
  grid-template-columns: 48px minmax(170px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 19px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 40, 79, 0.16);
  border-radius: 0;
}

.process-steps span {
  width: 40px;
  height: 40px;
  color: var(--navy);
  background: #ffffff;
  border-color: rgba(16, 40, 79, 0.16);
}

.process-steps h3 {
  padding-top: 8px;
  color: var(--navy-deep);
  font-size: 1.12rem;
}

.process-steps p {
  grid-column: 3;
  padding-top: 5px;
  margin: 0;
  color: #53637a;
  line-height: 1.55;
}

.process-actions .btn-secondary {
  color: var(--navy);
  background: transparent;
}

.intake-panel {
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr) minmax(180px, 0.24fr);
  gap: 22px;
  padding: 22px 24px;
  color: #ffffff;
  background: var(--navy-deep);
  border-color: rgba(16, 40, 79, 0.2);
  box-shadow: none;
}

.intake-panel h3 {
  color: #ffffff;
}

.intake-panel li {
  color: rgba(255, 255, 255, 0.8);
}

.intake-panel li::before {
  background: var(--gold);
}

.intake-contact {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.reviews-section {
  padding: var(--section-pad) clamp(18px, 4vw, 54px);
  background: #ffffff;
  border-top: 0;
}

.reviews-heading {
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.48fr);
  gap: clamp(24px, 5vw, 68px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.review-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: 0 clamp(28px, 5vw, 68px);
  border-top: 1px solid rgba(16, 40, 79, 0.2);
}

.review-feature {
  display: flex;
  min-height: 390px;
  padding: 28px;
  flex-direction: column;
  color: #ffffff;
  background: var(--navy-deep);
}

.review-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-feature blockquote,
.review-row blockquote {
  margin: 0;
}

.review-feature blockquote {
  display: flex;
  flex: 1;
  align-items: center;
}

.review-feature blockquote p {
  margin: 24px 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 760;
  line-height: 1.16;
}

.review-feature footer {
  display: flex;
  gap: 13px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.review-feature footer div {
  display: grid;
  gap: 3px;
}

.review-feature footer strong {
  color: #ffffff;
}

.review-feature footer span:not(.review-avatar) {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(201, 148, 43, 0.36);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-list {
  display: grid;
}

.review-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid rgba(16, 40, 79, 0.14);
}

.review-row blockquote p {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.05rem;
  font-weight: 720;
  line-height: 1.45;
}

.review-row > strong {
  color: #53637a;
  font-size: 0.86rem;
  text-align: right;
}

.review-source {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  color: #53637a;
  border-bottom: 1px solid rgba(16, 40, 79, 0.2);
  font-size: 0.88rem;
  font-weight: 760;
}

.review-source a {
  color: #1877f2;
  font-weight: 900;
}

.faq-section {
  padding: var(--section-pad) clamp(18px, 4vw, 54px);
  background: #f2f5f8;
  border-top: 0;
}

.faq-list {
  border-top: 1px solid rgba(16, 40, 79, 0.2);
}

.faq-list details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 40, 79, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.faq-list summary {
  min-height: 68px;
  padding: 0;
}

.faq-list p {
  max-width: 720px;
  padding: 0 54px 20px 0;
}

.closing-cta {
  padding: var(--section-pad) clamp(18px, 4vw, 54px);
  background: var(--navy-deep);
}

.closing-cta h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  line-height: 1.04;
}

.site-footer {
  background: #091a32;
}

.footer-shell {
  padding-top: 52px;
  padding-bottom: 44px;
}

.footer-grid {
  gap: clamp(24px, 4vw, 48px);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-grid > div {
  min-height: 0;
  padding: 4px 0 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
}

.footer-grid h2 {
  margin-top: 18px;
}

@media (max-width: 960px) {
  .hero-shell,
  .materials-shell,
  .process-shell,
  .reviews-heading,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .hero-command {
    max-width: 640px;
  }

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

  .proof-shell div:nth-child(2) {
    border-right: 0;
  }

  .proof-shell div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 40, 79, 0.12);
  }

  .service-card,
  .service-card-featured {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .service-card::before,
  .service-card-featured::before {
    grid-row: 1 / span 5;
  }

  .service-card .service-list,
  .service-card .service-list.compact {
    grid-column: 2;
    grid-row: 4;
    margin-top: 18px;
  }

  .service-card .featured-note {
    grid-column: 2;
    grid-row: 5;
  }

  .materials-showcase {
    max-width: 780px;
  }

  .process-copy {
    max-width: 700px;
  }

  .review-board {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .hero {
    min-height: auto;
    padding: 30px 16px 14px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 1;
  }

  .hero-lede {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-command {
    display: none;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-actions .btn {
    min-height: 42px;
  }

  .hero-metrics {
    margin-top: 16px;
  }

  .service-strip {
    margin-top: 18px;
  }

  .proof-strip {
    padding: 0 16px;
  }

  .proof-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .proof-shell div {
    min-height: 118px;
    padding: 17px 14px;
    border-right: 1px solid rgba(16, 40, 79, 0.12);
    scroll-snap-align: none;
  }

  .proof-shell div:first-child {
    padding-left: 0;
  }

  .proof-shell div:nth-child(2) {
    padding-right: 0;
  }

  .proof-shell div:nth-child(3) {
    padding-left: 0;
  }

  .proof-shell strong {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .services-overview,
  .materials-section,
  .process-section,
  .reviews-section,
  .faq-section,
  .closing-cta {
    padding: 36px 16px;
  }

  .section-heading,
  .reviews-heading {
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .reviews-heading h2,
  .faq-copy h2,
  .materials-copy h2,
  .process-copy h2,
  .closing-cta h2 {
    font-size: clamp(2rem, 9.4vw, 2.55rem);
  }

  .service-card,
  .service-card-featured {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 10px;
    padding: 22px 0;
  }

  .service-card::before,
  .service-card-featured::before {
    font-size: 0.72rem;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .service-card p,
  .service-card-featured p {
    font-size: 0.92rem;
  }

  .service-card .service-list,
  .service-card .service-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 12px;
    margin-top: 16px;
  }

  .service-card .service-list li,
  .service-card-featured .service-list li {
    min-height: 28px;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .materials-showcase {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .material-feature,
  .material-feature-wide {
    flex: 0 0 80vw;
    min-height: 410px;
    margin-top: 0;
    scroll-snap-align: start;
  }

  .process-shell {
    gap: 28px;
  }

  .process-actions .btn {
    width: 100%;
  }

  .process-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 0;
  }

  .process-steps h3 {
    padding-top: 7px;
  }

  .process-steps p {
    grid-column: 2;
    padding-top: 0;
  }

  .intake-panel {
    display: block;
    padding: 20px;
  }

  .intake-panel ul {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .intake-contact {
    margin-top: 18px;
  }

  .review-board {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .review-feature {
    min-height: 300px;
    padding: 22px;
  }

  .review-feature blockquote p {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .review-list {
    border-top: 1px solid rgba(16, 40, 79, 0.16);
  }

  .review-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    min-height: 92px;
    padding: 14px 0;
  }

  .review-row > strong {
    grid-column: 2;
    margin-top: -6px;
    text-align: left;
  }

  .review-source {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
  }

  .faq-list summary {
    min-height: 62px;
    padding: 0;
  }

  .faq-list p {
    padding: 0 42px 18px 0;
  }

  .footer-shell {
    padding: 36px 16px 30px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div {
    min-height: 0;
    padding: 0;
  }

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

@media (max-width: 360px) {
  .service-card .service-list,
  .service-card .service-list.compact {
    grid-template-columns: 1fr;
  }
}

/* About, office details and service intake */
.about-section {
  padding: var(--section-pad) clamp(18px, 4vw, 54px);
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 40, 79, 0.1);
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: var(--radius);
  box-shadow: 0 24px 68px rgba(7, 23, 45, 0.18);
}

.about-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 23, 45, 0.04) 32%, rgba(7, 23, 45, 0.9) 100%);
  pointer-events: none;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.about-visual-note {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 5px;
  color: #ffffff;
}

.about-visual-note span {
  color: #f2c96f;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-visual-note strong {
  max-width: 420px;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.16;
}

.about-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.about-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4a5b72;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.72;
}

.about-facts {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.9fr;
  margin: 28px 0 0;
  border-top: 1px solid rgba(16, 40, 79, 0.14);
  border-bottom: 1px solid rgba(16, 40, 79, 0.14);
}

.about-facts div {
  min-width: 0;
  padding: 18px 18px 18px 0;
}

.about-facts div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(16, 40, 79, 0.14);
}

.about-facts dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 7px 0 0;
  color: var(--navy-deep);
  font-size: 0.96rem;
  font-weight: 820;
  line-height: 1.35;
}

.about-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-actions .btn {
  min-width: 170px;
}

.disclaimer-section {
  padding: clamp(36px, 5vw, 58px) clamp(18px, 4vw, 54px);
  background: #eef3f8;
  border-top: 1px solid rgba(16, 40, 79, 0.1);
}

.disclaimer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.disclaimer-shell .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.disclaimer-shell h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.03;
}

.disclaimer-copy {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.disclaimer-copy p {
  margin: 0;
  color: #475970;
  font-size: 1rem;
  line-height: 1.68;
}

.disclaimer-copy p + p {
  padding-top: 14px;
  border-top: 1px solid rgba(16, 40, 79, 0.14);
}

.footer-hours {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.55;
}

.help-dock {
  position: fixed;
  bottom: 22px;
  left: 50%;
  z-index: 18;
  display: grid;
  width: min(390px, calc(100% - 32px));
  gap: 8px;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 200ms ease, visibility 180ms ease;
}

.help-dock.is-footer-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  visibility: hidden;
}

.help-trigger,
.help-panel {
  pointer-events: auto;
}

.help-trigger {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 22px;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 6px 12px 6px 8px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 40, 79, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(7, 23, 45, 0.2);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 880;
  letter-spacing: 0;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.help-trigger-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 950;
}

.help-trigger-chevron {
  justify-self: center;
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.help-dock.is-open .help-trigger-chevron {
  transform: rotate(45deg);
}

.help-panel {
  padding: 18px;
  color: #ffffff;
  background: rgba(7, 23, 45, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 26px 72px rgba(7, 23, 45, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.985);
  transform-origin: bottom center;
  visibility: hidden;
  transition: opacity 170ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1), visibility 170ms ease;
}

.help-dock.is-open .help-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.help-panel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 14px;
  align-items: start;
}

.help-panel-heading div {
  display: grid;
  gap: 4px;
}

.help-panel-heading span {
  color: #f2c96f;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.help-panel-heading strong {
  font-size: 1.14rem;
  line-height: 1.25;
}

.help-panel-heading button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
}

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

.help-options button {
  min-height: 44px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.help-options button:hover,
.help-options button:focus-visible,
.help-options button.is-selected {
  color: #ffffff;
  background: rgba(42, 107, 183, 0.38);
  border-color: rgba(107, 168, 239, 0.7);
}

.help-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.help-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.help-actions a:last-child {
  color: var(--navy-deep);
  background: var(--gold-soft);
  border-color: rgba(242, 201, 111, 0.56);
}

/* Bizz Buddy preset service guide */
.agent-pet {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 19;
  width: 66px;
  height: 66px;
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}

.agent-pet.is-footer-hidden {
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
}

.agent-pet-trigger,
.agent-panel {
  pointer-events: auto;
}

.agent-pet-trigger {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  padding: 0;
  place-items: center;
  color: #ffffff;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(7, 23, 45, 0.28);
  cursor: pointer;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 200ms ease;
}

.agent-pet-trigger:hover,
.agent-pet-trigger:focus-visible {
  border-color: rgba(242, 201, 111, 0.9);
  box-shadow: 0 20px 54px rgba(7, 23, 45, 0.34);
  outline: 0;
  transform: translateY(-2px);
}

.agent-pet-label {
  position: absolute;
  top: 5px;
  left: 56px;
  min-width: max-content;
  padding: 7px 10px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 40, 79, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 23, 45, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transform-origin: left center;
  transition: opacity 180ms ease, transform 200ms ease, visibility 180ms ease;
}

.agent-pet.has-engaged .agent-pet-label,
.agent-pet.is-open .agent-pet-label {
  opacity: 0;
  transform: translateX(-4px) scale(0.96);
  visibility: hidden;
}

.agent-character {
  position: relative;
  display: block;
  width: 48px;
  height: 44px;
}

.agent-character-face {
  position: absolute;
  right: 3px;
  bottom: 2px;
  left: 3px;
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: 10px 5px;
  gap: 4px 9px;
  align-content: center;
  justify-content: center;
  height: 34px;
  background: var(--blue);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: inset 0 -5px 0 rgba(7, 23, 45, 0.14);
}

.agent-character-eye {
  width: 7px;
  height: 9px;
  background: #ffffff;
  border-radius: 5px;
  transform-origin: center;
}

.agent-character-mouth {
  grid-column: 1 / -1;
  justify-self: center;
  width: 13px;
  height: 5px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0 0 8px 8px;
}

.agent-character-antenna {
  position: absolute;
  top: 0;
  left: 23px;
  width: 2px;
  height: 10px;
  background: #ffffff;
}

.agent-character-antenna::before {
  position: absolute;
  top: -2px;
  left: -3px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border: 2px solid var(--navy-deep);
  border-radius: 50%;
}

.agent-character-ear {
  position: absolute;
  top: 20px;
  width: 5px;
  height: 14px;
  background: var(--gold);
  border-radius: 3px;
}

.agent-character-ear-left {
  left: 0;
}

.agent-character-ear-right {
  right: 0;
}

.agent-panel {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: min(370px, calc(100vw - 44px));
  max-height: calc(100svh - 126px);
  padding: 16px;
  overflow-y: auto;
  color: #ffffff;
  background: rgba(7, 23, 45, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  box-shadow: 0 26px 76px rgba(7, 23, 45, 0.38);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transform-origin: bottom left;
  visibility: hidden;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 180ms ease;
}

.agent-pet.is-open .agent-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.agent-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 32px;
  gap: 10px;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.agent-panel-header > div {
  display: grid;
  gap: 3px;
}

.agent-panel-header strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.agent-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.agent-status > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #45c58a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(69, 197, 138, 0.13);
}

.agent-demo-badge {
  padding: 5px 7px;
  color: var(--gold-soft);
  background: rgba(201, 148, 43, 0.15);
  border: 1px solid rgba(242, 201, 111, 0.3);
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.agent-panel-header button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
}

.agent-panel-header button:hover,
.agent-panel-header button:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  outline: 0;
}

.agent-response {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 82px;
  margin-top: 13px;
  padding: 12px;
  color: var(--navy-deep);
  background: #f1f6fc;
  border: 1px solid rgba(107, 168, 239, 0.34);
  border-radius: 8px;
}

.agent-response-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 950;
}

.agent-response p {
  margin: 0;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.5;
}

.agent-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.agent-questions button {
  min-height: 48px;
  padding: 8px 9px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
  text-align: left;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.agent-questions button:hover,
.agent-questions button:focus-visible,
.agent-questions button.is-selected {
  color: #ffffff;
  background: rgba(42, 107, 183, 0.36);
  border-color: rgba(107, 168, 239, 0.7);
  outline: 0;
}

.agent-questions button:active {
  transform: scale(0.985);
}

.agent-questions button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.agent-panel-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.agent-panel-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  font-size: 0.71rem;
  font-weight: 850;
  text-align: center;
}

.agent-panel-actions a:last-child {
  color: var(--navy-deep);
  background: var(--gold-soft);
  border-color: rgba(242, 201, 111, 0.58);
}

.agent-demo-note {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 680;
  line-height: 1.4;
  text-align: center;
}

html[data-motion="on"] .agent-character {
  animation: bizzBuddyFloat 3.8s ease-in-out infinite;
}

html[data-motion="on"] .agent-character-eye {
  animation: bizzBuddyBlink 5.2s ease-in-out infinite;
}

html[data-motion="on"] .agent-status > span {
  animation: bizzBuddyStatus 2.4s ease-in-out infinite;
}

html[data-motion="on"] .agent-pet.is-thinking .agent-response-mark {
  animation: bizzBuddyThink 700ms ease-in-out infinite alternate;
}

html[data-motion="on"] .agent-pet.is-answering .agent-response p {
  animation: bizzBuddyAnswer 260ms ease both;
}

@keyframes bizzBuddyFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  48% {
    transform: translateY(-3px) rotate(-1deg);
  }

  54% {
    transform: translateY(-3px) rotate(1deg);
  }
}

@keyframes bizzBuddyBlink {
  0%,
  44%,
  48%,
  100% {
    transform: scaleY(1);
  }

  46% {
    transform: scaleY(0.16);
  }
}

@keyframes bizzBuddyStatus {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(69, 197, 138, 0.13);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(69, 197, 138, 0.04);
  }
}

@keyframes bizzBuddyThink {
  from {
    opacity: 0.62;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes bizzBuddyAnswer {
  from {
    opacity: 0;
    transform: translateY(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html[data-motion="off"] .agent-pet,
html[data-motion="off"] .agent-pet-trigger,
html[data-motion="off"] .agent-pet-label,
html[data-motion="off"] .agent-panel,
html[data-motion="off"] .agent-questions button {
  transition: none;
}

html[data-motion="off"] .agent-character,
html[data-motion="off"] .agent-character-eye,
html[data-motion="off"] .agent-status > span,
html[data-motion="off"] .agent-response-mark,
html[data-motion="off"] .agent-response p {
  animation: none;
}

/* Cloudflare 404 page */
.not-found-main {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - 72px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  place-items: center;
  color: #ffffff;
  background: var(--navy-deep);
}

.not-found-main::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 23, 45, 0.95), rgba(7, 23, 45, 0.72)),
    url("img/arrivals-departures-hall.jpg") center / cover no-repeat;
}

.not-found-shell {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: center;
  width: min(1080px, 100%);
}

.not-found-code {
  color: transparent;
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 950;
  line-height: 0.78;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
}

.not-found-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  line-height: 0.98;
}

.not-found-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.not-found-hours {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 760;
}

.not-found-hours::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

@media (hover: hover) and (pointer: fine) {
  .about-visual:hover img {
    filter: saturate(1.02) contrast(1.06);
    transform: scale(1.025);
  }
}

@media (max-width: 960px) {
  .about-shell,
  .disclaimer-shell {
    grid-template-columns: 1fr;
  }

  .about-visual,
  .about-visual img {
    min-height: 360px;
  }

  .about-copy {
    max-width: 780px;
  }

  .not-found-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .not-found-code {
    font-size: clamp(6rem, 26vw, 10rem);
  }
}

@media (max-width: 720px) {
  .about-section {
    padding: 40px 16px;
  }

  .about-visual,
  .about-visual img {
    min-height: 260px;
  }

  .about-visual-note {
    right: 16px;
    bottom: 15px;
    left: 16px;
  }

  .about-copy h2 {
    font-size: clamp(2.15rem, 10vw, 2.9rem);
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts div {
    padding: 14px 0;
  }

  .about-facts div + div {
    padding-left: 0;
    border-top: 1px solid rgba(16, 40, 79, 0.12);
    border-left: 0;
  }

  .about-actions .btn {
    width: 100%;
  }

  .disclaimer-section {
    padding: 34px 16px;
  }

  .disclaimer-shell {
    gap: 20px;
  }

  .disclaimer-shell h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .help-dock {
    bottom: 76px;
    width: calc(100% - 24px);
  }

  .agent-pet {
    bottom: 136px;
    left: 12px;
    width: 56px;
    height: 56px;
  }

  .agent-pet-trigger {
    width: 56px;
    height: 56px;
  }

  .agent-character {
    width: 43px;
    height: 40px;
  }

  .agent-character-antenna {
    left: 20px;
  }

  .agent-pet-label {
    display: none;
  }

  .agent-panel {
    bottom: 70px;
    width: calc(100vw - 24px);
    max-height: calc(100svh - 244px);
    padding: 14px;
  }

  .agent-response {
    min-height: 76px;
  }

  .help-panel {
    max-height: calc(100svh - 170px);
    padding: 16px;
    overflow-y: auto;
  }

  .help-trigger {
    min-height: 48px;
    font-size: 0.84rem;
  }

  .help-options,
  .help-actions {
    grid-template-columns: 1fr;
  }

  .help-options button {
    min-height: 40px;
  }

  .back-to-top {
    bottom: 136px;
  }

  .not-found-main {
    min-height: calc(100svh - 66px);
    padding: 42px 16px 96px;
  }

  .not-found-code {
    font-size: 6.5rem;
  }

  .not-found-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.35rem);
  }

  .not-found-actions .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .agent-questions,
  .agent-panel-actions {
    grid-template-columns: 1fr;
  }

  .agent-questions button {
    min-height: 40px;
  }
}

@media print {
  .agent-pet {
    display: none;
  }
}

/* Visual character layer */
:root {
  --thai-red: #b3263e;
  --jade: #16745f;
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

.hero-bg {
  filter: saturate(1.08) contrast(1.03);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--thai-red) 0 22%,
    #ffffff 22% 38%,
    #2d2a4a 38% 62%,
    #ffffff 62% 78%,
    var(--thai-red) 78% 100%
  );
}

.proof-shell span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-shell span::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  content: "";
  background: var(--thai-red);
  border-radius: 50%;
}

.proof-shell div:nth-child(2) span::before {
  background: var(--blue);
}

.proof-shell div:nth-child(3) span::before {
  background: var(--jade);
}

.proof-shell div:nth-child(4) span::before {
  background: var(--gold);
}

.service-intro-visual {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  align-self: end;
  background: var(--navy-deep);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(7, 23, 45, 0.18);
}

.section-heading > h2 {
  align-self: center;
}

.service-intro-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 23, 45, 0.06), rgba(7, 23, 45, 0.9));
  pointer-events: none;
}

.service-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.section-heading .service-intro-visual p {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.5;
}

.services-overview {
  background: #fbfcfe;
}

.service-card,
.service-card-featured {
  grid-template-columns: 142px minmax(250px, 0.75fr) minmax(380px, 1fr);
}

.service-thumb {
  grid-column: 1;
  grid-row: 2 / span 3;
  width: 118px;
  aspect-ratio: 4 / 3;
  margin: 10px 0 0;
  overflow: hidden;
  background: #dfe8f1;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(7, 23, 45, 0.13);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.service-card:nth-child(2) .service-thumb img,
.service-card:nth-child(5) .service-thumb img {
  object-position: top center;
}

.service-card:hover .service-thumb img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.service-card:nth-child(2)::before {
  color: var(--thai-red);
}

.service-card:nth-child(3)::before {
  color: var(--jade);
}

.service-card:nth-child(4)::before {
  color: var(--gold);
}

.service-card:nth-child(5)::before {
  color: var(--thai-red);
}

.service-card:nth-child(2) .card-kicker {
  color: var(--thai-red);
}

.service-card:nth-child(3) .card-kicker {
  color: var(--jade);
}

.service-card:nth-child(5) .card-kicker {
  color: var(--thai-red);
}

.material-feature {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.material-feature-wide span {
  color: #ffb5c0;
}

.process-photo {
  position: relative;
  height: 138px;
  margin: 28px 0 0;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(7, 23, 45, 0.14);
}

.process-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 23, 45, 0.2), rgba(7, 23, 45, 0.88));
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.process-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 42%;
  z-index: 1;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 820;
  line-height: 1.4;
}

.process-steps span {
  box-shadow: inset 0 0 0 3px #f2f5f8;
}

.process-steps li:nth-child(2) span {
  color: var(--thai-red);
  border-color: rgba(179, 38, 62, 0.28);
}

.process-steps li:nth-child(3) span {
  color: var(--jade);
  border-color: rgba(22, 116, 95, 0.28);
}

.process-steps li:nth-child(4) span {
  color: var(--gold);
  border-color: rgba(201, 148, 43, 0.32);
}

.review-feature {
  background:
    linear-gradient(145deg, rgba(7, 23, 45, 0.94), rgba(7, 23, 45, 0.7)),
    url("img/immigration-queue-light.jpg") center / cover no-repeat;
}

.review-row {
  padding-right: 12px;
  padding-left: 12px;
  transition: background-color 160ms ease;
}

.review-row:hover {
  background: #f4f7fa;
}

.review-row:nth-child(2) .review-avatar {
  color: #ffffff;
  background: var(--thai-red);
  border-color: var(--thai-red);
}

.review-row:nth-child(3) .review-avatar {
  color: #ffffff;
  background: var(--jade);
  border-color: var(--jade);
}

.review-row:nth-child(4) .review-avatar {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.review-source a {
  min-height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: #1877f2;
  border-radius: var(--radius);
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.68);
}

.faq-list details[open] summary,
.faq-list details[open] p {
  padding-left: 16px;
}

.site-footer {
  position: relative;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--thai-red), var(--gold), var(--blue), var(--jade));
}

/* Lightweight interaction and motion layer */
.motion-toggle {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
}

.motion-toggle:hover,
.motion-toggle:focus-visible {
  color: #ffffff;
}

.motion-toggle-track {
  position: relative;
  width: 36px;
  height: 20px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.motion-toggle-track span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.24);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), background-color 180ms ease;
}

.motion-toggle[aria-checked="true"] .motion-toggle-track {
  background: var(--blue);
  border-color: #6ba8ef;
}

.motion-toggle[aria-checked="true"] .motion-toggle-track span {
  background: #ffffff;
  transform: translateX(16px);
}

html.effects-ready[data-motion="on"] .reveal-item {
  translate: 0 18px;
  transition: translate 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

html.effects-ready[data-motion="on"] .reveal-item.is-visible {
  translate: 0 0;
}

.btn-primary,
.btn-gold,
.btn-facebook,
.header-cta,
.review-source a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::after,
.btn-gold::after,
.btn-facebook::after,
.header-cta::after,
.review-source a::after {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -48%;
  z-index: 1;
  width: 26%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card,
.material-feature,
.process-steps li,
.review-row {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.material-feature img {
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.faq-list details[open] p {
  animation: bizznetFaqReveal 220ms ease both;
}

@keyframes bizznetFaqReveal {
  from {
    opacity: 0;
    translate: 0 -5px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes bizznetHeroDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.075) translate3d(-0.7%, -0.45%, 0);
  }
}

@media (min-width: 721px) {
  html[data-motion="on"] .hero-bg {
    animation: bizznetHeroDrift 18s ease-in-out infinite alternate;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover::after,
  .btn-primary:focus-visible::after,
  .btn-gold:hover::after,
  .btn-gold:focus-visible::after,
  .btn-facebook:hover::after,
  .btn-facebook:focus-visible::after,
  .header-cta:hover::after,
  .header-cta:focus-visible::after,
  .review-source a:hover::after,
  .review-source a:focus-visible::after {
    left: 122%;
  }

  .service-card:hover {
    border-color: rgba(42, 107, 183, 0.28);
    box-shadow: 0 20px 54px rgba(7, 23, 45, 0.12);
    transform: translateY(-3px);
  }

  .material-feature:hover img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.025);
  }

  .process-steps li:hover,
  .review-row:hover {
    transform: translateX(3px);
  }
}

html[data-motion="off"] .reveal-item {
  translate: 0 0;
  transition: none;
}

html[data-motion="off"] .hero-bg,
html[data-motion="off"] .faq-list details[open] p {
  animation: none;
}

html[data-motion="off"] .btn-primary::after,
html[data-motion="off"] .btn-gold::after,
html[data-motion="off"] .btn-facebook::after,
html[data-motion="off"] .header-cta::after,
html[data-motion="off"] .review-source a::after {
  display: none;
}

html[data-motion="off"] .service-card,
html[data-motion="off"] .material-feature,
html[data-motion="off"] .material-feature img,
html[data-motion="off"] .process-steps li,
html[data-motion="off"] .review-row {
  transition: none;
}

@media (max-width: 720px) {
  html.effects-ready[data-motion="on"] .reveal-item {
    translate: 0 12px;
    transition-duration: 420ms;
  }

  html.effects-ready[data-motion="on"] .reveal-item.is-visible {
    translate: 0 0;
  }
}

@media (max-width: 960px) {
  .section-heading {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured {
    position: relative;
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .service-thumb {
    position: absolute;
    top: 22px;
    right: 0;
    width: 76px;
    height: 76px;
    margin: 0;
  }

  .service-card > .card-kicker,
  .service-card h3 {
    padding-right: 88px;
  }

  .process-photo {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .service-intro-visual {
    min-height: 185px;
  }

  .service-intro-visual p {
    right: 16px;
    bottom: 15px;
    left: 16px;
  }

  .service-thumb {
    top: 22px;
    width: 68px;
    height: 68px;
  }

  .service-card > .card-kicker,
  .service-card h3 {
    padding-right: 78px;
  }

  .process-photo {
    height: 150px;
    margin-top: 22px;
  }

  .process-photo figcaption {
    right: 14px;
    bottom: 12px;
    left: 34%;
  }

  .review-row {
    padding-right: 8px;
    padding-left: 8px;
  }

  .review-source a {
    width: 100%;
    justify-content: center;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    opacity: 0.92;
  }
}

@media (max-width: 360px) {
  .service-thumb {
    display: none;
  }

  .service-card > .card-kicker,
  .service-card h3 {
    padding-right: 0;
  }
}
