:root {
  --font-kaiti: "KaiTi", "STKaiti", "KaiTi_GB2312", "DFKai-SB", serif;
  --bg: #f7fbff;
  --bg-alt: #edf4fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.97);
  --surface-light: rgba(19, 76, 145, 0.06);
  --line: rgba(19, 76, 145, 0.12);
  --line-strong: rgba(19, 76, 145, 0.22);
  --text: #163253;
  --muted: #58708f;
  --accent: #1d5fa8;
  --accent-strong: #0f4f93;
  --success: #15805d;
  --shadow: 0 24px 60px rgba(24, 63, 109, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 84px;
  --hero-image: url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=cinematic%20modern%20logistics%20warehouse%20interior%2C%20organized%20cargo%20racks%2C%20autonomous%20forklifts%2C%20warm%20industrial%20lighting%2C%20premium%20commercial%20photography%2C%20navy%20and%20amber%20tones%2C%20ultra%20detailed&image_size=landscape_16_9");
  --about-image: url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=executive%20logistics%20operations%20team%20inside%20a%20premium%20warehouse%20office%2C%20glass%20meeting%20room%2C%20elegant%20industrial%20design%2C%20documentary%20style%2C%20realistic%2C%20high%20detail&image_size=landscape_16_9");
  --services-image: url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=container%20truck%20fleet%20and%20air%20cargo%20operations%20at%20sunrise%2C%20premium%20logistics%20brand%20campaign%2C%20cinematic%20wide%20shot%2C%20realistic%2C%20high%20detail&image_size=landscape_16_9");
  --security-image: url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=high%20security%20warehouse%20control%20room%20with%20surveillance%20screens%2C%20professional%20operators%2C%20blue%20and%20gold%20lighting%2C%20commercial%20photography%2C%20realistic&image_size=landscape_16_9");
  --contact-image: url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=modern%20logistics%20headquarters%20reception%20area%2C%20warm%20premium%20lighting%2C%20navy%20and%20gold%20interior%2C%20hospitality%20desk%2C%20realistic%20commercial%20photo&image_size=landscape_16_9");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-kaiti);
  background:
    radial-gradient(circle at top right, rgba(61, 133, 214, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(17, 95, 170, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 52%, #edf4fb 100%);
  color: var(--text);
  min-width: 320px;
}

[hidden] {
  display: none !important;
}

body.has-admin-auth-modal {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(29, 95, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 95, 168, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
  opacity: 0.28;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::after {
  content: "";
  position: absolute;
  top: 120px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 95, 168, 0.14), transparent 72%);
  pointer-events: none;
  filter: blur(10px);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section--tight {
  padding-top: 88px;
  padding-bottom: 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(29, 95, 168, 0.08);
  border: 1px solid rgba(29, 95, 168, 0.12);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(29, 95, 168, 0.12);
}

.section-heading {
  margin: 20px 0 14px;
  font-family: var(--font-kaiti);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 700;
}

.section-heading--medium {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-copy {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.glass-card,
.panel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.glass-card {
  border-radius: var(--radius-xl);
}

.panel-card {
  border-radius: var(--radius-lg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(19, 76, 145, 0.08);
}

.site-header__inner {
  width: var(--container);
  min-height: var(--header-height);
  padding: 14px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand__logo {
  width: auto;
  max-width: 190px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand--header {
  flex: 0 1 auto;
}

.brand__logo--header {
  max-width: 240px;
  height: 60px;
}

.brand__text strong,
.brand__text span {
  display: block;
}

.brand__text strong {
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--accent-strong);
}

.brand__text span {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.site-header .brand__text {
  min-width: 0;
}

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

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent-strong);
  background: rgba(29, 95, 168, 0.08);
  transform: translateY(-1px);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(29, 95, 168, 0.06);
  color: var(--accent-strong);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.button,
.button-secondary {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  color: #ffffff;
  background: linear-gradient(135deg, #0f4f93 0%, #2a73c4 100%);
  box-shadow: 0 18px 34px rgba(29, 95, 168, 0.22);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--accent-strong);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.hero {
  padding: 70px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.hero__panel {
  position: relative;
  min-height: 640px;
  border-radius: 36px;
  overflow: hidden;
}

.hero__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: url("../../img/bg1.png") center/cover no-repeat;
  border: 1px solid rgba(19, 76, 145, 0.08);
  box-shadow: var(--shadow);
}

.hero__content::before {
  display: none;
}

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

.hero__title {
  margin: 22px 0 18px;
  font-family: var(--font-kaiti);
  font-size: clamp(3rem, 6.8vw, 6rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.95;
  color: rgba(245, 239, 230, 0.84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.98)),
    linear-gradient(135deg, rgba(29, 95, 168, 0.08), transparent 45%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.hero__badge-row {
  display: grid;
  gap: 14px;
}

.stat-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(29, 95, 168, 0.05);
  border: 1px solid rgba(19, 76, 145, 0.1);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-kaiti);
  font-weight: 600;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.8;
}

.quick-form {
  padding: 24px;
  border-radius: 28px;
  background: rgba(29, 95, 168, 0.04);
  border: 1px solid rgba(19, 76, 145, 0.1);
}

.quick-form__title {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.quick-form__copy {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.input-group,
.textarea-group {
  display: grid;
  gap: 10px;
}

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

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

.input-group label,
.textarea-group label {
  font-size: 14px;
  color: var(--accent-strong);
}

.input-group input,
.textarea-group textarea,
.quick-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(19, 76, 145, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.textarea-group textarea {
  min-height: 140px;
  padding-top: 16px;
  resize: vertical;
}

.input-group input:focus,
.textarea-group textarea:focus,
.quick-form input:focus {
  border-color: rgba(29, 95, 168, 0.42);
  box-shadow: 0 0 0 4px rgba(29, 95, 168, 0.1);
}

.quick-form__inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.mini-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(184, 194, 212, 0.8);
}

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

.feature-card,
.service-card,
.security-card,
.contact-card,
.industry-card,
.help-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(19, 76, 145, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover,
.service-card:hover,
.security-card:hover,
.contact-card:hover,
.industry-card:hover,
.help-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 95, 168, 0.26);
  background: #ffffff;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.feature-card__media {
  margin-bottom: 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: #eef4fb;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 240ms ease;
}

.feature-card:hover .feature-card__media img {
  transform: scale(1.04);
}

.card-index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--accent-strong);
  background: rgba(29, 95, 168, 0.08);
  border: 1px solid rgba(29, 95, 168, 0.14);
  font-family: var(--font-kaiti);
  font-size: 1.4rem;
}

.card-title {
  margin: 20px 0 12px;
  font-size: 1.28rem;
}

.card-copy {
  margin: 0;
  line-height: 1.9;
  color: var(--muted);
}

.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef4fb;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-card__body {
  padding: 24px 24px 28px;
}

.risk-system-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: center;
}

.risk-system-visual {
  position: relative;
  max-width: 640px;
}

.risk-system-visual__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.risk-system-visual__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 30px;
  background: #eef4fb;
  box-shadow: 0 24px 60px rgba(24, 63, 109, 0.1);
}

.risk-system-visual__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.risk-system-visual__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 172px;
  height: 172px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(24, 63, 109, 0.14);
}

.risk-system-visual__logo img {
  width: 100%;
  height: auto;
  display: block;
}

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

.risk-system-cards .security-card {
  height: 100%;
}

.stats-strip {
  margin-top: 28px;
  padding: 28px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: linear-gradient(135deg, rgba(29, 95, 168, 0.08), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line-strong);
}

.stats-strip strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-kaiti);
}

.stats-strip span {
  color: var(--muted);
  line-height: 1.8;
}

.transport-showcase {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 40px;
  align-items: center;
}

.transport-showcase__visual {
  position: relative;
  padding: 18px;
}

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

.transport-grid__item {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(19, 76, 145, 0.1);
  box-shadow: var(--shadow);
  background: #ffffff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.transport-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.transport-grid__item:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 95, 168, 0.24);
  box-shadow: 0 26px 52px rgba(24, 63, 109, 0.18);
}

.transport-grid__item:hover img {
  transform: scale(1.06);
}

.transport-showcase__logo-wrap {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(24, 63, 109, 0.2);
  border: 1px solid rgba(19, 76, 145, 0.1);
}

.transport-showcase__logo {
  width: 76%;
  height: 76%;
  border-radius: 50%;
  object-fit: contain;
}

.transport-showcase__content {
  min-width: 0;
}

.transport-showcase__copy {
  max-width: 100%;
}

.transport-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.transport-point {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(19, 76, 145, 0.1);
  box-shadow: var(--shadow);
}

.transport-point .card-title {
  margin-top: 0;
}

.page-hero {
  padding: 92px 0 56px;
}

.page-hero__banner {
  position: relative;
  min-height: 380px;
  padding: 52px;
  border-radius: 36px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(19, 76, 145, 0.08);
}

.page-hero__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(12, 53, 101, 0.68));
}

.page-hero__banner > div {
  position: relative;
  z-index: 1;
}

.page-hero--about .container {
  width: 100%;
}

.page-hero--about .page-hero__banner {
  min-height: 520px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: url("../../img/bg3.png") center center / cover no-repeat;
}

.page-hero--about .page-hero__banner::before {
  content: none;
}

.page-hero--services .container {
  width: 100%;
}

.page-hero--services .page-hero__banner {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: url("../../img/bg4.png") center center / cover no-repeat;
}

.page-hero--services .page-hero__banner::before {
  content: none;
}

.page-hero--services .section-heading {
  color: #dbeeff;
}

.page-hero--security .container {
  width: 100%;
}

.page-hero--security .page-hero__banner {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: url("../../img/bg5.png") center center / cover no-repeat;
}

.page-hero--security .page-hero__banner::before {
  content: none;
}

.page-hero--contact .container {
  width: 100%;
}

.page-hero--contact .page-hero__banner {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: url("../../img/bg6.png") center center / cover no-repeat;
}

.page-hero--contact .page-hero__banner::before {
  content: none;
}

.page-hero--tracking .container {
  width: 100%;
}

.page-hero--tracking .page-hero__banner {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: url("../../img/bg7.png") center center / cover no-repeat;
}

.page-hero--tracking .page-hero__banner::before {
  content: none;
}

.highlight-panel,
.image-panel,
.result-panel,
.cta-panel,
.timeline,
.contact-layout__map,
.tracking-hint {
  padding: 30px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.highlight-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94)),
    radial-gradient(circle at top right, rgba(29, 95, 168, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(42, 115, 196, 0.08), transparent 42%);
  border: 1px solid rgba(29, 95, 168, 0.14);
  box-shadow: 0 26px 64px rgba(24, 63, 109, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.highlight-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 46%);
  pointer-events: none;
}

.highlight-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.highlight-panel > * {
  position: relative;
  z-index: 1;
}

.highlight-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 95, 168, 0.22);
  box-shadow: 0 30px 72px rgba(24, 63, 109, 0.18);
}

.contact-suggestion-panel {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(238, 246, 255, 0.96)),
    radial-gradient(circle at top right, rgba(29, 95, 168, 0.16), transparent 30%);
  border-color: rgba(29, 95, 168, 0.16);
}

.contact-suggestion-panel .eyebrow {
  background: rgba(29, 95, 168, 0.09);
  border-color: rgba(29, 95, 168, 0.16);
  color: var(--accent-strong);
}

.contact-suggestion-panel .list {
  gap: 14px;
  margin-top: 12px;
}

.contact-suggestion-panel .list li {
  padding: 18px 20px 18px 54px;
  border-top: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(24, 63, 109, 0.08);
}

.contact-suggestion-panel .list li::before {
  top: 50%;
  left: 20px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 34%, rgba(42, 115, 196, 0.95) 36% 100%);
  box-shadow: 0 0 0 6px rgba(29, 95, 168, 0.08);
}

.contact-suggestion-panel .list li:first-child {
  padding-top: 18px;
}

.contact-suggestion-panel .list li:first-child::before {
  top: 50%;
}

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

.list li {
  padding: 18px 0 0 22px;
  position: relative;
  color: var(--muted);
  line-height: 1.85;
  border-top: 1px solid rgba(19, 76, 145, 0.1);
}

.list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.list li:first-child::before {
  top: 6px;
}

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

.highlight-panel__logo-wrap {
  margin-bottom: 24px;
  text-align: center;
}

.highlight-panel__logo {
  width: min(220px, 100%);
  height: auto;
  display: inline-block;
}

.metric-box {
  padding: 22px;
  border-radius: 22px;
  background: rgba(29, 95, 168, 0.05);
  border: 1px solid rgba(19, 76, 145, 0.1);
}

.metric-box strong {
  display: block;
  font-family: var(--font-kaiti);
  font-size: 2rem;
}

.metric-box span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.8;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 76, 145, 0.1);
}

.timeline-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline-item strong {
  color: var(--accent-strong);
  letter-spacing: 0;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.timeline-item p {
  margin: 0;
  line-height: 1.9;
  color: var(--muted);
}

.service-rhythm-panel {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(29, 95, 168, 0.08), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(19, 76, 145, 0.1);
  box-shadow: 0 28px 64px rgba(24, 63, 109, 0.12);
}

.service-rhythm-panel > .eyebrow {
  margin-bottom: 18px;
}

.service-rhythm {
  gap: 16px;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 76, 145, 0.08);
}

.service-rhythm__item {
  align-items: start;
  gap: 22px;
  padding: 18px 14px;
  border-top: 1px solid rgba(19, 76, 145, 0.08);
}

.service-rhythm__item:first-child {
  border-top: 0;
  padding-top: 8px;
}

.service-rhythm__item strong {
  width: 64px;
  min-width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(29, 95, 168, 0.12), rgba(29, 95, 168, 0.04));
  border: 1px solid rgba(29, 95, 168, 0.14);
  color: var(--accent-strong);
  font-size: 1.3rem;
  line-height: 1;
}

.service-rhythm__item div {
  padding: 6px 4px 6px 0;
}

.service-rhythm__item h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  color: var(--accent-strong);
}

.service-rhythm__item p {
  font-size: 1.02rem;
  line-height: 2;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(29, 95, 168, 0.06);
  border: 1px solid rgba(19, 76, 145, 0.1);
  color: var(--accent-strong);
  font-size: 14px;
}

.service-card__list,
.help-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card__list li,
.help-card li {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}

.service-card__list li::before,
.help-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-section {
  position: relative;
  background: url("../../img/bg2.png") center center / cover no-repeat;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: #163253;
}

.cta-section .cta-panel .section-heading,
.cta-section .cta-panel p,
.cta-section .cta-panel .eyebrow {
  color: #163253;
}

.cta-section .cta-panel .eyebrow {
  background: rgba(22, 50, 83, 0.08);
  border-color: rgba(22, 50, 83, 0.16);
}

.cta-section .cta-panel > div:first-child {
  padding-top: 28px;
}

.cta-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.security-cta-panel {
  min-height: 420px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  background: url("../../img/bg4.png") center center / cover no-repeat;
}

.security-cta-panel .section-heading,
.security-cta-panel p,
.security-cta-panel .eyebrow {
  color: #e7f3ff;
}

.security-cta-panel .eyebrow {
  background: rgba(231, 243, 255, 0.12);
  border-color: rgba(231, 243, 255, 0.22);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.contact-card h3,
.help-card h3,
.result-panel h3 {
  margin: 18px 0 8px;
}

.contact-card p,
.help-card p,
.result-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-layout__map {
  min-height: 280px;
  display: grid;
  align-content: end;
  border: none;
  backdrop-filter: none;
  background: url("../../img/f1.png") center center / cover no-repeat;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(125, 230, 198, 0.12);
  color: #0011ff;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.tracking-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
}

.tracking-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.tracking-meta div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(29, 95, 168, 0.05);
  border: 1px solid rgba(19, 76, 145, 0.1);
}

.tracking-meta span {
  display: block;
  color: rgba(184, 194, 212, 0.85);
  font-size: 14px;
}

.tracking-meta strong {
  display: block;
  margin-top: 8px;
  line-height: 1.65;
}

.timeline-track {
  display: grid;
  gap: 16px;
}

.timeline-track__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
}

.timeline-track__item time {
  color: var(--accent-strong);
  font-size: 14px;
}

.timeline-track__item div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(19, 76, 145, 0.1);
}

.timeline-track__item h4 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.timeline-track__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.result-panel--empty {
  display: grid;
  place-items: center;
  min-height: 280px;
  text-align: center;
}

.result-panel--empty p {
  max-width: 360px;
}

.feedback-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(125, 230, 198, 0.12);
  border: 1px solid rgba(125, 230, 198, 0.2);
  color: var(--success);
  display: none;
}

.feedback-message--error {
  background: rgba(217, 45, 32, 0.1);
  border-color: rgba(217, 45, 32, 0.16);
  color: #b42318;
}

.feedback-message.is-visible {
  display: block;
}

.admin-intro {
  margin-bottom: 26px;
}

.admin-shell {
  display: grid;
  gap: 24px;
}

.admin-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 29, 52, 0.5);
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.admin-auth-dialog {
  width: min(720px, 100%);
  max-width: 720px;
  padding: 36px;
  border-radius: 36px;
  position: relative;
  pointer-events: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(238, 246, 255, 0.96)),
    radial-gradient(circle at top right, rgba(29, 95, 168, 0.16), transparent 30%);
  border: 1px solid rgba(19, 76, 145, 0.12);
  box-shadow: 0 34px 80px rgba(12, 29, 52, 0.24);
}

.admin-auth-dialog__head {
  margin-bottom: 22px;
}

.admin-auth-panel {
  display: grid;
  gap: 18px;
}

.admin-auth-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(29, 95, 168, 0.06);
  border: 1px solid rgba(19, 76, 145, 0.1);
  color: var(--accent-strong);
  line-height: 1.8;
}

.admin-auth-note strong,
.admin-auth-note span {
  display: block;
}

.admin-auth-panel h2,
.admin-overview-panel h2 {
  margin-bottom: 12px;
}

.admin-dashboard {
  display: grid;
  gap: 24px;
}

.admin-overview-panel {
  padding: 34px;
}

.admin-overview-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.admin-overview-panel__actions {
  display: flex;
  justify-content: flex-end;
}

.admin-overview-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tab {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(19, 76, 145, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-strong);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.admin-tab.is-active {
  background: linear-gradient(135deg, #0f4f93 0%, #2a73c4 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(29, 95, 168, 0.2);
}

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

.admin-tab-panel {
  display: block;
}

.admin-create-layout {
  align-items: start;
}

.admin-panel-block {
  padding: 34px;
}

.admin-panel-block h3 {
  margin: 18px 0 10px;
  font-size: 1.48rem;
}

.admin-panel-block p {
  margin: 0 0 20px;
  line-height: 1.9;
  color: var(--muted);
}

.admin-panel-block--aside {
  min-height: 100%;
}

.admin-manage-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: start;
}

.admin-panel-heading {
  margin-bottom: 20px;
}

.admin-panel-heading h3 {
  margin-bottom: 0;
}

.admin-order-list {
  display: grid;
  gap: 14px;
}

.admin-order-list__empty {
  min-height: 220px;
}

.admin-order-card {
  width: 100%;
  padding: 20px;
  display: grid;
  gap: 8px;
  text-align: left;
  border-radius: 24px;
  border: 1px solid rgba(19, 76, 145, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 30px rgba(24, 63, 109, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.admin-order-card strong {
  font-size: 1.08rem;
  color: var(--accent-strong);
}

.admin-order-card span:not(.status-pill),
.admin-order-card small {
  color: var(--muted);
}

.admin-order-card.is-active,
.admin-order-card:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 95, 168, 0.22);
  background: rgba(241, 247, 255, 0.94);
  box-shadow: 0 20px 38px rgba(24, 63, 109, 0.12);
}

.admin-editor-empty {
  min-height: 320px;
}

.admin-editor-form {
  display: grid;
  gap: 22px;
}

.admin-editor-form input[readonly] {
  color: rgba(88, 112, 143, 0.9);
  background: rgba(247, 251, 255, 0.94);
}

.admin-current-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-summary-chip {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(29, 95, 168, 0.05);
  border: 1px solid rgba(19, 76, 145, 0.1);
}

.admin-summary-chip span {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

.admin-summary-chip strong {
  display: block;
  margin-top: 8px;
  line-height: 1.7;
}

.admin-timeline-editor {
  display: grid;
  gap: 16px;
}

.admin-timeline-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 76, 145, 0.08);
}

.admin-timeline-item__head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-timeline-item__head strong {
  font-size: 1.05rem;
  color: var(--accent-strong);
}

.admin-timeline-item__remove {
  min-height: 42px;
  padding: 0 18px;
}

.admin-editor-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.site-footer {
  padding: 44px 0 56px;
  border-top: 1px solid rgba(19, 76, 145, 0.08);
}

.site-footer__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.site-footer h3 {
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--accent-strong);
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.9;
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.footer-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 76, 145, 0.08);
  color: rgba(88, 112, 143, 0.82);
  font-size: 14px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 18px 32px rgba(29, 95, 168, 0.22);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .two-column,
  .contact-layout,
  .tracking-layout,
  .site-footer__inner,
  .transport-showcase,
  .admin-manage-layout {
    grid-template-columns: 1fr;
  }

  .grid-cards,
  .stats-strip,
  .transport-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .risk-system-layout {
    grid-template-columns: 1fr;
  }

  .risk-system-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero__content,
  .hero__panel {
    min-height: auto;
  }

  .transport-showcase__visual {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    border-radius: 18px;
  }

  .brand__logo--header {
    max-width: 200px;
    height: 54px;
  }
}

@media (max-width: 720px) {
  .section,
  .page-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero__content,
  .page-hero__banner {
    padding: 28px;
    border-radius: 28px;
  }

  .hero__panel,
  .highlight-panel,
  .image-panel,
  .result-panel,
  .cta-panel,
  .timeline,
  .contact-layout__map,
  .tracking-hint {
    padding: 24px;
    border-radius: 24px;
  }

  .grid-cards,
  .stats-strip,
  .metric-grid,
  .tracking-meta,
  .form-grid,
  .transport-points,
  .risk-system-cards,
  .admin-overview-grid,
  .admin-current-summary {
    grid-template-columns: 1fr;
  }

  .risk-system-visual__grid {
    gap: 14px;
  }

  .risk-system-visual__item {
    border-radius: 22px;
  }

  .risk-system-visual__logo {
    width: 128px;
    height: 128px;
    padding: 16px;
  }

  .timeline-item,
  .timeline-track__item {
    grid-template-columns: 1fr;
  }

  .quick-form__inline {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
  }

  .admin-auth-panel__content,
  .admin-overview-panel,
  .admin-panel-block,
  .admin-timeline-item {
    padding: 24px;
  }

  .admin-auth-dialog {
    padding: 24px;
    border-radius: 28px;
  }

  .admin-overview-panel__head,
  .admin-timeline-item__head,
  .admin-editor-actions {
    flex-direction: column;
    align-items: stretch;
  }


  .site-header__inner {
    gap: 12px;
    padding: 12px 0;
  }

  .brand__logo--header {
    max-width: 160px;
    height: 48px;
  }

  .site-header .brand__text {
    display: none;
  }

  .transport-grid {
    gap: 12px;
  }

  .transport-grid__item {
    border-radius: 22px;
  }

  .transport-showcase__logo-wrap {
    width: 102px;
    height: 102px;
    padding: 8px;
  }

  .transport-point {
    grid-template-columns: 1fr;
  }

  .cta-section .cta-panel > div:first-child {
    padding-top: 16px;
  }


  .service-rhythm-panel {
    padding: 24px;
  }

  .service-rhythm {
    padding: 10px;
  }

  .service-rhythm__item {
    gap: 14px;
    padding: 16px 10px;
  }

  .service-rhythm__item strong {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1.1rem;
  }
}
