:root {
  --tc-red: #ee1740;
  --tc-orange: #ff5a1f;
  --tc-dark: #252b2e;
  --tc-text: #303236;
  --tc-muted: #74777e;
  --tc-light: #f7f7f7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: var(--tc-text);
  font-family: "Poppins", Arial, "Helvetica Neue", sans-serif;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

.tc-page {
  background: #fff;
}

.tc-container {
  width: min(1450px, calc(100% - 56px));
  margin: 0 auto;
}

.tc-header {
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  z-index: 100;
}

.tc-header-inner {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: start;
  gap: 24px;
  width: min(1160px, calc(100% - 150px));
}

.tc-logo {
  width: 58px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.tc-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.tc-navbar {
  justify-self: center;
  background: #fff;
  border: 1px solid #e2e5e9;
  border-radius: 36px;
  width: 532px;
  padding: 0 12px;
  min-height: 56px;
  box-shadow: 0 12px 30px rgba(18, 24, 30, 0.025);
}

.tc-navbar .navbar-nav {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.tc-navbar .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #16181b;
  font-size: 18px;
  line-height: 1;
  padding: 12px 28px;
  border-radius: 26px;
  font-weight: 400;
}

.tc-navbar .nav-link.active,
.tc-navbar .show > .nav-link {
  background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
  color: #fff;
  padding-inline: 18px;
  min-height: 40px;
}

.nav-home-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: url("../images/site/nav-home-icon.png") center / contain no-repeat;
}

.tc-navbar .nav-link.active .nav-home-icon,
.tc-navbar .show > .nav-link .nav-home-icon {
  background-image: url("../images/site/nav-home-icon-white.png");
}

.tc-navbar .dropdown-menu {
  width: min(1220px, calc(100vw - 80px));
  left: 50% !important;
  transform: translateX(-50%);
  margin-top: 16px;
  padding: 26px 0;
  border-radius: 20px;
  border-color: #dfe2e6;
  box-shadow: 0 24px 55px rgba(15, 20, 30, 0.08);
}

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

.mega-grid a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 0 46px;
  text-decoration: none;
  border-bottom: 1px solid #edf0f2;
  color: #272b31;
  font-size: 17px;
}

.mega-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mega-icon-express { background-image: url("../images/site/mega-icons/express.svg"); }
.mega-icon-fba { background-image: url("../images/site/mega-icons/fba.svg"); }
.mega-icon-ecommerce { background-image: url("../images/site/mega-icons/ecommerce.svg"); }
.mega-icon-fcl { background-image: url("../images/site/mega-icons/fcl.svg"); }
.mega-icon-air { background-image: url("../images/site/mega-icons/air.svg"); }
.mega-icon-photo { background-image: url("../images/site/mega-icons/photo.svg"); }
.mega-icon-cart { background-image: url("../images/site/mega-icons/cart.svg"); }
.mega-icon-inspect { background-image: url("../images/site/mega-icons/inspect.svg"); }
.mega-icon-production { background-image: url("../images/site/mega-icons/production.svg"); }
.mega-icon-supplier-check { background-image: url("../images/site/mega-icons/supplier-check.svg"); }
.mega-icon-sample-live { background-image: url("../images/site/mega-icons/sample-live.svg"); }
.mega-icon-lcl { background-image: url("../images/site/mega-icons/lcl.svg"); }
.mega-icon-sample { background-image: url("../images/site/mega-icons/sample.svg"); }
.mega-icon-forwarding { background-image: url("../images/site/mega-icons/forwarding.svg"); }
.mega-icon-finder { background-image: url("../images/site/mega-icons/finder.svg"); }
.mega-icon-test { background-image: url("../images/site/mega-icons/test.svg"); }
.mega-icon-trade { background-image: url("../images/site/mega-icons/trade.svg"); }

.tc-search {
  justify-self: end;
  width: 168px;
  height: 40px;
  border: 1px solid #dfe2e6;
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0;
  color: #9da1a8;
  font-size: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tc-search:focus-within {
  border-color: rgba(238, 23, 64, 0.36);
  box-shadow: 0 0 0 4px rgba(238, 23, 64, 0.08);
}

.tc-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: transparent;
  color: #303236;
  font: inherit;
}

.tc-search input::placeholder {
  color: #9da1a8;
}

.tc-hero {
  position: relative;
  min-height: 552px;
  padding-top: 152px;
  text-align: center;
  overflow: hidden;
  background: #fff;
}

.tc-hero h1 {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0 auto 30px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(44px, 4.55vw, 68px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
  color: #050505;
  text-transform: uppercase;
}

.tc-hero-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  transform: scaleX(1);
  transform-origin: center;
}

.tc-hero-plane {
  width: clamp(86px, 7.45vw, 112px);
  aspect-ratio: 545 / 233;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: url("../images/site/home-hero-plane.png") center / contain no-repeat;
  transform: translateY(-6px);
}

.tc-hero h1 .tc-hero-accent {
  position: relative;
  display: block;
  width: max-content;
  margin: 8px auto 0;
  color: #ed1740;
  font-size: 0.66em;
  line-height: 0.88;
  font-weight: 700;
  background: linear-gradient(180deg, #ed1740 0%, #ed1740 52%, rgba(237, 23, 64, 0.42) 72%, rgba(237, 23, 64, 0.06) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-hero h1 .tc-hero-accent::after {
  content: "Customer First";
  position: absolute;
  left: 0;
  right: 0;
  top: 64%;
  color: rgba(237, 23, 64, 0.13);
  -webkit-text-fill-color: rgba(237, 23, 64, 0.13);
  filter: blur(2.5px);
  transform: scaleY(0.62);
  pointer-events: none;
}

.tc-hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.tc-hero-image-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 44px;
  z-index: 1;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.84) 34%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.tc-hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
}

.section-pad {
  padding: 108px 0;
}

.section-title {
  margin: 0 0 60px;
  color: #15171a;
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title span {
  color: var(--tc-red);
  display: block;
}

.btn-tc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 33px;
  padding: 0 20px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-tc::after {
  content: "↗";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  margin-right: -20px;
  margin-left: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
  font-size: 15px;
  line-height: 1;
}

.services-strip {
  padding-top: 118px;
  padding-bottom: 118px;
  background: linear-gradient(180deg, #fff3f5 0%, #fff 78%);
}

.services-strip .tc-container {
  width: min(1408px, calc(100% - 120px));
}

.services-head {
  margin-bottom: 72px;
}

.services-strip .section-title {
  font-size: clamp(29px, 2.15vw, 41px);
  line-height: 0.94;
  font-weight: 700;
  margin-bottom: 0;
}

.services-strip .btn-tc {
  margin-top: 6px;
  margin-right: 18px;
}

.services-strip .row {
  position: relative;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 48px 43px 38px;
  border-right: 1px solid #ececf2;
  border-bottom: 1px solid #ececf2;
  background: transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.58) 100%), url("../images/site/service-hover.png") center / cover no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.35s ease, transform 0.55s ease;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.35s ease;
}

.service-card:hover,
.service-card:focus-within,
.service-card.is-active {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(28, 30, 36, 0.12);
}

.service-card:hover::before,
.service-card:focus-within::before,
.service-card.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.service-card:hover > *,
.service-card:focus-within > *,
.service-card.is-active > * {
  transform: translateY(-4px);
}

.service-card h3 {
  margin: 38px 0 8px;
  color: #373948;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: #9898a2;
  font-size: 12px;
  line-height: 1.12;
}

.service-card:hover h3,
.service-card:focus-within h3,
.service-card.is-active h3,
.service-card:hover p,
.service-card:focus-within p,
.service-card.is-active p,
.service-card:hover .service-number,
.service-card:focus-within .service-number,
.service-card.is-active .service-number {
  color: #fff;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon,
.service-card.is-active .service-icon {
  opacity: 0;
}

.service-number {
  display: inline-block;
  color: var(--tc-red);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.service-icon {
  display: block;
  width: 44px;
  height: auto;
  margin-top: 52px;
}

.service-card::after {
  content: "↗";
  position: absolute;
  left: 42px;
  bottom: 30px;
  z-index: 1;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  transform: translate(-4px, 8px);
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.service-card:hover::after,
.service-card:focus-within::after,
.service-card.is-active::after {
  opacity: 1;
  transform: translate(0, 0);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(560px, 740px) minmax(460px, 620px);
  align-items: center;
  gap: 120px;
}

.about-section {
  padding-top: 56px;
  padding-bottom: 146px;
}

.about-image-wrap {
  position: relative;
}

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

.about-badge {
  position: absolute;
  right: 0;
  bottom: -48px;
  width: 160px;
  height: 160px;
  padding: 29px 24px;
  border-top-left-radius: 54px;
  background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
  color: #fff;
  font-size: 42px;
  line-height: 0.9;
  font-weight: 500;
}

.about-badge::after {
  content: "↗";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--tc-red);
  font-size: 18px;
  line-height: 1;
}

.copy-block h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 2.75vw, 46px);
  line-height: 0.96;
  font-weight: 800;
  text-transform: uppercase;
}

.copy-block h2 span {
  color: var(--tc-red);
  display: block;
}

.copy-block h2 .about-title-line {
  color: #252b2e;
  white-space: nowrap;
}

.copy-block p {
  max-width: 590px;
  color: #60646b;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 84px;
  row-gap: 58px;
  border-top: 1px solid #e5e6e8;
  margin-top: 52px;
  padding-top: 58px;
}

.stat-number {
  color: var(--tc-red);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.stat-number span {
  color: #cdd1d5;
}

.stat-label {
  margin-top: 9px;
  color: #575b62;
  font-size: 12px;
}

.wide-image {
  width: 100%;
  display: block;
}

.consult-section {
  min-height: 760px;
  background: url("../images/site/home-consult-woman.png") center / cover no-repeat;
}

.consult-layout {
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.consult-form {
  position: relative;
  width: min(585px, 100%);
  min-height: 515px;
  padding: 58px 46px 48px;
  border-radius: 18px;
  background: rgba(255,255,255,0.97);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(32, 42, 52, 0.12);
}

.consult-form > * {
  position: relative;
  z-index: 1;
}

.consult-form h2 {
  margin: 0 0 46px;
  color: #303236;
  font-size: 42px;
  line-height: 0.98;
  font-weight: 400;
}

.consult-form h2 span {
  display: block;
  color: var(--tc-red);
}

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

.consult-fields input {
  width: 100%;
  height: 62px;
  border: 1px solid #e6e8ec;
  border-radius: 31px;
  padding: 0 26px;
  background: #fff;
  color: #303236;
  font-size: 15px;
  outline: none;
}

.consult-fields input:first-child {
  grid-column: 1 / -1;
}

.consult-fields input::placeholder {
  color: #9da1a8;
}

.consult-fields input:focus {
  border-color: rgba(238,23,64,0.45);
  box-shadow: 0 0 0 4px rgba(238,23,64,0.08);
}

.consult-form button {
  width: 100%;
  height: 60px;
  margin-top: 48px;
  border: 0;
  border-radius: 31px;
  background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.consult-form button span {
  display: inline-block;
  margin-left: 8px;
}

.map-section {
  padding-top: 92px;
  padding-bottom: 98px;
  background: #f7f7f7;
}

.map-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 790px);
  column-gap: 96px;
  row-gap: 36px;
  justify-content: center;
  align-items: start;
}

.map-heading .section-title {
  margin: 0 0 34px;
  font-size: 26px;
  line-height: 0.98;
  font-weight: 500;
}

.map-heading .section-title .map-title-dark {
  color: #15171a;
  display: block;
}

.map-ship {
  width: 146px;
  height: auto;
  border-radius: 25px;
  display: block;
}

.map-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4a4d54;
  font-size: 13px;
  line-height: 1.35;
}

.map-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  border-bottom: 1px solid #e5e5e8;
  padding: 0 0 19px;
  margin-bottom: 18px;
}

.map-list strong {
  color: #15171a;
  font-size: 14px;
  line-height: 1.2;
}

.world-map {
  grid-column: 1 / -1;
  width: min(1372px, 100%);
  margin: 0 auto;
  display: block;
}

.testimonials {
  overflow: hidden;
  background: #fff;
}

.testimonial-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 58px;
}

.testimonial-head .section-title {
  width: 360px;
  margin: 0;
  font-size: 29px;
  line-height: 0.96;
  font-weight: 600;
}

.testimonial-controls {
  display: inline-flex;
  gap: 13px;
  margin-top: 18px;
}

.testimonial-controls button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--tc-red);
  background: #fff;
  color: var(--tc-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-controls .testimonial-next {
  background: var(--tc-red);
  color: #fff;
}

.testimonial-viewport {
  overflow: visible;
  width: min(100vw, 1160px);
  margin-left: 90px;
}

.testimonial-track {
  display: flex;
  align-items: center;
  gap: 30px;
  transform: translateX(0);
  transition: transform 0.42s ease;
  will-change: transform;
}

.testimonial-card,
.testimonial-person {
  flex: 0 0 auto;
  border-radius: 12px;
}

.testimonial-card {
  position: relative;
  width: 300px;
  min-height: 200px;
  padding: 34px 34px 24px;
  font-size: 12px;
  line-height: 1.18;
  font-weight: 600;
}

.testimonial-card-yellow {
  background: #f8c850;
}

.testimonial-card-blue {
  width: 320px;
  min-height: 210px;
  background: #8ec5ec;
}

.testimonial-card-lavender {
  width: 300px;
  min-height: 210px;
  background: #7d91e8;
  color: #fff;
}

.testimonial-person {
  position: relative;
  width: 235px;
  height: 350px;
  overflow: hidden;
}

.testimonial-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-person div {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  color: #fff;
}

.testimonial-card-main {
  width: 330px;
  min-height: 350px;
  padding-top: 122px;
  border: 1px solid #e8edf2;
  background: linear-gradient(135deg, #fff 0%, #fff 68%, #e8fbff 68%, #e8fbff 100%);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 700;
}

.quote-mark {
  position: absolute;
  top: 34px;
  left: 36px;
  color: rgba(238,23,64,0.18);
  font-size: 82px;
  line-height: 1;
  font-weight: 800;
}

.testimonial-mini {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
}

.testimonial-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card h3,
.testimonial-person h3 {
  margin: 20px 0 3px;
  font-size: 15px;
  font-weight: 800;
}

.testimonial-card small,
.testimonial-person small {
  font-size: 10px;
  opacity: 0.78;
}

.news-section {
  padding-top: 108px;
  padding-bottom: 112px;
  background: #fff;
}

.news-section .tc-container {
  width: min(1450px, calc(100% - 120px));
}

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 78px;
}

.news-head .section-title {
  margin: 0;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 800;
}

.news-head .btn-tc {
  margin-top: 22px;
  margin-right: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: 710px 610px;
  grid-template-rows: 285px 285px;
  gap: 105px 98px;
  align-items: start;
}

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

.news-card-horizontal {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.news-card-primary {
  grid-column: 1;
  grid-row: 1;
}

.news-card-secondary {
  grid-column: 1;
  grid-row: 2;
}

.news-card-feature {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.news-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  display: block;
}

.news-card-feature img {
  height: 410px;
}

.news-card small {
  color: #a9adb3;
  font-size: 14px;
}

.news-card h3 {
  margin: 14px 0 22px;
  color: #171a20;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 700;
}

.news-card p,
.news-list p {
  color: #74777e;
  font-size: 15px;
  line-height: 1.26;
}

.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 42px;
  color: var(--tc-red);
  font-size: 15px;
  text-decoration: none;
}

.news-card-feature div {
  padding-top: 22px;
}

.news-card-feature h3 {
  max-width: 590px;
}

.cta-band {
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("../images/site/home-cta-tablet.png") center 54% / cover no-repeat;
}

.cta-band .tc-container {
  width: min(1450px, calc(100% - 120px));
}

.cta-copy {
  max-width: 520px;
  margin-left: 90px;
  margin-top: -52px;
}

.cta-band h2 {
  margin: 0 0 18px;
  font-size: 47px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.cta-band p {
  max-width: 390px;
  margin: 0 0 44px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.35;
}

.cta-band .btn-tc {
  min-height: 41px;
  padding: 0 28px;
  border-radius: 22px;
  font-size: 13px;
}

.cta-band .btn-tc::after {
  width: 41px;
  height: 41px;
  margin-right: -28px;
  margin-left: 7px;
  font-size: 17px;
}

.tc-footer {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: #252b2e url("../images/site/footer-container-bg.png") center calc(100% + 840px) / cover no-repeat;
  color: #fff;
  padding: 74px 0 34px;
}

.tc-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 14, 0.72);
  mix-blend-mode: multiply;
}

.tc-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37,43,46,0.96) 0%, rgba(26,31,34,0.86) 42%, rgba(0,0,0,0.78) 100%);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr 0.78fr;
  gap: 148px;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.1fr 1fr;
  gap: 92px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 34px;
}

.footer-brand {
  max-width: 330px;
}

.footer-logo {
  display: inline-flex;
  width: 68px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-content p,
.footer-content a {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-content strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
}

.footer-social {
  display: flex;
  gap: 11px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.footer-social img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-copy {
  margin-top: 70px;
  color: rgba(255,255,255,0.42);
  font-size: 11px;
}

.profile-grid,
.timeline-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 130px;
}

.profile-grid h2,
.timeline-grid h2 {
  font-size: 48px;
  line-height: 0.98;
  font-weight: 900;
}

.video-section {
  position: relative;
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
}

.play-dot::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 14px;
  border-left: 14px solid #6cbcef;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.year-track {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  border-top: 1px dashed #d4d6da;
  padding-top: 30px;
  color: #999;
  font-weight: 700;
}

.year-track .active {
  color: var(--tc-red);
}

.mvg-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}

.mvg-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.mvg-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mvg-card::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(180deg, rgba(9, 24, 42, 0) 0%, rgba(7, 31, 55, 0.88) 100%);
}

.mvg-card div {
  position: absolute;
  left: 44px;
  bottom: 44px;
  z-index: 1;
  max-width: 460px;
}

.about-hero {
  min-height: 470px;
  padding-top: 112px;
  text-align: center;
  overflow: hidden;
  background: #fffaf6;
}

.about-hero h1 {
  max-width: 780px;
  margin: 0 auto -72px;
  color: #3a3b3e;
  font-size: 36px;
  line-height: 1.02;
  font-weight: 600;
}

.about-hero h1 span {
  display: block;
  color: var(--tc-orange);
  font-weight: 600;
}

.about-hero img {
  width: 100%;
  max-width: none;
  display: block;
  margin: 0 auto;
}

.about-profile {
  padding: 72px 0 62px;
  background:
    linear-gradient(132deg, transparent 0 15%, rgba(238,23,64,0.022) 15% 26%, transparent 26% 50%, rgba(238,23,64,0.018) 50% 60%, transparent 60% 100%),
    #fff;
}

.about-profile .tc-container,
.about-timeline-section .tc-container,
.about-mvg-section .tc-container {
  width: min(1240px, calc(100% - 120px));
}

.about-profile-grid {
  display: grid;
  grid-template-columns: 430px minmax(0, 670px);
  gap: 100px;
  align-items: start;
}

.about-profile-grid h2 {
  margin: 0;
  color: #3c3d40;
  font-size: 31px;
  line-height: 0.96;
  font-weight: 600;
  white-space: nowrap;
}

.about-profile-copy p {
  margin: 0 0 18px;
  color: #4d5158;
  font-size: 10px;
  line-height: 1.55;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 52px;
  margin-top: 72px;
  padding-top: 42px;
  border-top: 1px solid #e7e8eb;
}

.about-stats .stat-number {
  font-size: 36px;
  font-weight: 800;
}

.about-stats .stat-label {
  margin-top: 6px;
  font-size: 10px;
}

.about-video-section {
  position: relative;
  height: auto;
  overflow: hidden;
  background: #80ceef;
}

.about-video-section img {
  width: 100%;
  height: auto;
  display: block;
}

.about-timeline-section {
  padding-top: 86px;
  background: #fff;
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: 430px 520px;
  gap: 118px;
  align-items: center;
}

.about-timeline-copy h2 {
  margin: 0;
  color: #34363a;
  font-size: 30px;
  line-height: 0.94;
  font-weight: 700;
  text-transform: uppercase;
}

.about-timeline-copy h2 span {
  display: block;
  color: var(--tc-red);
}

.about-timeline-copy h3 {
  margin: 76px 0 14px;
  color: #303236;
  font-size: 55px;
  line-height: 0.92;
  font-weight: 700;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.about-timeline-copy p {
  margin: 0;
  color: #858991;
  font-size: 11px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.about-timeline-copy.is-changing h3,
.about-timeline-copy.is-changing p {
  opacity: 0;
  transform: translateX(18px);
}

.timeline-arrows {
  display: flex;
  gap: 19px;
  margin-top: 75px;
}

.timeline-arrows button {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--tc-red);
  border-radius: 50%;
  background: #fff;
  color: var(--tc-red);
  line-height: 1;
}

.timeline-arrows button + button {
  background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
  color: #fff;
}

.timeline-arrows button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translate(-35%, -50%) rotate(45deg);
}

.timeline-arrows .timeline-next::before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.about-timeline-grid img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

.about-year-track {
  margin-top: 74px;
  border-top: 1px dashed #d8dbe0;
}

.about-year-track .tc-container {
  display: flex;
  justify-content: center;
  gap: 92px;
  padding-top: 32px;
  color: #a3a7ad;
  font-size: 15px;
  font-weight: 700;
}

.about-year-track span {
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.about-year-track span:hover {
  color: #6f747b;
}

.about-year-track .active {
  position: relative;
  color: var(--tc-red);
}

.about-year-track .active::before,
.about-year-track .active::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.about-year-track .active::before {
  top: -42px;
  border-top: 8px solid var(--tc-red);
}

.about-year-track .active::after {
  top: -16px;
  border-bottom: 8px solid var(--tc-red);
}

.about-mvg-section {
  padding: 86px 0 108px;
  background: #fff;
}

.about-mvg-section .section-title {
  margin-bottom: 72px;
  font-size: 35px;
  line-height: 0.95;
  font-weight: 600;
}

.mvg-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.mvg-icon {
  width: 30px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.mvg-card p {
  max-width: 430px;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.services-hero {
  min-height: 568px;
  padding-top: 148px;
  background: url("../images/site/services-hero.png") center top / cover no-repeat;
  text-align: center;
}

.services-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
}

.services-hero h1 span {
  color: var(--tc-orange);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.feature-row img {
  width: 100%;
  display: block;
}

.blue-ship {
  min-height: 740px;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("../images/site/services-blue-ship.png") center / cover no-repeat;
}

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

.benefit-card {
  border: 1px solid #f0dada;
  border-radius: 4px;
  padding: 34px;
}

.support-band {
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url("../images/site/services-support.png") center / cover no-repeat;
}

.support-box {
  width: 360px;
  background: #fff;
  padding: 48px;
}

.news-hero {
  min-height: 570px;
  padding-top: 262px;
  text-align: center;
  color: rgba(255,255,255,0.72);
  background: url("../images/site/news-hero.png") center top / cover no-repeat;
}

.news-hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.news-list {
  padding: 66px 0 94px;
  background: #fff;
}

.news-list .tc-container {
  width: min(calc(100% - 214px), 1398px);
}

.news-list-item {
  display: grid;
  grid-template-columns: 185px minmax(0, 565px) 355px;
  align-items: start;
  column-gap: 70px;
  min-height: 293px;
  padding: 39px 0 45px;
  border-bottom: 1px solid #e5e7eb;
}

.news-list-item:first-child {
  padding-top: 38px;
}

.news-list-item time {
  display: block;
  padding-top: 2px;
  color: #9ea3aa;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.news-list-copy {
  padding-top: 0;
}

.news-list h2 {
  max-width: 570px;
  margin: 0 0 20px;
  color: #343940;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.14;
  font-weight: 700;
}

.news-list-item.is-featured h2 {
  color: var(--tc-red);
}

.news-list p {
  max-width: 552px;
  margin-bottom: 26px;
  color: #777d86;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.16;
  font-weight: 400;
}

.news-list-copy a {
  color: var(--tc-red);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
}

.news-list-copy a span {
  display: inline-block;
  margin-left: 5px;
  transform: translateY(-1px);
}

.news-list-item img {
  width: 355px;
  height: 225px;
  object-fit: cover;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 72px;
}

.news-pagination a,
.news-pagination span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e4e8;
  border-radius: 5px;
  color: #555c64;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.news-pagination .active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
  box-shadow: 0 8px 18px rgba(238, 23, 64, 0.2);
}

.news-pagination .page-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.news-pagination .page-arrow.next::before {
  transform: rotate(-135deg);
}

.contact-page {
  min-height: 965px;
  padding-top: 250px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 20% 80%, rgba(0,0,0,0.03) 0 80px, transparent 82px),
    radial-gradient(circle at 70% 25%, rgba(0,0,0,0.025) 0 180px, transparent 182px),
    #fffdfb;
}

.contact-page h1 {
  margin: 0 0 95px;
  font-size: clamp(42px, 4.7vw, 74px);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-page h1 span {
  color: var(--tc-red);
  display: block;
}

.contact-card h2 {
  font-size: 29px;
  font-weight: 900;
}

.contact-card p {
  font-size: 16px;
  line-height: 2;
}

.dropdown-preview {
  min-height: 1080px;
  padding-top: 44px;
}

.dropdown-preview .tc-header {
  position: static;
}

.dropdown-preview .dropdown-menu.show {
  display: block;
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 106px !important;
  width: min(1220px, calc(100vw - 80px));
  transform: translateX(-50%);
  margin: 16px auto 0;
}

@media (max-width: 991.98px) {
  html,
  body,
  .tc-page {
    background: #f6f7f8;
    overflow-x: hidden;
  }

  .tc-container {
    width: min(100% - 28px, 720px);
  }

  .tc-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 26px rgba(24, 28, 32, 0.08);
    z-index: 999;
  }

  .tc-header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    width: min(100% - 28px, 720px);
    padding: 8px 0;
  }

  .tc-navbar {
    justify-self: end;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-height: 42px;
  }

  .tc-navbar .navbar-toggler {
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid #e4e7eb;
    border-radius: 16px;
    padding: 0;
    background: #fff;
    box-shadow: 0 10px 24px rgba(20, 24, 30, 0.08);
  }

  .tc-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(238, 23, 64, 0.12);
  }

  .tc-navbar .navbar-toggler-icon {
    width: 22px;
    height: 22px;
  }

  .tc-navbar .navbar-collapse {
    position: absolute;
    left: auto;
    right: -14px;
    top: 66px;
    width: min(248px, calc(100vw - 28px));
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(231, 233, 238, 0.95);
    border-radius: 20px 0 0 20px;
    padding: 10px;
    box-shadow: -18px 24px 54px rgba(24, 28, 32, 0.15);
    overflow: hidden;
  }

  .tc-navbar .navbar-nav {
    align-items: stretch;
    gap: 3px;
  }

  .tc-navbar .nav-link {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 14px;
    color: #20242a;
    gap: 8px;
  }

  .tc-navbar .dropdown-toggle::after {
    display: none;
  }

  .tc-navbar .nav-link.active,
  .tc-navbar .show > .nav-link {
    justify-content: flex-start;
    background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
    color: #fff;
    box-shadow: 0 8px 18px rgba(238, 23, 64, 0.18);
  }

  .tc-navbar .dropdown-menu {
    display: none !important;
  }

  .mega-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .mega-grid a {
    min-height: 36px;
    padding: 0 10px;
    border-bottom: 0;
    border-radius: 10px;
    font-size: 12px;
    gap: 10px;
    color: #3b4048;
  }

  .mega-grid a:hover {
    background: #fff;
  }

  .mega-icon {
    width: 18px;
    height: 18px;
  }

  .tc-search {
    display: none;
  }

  .tc-logo {
    width: 52px;
  }

  .service-card {
    min-height: 0;
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid #eee;
  }

  .service-card h3 {
    margin-top: 14px;
  }

  .services-strip .row {
    --bs-gutter-y: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(238px, 76vw);
    width: calc(100% + 28px);
    margin-right: 0;
    margin-left: -14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 14px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .services-strip .row::-webkit-scrollbar {
    display: none;
  }

  .services-strip .col {
    width: auto;
    max-width: none;
  }

  .services-strip .service-card {
    height: 100%;
    min-height: 282px;
    border: 1px solid rgba(226, 229, 235, 0.92);
    border-radius: 22px;
    margin-right: 14px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 100%);
    box-shadow: 0 20px 46px rgba(26, 30, 36, 0.08);
    scroll-snap-align: start;
  }

  .dropdown-preview {
    min-height: auto;
    padding-top: 0;
  }

  .dropdown-preview .dropdown-menu.show {
    position: static !important;
    left: auto !important;
    transform: none;
    width: auto;
    margin: 0;
  }

  .tc-hero,
  .page-hero,
  .services-hero,
  .news-hero,
  .contact-page {
    padding-bottom: 52px;
  }

  .contact-page {
    min-height: auto;
    padding-top: 42px;
  }

  .tc-hero {
    background: #fffaf6;
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 0;
  }

  .tc-hero h1 {
    width: min(100% - 20px, 372px);
    font-size: clamp(15px, 4.3vw, 17px);
    line-height: 0.98;
    margin-bottom: 12px;
    letter-spacing: 0;
  }

  .tc-hero-line {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px 7px;
    white-space: nowrap;
  }

  .tc-hero-plane {
    width: 52px;
    transform: translateY(-2px);
  }

  .tc-hero h1 .tc-hero-accent {
    font-size: 1.42em;
    margin-top: 9px;
  }

  .tc-hero-image {
    width: 134%;
    max-width: none;
    margin-left: -17%;
    margin-top: 0;
  }

  .section-pad {
    padding: 52px 0;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 26px;
    line-height: 1;
  }

  .btn-tc {
    min-height: 36px;
    padding: 0 16px;
  }

  .services-strip .d-flex,
  .section-pad .d-flex {
    gap: 18px;
    flex-direction: column;
  }

  .services-strip {
    overflow: hidden;
    padding-top: 44px;
    padding-bottom: 48px;
    background:
      radial-gradient(circle at 86% 18%, rgba(238, 23, 64, 0.08), transparent 34%),
      linear-gradient(180deg, #fff4f6 0%, #fff 76%);
  }

  .services-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
    margin-bottom: 20px;
  }

  .services-strip .section-title {
    max-width: none;
    width: 100%;
    font-size: 20px;
    line-height: 0.96;
    white-space: nowrap;
  }

  .services-strip .section-title span {
    display: inline;
    white-space: nowrap;
  }

  .services-strip .btn-tc {
    align-self: flex-end;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 14px;
    margin-top: 0;
    margin-right: 0;
    font-size: 10px;
    box-shadow: 0 12px 24px rgba(238, 23, 64, 0.18);
  }

  .services-strip .btn-tc::after {
    width: 34px;
    height: 34px;
    margin-right: -14px;
    font-size: 14px;
  }

  .services-strip .service-card .service-number {
    min-width: 44px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(238, 23, 64, 0.08);
    color: var(--tc-red);
    font-size: 10px;
  }

  .services-strip .service-card .service-icon {
    width: 52px;
    margin-top: 58px;
    padding: 11px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(238, 23, 64, 0.08), rgba(255, 92, 38, 0.05));
  }

  .services-strip .service-card h3 {
    max-width: 190px;
    margin-top: 20px;
    color: #272b33;
    font-size: 18px;
    line-height: 1.12;
    font-weight: 500;
  }

  .services-strip .service-card p {
    max-width: 186px;
    color: #858a94;
    font-size: 12px;
    line-height: 1.28;
  }

  .services-strip .service-card::after {
    left: auto;
    right: 20px;
    bottom: 20px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tc-red), var(--tc-orange));
    color: #fff;
    font-size: 14px;
    opacity: 1;
    transform: none;
  }

  .services-strip .service-card.is-active {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(24, 28, 32, 0.12);
  }

  .services-strip .service-card.is-active .service-number {
    background: rgba(255,255,255,0.2);
    color: #fff;
  }

  .about-split,
  .map-layout,
  .profile-grid,
  .timeline-grid,
  .contact-grid,
  .feature-row,
  .news-list-item {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .stats-grid,
  .footer-top,
  .footer-links,
  .benefit-grid,
  .news-grid,
  .testimonial-row,
  .mvg-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    padding-top: 0;
    border-top: 0;
  }

  .stats-grid > div,
  .benefit-card,
  .quote-card,
  .contact-card {
    background: #fff;
    border: 1px solid #eceef1;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 28px rgba(24, 28, 32, 0.05);
  }

  .stats-grid > div {
    padding: 16px 14px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 11px;
  }

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

  .news-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .news-section .tc-container {
    width: min(100% - 28px, 720px);
  }

  .news-head {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .news-head .section-title {
    font-size: 30px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 28px;
  }

  .news-card-primary,
  .news-card-secondary,
  .news-card-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .news-card-horizontal {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-card img,
  .news-card-feature img {
    height: 216px;
    object-fit: cover;
  }

  .cta-band {
    min-height: 310px;
    background-position: 58% 43%;
  }

  .cta-band .tc-container {
    width: min(100% - 28px, 720px);
  }

  .cta-copy {
    max-width: 320px;
    margin: 0;
  }

  .cta-band h2 {
    font-size: 30px;
    white-space: nowrap;
  }

  .cta-band p {
    font-size: 13px;
  }

  .about-badge {
    right: 10px;
    bottom: 10px;
    width: 96px;
    height: 96px;
    font-size: 26px;
    padding: 18px;
  }

  .about-split,
  .feature-row {
    background: transparent;
  }

  .about-section {
    padding-top: 50px;
    padding-bottom: 62px;
  }

  .about-split {
    gap: 26px;
  }

  .copy-block h2,
  .profile-grid h2,
  .timeline-grid h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .copy-block h2 .about-title-line {
    white-space: normal;
  }

  .about-hero {
    min-height: auto;
    padding-top: 98px;
  }

  .about-hero h1 {
    width: min(100% - 28px, 360px);
    font-size: 26px;
    line-height: 1.02;
    margin-bottom: 20px;
  }

  .about-hero img {
    width: 150%;
    max-width: none;
    margin-left: -25%;
  }

  .about-profile {
    padding: 54px 0 48px;
  }

  .about-profile .tc-container,
  .about-timeline-section .tc-container,
  .about-mvg-section .tc-container {
    width: min(100% - 28px, 720px);
  }

  .about-profile-grid,
  .about-timeline-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-profile-grid h2,
  .about-timeline-copy h2,
  .about-mvg-section .section-title {
    font-size: 28px;
    line-height: 1;
  }

  .about-profile-copy p {
    font-size: 13px;
    line-height: 1.62;
  }

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

  .about-stats > div {
    border: 1px solid #eceef1;
    border-radius: 12px;
    padding: 16px 14px;
    background: #fff;
  }

  .about-video-section {
    height: auto;
  }

  .about-video-section img {
    width: 100%;
    height: auto;
  }

  .about-timeline-section {
    padding-top: 54px;
    touch-action: pan-y;
    user-select: none;
  }

  .about-timeline-copy h3 {
    margin-top: 34px;
    font-size: 38px;
  }

  .timeline-arrows {
    margin-top: 32px;
  }

  .about-timeline-grid img {
    border-radius: 12px;
  }

  .about-year-track {
    margin-top: 34px;
    overflow-x: auto;
  }

  .about-year-track .tc-container {
    justify-content: flex-start;
    gap: 34px;
    min-width: 520px;
    padding-top: 24px;
  }

  .about-mvg-section {
    padding: 54px 0 64px;
  }

  .about-mvg-section .section-title {
    margin-bottom: 28px;
  }

  .mvg-card {
    min-height: 280px;
    border-radius: 12px;
  }

  .mvg-card div {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .copy-block p,
  .profile-grid p,
  .contact-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .consult-section {
    min-height: auto;
    padding: 56px 0;
    background-position: 34% center;
  }

  .consult-layout {
    min-height: auto;
    justify-content: center;
  }

  .consult-form {
    min-height: 0;
    padding: 34px 22px;
    border-radius: 16px;
  }

  .consult-form h2 {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .consult-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .consult-fields input {
    height: 52px;
  }

  .consult-form button {
    height: 54px;
    margin-top: 24px;
  }

  .wide-image,
  .about-image-wrap img,
  .feature-row img,
  .news-list-item img {
    border-radius: 14px;
  }

  .map-section {
    background: #f6f7f8;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .map-layout {
    gap: 24px;
  }

  .map-heading .section-title {
    font-size: 25px;
    margin-bottom: 18px;
  }

  .map-ship {
    width: 132px;
  }

  .map-list {
    font-size: 14px;
  }

  .map-list strong {
    font-size: 15px;
  }

  .map-list li {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .world-map {
    width: calc(100% + 28px);
    max-width: none;
    margin-left: -14px;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }

  .testimonial-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    margin-bottom: 30px;
  }

  .testimonial-head .section-title {
    width: auto;
    font-size: 26px;
  }

  .testimonial-controls {
    margin-top: 2px;
  }

  .testimonial-viewport {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
  }

  .testimonial-track {
    gap: 14px;
  }

  .testimonial-card {
    width: min(278px, 76vw);
    min-height: 190px;
    padding: 26px 24px 22px;
  }

  .testimonial-card-blue,
  .testimonial-card-lavender {
    width: min(284px, 78vw);
  }

  .testimonial-card-main {
    width: min(300px, 82vw);
    min-height: 300px;
    padding-top: 96px;
    font-size: 15px;
  }

  .testimonial-person {
    width: min(210px, 58vw);
    height: 300px;
  }

  .testimonial-person div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .news-hero h1 {
    width: 1px;
    margin: 0;
  }

  .news-hero {
    min-height: 230px;
    padding-top: 100px;
    background-position: center top;
  }

  .contact-page h1 {
    margin-bottom: 48px;
    font-size: 34px;
    line-height: 1.08;
  }

  .news-list-item {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
    padding: 0 0 22px;
    margin-bottom: 22px;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #eceef1;
    border-radius: 0;
  }

  .news-list h2 {
    font-size: 18px;
    line-height: 1.22;
  }

  .news-list {
    padding: 34px 0 52px;
  }

  .news-list .tc-container {
    width: min(100% - 28px, 720px);
  }

  .news-list-item time {
    padding-top: 0;
    font-size: 12px;
  }

  .news-list p {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.35;
  }

  .news-list-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 355 / 225;
    order: -1;
  }

  .news-pagination {
    gap: 7px;
    margin-top: 28px;
  }

  .news-pagination a,
  .news-pagination span {
    width: 30px;
    height: 30px;
  }

  .footer-top,
  .footer-links {
    gap: 18px;
  }

  .tc-footer {
    min-height: 0;
    padding: 28px 0 24px;
    background-position: center calc(100% + 300px);
    background-size: auto 560px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
    gap: 22px 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-logo {
    width: 58px;
    margin-bottom: 12px;
  }

  .footer-content p,
  .footer-content a {
    font-size: 11px;
    line-height: 1.45;
  }

  .footer-content strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .footer-top p {
    margin-bottom: 16px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding-top: 24px;
  }

  .footer-title {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-social a {
    width: 24px;
    height: 24px;
  }

  .footer-copy {
    margin-top: 24px;
    font-size: 10px;
    line-height: 1.45;
  }
}

@media (min-width: 992px) {
  .tc-navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}
