:root {
  --ink: #101820;
  --muted: #5d6874;
  --paper: #f7faf9;
  --white: #ffffff;
  --navy: #061a28;
  --teal: #00a7a5;
  --green: #65bf73;
  --amber: #ffb84d;
  --line: #dce5e2;
  --shadow: 0 18px 50px rgba(8, 30, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(6, 26, 40, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 5px;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.nav-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-menu a.active {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.language-option {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.language-option.active {
  background: var(--amber);
  color: #211506;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 15, 24, 0.9) 0%, rgba(6, 26, 40, 0.74) 38%, rgba(6, 26, 40, 0.18) 76%),
    linear-gradient(0deg, rgba(3, 15, 24, 0.8), rgba(3, 15, 24, 0.05) 40%);
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 64px auto 120px;
  color: var(--white);
}

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

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--amber);
  color: #211506;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.26);
}

.section .button.secondary,
.profile-card .button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-metrics {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.hero-metrics article {
  min-height: 96px;
  padding: 18px;
  background: rgba(3, 15, 24, 0.56);
  color: var(--white);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 56px;
  align-items: end;
}

.section-heading h2,
.strength-copy h2,
.business-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy,
.strength-copy p,
.business-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.service-card {
  padding: 24px;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e7f6f2;
  color: var(--teal);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.profile-card h3 {
  margin: 22px 0 8px;
  font-size: 1.18rem;
}

.service-card p,
.profile-card p {
  color: var(--muted);
}

.strength-band,
.business-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: 8px;
  padding: 48px;
  display: grid;
  gap: 40px;
  align-items: center;
}

.strength-band {
  grid-template-columns: 1fr minmax(320px, 0.85fr);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.strength-copy h2,
.business-panel h2 {
  color: inherit;
}

.strength-copy p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.strength-list {
  display: grid;
  gap: 12px;
}

.strength-list article {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
}

.strength-list strong,
.strength-list span {
  display: block;
}

.strength-list strong {
  color: var(--white);
  font-size: 1rem;
}

.strength-list span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.profile-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.profile-card {
  padding: 28px;
}

.profile-card.highlighted {
  border-color: rgba(0, 167, 165, 0.55);
  box-shadow: var(--shadow);
}

.profile-label {
  display: inline-block;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.business-band {
  grid-template-columns: 0.9fr 1.1fr;
  background: #e9f1ef;
  position: relative;
  padding-top: 76px;
}

.business-title-badge {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 8px;
  padding: 7px 24px;
  background: #4d6270;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.16);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.business-panel p {
  margin-top: 16px;
}

.business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.business-list span {
  border: 1px solid #cbd9d5;
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.partner-panel {
  align-self: stretch;
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #cbd9d5;
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.08);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.centered-partner-panel {
  display: grid;
  align-content: center;
}

.partner-logo {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  padding: 16px;
  text-align: center;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.partner-logo-img {
  width: min(100%, 132px);
  height: 76px;
  object-fit: contain;
  border-radius: 8px;
}

.partner-logo strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.25;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

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

.field.wide {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
}

.page-hero {
  min-height: 420px;
  padding: 148px 0 72px;
  background:
    linear-gradient(90deg, rgba(3, 15, 24, 0.9), rgba(6, 26, 40, 0.72)),
    url("assets/telecom-hero.png") center / cover;
  color: var(--white);
}

.page-hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.content-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.statement-list {
  display: grid;
  gap: 16px;
}

.statement-card,
.contact-info-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.statement-card h3,
.contact-info-card h3 {
  margin: 0 0 8px;
}

.statement-card p,
.contact-info-card p {
  margin: 0;
  color: var(--muted);
}

.company-profile-intro {
  display: grid;
  gap: 24px;
  align-content: start;
}

.company-logo-card {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(0, 167, 165, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.company-logo-card img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.company-profile-copy {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.company-profile-copy p,
.company-commitment p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.company-commitment {
  display: grid;
  gap: 16px;
  padding: 34px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.company-commitment p {
  color: rgba(255, 255, 255, 0.78);
}

.core-values-section {
  padding-top: 28px;
}

.core-values-band {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 165, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.core-values-kicker {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #031118;
}

.core-values-kicker strong,
.core-values-kicker span {
  display: block;
}

.core-values-kicker strong {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.core-values-kicker span {
  font-weight: 800;
  text-transform: uppercase;
}

.core-values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.core-values-list article {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

.core-values-list strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.core-values-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.values-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-card strong {
  display: block;
  margin-bottom: 8px;
}

.value-card span {
  color: var(--muted);
}

.partner-page-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-page-grid .partner-logo {
  min-height: 150px;
}

.partner-logo p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.featured-partners {
  grid-template-columns: repeat(3, 1fr);
}

.featured-partners .partner-logo {
  min-height: 220px;
}

.site-overview {
  margin-top: 34px;
}

.site-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.site-region-grid article {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.site-region-grid strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.site-region-grid span {
  color: var(--muted);
  font-weight: 800;
}

.map-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.dark-map {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.map-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.map-image-wrap img {
  width: 100%;
  display: block;
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(6, 26, 40, 0.28);
}

.pin::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 184, 77, 0.28);
}

.pin-sumut {
  left: 10.2%;
  top: 26.5%;
}

.pin-banten {
  left: 23.4%;
  top: 79.2%;
}

.pin-kaltim {
  left: 45.8%;
  top: 34.2%;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.map-legend span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #f8fbfa;
  color: var(--ink);
  font-weight: 800;
}

.dark-map .map-legend span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.partner-narrative {
  margin-top: 26px;
  padding: 26px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.partner-narrative p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.scope-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.scope-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.scope-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #e7f6f2;
  color: var(--teal);
  font-weight: 800;
}

.scope-card h3 {
  margin: 20px 0 8px;
}

.scope-card p {
  margin: 0;
  color: var(--muted);
}

.partner-detail-card {
  align-content: start;
  justify-items: start;
  text-align: left;
}

.partner-detail-card .logo-mark {
  margin-bottom: 4px;
}

.partner-detail-card .partner-logo-img {
  width: min(100%, 168px);
  height: 96px;
  margin-bottom: 4px;
}

.partner-detail-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.partner-detail-card li + li {
  margin-top: 5px;
}

.partner-cta {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.partner-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.sitemap-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sitemap-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.sitemap-card h3 {
  margin: 0 0 14px;
}

.sitemap-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.sitemap-card li + li {
  margin-top: 8px;
}

.sitemap-card a {
  color: var(--ink);
  font-weight: 700;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info-list {
  display: grid;
  gap: 14px;
}

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

.award-section {
  padding-top: 28px;
}

.award-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0, 167, 165, 0.35);
  box-shadow: var(--shadow);
}

.award-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.award-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.award-card p:not(.award-label) {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.award-card p + p {
  margin-top: 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    gap: 10px;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 26, 40, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    overflow: hidden;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 15px 18px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    margin-top: 110px;
  }

  .intro,
  .strength-band,
  .business-band,
  .contact,
  .content-split,
  .contact-page-layout,
  .site-overview {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .profile-grid,
  .values-grid,
  .core-values-list,
  .partner-page-grid,
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .core-values-list article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, 1160px);
    height: 68px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    width: min(100% - 24px, 1160px);
    margin-bottom: 240px;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1160px);
  }

  .section,
  .strength-band,
  .business-band {
    width: min(100% - 24px, 1160px);
  }

  .section {
    padding: 62px 0;
  }

  .strength-band,
  .business-band {
    padding: 28px;
  }

  .business-band {
    padding-top: 64px;
  }

  .service-grid,
  .profile-grid,
  .values-grid,
  .core-values-list,
  .partner-page-grid,
  .site-region-grid,
  .scope-grid,
  .sitemap-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .partner-cta {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .footer {
    width: min(100% - 24px, 1160px);
    flex-direction: column;
  }
}
