:root {
  --navy: #061936;
  --navy-2: #0a2a58;
  --blue: #0f61c9;
  --blue-2: #2d86ff;
  --ink: #10264b;
  --muted: #69778c;
  --line: #dfe7f3;
  --bg: #f5f8fc;
  --white: #ffffff;
  --gold: #c99a45;
  --shadow: 0 18px 45px rgba(8, 33, 70, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.inner-page .site-header {
  background: rgba(4, 22, 49, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 25px;
}

.brand strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  opacity: 0.8;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.86);
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 19px;
  width: 28px;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
}

.hotline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}

.hotline i {
  font-size: 30px;
}

.hotline small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.86;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
}

.mobile-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 22, 48, 0.96);
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 11px 12px;
  border-radius: 6px;
  color: #fff;
}

.mobile-panel a.active,
.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-call {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.hero {
  min-height: 530px;
  padding: 130px 0 90px;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(3, 17, 39, 0.94), rgba(6, 30, 67, 0.62) 52%, rgba(3, 15, 34, 0.48)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: 660px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: #79aaff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #075bd4, #2b8cff);
  box-shadow: 0 16px 30px rgba(22, 105, 218, 0.28);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.btn.ghost.light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn.dark {
  color: #fff;
  background: var(--navy);
}

.hero-stats {
  display: grid;
  gap: 14px;
  padding: 28px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  align-items: center;
}

.hero-stats i {
  grid-row: span 2;
  color: var(--navy-2);
  font-size: 33px;
}

.hero-stats strong {
  font-size: 28px;
  line-height: 1;
  color: #17366e;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.country-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid rgba(12, 46, 91, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.country-strip a {
  min-height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.country-strip a:last-child {
  border-right: 0;
}

.country-strip i {
  color: var(--navy-2);
  font-size: 52px;
}

.country-strip strong {
  color: #183866;
  font-size: 18px;
}

.country-strip span {
  color: #7b8797;
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2,
.about-copy h2,
.detail-content h2,
.contact-card h2,
.message-form h2,
.article h2,
.copy-card h2,
.cta-band h2 {
  margin: 0;
  color: #0a2b5a;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-2);
  font-weight: 800;
}

.split-home {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: start;
}

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

.project-card,
.news-card,
.copy-card,
.contact-card,
.message-form,
.article,
.article-side,
.detail-side,
.detail-content,
.success-card,
.metric-card,
.value-grid > div {
  background: #fff;
  border: 1px solid rgba(14, 46, 91, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(7, 38, 78, 0.08);
}

.project-card {
  overflow: hidden;
}

.card-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-image img,
.news-thumb img,
.article img,
.media-stat > img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .card-image img,
.news-card:hover img {
  transform: scale(1.05);
}

.card-image span {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  color: #fff;
  background: rgba(5, 24, 54, 0.78);
  border-radius: 999px;
  font-size: 12px;
}

.card-body {
  padding: 18px 16px 20px;
  text-align: center;
}

.tagline {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.card-body h3,
.news-card h3,
.news-row h3 {
  margin: 0 0 8px;
  color: #163966;
  font-size: 18px;
  line-height: 1.35;
}

.card-body p,
.news-card p,
.news-row p,
.about-copy p,
.detail-content p,
.copy-card p,
.article p,
.cta-band p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.news-panel {
  min-width: 0;
}

.news-list.compact {
  display: grid;
  gap: 18px;
}

.news-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.news-row:last-child {
  border-bottom: 0;
}

.news-thumb {
  display: block;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border-radius: 6px;
}

.news-row p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-row time,
.news-card time,
.article time {
  display: block;
  margin-top: 8px;
  color: #8390a3;
  font-size: 13px;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 62px;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 22px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-row span {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.feature-row i {
  color: var(--navy-2);
  font-size: 30px;
}

.feature-row b {
  color: #183866;
}

.feature-row small {
  color: #7f8998;
  font-size: 12px;
}

.media-stat {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.media-stat > img {
  min-height: 420px;
}

.play-card {
  position: absolute;
  left: 36px;
  bottom: 118px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  color: #fff;
  background: rgba(6, 29, 64, 0.76);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.play-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.play-card small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.media-metrics {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 20px;
  color: #fff;
  background: rgba(3, 22, 52, 0.9);
}

.media-metrics strong {
  display: block;
  text-align: center;
  font-size: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.media-metrics strong:last-child {
  border-right: 0;
}

.media-metrics span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
}

.partners {
  padding-top: 28px;
}

.center-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.center-title span {
  width: 44px;
  height: 2px;
  background: #274a7a;
}

.center-title h2 {
  margin: 0;
  color: #0a2b5a;
  font-size: 28px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
  max-width: 920px;
  margin: 0 auto;
}

.partner-grid div {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #24446e;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

.inner-hero,
.detail-hero {
  min-height: 350px;
  display: grid;
  align-items: center;
  padding: 130px max(20px, calc((100% - 1180px) / 2)) 70px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(4, 19, 42, 0.94), rgba(8, 41, 86, 0.7), rgba(4, 19, 42, 0.58)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.inner-hero {
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.inner-hero h1,
.detail-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.18;
}

.inner-hero p,
.detail-hero p {
  max-width: 690px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.inner-hero > i {
  font-size: 120px;
  opacity: 0.22;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-tabs a {
  padding: 9px 15px;
  color: #28456e;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.category-tabs a.active,
.category-tabs a:hover {
  color: #fff;
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.detail-hero {
  min-height: 520px;
  background-image:
    linear-gradient(90deg, rgba(4, 19, 42, 0.94), rgba(5, 27, 61, 0.75), rgba(5, 22, 48, 0.22)),
    var(--detail-image);
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: start;
}

.detail-side,
.detail-content {
  padding: 28px;
}

.detail-side h2 {
  margin: 0 0 18px;
}

.detail-side dl {
  margin: 0;
  display: grid;
  gap: 16px;
}

.detail-side div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-side dt {
  color: #8a95a5;
  font-size: 13px;
}

.detail-side dd {
  margin: 4px 0 0;
  color: #173866;
  font-weight: 800;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0 32px;
}

.highlight-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.highlight-grid i {
  color: var(--blue);
  font-size: 34px;
}

.highlight-grid strong {
  display: block;
  margin: 10px 0 6px;
  color: #173866;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list b {
  display: block;
  color: #173866;
}

.process-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

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

.news-card {
  overflow: hidden;
}

.news-card .news-thumb {
  border-radius: 0;
  aspect-ratio: 1.55 / 1;
}

.news-card div {
  padding: 20px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.article,
.article-side {
  padding: 30px;
}

.article > img {
  height: 360px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.article p {
  margin-top: 16px;
  font-size: 16px;
}

.article-side {
  display: grid;
  gap: 18px;
}

.article-side .news-card {
  box-shadow: none;
}

.article-side .news-thumb {
  aspect-ratio: 1.7 / 1;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.copy-card,
.contact-card,
.message-form,
.success-card {
  padding: 34px;
}

.metric-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.metric-card span {
  min-height: 130px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-card span:nth-child(2n) {
  border-right: 0;
}

.metric-card span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.metric-card i {
  color: var(--navy-2);
  font-size: 34px;
}

.metric-card b {
  color: #173866;
  font-size: 30px;
}

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

.value-grid > div {
  padding: 28px;
}

.value-grid i {
  color: var(--blue);
  font-size: 38px;
}

.value-grid h3 {
  margin: 14px 0 8px;
  color: #173866;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-card p {
  display: grid;
  grid-template-columns: 40px 86px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card p:last-child {
  border-bottom: 0;
}

.contact-card i {
  color: var(--blue);
  font-size: 30px;
}

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

.contact-card b {
  color: #173866;
}

.message-form {
  display: grid;
  gap: 15px;
}

.message-form label {
  display: grid;
  gap: 7px;
  color: #173866;
  font-weight: 800;
}

.message-form input,
.message-form select,
.message-form textarea,
.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfe;
  color: var(--ink);
  outline: none;
}

.message-form input,
.message-form select {
  height: 46px;
  padding: 0 13px;
}

.message-form textarea {
  resize: vertical;
  padding: 12px 13px;
}

.message-form input:focus,
.message-form select:focus,
.message-form textarea:focus,
.search-box input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 97, 201, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.search-section {
  display: grid;
  gap: 22px;
}

.search-box {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-box i {
  color: var(--blue);
  font-size: 24px;
}

.search-box input {
  height: 48px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.search-results {
  display: grid;
  gap: 14px;
}

.search-result {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-result strong {
  color: #173866;
}

.search-result span {
  color: var(--muted);
}

.success-card {
  max-width: 720px;
  text-align: center;
}

.success-card > i {
  color: #1f9d68;
  font-size: 68px;
}

.success-card p {
  margin: 12px auto 0;
  color: var(--muted);
}

.success-card .hero-actions {
  justify-content: center;
}

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 40px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 25, 54, 0.94), rgba(13, 62, 126, 0.92)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  color: #dce8f8;
  background: #041936;
}

.footer-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 44px;
  padding: 42px 0;
}

.footer-about p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
}

.footer-contact span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 14px;
  align-items: center;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-contact i {
  grid-row: span 2;
  font-size: 34px;
}

.footer-contact b {
  color: #fff;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

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

.back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 38, 80, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .hotline {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-content,
  .split-home,
  .about-band,
  .detail-layout,
  .article-layout,
  .two-column,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 34px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
  }

  .project-grid,
  .news-grid,
  .value-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-contact span {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .mobile-panel,
  .hero-content,
  .section,
  .country-strip,
  .footer-main,
  .footer-bottom,
  .cta-band {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 62px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-stats,
  .country-strip,
  .project-grid,
  .news-grid,
  .feature-row,
  .highlight-grid,
  .process-list,
  .value-grid,
  .partner-grid,
  .metric-card,
  .footer-contact,
  .media-metrics {
    grid-template-columns: 1fr;
  }

  .country-strip {
    margin-top: 0;
  }

  .country-strip a {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .country-strip a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .section-head h2,
  .about-copy h2,
  .detail-content h2,
  .contact-card h2,
  .message-form h2,
  .article h2,
  .copy-card h2,
  .cta-band h2 {
    font-size: 26px;
  }

  .news-row {
    grid-template-columns: 112px 1fr;
  }

  .media-stat,
  .media-stat > img {
    min-height: 420px;
  }

  .play-card {
    left: 18px;
    right: 18px;
    bottom: 150px;
  }

  .media-metrics strong {
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .inner-hero {
    grid-template-columns: 1fr;
    min-height: 300px;
    padding-top: 110px;
  }

  .inner-hero > i {
    display: none;
  }

  .detail-hero {
    min-height: 460px;
    padding-top: 112px;
  }

  .article > img {
    height: 240px;
  }

  .contact-card p {
    grid-template-columns: 34px 1fr;
  }

  .contact-card b {
    grid-column: 2;
  }

  .cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
