:root {
  --bg: #edf6ff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-dark: #0d406f;
  --text: #122843;
  --text-soft: #4c6484;
  --line: rgba(13, 64, 111, 0.14);
  --primary: #0c4f87;
  --primary-deep: #08345c;
  --secondary: #2294ef;
  --accent: #f47a1f;
  --accent-soft: rgba(244, 122, 31, 0.14);
  --sky-soft: #d9eefc;
  --shadow-lg: 0 28px 72px rgba(12, 49, 84, 0.16);
  --shadow-md: 0 18px 48px rgba(12, 49, 84, 0.11);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
  --hero-x: -60px;
  --hero-y: 0px;
  --hero-enter-y: 18px;
  --hero-left-offset: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 6% 16%, rgba(255, 255, 255, 0.92), transparent 19%),
    radial-gradient(circle at 18% 28%, rgba(34, 148, 239, 0.18), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(34, 148, 239, 0.18), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #eff7ff 46%, #e6f4ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 37, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 37, 64, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 44vh;
  pointer-events: none;
  background:
    radial-gradient(90% 120% at 16% 100%, rgba(8, 52, 92, 0.98) 0 42%, transparent 42.5%),
    radial-gradient(90% 110% at 18% 100%, rgba(12, 79, 135, 0.94) 0 51%, transparent 51.5%),
    radial-gradient(84% 104% at 24% 100%, rgba(34, 148, 239, 0.76) 0 58%, transparent 58.5%),
    radial-gradient(84% 100% at 31% 100%, rgba(92, 177, 245, 0.42) 0 66%, transparent 66.5%);
  z-index: -1;
}

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

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(244, 122, 31, 0.78);
  outline-offset: 4px;
}

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

button,
.button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 0;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(12, 79, 135, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-grid;
  justify-items: center;
  gap: 0;
  min-width: 0;
  width: clamp(138px, 10.5vw, 188px);
  overflow: visible;
  padding: 0;
  border-radius: 0;
}

.brand-logo {
  display: block;
  width: 84%;
  height: auto;
}

.brand-caption {
  display: block;
  width: 100%;
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.7rem, 0.88vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(4, 36, 68, 0.22);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(34, 148, 239, 0.2), rgba(12, 79, 135, 0.04)),
    white;
  color: var(--primary);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-text {
  max-width: 210px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17, 37, 64, 0.06);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-width: 48px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-button.is-active {
  background: var(--surface-strong);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(17, 37, 64, 0.08);
}

.section-grid {
  padding: 78px 0;
}

.lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 760px;
}

.stats-banner.lazy-section {
  contain-intrinsic-size: 0 520px;
}

.portfolio-section.lazy-section,
.contact-section.lazy-section {
  contain-intrinsic-size: 0 900px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(8px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-image-card,
.narrative-card,
.contact-card,
.trust-card,
.capability-card,
.info-card,
.org-card,
.protection-bar {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(17, 37, 64, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  padding: 36px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.42rem;
}

.hero-lead,
.section-note,
.narrative-card p,
.info-card p,
.capability-card p,
.portfolio-copy p,
.contact-points p {
  color: var(--text-soft);
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 60ch;
  font-size: 1.04rem;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 36px rgba(21, 69, 122, 0.24);
}

.button-secondary {
  color: var(--primary);
  border-color: rgba(21, 69, 122, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(21, 69, 122, 0.28);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(8, 52, 92, 0.1);
}

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(217, 238, 252, 0.4)),
    var(--surface);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -14% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(63, 133, 213, 0.22), transparent 72%);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
}

.hero-badge {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  color: white;
  background: linear-gradient(135deg, rgba(8, 52, 92, 0.88), rgba(12, 79, 135, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}

.hero-badge span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 0 0;
}

.trust-card,
.protection-bar {
  border-radius: 22px;
  padding: 18px 20px;
}

.trust-card span,
.protection-bar span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-note {
  margin: 0;
  max-width: 66ch;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
}

.narrative-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.pillar-grid,
.capability-grid,
.org-grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.capability-card {
  padding: 24px;
  border-radius: 22px;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  background: var(--accent-soft);
  border-radius: 999px;
}

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

.org-chart {
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(217, 238, 252, 0.92)),
    var(--surface);
  border: 1px solid rgba(12, 79, 135, 0.08);
  box-shadow: var(--shadow-md);
}

.org-level {
  display: flex;
  justify-content: center;
}

.org-level-top .org-card {
  max-width: 280px;
}

.org-card {
  width: 100%;
  max-width: 320px;
  padding: 20px 22px;
  border-radius: 22px;
  text-align: center;
}

.org-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.org-card-primary {
  background: linear-gradient(135deg, rgba(8, 52, 92, 0.96), rgba(34, 148, 239, 0.9));
  color: white;
}

.org-card-primary span {
  color: rgba(255, 255, 255, 0.72);
}

.org-connector {
  width: 2px;
  height: 34px;
  margin: 10px auto;
  background: linear-gradient(180deg, rgba(21, 69, 122, 0.18), rgba(21, 69, 122, 0.02));
}

.org-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.portfolio-section {
  position: relative;
  padding-top: 86px;
}

.portfolio-section .section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section-note-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(244, 122, 31, 0.12);
  border: 1px solid rgba(244, 122, 31, 0.18);
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-title {
  color: var(--primary-deep);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-align: center;
  max-width: none;
}

.portfolio-note {
  max-width: 64ch;
  margin: 0;
  text-align: center;
}

.portfolio-guard {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.portfolio-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) repeat(2, minmax(0, 0.72fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(12, 79, 135, 0.1);
  box-shadow: 0 18px 38px rgba(8, 52, 92, 0.08);
  cursor: zoom-in;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(12, 79, 135, 0.16);
  box-shadow: 0 24px 48px rgba(8, 52, 92, 0.13);
}

.portfolio-card img {
  width: 100%;
  height: auto;
  background: #edf6ff;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 360ms ease, filter 360ms ease;
}

.portfolio-feature-layout .portfolio-card {
  min-height: clamp(180px, 18vw, 260px);
}

.portfolio-feature-layout .portfolio-card img {
  height: 100%;
  object-fit: cover;
}

.portfolio-card.is-featured {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
  min-height: clamp(360px, 46vw, 560px);
}

.portfolio-archive {
  column-count: 3;
  column-gap: 18px;
}

.portfolio-archive .portfolio-card {
  margin: 0 0 18px;
}

.portfolio-card::before,
.portfolio-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.portfolio-card::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 54%, rgba(5, 27, 48, 0.2) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.56;
}

.portfolio-card::after {
  content: var(--watermark, "PT PUTRA ARMADA LOGISTIK");
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  text-shadow: 0 2px 10px rgba(8, 52, 92, 0.56);
  white-space: nowrap;
  transform: none;
  opacity: 0.86;
}

.portfolio-card:hover img,
.portfolio-card:focus-within img {
  transform: scale(1.025);
  filter: saturate(1.07) contrast(1.04);
}

.portfolio-actions {
  display: flex;
  justify-content: center;
}

.portfolio-toggle {
  min-width: min(100%, 260px);
}

.portfolio-dialog {
  width: min(94vw, 1120px);
  max-height: 90dvh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #071e35;
  box-shadow: 0 32px 90px rgba(4, 36, 68, 0.34);
}

.portfolio-dialog::backdrop {
  background: rgba(4, 20, 36, 0.72);
  backdrop-filter: blur(6px);
}

.portfolio-dialog img {
  width: 100%;
  max-height: 90dvh;
  object-fit: contain;
  background: #071e35;
}

.portfolio-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 30, 53, 0.78);
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding: 30px;
  border-radius: 32px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 4px 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.site-footer p {
  margin: 0;
}

main {
  display: grid;
  gap: 22px;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.95), transparent 16%),
    linear-gradient(180deg, #f9fcff 0%, #eef6ff 100%);
}

body::after {
  background: none;
}

.page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-banner {
  position: relative;
  min-height: clamp(560px, 82svh, 680px);
  overflow: hidden;
  border-radius: 0;
  background: #08345c;
  box-shadow: 0 30px 70px rgba(8, 52, 92, 0.24);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 36, 68, 0.88) 0%, rgba(8, 52, 92, 0.7) 34%, rgba(8, 52, 92, 0.34) 62%, rgba(8, 52, 92, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20%);
  z-index: 1;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: auto auto -14% -8%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 122, 31, 0.18) 0%, rgba(244, 122, 31, 0.08) 34%, transparent 66%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.06) contrast(1.02) brightness(0.94);
  transform: scale(1.04);
  animation: heroImageIn 1200ms ease-out both;
}

.hero-topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(20px, 5vw, 64px) 14px;
  animation: heroFadeUp 700ms ease-out both;
}

.hero-topbar .brand-logo {
  filter:
    drop-shadow(0 14px 30px rgba(4, 36, 68, 0.34))
    drop-shadow(0 2px 8px rgba(255, 255, 255, 0.06));
}

.hero-topbar .site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.hero-topbar .site-nav a:hover,
.hero-topbar .site-nav a:focus-visible {
  color: #ffffff;
}

.hero-topbar .lang-switch {
  background: rgba(255, 255, 255, 0.12);
}

.hero-topbar .lang-button {
  color: rgba(255, 255, 255, 0.84);
}

.hero-topbar .lang-button.is-active {
  background: #ffffff;
  color: var(--primary);
}

.hero-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(20px, 5vw, 64px);
  pointer-events: none;
}

.hero-banner-copy {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 700px);
  max-width: 700px;
  padding-left: 18px;
  justify-items: start;
  margin-left: var(--hero-left-offset);
  transform: translate(0, var(--hero-y));
  animation: heroFadeUpSoft 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
  pointer-events: auto;
}

.hero-banner-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 66px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(244, 122, 31, 0.22));
}

.hero-light {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: -2px;
}

.hero-light-copy,
.hero-banner-copy .hero-lead {
  color: rgba(255, 255, 255, 0.84);
  max-width: 56ch;
}

.hero-banner h1 {
  max-width: 23ch;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.55vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-align: left;
  text-shadow:
    0 10px 24px rgba(4, 36, 68, 0.28),
    0 22px 60px rgba(4, 36, 68, 0.24);
}

.hero-banner h1 span {
  display: block;
  white-space: nowrap;
  transform-origin: left center;
  will-change: opacity, transform, filter, letter-spacing;
  animation: heroLineSubtle 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-banner h1 span:nth-child(2) {
  animation-delay: 90ms;
}

.hero-banner .hero-lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.32vw, 1.08rem);
  text-align: left;
  max-width: 58ch;
  text-shadow: 0 6px 18px rgba(4, 36, 68, 0.18);
}

.hero-banner .button-primary {
  box-shadow: 0 18px 38px rgba(244, 122, 31, 0.32);
}

.button-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.stats-panel span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-panel strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -44px;
  padding: 0 clamp(20px, 5vw, 64px);
  position: relative;
  z-index: 3;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes heroFadeUpSoft {
  from {
    opacity: 0;
    transform: translate(0, var(--hero-enter-y));
  }

  to {
    opacity: 1;
    transform: translate(0, var(--hero-y));
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes heroLineSubtle {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(10px);
    letter-spacing: 0.04em;
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    letter-spacing: 0.015em;
  }
}

.service-tile {
  display: grid;
  gap: 14px;
  padding: 26px 22px 24px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(12, 79, 135, 0.08);
  box-shadow: 0 18px 42px rgba(8, 52, 92, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-tile::before {
  content: "";
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(244, 122, 31, 0.18));
}

.service-tile:hover,
.service-tile:focus-within {
  transform: translateY(-4px);
  border-color: rgba(12, 79, 135, 0.14);
  box-shadow: 0 24px 52px rgba(8, 52, 92, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--secondary);
  background: rgba(34, 148, 239, 0.1);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tile h3 {
  color: var(--primary-deep);
  font-size: 1.34rem;
}

.service-tile p {
  margin: 0;
  color: var(--text-soft);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
  padding-top: 62px;
  padding-bottom: 62px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.showcase-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 3.2vw, 42px);
  align-items: start;
  width: 100%;
}

.mission-column,
.service-column {
  display: grid;
  gap: 22px;
}

.service-column {
  position: relative;
  padding: 24px clamp(18px, 2.4vw, 30px);
  border-radius: 30px;
  background: linear-gradient(145deg, #08345c 0%, #0c4f87 58%, #1572c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(8, 52, 92, 0.16);
  overflow: hidden;
}

.service-column::before {
  content: "";
  position: absolute;
  inset: auto auto -48px -38px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 122, 31, 0.2) 0%, rgba(244, 122, 31, 0) 72%);
  pointer-events: none;
}

.mission-title,
.service-title {
  justify-self: start;
  margin: 0;
  color: var(--primary-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 2.5vw, 2.45rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-align: left;
  text-transform: uppercase;
  max-width: none;
}

.service-title {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.mission-panel {
  width: 100%;
  padding: 22px clamp(18px, 2.1vw, 28px);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(12, 79, 135, 0.1);
  box-shadow: 0 16px 34px rgba(8, 52, 92, 0.05);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 0;
  margin: 0;
}

.mission-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(12, 79, 135, 0.1);
}

.mission-bullet {
  width: 12px;
  height: 12px;
  margin-top: 0.48em;
  border-radius: 999px;
  background: linear-gradient(135deg, #f47a1f 0%, #ffb164 100%);
  box-shadow: 0 0 0 5px rgba(244, 122, 31, 0.12);
}

.mission-item p {
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(1rem, 1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.5;
}

.mission-item:last-child {
  border-bottom-color: transparent;
  padding-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.core-service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 196px;
  padding: 22px 20px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f4faff 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 32px rgba(4, 32, 58, 0.16);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.core-service-card::before {
  content: "";
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f47a1f, rgba(244, 122, 31, 0.18));
}

.core-service-card:hover,
.core-service-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 36px rgba(4, 32, 58, 0.2);
}

.core-service-card h3 {
  color: var(--primary-deep);
  font-size: clamp(1.22rem, 1.35vw, 1.42rem);
  line-height: 1;
}

.core-service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.stats-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
  border-top: 1px solid rgba(12, 79, 135, 0.08);
  border-bottom: 1px solid rgba(12, 79, 135, 0.08);
}

.stats-copy {
  padding: 72px clamp(20px, 5vw, 64px);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
}

.stats-copy h2 {
  color: #ffffff;
  max-width: 11ch;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat-box {
  display: grid;
  gap: 4px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-box strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.stat-box span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-visual {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(8, 41, 69, 0.82), rgba(16, 60, 103, 0.72)),
    url("assets/11.jpg") center/cover no-repeat;
}

.stats-network {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 15%),
    radial-gradient(circle at 35% 38%, rgba(255, 255, 255, 0.12), transparent 2.5%),
    radial-gradient(circle at 64% 42%, rgba(255, 255, 255, 0.12), transparent 2.5%),
    radial-gradient(circle at 54% 64%, rgba(255, 255, 255, 0.12), transparent 2.5%),
    linear-gradient(120deg, transparent 0 33%, rgba(255, 255, 255, 0.1) 33.5%, transparent 34%),
    linear-gradient(220deg, transparent 0 41%, rgba(255, 255, 255, 0.08) 41.5%, transparent 42%),
    linear-gradient(15deg, transparent 0 55%, rgba(255, 255, 255, 0.07) 55.5%, transparent 56%);
}

.stats-panel {
  position: absolute;
  right: 26px;
  bottom: 26px;
  max-width: 320px;
  display: grid;
  gap: 10px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.section-heading h2,
.contact-card h2 {
  max-width: 14ch;
}

.org-chart {
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(12, 79, 135, 0.08);
  box-shadow: 0 18px 44px rgba(8, 52, 92, 0.08);
}

.org-chart-image {
  display: block;
  width: 100%;
  height: auto;
}

.legality-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid rgba(12, 79, 135, 0.08);
}

.legality-heading {
  justify-items: center;
  text-align: center;
  margin-bottom: 26px;
}

.legality-title {
  color: var(--primary-deep);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: 0.035em;
  max-width: none;
}

.legality-note {
  max-width: 60ch;
  text-align: center;
}

.legality-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1120px);
  margin: 0 auto 24px;
}

.legality-trust-copy {
  width: min(100%, 780px);
  margin: 0 auto 28px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.66;
  text-align: center;
}

.legality-summary-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(12, 79, 135, 0.08);
  box-shadow: 0 12px 28px rgba(8, 52, 92, 0.05);
  color: var(--primary-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.legality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.legal-card {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(12, 79, 135, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(8, 52, 92, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.legal-card:hover,
.legal-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(8, 52, 92, 0.12);
}

.legal-card img {
  width: 100%;
  height: clamp(280px, 34vw, 360px);
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.legal-card {
  position: relative;
}

.legal-card::after {
  content: "Preview";
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 52, 92, 0.84);
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-card-meta {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(12, 79, 135, 0.08);
}

.legal-card-label {
  color: var(--primary);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-card-meta h3 {
  color: var(--primary-deep);
  font-size: clamp(1.18rem, 1.35vw, 1.42rem);
  line-height: 1;
}

.contact-section {
  background:
    linear-gradient(135deg, #08345c 0%, #0c4f87 52%, #1572c0 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body {
  background: #ffffff;
}

body::after {
  background: none;
}

main {
  gap: 0;
}

.section-grid {
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.contact-shell {
  display: grid;
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.contact-header {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.contact-header h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.82fr) minmax(240px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 196px;
  padding: 28px 26px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 46px rgba(4, 36, 68, 0.18);
  backdrop-filter: blur(16px);
}

.contact-panel:first-child {
  padding-right: 34px;
}

.contact-panel::before {
  content: "";
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f47a1f, rgba(244, 122, 31, 0.12));
}

.contact-label {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel p {
  margin: 0;
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1.7;
}

.contact-link {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.contact-link:hover,
.contact-link:focus-visible {
  text-decoration-color: #ffffff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 4px;
}

.contact-section .contact-whatsapp {
  background: linear-gradient(135deg, #f47a1f, #ff9a47);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(244, 122, 31, 0.24);
}

.contact-section .button-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.contact-section .button-light:hover,
.contact-section .button-light:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0c4f87, #2294ef);
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(8, 52, 92, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(8, 52, 92, 0.28);
}

@media (max-width: 1180px) {
  .hero-banner-content,
  .stats-banner {
    grid-template-columns: 1fr;
  }

  .hero-banner-image {
    width: 100%;
    opacity: 1;
    object-position: center center;
  }

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

  .stats-visual {
    min-height: 320px;
  }

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

  .contact-panel:first-child {
    grid-column: 1 / -1;
    padding-right: 26px;
  }

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

  .showcase-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .legality-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
  }

  .hero-banner {
    min-height: clamp(560px, 92svh, 680px);
  }

  .hero-topbar {
    gap: 12px 10px;
  }

  .hero-topbar .brand {
    width: clamp(118px, 32vw, 148px);
  }

  .hero-topbar .brand-caption {
    margin-top: -1px;
    font-size: clamp(0.56rem, 1.7vw, 0.72rem);
    letter-spacing: 0.06em;
  }

  .hero-topbar .site-nav {
    gap: 8px;
  }

  .hero-topbar .site-nav a {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .hero-banner-content {
    padding: 16px 20px 34px;
  }

  .hero-banner h1 {
    max-width: 14ch;
    font-size: clamp(1.82rem, 6.9vw, 2.28rem);
  }

  .hero-banner-copy {
    width: min(100%, 35rem);
    max-width: 35rem;
    gap: 14px;
    padding-left: 14px;
    justify-items: start;
    margin-left: 0;
    transform: none;
  }

  .hero-banner-copy::before {
    left: 0;
    top: 6px;
    height: 48px;
  }

  .hero-banner .hero-lead {
    max-width: 36ch;
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .service-strip,
  .stats-grid,
  .org-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .showcase-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-heading-row {
    gap: 10px;
  }

  .contact-shell {
    gap: 22px;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .contact-actions {
    justify-content: stretch;
    padding-top: 0;
  }

  .contact-actions .button {
    flex: 1 1 220px;
  }

  .contact-panel {
    min-height: auto;
    padding: 22px 20px 20px;
  }

  .mission-panel {
    padding: 20px 18px;
  }

  .mission-item {
    padding: 14px 0;
    border-bottom-color: rgba(12, 79, 135, 0.1);
  }

  .mission-item:last-child {
    border-bottom-color: transparent;
    padding-bottom: 0;
  }

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

  .service-column {
    padding: 20px 18px;
    border-radius: 24px;
  }

  .core-service-card {
    min-height: auto;
    padding: 20px 18px 18px;
  }

  .legality-summary-item {
    min-height: 0;
    padding: 14px 16px;
  }

  .legal-card img {
    height: clamp(240px, 68vw, 320px);
    padding: 16px;
  }

  .stats-panel {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

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

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

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

  .portfolio-card.is-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: clamp(320px, 58vw, 480px);
  }

  .portfolio-archive {
    column-count: 2;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-banner {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: clamp(620px, 100svh, 760px);
  }

  .hero-banner::before {
    background:
      linear-gradient(180deg, rgba(4, 36, 68, 0.92) 0%, rgba(8, 52, 92, 0.78) 34%, rgba(8, 52, 92, 0.52) 62%, rgba(8, 52, 92, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20%);
  }

  .hero-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px 12px;
    padding: max(12px, env(safe-area-inset-top)) 20px 0;
  }

  .hero-topbar .brand {
    justify-items: start;
    width: clamp(124px, 34vw, 164px);
  }

  .hero-topbar .brand-caption {
    text-align: left;
  }

  .hero-topbar .header-actions {
    display: contents;
  }

  .hero-topbar .lang-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
  }

  .hero-topbar .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 2px;
  }

  .hero-topbar .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-size: 0.82rem;
    letter-spacing: 0.11em;
  }

  .hero-banner-content {
    position: relative;
    inset: auto;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    padding: 18px 20px 40px;
    pointer-events: none;
  }

  .hero-banner-copy {
    width: min(100%, 38rem);
    max-width: 38rem;
    margin-left: 0;
    transform: none;
  }

  .hero-banner h1 {
    max-width: 15ch;
    font-size: clamp(1.9rem, 7vw, 2.55rem);
    line-height: 0.96;
  }

  .hero-banner h1 span {
    white-space: normal;
  }

  .hero-banner .hero-lead {
    max-width: 38ch;
    font-size: clamp(0.92rem, 2.5vw, 1rem);
    line-height: 1.58;
  }

  .hero-copy,
  .hero-image-card,
  .narrative-card,
  .info-card,
  .capability-card,
  .org-chart,
  .protection-bar {
    padding-inline: 20px;
  }

  .hero {
    gap: 20px;
  }

  .trust-band,
  .pillar-grid,
  .capability-grid,
  .org-grid,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .contact-panel:first-child {
    grid-column: auto;
    padding-right: 20px;
  }

  .hero-badge {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .portfolio-section {
    padding-top: 58px;
  }

  .portfolio-section .section-heading {
    margin-bottom: 24px;
  }

  .portfolio-note {
    max-width: 38ch;
  }

  .portfolio-feature-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portfolio-feature-layout .portfolio-card,
  .portfolio-card.is-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .portfolio-feature-layout .portfolio-card img {
    height: auto;
    object-fit: contain;
  }

  .portfolio-archive {
    column-count: 1;
    column-gap: 0;
  }

  .portfolio-archive .portfolio-card {
    margin-bottom: 14px;
  }

  .portfolio-card {
    border-radius: 16px;
  }

  .portfolio-card::after {
    font-size: 0.72rem;
    white-space: normal;
  }

  .portfolio-dialog {
    width: calc(100vw - 24px);
    border-radius: 16px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .site-footer {
    padding-bottom: 20px;
  }
}

@media (max-width: 760px) {
  .hero-banner {
    min-height: clamp(560px, 92svh, 680px);
  }

  .hero-topbar {
    gap: 12px 10px;
  }

  .hero-topbar .brand {
    width: clamp(118px, 32vw, 148px);
  }

  .hero-topbar .brand-caption {
    margin-top: -1px;
    font-size: clamp(0.56rem, 1.7vw, 0.72rem);
    letter-spacing: 0.06em;
  }

  .hero-topbar .site-nav {
    gap: 8px;
  }

  .hero-topbar .site-nav a {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .hero-banner-content {
    padding: 16px 20px 34px;
  }

  .hero-banner-copy {
    width: min(100%, 35rem);
    max-width: 35rem;
    gap: 14px;
    padding-left: 14px;
  }

  .hero-banner-copy::before {
    top: 6px;
    height: 48px;
  }

  .hero-banner h1 {
    max-width: 14ch;
    font-size: clamp(1.82rem, 6.9vw, 2.28rem);
  }

  .hero-banner .hero-lead {
    max-width: 36ch;
    font-size: 0.94rem;
    line-height: 1.56;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
