:root {
  --navy: #063261;
  --ink: #10233d;
  --muted: #5f6f83;
  --red: #04a0f4;
  --orange: #f9b500;
  --teal: #0382c7;
  --mist: #f4f7fb;
  --line: #dce5ef;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(7, 27, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
}

.topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar strong {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 27, 53, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.brand > span:last-child {
  display: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 154px;
  height: 74px;
  place-items: center;
  color: transparent;
  background: url("gfs-logo.png") center / contain no-repeat;
  border-radius: 0;
  overflow: visible;
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.brand-mark::before {
  width: 46px;
  height: 11px;
  top: 8px;
  left: -8px;
}

.brand-mark::after {
  width: 56px;
  height: 11px;
  right: -18px;
  bottom: 9px;
}

.brand-mark span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.nav-links .nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links .nav-trigger:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 224px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown a {
  display: flex;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--ink);
}

.dropdown a:hover,
.dropdown a.is-active {
  color: var(--red);
  background: rgba(229, 71, 37, 0.08);
}

.network-nav .dropdown {
  width: 230px;
  padding: 0;
  overflow: hidden;
  background: #103819;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(3, 18, 35, 0.24);
}

.network-nav .dropdown a {
  min-height: 62px;
  padding: 14px 16px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.network-nav .dropdown a:hover,
.network-nav .dropdown a.is-active {
  color: var(--white);
  background: rgba(249, 181, 0, 0.16);
}

.network-nav:hover .nav-trigger,
.network-nav:focus-within .nav-trigger,
.network-nav .nav-trigger.is-active {
  color: var(--white);
  background: rgba(16, 56, 25, 0.92);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle::before {
  top: 15px;
}

.menu-toggle::after {
  top: 27px;
}

body.nav-open .menu-toggle span {
  opacity: 0;
}

body.nav-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  background: #c9381d;
  border-color: #c9381d;
  transform: translateY(-2px);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.btn-light:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--mist);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
.display-title {
  margin-bottom: 20px;
  color: inherit;
  font-size: 64px;
  line-height: 1.03;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-header > div {
  max-width: 680px;
}

.hero {
  position: relative;
  min-height: 730px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: brightness(1.16) saturate(1.08);
  transition: opacity 700ms ease;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 27, 53, 0.68) 0%, rgba(7, 27, 53, 0.42) 48%, rgba(7, 27, 53, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-ocean {
  background-image: url("gfs-hero-multimodal.png");
}

.hero-slide-road {
  background-image: url("archived/truck-road.jpg");
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 730px;
  padding: 80px 0 120px;
}

.hero-content {
  max-width: 700px;
}

.hero h1,
.hero .eyebrow,
.hero p {
  text-shadow: 0 3px 18px rgba(3, 18, 35, 0.45);
}

.hero .eyebrow {
  color: var(--white);
}

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

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

.hero-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-dot {
  width: 44px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  transition: background 180ms ease, width 180ms ease;
}

.hero-dot.is-active {
  width: 62px;
  background: var(--orange);
  border-color: var(--orange);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--ink);
}

.hero-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: auto;
  padding: 0;
  background: var(--white);
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow);
}

.hero-metric {
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.hero-metric strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.hero-metric span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 700;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.client-logo {
  display: grid;
  min-height: 76px;
  place-items: center;
  color: #41516a;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.image-stack {
  position: relative;
  min-height: 540px;
}

.image-stack img:first-child {
  width: 78%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 260px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: start;
  color: #263955;
  font-weight: 700;
}

.check {
  display: inline-grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(7, 27, 53, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.transport-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.transport-banner {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.transport-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 27, 53, 0.86), rgba(7, 27, 53, 0.28));
}

.transport-banner img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 240ms ease, opacity 240ms ease;
}

.transport-banner:hover img {
  opacity: 0.86;
  transform: scale(1.04);
}

.transport-banner-content {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  gap: 8px;
}

.transport-banner-content span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.transport-banner-content strong {
  max-width: 430px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.12;
  font-weight: 900;
}

.service-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.service-body {
  padding: 25px;
}

.service-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-top: -58px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 4px solid var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 900;
}

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

.process-card {
  position: relative;
  min-height: 260px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
}

.process-number {
  position: absolute;
  right: 26px;
  top: 16px;
  color: rgba(7, 27, 53, 0.08);
  font-size: 76px;
  line-height: 1;
  font-weight: 900;
}

.process-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.why-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 53, 0.94), rgba(7, 27, 53, 0.8)),
    url("gfs-hero-multimodal.png") center / cover;
}

.why-band h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: center;
}

.skill-bars {
  display: grid;
  gap: 22px;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 800;
}

.bar {
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: inherit;
}

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

.stat-card {
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

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

.project-card {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 345px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 240ms ease, opacity 240ms ease;
}

.project-card:hover img {
  opacity: 0.58;
  transform: scale(1.05);
}

.project-info {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: var(--white);
}

.project-info span {
  color: var(--orange);
  font-weight: 900;
}

.project-info h3 {
  margin: 6px 0 0;
  color: var(--white);
}

.quote-band {
  background:
    linear-gradient(90deg, rgba(229, 71, 37, 0.92), rgba(7, 27, 53, 0.86)),
    url("gfs-industry-cold-chain.png") center / cover;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
}

.quote-copy {
  color: var(--white);
}

.quote-copy h2 {
  color: var(--white);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.form-shell {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 60px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  font-weight: 900;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.is-active {
  color: var(--white);
  background: var(--navy);
}

.tab-panel {
  display: none;
  padding: 28px;
}

.tab-panel.is-active {
  display: block;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

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

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(22, 161, 163, 0.12);
}

.tracking-result {
  display: none;
  margin-top: 18px;
  padding: 18px;
  color: var(--ink);
  background: #ecfbfb;
  border: 1px solid rgba(22, 161, 163, 0.24);
  border-radius: 8px;
}

.tracking-result.is-visible {
  display: block;
}

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

.price-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(7, 27, 53, 0.07);
}

.price-card.is-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.price-card.is-featured h3,
.price-card.is-featured .price {
  color: var(--white);
}

.price {
  margin: 18px 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.price-card.is-featured .price span,
.price-card.is-featured p {
  color: rgba(255, 255, 255, 0.72);
}

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

.plain-list li {
  color: var(--muted);
}

.price-card.is-featured .plain-list li {
  color: rgba(255, 255, 255, 0.78);
}

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

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-body {
  padding: 24px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.newsletter {
  padding: 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 53, 0.95), rgba(7, 27, 53, 0.82)),
    url("gfs-hero-multimodal.png") center / cover;
  border-radius: 8px;
}

.newsletter h2 {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.newsletter-form input {
  background: var(--white);
}

.page-hero {
  padding: 108px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 53, 0.92), rgba(7, 27, 53, 0.62)),
    url("gfs-hero-multimodal.png") center / cover;
}

.office-hero {
  padding: 72px 0;
}

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

.industry-card {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(7, 27, 53, 0.07);
}

.industry-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: 54px;
}

.office-hero h1 {
  font-size: 46px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
}

.info-panel {
  padding: 32px;
  background: var(--mist);
  border-radius: 8px;
}

.info-panel h3 {
  margin-bottom: 18px;
}

.info-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.info-row strong {
  display: block;
  color: var(--navy);
}

.office-section {
  padding: 64px 0;
  background: #f6f8fa;
}

.office-section .section-header {
  margin-bottom: 26px;
}

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

.office-card {
  min-height: auto;
  padding: 24px;
  background: var(--white);
  border: 1px solid #d5e0eb;
  border-top: 4px solid #287640;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(7, 27, 53, 0.06);
}

.office-card-inner {
  width: 100%;
  min-height: 0;
  padding: 0;
  text-align: left;
  background: transparent;
}

.office-card h3 {
  margin-bottom: 14px;
  color: #287640;
  font-size: 21px;
  line-height: 1.16;
  text-transform: uppercase;
}

.office-card p {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.42;
}

.office-card a {
  color: #1a76d2;
  text-decoration: none;
}

.office-card span {
  display: inline-block;
  min-width: 52px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.office-subtitle {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.office-directory-section {
  padding: 62px 0;
  background: #f6f8fa;
}

.office-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.office-list-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 27, 53, 0.06);
}

.office-list-row:last-child {
  border-bottom: 1px solid var(--line);
}

.office-list-row-simple {
  grid-template-columns: 1fr;
  min-height: auto;
  align-items: center;
}

.office-location h3 {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.18;
}

.office-location h3::before {
  position: absolute;
  top: 0.2em;
  bottom: 0.16em;
  left: 0;
  width: 4px;
  content: "";
  background: var(--red);
  border-radius: 999px;
}

.office-location p,
.office-contact p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.36;
}

.office-contact {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 12px 14px;
  background: var(--mist);
  border-radius: 8px;
}

.office-contact strong {
  color: var(--navy);
  font-weight: 900;
}

.office-contact a {
  color: var(--red);
  font-weight: 800;
}

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

.value-card,
.faq-item,
.team-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.team-card {
  padding: 0;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card div {
  padding: 24px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
}

.side-nav {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--mist);
  border-radius: 8px;
}

.side-nav a {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.side-nav a:hover,
.side-nav a.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.detail-article img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-banners {
  margin-top: 24px;
  margin-bottom: 0;
}

.detail-banners .transport-banner {
  min-height: 225px;
}

.detail-banners .transport-banner img {
  min-height: 225px;
  max-height: none;
}

.detail-article h2 {
  margin-top: 32px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-item span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  background: var(--mist);
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #06162d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 32px;
  padding: 76px 0;
}

.footer-main .brand {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-main h3 {
  color: var(--white);
  font-size: 20px;
}

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

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom a {
  margin-left: 16px;
}

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

@media (max-width: 1080px) {
  .header-actions .btn {
    display: none;
  }

  .nav-links a,
  .nav-links .nav-trigger {
    padding: 0 9px;
  }

  h1,
  .display-title {
    font-size: 52px;
  }
}

@media (max-width: 920px) {
  .topbar .container {
    justify-content: center;
  }

  .topbar-list:last-child {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    top: 126px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 150px);
    overflow: auto;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .dropdown {
    position: static;
    display: grid;
    width: auto;
    margin: 4px 0 8px 12px;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
  }

  .network-nav .dropdown {
    width: auto;
  }

  .office-directory {
    grid-template-columns: 1fr;
  }

  .office-list-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero,
  .hero .container {
    min-height: 680px;
  }

  .hero-strip {
    position: relative;
    margin-top: -72px;
  }

  .hero-strip .container {
    min-height: auto;
    padding: 0;
  }

  .stat-grid,
  .service-grid,
  .industry-grid,
  .process-grid,
  .project-grid,
  .pricing-grid,
  .blog-grid,
  .team-grid,
  .values-grid,
  .faq-grid,
  .office-grid,
  .footer-main,
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .why-grid,
  .quote-layout,
  .two-column,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: 450px;
  }

  .image-stack img:first-child {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    display: none;
  }

  .navbar {
    min-height: 72px;
  }

  .nav-links {
    top: 86px;
    right: 14px;
    left: 14px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 128px;
    height: 62px;
  }

  .section {
    padding: 68px 0;
  }

  h1,
  .display-title,
  .page-hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .hero,
  .hero .container {
    min-height: 540px;
  }

  .hero .container {
    padding: 58px 0 100px;
  }

  .hero-strip .container {
    min-height: auto;
    padding: 0;
  }

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

  .section-header {
    display: block;
  }

  .section-header .btn {
    margin-top: 18px;
  }

  .hero-strip .container,
  .stat-grid,
  .service-grid,
  .industry-grid,
  .transport-banner-grid,
  .process-grid,
  .project-grid,
  .pricing-grid,
  .blog-grid,
  .team-grid,
  .values-grid,
  .faq-grid,
  .office-grid,
  .footer-main,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .office-card {
    min-height: auto;
    padding: 20px;
  }

  .office-card-inner {
    min-height: auto;
    padding: 0;
  }

  .office-card h3 {
    font-size: 21px;
  }

  .office-card p {
    font-size: 15px;
  }

  .office-directory-section {
    padding: 48px 0;
  }

  .office-list-row {
    min-height: auto;
    padding: 18px;
  }

  .office-location h3 {
    font-size: 19px;
  }

  .office-location p,
  .office-contact p {
    font-size: 15px;
  }

  .hero-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metric {
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

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

  .image-stack {
    min-height: auto;
  }

  .image-stack img:first-child,
  .image-stack img:last-child {
    position: static;
    width: 100%;
    height: 280px;
    border: 0;
    margin-top: 14px;
  }

  .form-grid,
  .newsletter-form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .newsletter {
    padding: 34px 24px;
  }

  .quote-layout {
    gap: 24px;
  }

  .page-hero {
    padding: 76px 0;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 10px 14px 0 0;
  }
}
