:root {
  color-scheme: light;
  --font-display: "Manrope", "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-body: "Manrope", "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --ink: #071827;
  --navy: #081523;
  --navy-2: #0e2c3d;
  --slate: #5c697a;
  --muted: #7b8797;
  --line: rgba(7, 24, 39, 0.11);
  --paper: #ffffff;
  --mist: #f3f6f3;
  --field: #eaf0ec;
  --signal: #ff8a1f;
  --signal-2: #ffc36d;
  --green: #1c6f5a;
  --green-soft: #e9f4ee;
  --danger: #a7362b;
  --shadow: 0 20px 54px rgba(7, 24, 39, 0.1);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.62;
  background:
    linear-gradient(180deg, #eef3f0 0%, #f8faf8 44%, #ffffff 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  color: inherit;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid rgba(255, 138, 31, 0.55);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 300;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--signal-2);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.nav-shell,
.section-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  background: rgba(6, 17, 29, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 29, 0.94);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 52px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 3px;
  color: var(--paper);
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 900;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu > a {
  position: relative;
  padding: 8px 0;
}

.nav-menu > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu > a:hover,
.nav-menu > a:focus-visible,
.nav-menu > a[aria-current="page"] {
  color: var(--paper);
}

.nav-menu > a:hover::after,
.nav-menu > a:focus-visible::after,
.nav-menu > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle,
.nav-close,
.icon-button,
.social-links a,
.floating-whatsapp {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.nav-toggle,
.nav-close,
.icon-button {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav-toggle:hover,
.nav-close:hover,
.icon-button:hover,
.nav-toggle:focus-visible,
.nav-close:focus-visible,
.icon-button:focus-visible {
  background: rgba(255, 138, 31, 0.18);
  border-color: rgba(255, 138, 31, 0.42);
  transform: translateY(-1px);
}

.nav-toggle,
.nav-close {
  display: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #061523;
  background: linear-gradient(135deg, var(--signal), var(--signal-2));
  box-shadow: 0 18px 40px rgba(255, 138, 31, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 54px rgba(255, 138, 31, 0.34);
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  color: #061523;
  background: var(--signal-2);
}

.button-whatsapp {
  color: var(--paper);
  background: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.premium-hero {
  min-height: 86svh;
  display: grid;
  align-content: end;
}

.hero-media,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
  transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1.02);
  transition: transform 520ms ease;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 22, 0.94) 0%, rgba(4, 13, 22, 0.72) 38%, rgba(4, 13, 22, 0.24) 74%, rgba(4, 13, 22, 0.62) 100%),
    linear-gradient(0deg, rgba(4, 13, 22, 0.84) 0%, rgba(4, 13, 22, 0.04) 58%);
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(86svh - 128px);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(310px, 0.38fr);
  gap: 54px;
  align-items: center;
  padding: calc(var(--header-height) + 34px) 0 34px;
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.65rem;
  line-height: 0.98;
  font-weight: 950;
}

.hero-kicker {
  margin-top: 18px;
  color: var(--signal-2);
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-lede {
  width: min(620px, 100%);
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.single-action {
  width: fit-content;
}

.hero-command {
  align-self: center;
  display: grid;
  gap: 18px;
  padding: 22px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.command-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.command-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.command-header strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--signal-2);
  border-radius: var(--radius);
  font-size: 1.05rem;
}

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

.command-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.command-list div:last-child {
  border-bottom: 0;
}

.command-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.command-list strong {
  text-align: right;
  font-size: 0.95rem;
}

.hero-dock {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(5, 17, 29, 0.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.hero-dock div {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-dock div:last-child {
  border-right: 0;
}

.hero-dock strong {
  color: var(--signal-2);
  font-size: 0.78rem;
}

.hero-dock span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.signature-band {
  color: var(--paper);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signature-row a {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.signature-row a:last-child {
  border-right: 0;
}

.signature-row a:hover,
.signature-row a:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 92px 0;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.fact-lead h2 {
  color: var(--ink);
  font-size: 2.75rem;
  line-height: 1.06;
}

.section-copy p,
.section-heading p,
.contact-copy p,
.fact-lead p {
  margin-top: 18px;
  color: var(--slate);
  font-size: 1rem;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.planner-section {
  background:
    linear-gradient(180deg, #f9fbf9 0%, #eef3f0 100%);
  border-bottom: 1px solid var(--line);
}

.planner-layout,
.profile-layout,
.fact-layout,
.operations-layout,
.gallery-layout,
.contact-layout,
.two-column,
.faq-layout,
.proof-layout,
.standards-layout {
  display: grid;
  gap: 58px;
  align-items: start;
}

.planner-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
  align-items: center;
}

.coverage-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.coverage-points span,
.core-values-list span,
.service-pill-grid span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  background: #fff6ea;
  border: 1px solid rgba(255, 138, 31, 0.24);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.coverage-planner {
  display: grid;
  gap: 20px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.planner-group > span,
.planner-result > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.planner-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.planner-options button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--slate);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.planner-options button:hover,
.planner-options button:focus-visible {
  transform: translateY(-1px);
}

.planner-options button.is-active {
  color: var(--paper);
  background: var(--navy-2);
}

.planner-result {
  padding: 24px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.16), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
}

.planner-result h3 {
  font-size: 1.45rem;
  line-height: 1.18;
}

.planner-result p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 20px;
  color: var(--signal-2);
  font-weight: 900;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.fact-section {
  background:
    linear-gradient(90deg, rgba(28, 111, 90, 0.08) 0, transparent 42%),
    #ffffff;
}

.services-section {
  padding-top: 48px;
}

.services-section .section-heading {
  margin-bottom: 18px;
}

.services-section .section-heading h2 {
  max-width: 760px;
}

.services-section .service-detail.reveal {
  opacity: 1;
  transform: none;
}

.fact-layout {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  align-items: center;
}

.fact-card-grid,
.premium-card-grid,
.proof-card-grid,
.value-grid,
.service-detail-grid,
.package-grid,
.contact-info-grid,
.credential-grid,
.team-grid,
.sector-grid,
.standards-grid,
.metric-grid {
  display: grid;
  gap: 18px;
}

.fact-card-grid,
.premium-card-grid,
.proof-card-grid,
.service-detail-grid,
.credential-grid,
.team-grid,
.standards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-grid,
.contact-info-grid,
.service-grid,
.trust-grid,
.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-grid,
.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-card,
.premium-card,
.proof-card,
.profile-statement-grid article,
.profile-panels article,
.credential-card,
.leader-feature,
.team-card,
.team-roster,
.service-detail,
.package-card,
.info-card,
.inquiry-form,
.response-panel,
.visit-panel,
.faq-list details,
.cta-panel,
.service-card,
.sector,
.standard,
.trust-item,
.value-card,
.map-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fact-card,
.premium-card,
.proof-card,
.value-card,
.service-card,
.sector,
.standard,
.info-card,
.package-card,
.service-detail,
.credential-card,
.team-card {
  min-height: 168px;
  padding: 26px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.premium-card {
  color: inherit;
}

.fact-card:hover,
.premium-card:hover,
.premium-card:focus-visible,
.proof-card:hover,
.profile-statement-grid article:hover,
.profile-panels article:hover,
.credential-card:hover,
.team-card:hover,
.service-detail:hover,
.package-card:hover,
.info-card:hover,
.service-card:hover,
.sector:hover,
.standard:hover,
.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 31, 0.28);
  box-shadow: 0 26px 64px rgba(7, 24, 39, 0.13);
}

.fact-card span,
.premium-card span,
.proof-card span,
.service-icon,
.trust-icon,
.value-card span,
.info-card span,
.response-panel span,
.visit-panel svg {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--signal);
  background: #fff6ea;
  border: 1px solid rgba(255, 138, 31, 0.24);
  border-radius: var(--radius);
}

.fact-card h3,
.premium-card h3,
.proof-card h3,
.service-card h3,
.sector h3,
.standard h3,
.value-card h3,
.service-detail h2,
.package-card h3,
.info-card h3,
.response-panel h3,
.visit-panel h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.22;
}

.fact-card p,
.premium-card p,
.proof-card p,
.service-card p,
.sector p,
.standard p,
.value-card p,
.service-detail p,
.package-card p,
.info-card p,
.response-panel p,
.visit-panel p,
.profile-statement-grid p,
.profile-panels p,
.credential-card p,
.leader-feature p,
.team-card p,
.team-roster li,
.faq-list p {
  margin-top: 10px;
  color: var(--slate);
}

.profile-section,
.home-services-section,
.quiet-proof-section,
.services-section,
.package-section,
.faq-section,
.values-section,
.contact-section,
.operator-section,
.credential-section,
.leadership-section,
.operations-section,
.about-profile-section {
  background: transparent;
}

.profile-layout {
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
}

.profile-statement-grid,
.profile-panels,
.process-list,
.faq-list,
.footer-column,
.footer-contact {
  display: grid;
  gap: 14px;
}

.profile-statement-grid article,
.profile-panels article {
  padding: 26px;
}

.profile-statement-grid span,
.profile-panels span,
.credential-card span,
.package-card > span {
  display: inline-block;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.field-gallery-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.12), transparent 34%),
    linear-gradient(180deg, #081523 0%, #0d2636 100%);
}

.field-gallery-section .section-copy h2 {
  color: var(--paper);
}

.field-gallery-section .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-layout {
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 1fr);
  align-items: center;
}

.field-gallery {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 12px;
}

.field-gallery figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: #102b3c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.field-gallery figure:first-child {
  grid-row: span 2;
}

.field-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.field-gallery figure:nth-child(3) img {
  object-position: 50% 26%;
}

.field-gallery figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
}

.field-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--paper);
  background: rgba(6, 17, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.quiet-proof-section {
  padding-top: 84px;
}

.page-hero {
  position: relative;
  min-height: 48svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.page-hero-compact {
  min-height: 40svh;
}

.page-hero img {
  object-position: center 34%;
  filter: saturate(0.9) contrast(1.05);
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 22, 0.92) 0%, rgba(4, 13, 22, 0.68) 42%, rgba(4, 13, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 13, 22, 0.74) 0%, rgba(4, 13, 22, 0.04) 58%);
}

.page-hero-inner {
  position: relative;
  min-height: inherit;
  display: grid;
  align-content: center;
  padding: calc(var(--header-height) + 42px) 0 54px;
}

.page-hero h1 {
  width: min(790px, 100%);
  color: var(--paper);
  font-size: 3.6rem;
  line-height: 1.04;
  font-weight: 950;
}

.page-lede {
  width: min(680px, 100%);
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.core-values-list,
.service-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.credential-card h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.08;
}

.leader-feature {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 28px;
  padding: 34px;
}

.leader-monogram {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
  font-size: 1.35rem;
  font-weight: 950;
}

.leader-feature h3 {
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1.12;
}

.leader-credentials {
  margin-top: 10px !important;
  color: var(--green) !important;
  font-weight: 950;
}

.leader-feature details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.leader-feature summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.team-grid {
  margin-top: 18px;
}

.team-card,
.team-roster {
  padding: 28px;
}

.team-card h3,
.team-roster h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.18;
}

.team-roster {
  margin-top: 18px;
}

.team-roster ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.team-roster li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.service-detail {
  min-height: 390px;
}

.service-detail h2 {
  font-size: 1.45rem;
}

.service-detail ul,
.package-card ul,
.service-card ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.service-detail li,
.package-card li,
.service-card li {
  position: relative;
  padding-left: 28px;
  color: var(--slate);
}

.service-detail li::before,
.package-card li::before,
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid rgba(28, 111, 90, 0.24);
  transform: translateY(-50%);
}

.service-detail li::after,
.package-card li::after,
.service-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.78em;
  width: 5px;
  height: 8px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: translateY(-62%) rotate(45deg);
}

.package-card {
  min-height: 350px;
}

.package-card.featured,
.cta-panel {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.13), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured li,
.cta-panel h2,
.cta-panel .eyebrow {
  color: var(--paper) !important;
}

.package-card.featured li::before {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.package-card.featured li::after {
  border-color: var(--signal-2);
}

.operations-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  align-items: center;
}

.operations-media {
  position: relative;
}

.operations-media::after {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  border: 1px solid rgba(255, 138, 31, 0.34);
  border-radius: var(--radius);
  z-index: 0;
}

.operations-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-list {
  margin-top: 30px;
}

.process-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.process-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 950;
}

.process-list h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.process-list p {
  grid-column: 2;
  margin-top: 6px;
  color: var(--slate);
}

.faq-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-actions a {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(7, 24, 39, 0.07);
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 31, 0.28);
  box-shadow: 0 18px 42px rgba(7, 24, 39, 0.11);
}

.contact-actions svg {
  color: var(--signal);
  flex: 0 0 auto;
}

.response-panel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding: 22px;
}

.response-panel span {
  margin-bottom: 0;
}

.inquiry-form {
  padding: 28px;
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 24, 39, 0.16);
  border-radius: 6px;
  background: #fbfcfb;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  background: var(--paper);
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.16);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit:disabled {
  opacity: 0.68;
  cursor: progress;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-status.is-error {
  color: var(--danger);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-info-grid {
  margin-top: 44px;
}

.info-card {
  min-height: 220px;
}

.info-card a {
  color: var(--ink);
  font-weight: 850;
}

.info-card a:hover,
.info-card a:focus-visible {
  color: var(--signal);
}

.visit-layout {
  margin-top: 44px;
}

.visit-panel {
  min-height: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.visit-panel svg {
  flex: 0 0 auto;
  margin: 0;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 16px;
  margin-top: 44px;
}

.map-card {
  overflow: hidden;
  min-height: 330px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
}

.cta-panel h2 {
  font-size: 2rem;
  line-height: 1.15;
}

.site-footer {
  color: var(--paper);
  background: #06111e;
  padding: 66px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(140px, 0.44fr) minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
}

.footer-brand-block p {
  width: min(360px, 100%);
  margin-top: 22px;
}

.footer-brand-block p,
.footer-column a,
.footer-contact p,
.footer-contact a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 8px;
  color: var(--signal-2);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact a {
  width: fit-content;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-contact a:hover,
.footer-column a:focus-visible,
.footer-contact a:focus-visible {
  color: var(--paper);
}

.footer-contact {
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 138, 31, 0.16);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: auto;
  min-width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--paper);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(7, 24, 39, 0.24);
  font-size: 0.86rem;
  font-weight: 900;
}

.floating-whatsapp span {
  line-height: 1;
}

.trust-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.trust-item {
  min-height: 232px;
  padding: 34px;
}

.service-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
}

.service-card ul {
  margin-top: auto;
  padding-top: 24px;
}

.standards-section {
  color: var(--paper);
  background: var(--navy);
}

.standards-section .section-copy h2,
.standards-section .section-copy p {
  color: var(--paper);
}

.proof-section {
  color: var(--paper);
  background: var(--navy);
  padding: 70px 0;
}

.quote-block p {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
}

.quote-block span {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
}

.metric-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
}

.metric-grid div {
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.metric-grid strong {
  color: var(--signal-2);
  font-size: 1.8rem;
  line-height: 1;
}

.metric-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-inner,
  .planner-layout,
  .profile-layout,
  .fact-layout,
  .operations-layout,
  .gallery-layout,
  .contact-layout,
  .two-column,
  .faq-layout,
  .footer-main,
  .proof-layout,
  .standards-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-command {
    width: min(430px, 100%);
  }

  .sector-grid,
  .value-grid,
  .package-grid,
  .contact-info-grid,
  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .operations-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(390px, 92vw);
    min-height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    color: var(--paper);
    background: rgba(6, 17, 29, 0.98);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu > a::after {
    display: none;
  }

  .nav-close {
    display: grid;
    margin-left: auto;
    margin-bottom: 10px;
  }

  .nav-actions {
    align-items: stretch;
    margin-top: 18px;
  }

  .nav-actions .button {
    width: 100%;
  }

  .premium-hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 78svh;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-media {
    object-position: 64% center;
  }

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

  .hero-dock div:nth-child(2) {
    border-right: 0;
  }

  .hero-dock div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 76px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .fact-lead h2 {
    font-size: 2.25rem;
  }

  .page-hero h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .section-inner {
    width: min(100% - 30px, 1160px);
  }

  .brand-mark {
    width: 46px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy span {
    font-size: 0.68rem;
  }

  .hero-inner {
    min-height: 76svh;
    padding-top: calc(var(--header-height) + 26px);
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero-lede,
  .page-lede {
    font-size: 1rem;
  }

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

  .hero-dock,
  .signature-row,
  .fact-card-grid,
  .premium-card-grid,
  .proof-card-grid,
  .service-detail-grid,
  .package-grid,
  .contact-info-grid,
  .credential-grid,
  .team-grid,
  .sector-grid,
  .value-grid,
  .standards-grid,
  .metric-grid,
  .service-grid,
  .trust-grid,
  .form-row,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .hero-dock div,
  .signature-row a {
    border-right: 0;
  }

  .hero-dock div,
  .signature-row a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-dock div:last-child,
  .signature-row a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .fact-lead h2 {
    font-size: 1.92rem;
  }

  .page-hero,
  .page-hero-compact {
    min-height: 42svh;
  }

  .page-hero-inner {
    padding-bottom: 42px;
  }

  .page-hero h1 {
    font-size: 2.22rem;
  }

  .field-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .field-gallery figure:first-child {
    grid-row: auto;
  }

  .field-gallery figure {
    min-height: 230px;
  }

  .leader-feature {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .leader-feature h3 {
    font-size: 1.62rem;
  }

  .fact-card,
  .premium-card,
  .proof-card,
  .value-card,
  .service-card,
  .sector,
  .standard,
  .info-card,
  .package-card,
  .service-detail,
  .credential-card,
  .team-card,
  .team-roster,
  .inquiry-form,
  .profile-statement-grid article,
  .profile-panels article,
  .faq-list details,
  .cta-panel {
    min-height: auto;
    padding: 24px;
  }

  .coverage-planner,
  .core-values-list,
  .service-pill-grid {
    padding: 20px;
  }

  .planner-options button {
    flex: 1 1 auto;
  }

  .cta-panel {
    display: grid;
  }

  .cta-panel h2 {
    font-size: 1.55rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.28rem;
  }

  .page-hero h1 {
    font-size: 1.92rem;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .fact-lead h2 {
    font-size: 1.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* About page editorial profile */
.about-hero {
  min-height: 56svh;
}

.about-hero img {
  object-position: center;
}

.about-hero .page-hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 13, 22, 0.94) 0%, rgba(4, 13, 22, 0.7) 43%, rgba(4, 13, 22, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 13, 22, 0.74) 0%, rgba(4, 13, 22, 0.05) 60%);
}

.about-hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

.about-intro-section {
  background: #ffffff;
}

.about-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.about-intro-copy h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
  line-height: 1.03;
  text-wrap: balance;
}

.about-intro-copy,
.page-hero-inner,
.section-copy {
  min-width: 0;
}

.about-intro-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.82;
}

.about-image-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
}

.about-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 13, 22, 0.78) 0%, transparent 52%);
}

.about-image-panel div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 22px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.about-image-panel span,
.mission-grid span {
  display: block;
  color: var(--signal-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-image-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.about-image-panel p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.mission-section {
  padding-top: 82px;
  background:
    radial-gradient(circle at 12% 18%, rgba(28, 111, 90, 0.08), transparent 30%),
    #f6f9f6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-layout,
.values-layout,
.credential-layout,
.leadership-layout,
.operator-layout {
  display: grid;
  gap: 46px;
}

.mission-layout {
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  align-items: start;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.mission-grid article {
  min-height: 250px;
  padding: 28px;
  background: #ffffff;
}

.mission-grid h3 {
  margin-top: 32px;
  color: var(--ink);
  font-size: 1.24rem;
}

.mission-grid p {
  margin-top: 12px;
  color: var(--slate);
}

.values-layout {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  align-items: center;
}

.values-layout .core-values-list {
  box-shadow: none;
}

.about-credential-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.12), transparent 35%),
    linear-gradient(180deg, #07131f 0%, #0d2531 100%);
}

.credential-layout {
  grid-template-columns: minmax(260px, 0.62fr) repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.about-credential-section .section-copy h2,
.about-credential-section .section-copy p {
  color: var(--paper);
}

.about-credential-section .credential-card {
  min-height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.about-credential-section .credential-card span {
  color: var(--signal-2);
}

.about-credential-section .credential-card h2 {
  color: var(--paper);
  font-size: 2.35rem;
}

.about-credential-section .credential-card p {
  color: rgba(255, 255, 255, 0.72);
}

.about-leadership-section {
  background: #ffffff;
}

.leadership-layout {
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  align-items: start;
}

.leadership-layout > .section-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.leadership-layout .leader-feature,
.leadership-secondary {
  grid-column: 2;
}

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

.leadership-secondary article {
  padding: 26px;
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.leadership-secondary h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.28;
}

.leadership-secondary p:not(.leader-credentials) {
  margin-top: 12px;
  color: var(--slate);
}

.team-roster-section {
  padding-top: 0;
  background: #ffffff;
}

.team-roster-section .team-roster {
  padding: 30px;
  box-shadow: none;
  background: #f6f9f6;
}

.team-roster-section .team-roster ul {
  margin-top: 22px;
  gap: 0;
}

.team-roster-section .team-roster li {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.62fr);
  gap: 22px;
  align-items: center;
  padding: 16px 0;
}

.team-roster-section .team-roster li:first-child {
  border-top: 0;
}

.team-roster-section .team-roster strong {
  color: var(--ink);
}

.team-roster-section .team-roster span {
  color: var(--slate);
}

.about-operator-section {
  background: #f7faf7;
  border-top: 1px solid var(--line);
}

.operator-layout {
  grid-template-columns: minmax(230px, 0.42fr) minmax(260px, 0.52fr) minmax(0, 0.72fr);
  align-items: center;
}

.operator-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.operator-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-operator-section .profile-panels article {
  box-shadow: none;
}

@media (max-width: 1040px) {
  .about-intro-layout,
  .mission-layout,
  .values-layout,
  .credential-layout,
  .leadership-layout,
  .operator-layout {
    grid-template-columns: 1fr;
  }

  .leadership-layout > .section-copy {
    position: static;
  }

  .leadership-layout .leader-feature,
  .leadership-secondary {
    grid-column: auto;
  }

  .mission-grid,
  .leadership-secondary {
    grid-template-columns: 1fr;
  }

  .about-image-panel,
  .about-image-panel img {
    min-height: 420px;
  }

  .operator-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .about-hero {
    min-height: 52svh;
  }

  .about-hero h1,
  .about-hero .page-lede,
  .about-intro-copy,
  .about-intro-copy p:not(.eyebrow) {
    width: min(330px, 100%);
    max-width: min(330px, 100%);
  }

  .about-intro-copy h2 {
    font-size: clamp(1.82rem, 7.4vw, 2.28rem);
  }

  .about-intro-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.72;
  }

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

  .mission-grid article {
    min-height: auto;
    padding: 24px;
  }

  .team-roster-section .team-roster li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Premium reset after visual review: reduce noise, tighten alignment, and let the photography breathe. */
.site-header {
  background: rgba(5, 15, 23, 0.9);
}

.nav-shell {
  min-height: 68px;
}

.brand-mark {
  width: 48px;
  height: 40px;
}

.brand-copy {
  gap: 2px;
}

.nav-menu {
  margin-left: auto;
  gap: 30px;
}

.premium-hero {
  min-height: clamp(580px, 82svh, 720px);
}

.premium-hero::after {
  opacity: 0.16;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 58%);
}

.hero-media {
  object-position: 63% center;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.01);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 12, 20, 0.96) 0%, rgba(3, 12, 20, 0.82) 34%, rgba(3, 12, 20, 0.34) 67%, rgba(3, 12, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 12, 20, 0.68) 0%, rgba(3, 12, 20, 0.02) 56%);
}

.hero-inner {
  min-height: clamp(500px, calc(82svh - 86px), 636px);
  grid-template-columns: minmax(0, 690px);
  gap: 0;
  align-items: center;
  padding: calc(var(--header-height) + 34px) 0 54px;
}

.hero-copy {
  width: min(650px, 100%);
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3rem, 5vw, 4.35rem);
  line-height: 1.01;
  text-wrap: balance;
}

.hero-kicker {
  margin-top: 20px;
  color: rgba(255, 195, 109, 0.92);
  font-size: 1.02rem;
}

.hero-lede {
  width: min(580px, 100%);
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero-actions {
  align-items: center;
  margin-top: 32px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--paper);
  border-color: var(--signal-2);
}

.credential-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.credential-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.credential-row div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.credential-row span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.credential-row strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.28;
}

.fact-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(28, 111, 90, 0.08), transparent 30%),
    #f7faf7;
}

.fact-layout {
  align-items: start;
}

.field-gallery-section {
  background:
    linear-gradient(135deg, rgba(28, 111, 90, 0.18), transparent 38%),
    linear-gradient(180deg, #081523 0%, #102d34 100%);
}

.field-gallery figure {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.14), transparent 36%),
    linear-gradient(135deg, #081523, #143a34);
}

.floating-whatsapp {
  display: none;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 680px) {
  .nav-shell {
    min-height: 66px;
    position: relative;
  }

  .nav-toggle {
    position: fixed;
    display: grid;
    left: min(calc(100vw - 57px), 333px);
    right: auto;
    top: 14px;
    z-index: 140;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .premium-hero {
    min-height: 620px;
  }

  .hero-media {
    object-position: 70% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 12, 20, 0.96) 0%, rgba(3, 12, 20, 0.78) 58%, rgba(3, 12, 20, 0.3) 100%),
      linear-gradient(0deg, rgba(3, 12, 20, 0.74) 0%, rgba(3, 12, 20, 0.04) 56%);
  }

  .hero-inner {
    min-height: 620px;
    padding-bottom: 42px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(2.04rem, 8.5vw, 2.45rem);
    line-height: 1.06;
  }

  .hero-copy,
  .hero-lede {
    max-width: 330px;
  }

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

  .hero-actions {
    width: auto;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-actions .button {
    width: auto;
  }

  .credential-row {
    grid-template-columns: 1fr;
  }

  .credential-row div {
    min-height: 88px;
    padding: 20px;
  }
}

/* Compact premium scale: smaller text, cleaner rhythm, no visual credential clutter. */
body {
  font-size: 15.5px;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  line-height: 1.04;
}

.page-hero h1 {
  max-width: 680px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.06;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.fact-lead h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  line-height: 1.14;
}

.about-intro-copy h2 {
  max-width: 620px;
  font-size: clamp(1.7rem, 2.65vw, 2.45rem);
  line-height: 1.12;
}

.hero-lede,
.page-lede,
.section-copy p,
.section-heading p,
.contact-copy p,
.fact-lead p,
.about-intro-copy p:not(.eyebrow) {
  font-size: 0.98rem;
  line-height: 1.72;
}

.section {
  padding: 76px 0;
}

.about-intro-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.64fr);
  gap: 56px;
}

.about-image-panel,
.about-image-panel img {
  min-height: 430px;
}

.about-image-panel::after,
.about-image-panel div {
  display: none;
}

.mission-section {
  padding: 64px 0;
}

.mission-layout {
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: 34px;
}

.mission-grid {
  gap: 14px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.mission-grid article {
  min-height: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(7, 24, 39, 0.06);
}

.mission-grid span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.72rem;
}

.mission-grid h3 {
  margin-top: 16px;
  font-size: 1.05rem;
}

.mission-grid p {
  font-size: 0.95rem;
}

.values-layout,
.leadership-layout,
.operator-layout {
  gap: 36px;
}

.core-values-list,
.service-pill-grid {
  padding: 22px;
}

.leader-feature h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.leadership-secondary article,
.team-roster-section .team-roster {
  padding: 24px;
}

.leader-monogram {
  width: 72px;
  height: 72px;
  font-size: 1.05rem;
}

.leader-feature {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
}

.js .reveal {
  transform: translateY(10px);
  filter: blur(6px);
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  filter: blur(0);
}

@media (max-width: 1040px) {
  .about-intro-layout,
  .mission-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1,
  .about-hero h1 {
    font-size: clamp(1.85rem, 7.4vw, 2.35rem);
    line-height: 1.1;
  }

  .about-intro-copy h2,
  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .fact-lead h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .about-image-panel,
  .about-image-panel img {
    min-height: 300px;
  }

  .mission-grid article,
  .leader-feature,
  .leadership-secondary article,
  .team-roster-section .team-roster {
    padding: 20px;
  }

  .leader-feature {
    grid-template-columns: 1fr;
  }
}

/* Final compact pass: quieter typography, cleaner spacing, and calmer premium sections. */
:root {
  --header-height: 68px;
}

body {
  font-size: 14.75px;
  line-height: 1.58;
  background: #f7faf8;
}

.nav-menu {
  gap: 24px;
  font-size: 0.86rem;
}

.button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.button-small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.premium-hero {
  min-height: clamp(520px, 74svh, 650px);
}

.hero-inner {
  min-height: clamp(470px, calc(74svh - 74px), 578px);
  padding: calc(var(--header-height) + 28px) 0 46px;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(2.15rem, 3.4vw, 3.2rem);
  line-height: 1.06;
}

.hero-kicker {
  margin-top: 14px;
  font-size: 0.92rem;
}

.hero-lede {
  width: min(500px, 100%);
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.64;
}

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

.page-hero,
.about-hero {
  min-height: 42svh;
}

.page-hero-compact {
  min-height: 36svh;
}

.page-hero-compact h1 {
  font-size: clamp(1.72rem, 2.35vw, 2.28rem);
}

.page-hero-inner {
  padding: calc(var(--header-height) + 34px) 0 44px;
}

.page-hero h1,
.about-hero h1 {
  max-width: 600px;
  font-size: clamp(1.85rem, 2.75vw, 2.55rem);
  line-height: 1.08;
}

.page-lede {
  width: min(520px, 100%);
  margin-top: 14px;
  font-size: 0.94rem;
  line-height: 1.62;
}

.section {
  padding: 64px 0;
}

.section-heading {
  width: min(620px, 100%);
  margin-bottom: 28px;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.fact-lead h2,
.about-intro-copy h2 {
  max-width: 560px;
  font-size: clamp(1.35rem, 1.95vw, 1.85rem);
  line-height: 1.16;
}

.hero-lede,
.page-lede,
.section-copy p,
.section-heading p,
.contact-copy p,
.fact-lead p,
.about-intro-copy p:not(.eyebrow) {
  font-size: 0.92rem;
  line-height: 1.64;
}

.section-copy p,
.section-heading p,
.contact-copy p,
.fact-lead p,
.about-intro-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 14px;
}

.planner-layout,
.profile-layout,
.fact-layout,
.operations-layout,
.gallery-layout,
.contact-layout,
.two-column,
.faq-layout,
.proof-layout,
.standards-layout,
.values-layout,
.leadership-layout,
.operator-layout {
  gap: 38px;
}

.fact-card,
.premium-card,
.proof-card,
.value-card,
.service-card,
.sector,
.standard,
.info-card,
.package-card,
.service-detail,
.credential-card,
.team-card,
.profile-statement-grid article,
.profile-panels article {
  min-height: 136px;
  padding: 20px;
  box-shadow: 0 14px 38px rgba(7, 24, 39, 0.07);
}

.fact-card span,
.premium-card span,
.proof-card span,
.service-icon,
.trust-icon,
.value-card span,
.info-card span,
.response-panel span,
.visit-panel svg {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.fact-card h3,
.premium-card h3,
.proof-card h3,
.service-card h3,
.sector h3,
.standard h3,
.value-card h3,
.package-card h3,
.info-card h3,
.response-panel h3,
.visit-panel h3,
.process-list h3 {
  font-size: 0.98rem;
}

.service-detail h2 {
  font-size: 1.08rem;
}

.fact-card p,
.premium-card p,
.proof-card p,
.service-card p,
.sector p,
.standard p,
.value-card p,
.service-detail p,
.package-card p,
.info-card p,
.response-panel p,
.visit-panel p,
.profile-statement-grid p,
.profile-panels p,
.credential-card p,
.leader-feature p,
.team-card p,
.team-roster li,
.faq-list p {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.58;
}

.about-intro-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.58fr);
  gap: 44px;
}

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

.mission-section {
  padding: 56px 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.1), transparent 36%),
    linear-gradient(180deg, #06111e 0%, #0a2430 100%);
  border: 0;
}

.mission-section .section-copy h2,
.mission-section .section-copy p {
  color: var(--paper);
}

.mission-layout {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 38px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-left: 24px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
}

.mission-grid article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  min-height: auto;
  padding: 18px 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.mission-grid article:first-child {
  padding-top: 0;
  border-top: 0;
}

.mission-grid span {
  display: none;
}

.mission-grid h3 {
  margin: 0;
  color: var(--paper);
  font-size: 0.86rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.mission-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.58;
}

.core-values-list,
.service-pill-grid {
  gap: 8px;
  padding: 18px;
  box-shadow: none;
}

.coverage-points span,
.core-values-list span,
.service-pill-grid span {
  min-height: 31px;
  padding: 0 10px;
  font-size: 0.75rem;
}

.leader-feature {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 24px;
}

.leader-monogram,
.leader-credentials {
  display: none;
}

.leader-feature h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.45rem);
  line-height: 1.18;
}

.leader-feature details {
  margin-top: 14px;
  padding-top: 14px;
}

.leader-feature details p {
  font-size: 0.88rem;
}

.leadership-secondary {
  gap: 14px;
}

.leadership-secondary article,
.team-roster-section .team-roster {
  padding: 20px;
  box-shadow: none;
}

.team-roster-section .team-roster ul {
  margin-top: 14px;
}

.team-roster-section .team-roster li {
  padding: 12px 0;
}

.team-roster h3 {
  font-size: 1rem;
}

.operator-layout {
  grid-template-columns: minmax(220px, 0.36fr) minmax(250px, 0.46fr) minmax(0, 0.76fr);
}

.profile-panels {
  gap: 12px;
}

.service-detail {
  min-height: 310px;
}

.service-detail ul,
.package-card ul,
.service-card ul {
  gap: 8px;
  margin-top: 18px;
}

.service-detail li,
.package-card li,
.service-card li {
  padding-left: 24px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.package-card {
  min-height: 280px;
}

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

.process-list article {
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 12px;
  padding: 14px 0;
}

.process-list span {
  width: 34px;
  height: 34px;
  font-size: 0.76rem;
}

.faq-list details {
  padding: 18px 20px;
  box-shadow: none;
}

.cta-panel {
  padding: 26px;
}

.cta-panel h2 {
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.18;
}

.site-footer {
  padding: 54px 0 26px;
}

.footer-main {
  gap: 28px;
}

.footer-brand-block p,
.footer-column a,
.footer-contact p,
.footer-contact a {
  font-size: 0.88rem;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.992);
  filter: blur(5px);
  will-change: opacity, transform, filter;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (max-width: 1040px) {
  .about-intro-layout,
  .mission-layout,
  .operator-layout {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 14.5px;
  }

  .section {
    padding: 48px 0;
  }

  .premium-hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero h1,
  .page-hero h1,
  .about-hero h1 {
    max-width: 320px;
    font-size: clamp(1.72rem, 6.8vw, 2.12rem);
    line-height: 1.12;
  }

  .hero-lede,
  .page-lede {
    max-width: 320px;
    font-size: 0.9rem;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .fact-lead h2,
  .about-intro-copy h2 {
    font-size: clamp(1.25rem, 5.2vw, 1.62rem);
  }

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

  .mission-grid article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .fact-card-grid,
  .premium-card-grid,
  .proof-card-grid,
  .service-detail-grid,
  .credential-grid,
  .team-grid,
  .standards-grid,
  .package-grid,
  .contact-info-grid,
  .service-grid,
  .trust-grid,
  .mission-grid,
  .leadership-secondary {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
    padding: 22px;
  }
}

/* Services/contact refinement: compact, grounded, and less loose. */
.service-system-section {
  padding-top: 38px;
  background: #ffffff;
}

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

.service-compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-compact-grid .service-detail {
  min-height: auto;
  display: grid;
  align-content: start;
  padding: 20px;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-compact-grid .service-detail:hover {
  transform: none;
  background: #fbfdfb;
  box-shadow: inset 0 0 0 1px rgba(28, 111, 90, 0.18);
}

.service-compact-grid .service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: var(--green);
  background: var(--green-soft);
  border-color: rgba(28, 111, 90, 0.18);
}

.service-compact-grid .service-detail h2 {
  font-size: 0.98rem;
  line-height: 1.22;
}

.service-compact-grid .service-detail p {
  min-height: 40px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.service-compact-grid .service-detail ul {
  gap: 7px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.service-compact-grid .service-detail li {
  padding-left: 20px;
  color: #526171;
  font-size: 0.8rem;
  line-height: 1.45;
}

.service-compact-grid .service-detail li::before {
  width: 12px;
  height: 12px;
}

.service-compact-grid .service-detail li::after {
  left: 4px;
  width: 4px;
  height: 6px;
}

.service-layer-section {
  padding: 52px 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.1), transparent 34%),
    linear-gradient(180deg, #06111e 0%, #0b2630 100%);
}

.service-layer-section .section-heading h2,
.service-layer-section .section-heading p {
  color: var(--paper);
}

.service-layer-section .package-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.service-layer-section .package-card,
.service-layer-section .package-card.featured {
  min-height: 198px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.055);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-layer-section .package-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.085);
}

.service-layer-section .package-card > span {
  color: var(--signal-2);
}

.service-layer-section .package-card h3,
.service-layer-section .package-card p,
.service-layer-section .package-card li {
  color: var(--paper);
}

.service-layer-section .package-card p,
.service-layer-section .package-card li {
  color: rgba(255, 255, 255, 0.72);
}

.service-layer-section .package-card ul {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.operations-section {
  background: #f7faf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operations-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.88fr);
  gap: 38px;
}

.operations-media::after {
  display: none;
}

.operations-media img {
  aspect-ratio: 16 / 11;
  box-shadow: 0 18px 48px rgba(7, 24, 39, 0.09);
}

.process-list article {
  background: transparent;
}

.faq-section {
  background: #ffffff;
}

.faq-layout {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
}

.faq-list details {
  border-radius: 0;
  border-width: 1px 0 0;
  background: transparent;
}

.faq-list details:first-child {
  border-top: 0;
}

.contact-section {
  background: #ffffff;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.56fr) minmax(420px, 0.82fr);
  gap: 42px;
}

.contact-actions {
  gap: 8px;
  margin-top: 24px;
}

.contact-actions a {
  min-height: 46px;
  box-shadow: none;
}

.response-panel,
.inquiry-form,
.info-card,
.visit-panel {
  box-shadow: none;
}

.inquiry-form {
  padding: 24px;
}

.contact-info-grid {
  margin-top: 34px;
}

.visit-layout {
  margin-top: 24px;
}

@media (max-width: 1040px) {
  .service-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .service-system-section,
  .service-layer-section {
    padding: 46px 0;
  }

  .service-compact-grid,
  .service-layer-section .package-grid {
    grid-template-columns: 1fr;
  }

  .service-compact-grid .service-detail {
    padding: 20px;
  }

  .service-compact-grid .service-detail p {
    min-height: auto;
  }

  .contact-layout {
    gap: 28px;
  }

  .inquiry-form {
    padding: 20px;
  }
}
