:root {
  --navy: #08223f;
  --navy-2: #0d3157;
  --blue: #1f669d;
  --orange: #ff8428;
  --orange-2: #ffb45f;
  --text: #172333;
  --muted: #64748b;
  --light: #f6f9fc;
  --white: #ffffff;
  --line: rgba(8, 34, 63, .12);
  --shadow: 0 24px 70px rgba(8, 34, 63, .15);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: var(--navy); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 20px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: all .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(8,34,63,.08); border-bottom-color: var(--line); }
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--navy); min-width: 295px; }
.brand img { width: auto; height: 58px; max-width: 250px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; }
.brand strong { font-size: 18px; letter-spacing: .01em; display: block; line-height: 1.08; }
.brand small { font-size: 10px; text-transform: uppercase; color: var(--muted); letter-spacing: .10em; }
.nav-menu { display: flex; align-items: center; gap: 26px; font-weight: 700; font-size: 14px; }
.nav-menu a:not(.btn) { position: relative; color: #24364a; }
.nav-menu a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; width: 0; height: 3px; background: var(--orange); transition: width .25s ease; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--light); border-radius: 12px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: var(--navy); border: 0; border-radius: 999px; padding: 14px 26px; font-weight: 800; box-shadow: 0 14px 32px rgba(255,132,40,.28); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(255,132,40,.36); }
.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--ghost { background: rgba(255,255,255,.13); color: var(--white); border: 1px solid rgba(255,255,255,.35); box-shadow: none; }
.btn--light { background: var(--white); color: var(--navy); box-shadow: none; }
.hero { position: relative; min-height: 760px; overflow: hidden; color: var(--white); }
.hero__bg { position: absolute; inset: 0; background: radial-gradient(circle at 20% 10%, rgba(31,102,157,.55), transparent 32%), radial-gradient(circle at 82% 12%, rgba(255,132,40,.38), transparent 27%), linear-gradient(135deg, #071b33 0%, #0d3157 52%, #0c4e74 100%); }
.hero__bg::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero__bg::after { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: rgba(255,255,255,.06); right: -180px; bottom: -230px; }
.hero__inner { position: relative; min-height: 760px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; padding: 70px 0 100px; }
.eyebrow { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; font-size: 13px; margin: 0 0 12px; }
.hero h1 { font-size: clamp(46px, 6vw, 80px); line-height: .98; letter-spacing: -0.06em; margin: 0 0 24px; max-width: 780px; }
.lead { font-size: 19px; color: rgba(255,255,255,.82); max-width: 660px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 670px; }
.hero__trust div { border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.08); border-radius: 18px; padding: 18px; backdrop-filter: blur(12px); }
.hero__trust strong { display: block; font-size: 22px; }
.hero__trust span { color: rgba(255,255,255,.72); font-size: 13px; }
.hero__visual { position: relative; }
.hero__visual::before { content: ""; position: absolute; inset: 13% 4% 5% 16%; background: linear-gradient(135deg, rgba(31,102,157,.34), rgba(255,132,40,.24)); border-radius: 44px; filter: blur(8px); transform: rotate(-6deg); }
.hero__visual img { position: relative; filter: drop-shadow(0 35px 65px rgba(0,0,0,.36)); }
.page-hero { position: relative; padding: 110px 0 90px; color: var(--white); overflow: hidden; background: radial-gradient(circle at 15% 20%, rgba(255,132,40,.24), transparent 28%), linear-gradient(135deg, #071b33, #0d3157 58%, #0b4e75); }
.page-hero h1 { font-size: clamp(42px, 5vw, 72px); line-height: 1; letter-spacing: -0.05em; margin: 0 0 20px; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.78); font-size: 18px; }
.award-band { background: var(--white); margin-top: -62px; position: relative; z-index: 3; }
.award-band__inner { background: var(--white); border-radius: 26px; padding: 34px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; box-shadow: var(--shadow); }
.award-band h2 { margin: 10px 0 0; line-height: 1.12; font-size: 28px; color: var(--navy); }
.award-band p { margin: 0; color: var(--muted); }
.badge { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(255,132,40,.12); color: #c75d12; font-weight: 900; font-size: 12px; letter-spacing: .08em; }
.section { padding: 104px 0; }
.section--light { background: linear-gradient(180deg, #f8fbff, #ffffff); }
.section--dark { color: var(--white); background: radial-gradient(circle at 85% 20%, rgba(255,132,40,.25), transparent 24%), linear-gradient(135deg, var(--navy), #071526); }
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-heading h2, .split__content h2, .map-content h2, .contact-info h2, .cta h2 { color: var(--navy); font-size: clamp(34px, 4vw, 56px); line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.045em; }
.section-heading p, .split__content > p, .map-content p, .contact-info p { color: var(--muted); margin: 0 0 18px; }
.section-heading--light h2, .section-heading--light p { color: var(--white); }
.section-heading--light p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 40px rgba(8,34,63,.07); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card__image { height: 178px; background-size: cover; background-position: center; position: relative; }
.service-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,34,63,.45), transparent); }
.image-freight { background-image: linear-gradient(135deg, rgba(8,34,63,.3), rgba(31,102,157,.25)), url("assets/card-freight.svg"); }
.image-customs { background-image: linear-gradient(135deg, rgba(8,34,63,.3), rgba(31,102,157,.25)), url("assets/card-customs.svg"); }
.image-trucking { background-image: linear-gradient(135deg, rgba(8,34,63,.3), rgba(31,102,157,.25)), url("assets/card-trucking.svg"); }
.image-consulting { background-image: linear-gradient(135deg, rgba(8,34,63,.3), rgba(31,102,157,.25)), url("assets/card-network.svg"); }
.service-card__body { padding: 26px; }
.service-icon { width: 48px; height: 48px; margin-top: -52px; position: relative; background: var(--white); padding: 9px; border-radius: 14px; box-shadow: 0 10px 24px rgba(8,34,63,.15); }
.service-card h3 { color: var(--navy); font-size: 22px; line-height: 1.18; margin: 18px 0 12px; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
ul { padding-left: 18px; margin: 0 0 20px; color: #41536a; font-size: 14px; }
.service-card a, .news-card a { color: var(--blue); font-weight: 900; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature-list div { border-left: 4px solid var(--orange); padding: 4px 0 4px 18px; }
.feature-list h4 { margin: 0 0 4px; color: var(--navy); font-size: 18px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 15px; }
.profile-panel, .split__card { background: var(--navy); color: var(--white); border-radius: 34px; padding: 38px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.profile-panel::before, .split__card::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,132,40,.18); right: -70px; top: -80px; }
.profile-panel > *, .split__card > * { position: relative; }
.profile-panel h3, .split__card h3 { margin: 0 0 24px; font-size: 28px; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-grid div { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 20px; padding: 22px; }
.stat-grid strong { display: block; color: var(--orange); font-size: 34px; line-height: 1; }
.stat-grid span { color: rgba(255,255,255,.72); font-size: 13px; }
.mini-profile { margin-top: 24px; background: rgba(255,255,255,.08); border-radius: 20px; padding: 20px; }
.mini-profile p { display: flex; justify-content: space-between; gap: 16px; margin: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 8px; }
.mini-profile p:last-child { border-bottom: 0; padding-bottom: 0; }
.mini-profile span { color: rgba(255,255,255,.74); text-align: right; }
.value-grid, .management-grid, .process-grid, .timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card, .management-card, .process-card, .news-card { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: 30px; box-shadow: 0 10px 30px rgba(8,34,63,.06); }
.section--dark .value-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px); }
.value-card span, .news-card span, .process-card span { color: var(--orange); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.value-card h3, .management-card h3, .process-card h3, .news-card h3 { color: var(--navy); font-size: 23px; line-height: 1.2; margin: 14px 0; }
.section--dark .value-card h3 { color: var(--white); }
.value-card p, .management-card p, .process-card p, .news-card p { color: var(--muted); margin: 0; }
.section--dark .value-card p { color: rgba(255,255,255,.74); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector-card { min-height: 118px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(135deg, #ffffff, #f6f9fc); display: flex; align-items: center; justify-content: center; text-align: center; font-weight: 900; color: var(--navy); box-shadow: 0 10px 28px rgba(8,34,63,.06); position: relative; overflow: hidden; padding: 20px; }
.sector-card::before { content: ""; position: absolute; width: 70px; height: 70px; background: rgba(255,132,40,.12); border-radius: 50%; right: -18px; top: -20px; }
.map-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.map-card { background: var(--white); border-radius: 34px; padding: 18px; min-height: 420px; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: var(--shadow); overflow: hidden; }
.map-card iframe { width: 100%; height: 430px; border: 0; border-radius: 24px; }
.location-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.location-list span { background: var(--white); border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-weight: 800; color: var(--navy); }
.cta { background: linear-gradient(135deg, var(--blue), var(--navy)); color: var(--white); padding: 70px 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { color: var(--white); }
.cta p:not(.eyebrow) { color: rgba(255,255,255,.75); max-width: 640px; }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 56px; align-items: start; }
.contact-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-list a, .contact-list span { padding: 16px 18px; border-radius: 16px; background: var(--light); color: var(--navy); font-weight: 800; display: block; }
.contact-form { display: grid; gap: 16px; background: var(--light); padding: 32px; border-radius: 28px; }
.contact-form label { display: grid; gap: 8px; font-weight: 800; color: var(--navy); }
input, select, textarea { width: 100%; border: 1px solid var(--line); background: var(--white); border-radius: 15px; padding: 14px 16px; font: inherit; color: var(--text); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(31,102,157,.1); }
.footer { background: #06162a; color: rgba(255,255,255,.72); padding: 72px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 42px; }
.footer__brand img { width: 260px; max-width: 100%; margin-bottom: 16px; background: #fff; padding: 10px 14px; border-radius: 16px; }
.footer h4 { color: var(--white); margin: 0 0 18px; }
.footer a, .footer span { display: block; margin: 10px 0; color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--orange); color: var(--navy); font-weight: 900; box-shadow: 0 14px 36px rgba(8,34,63,.2); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; cursor: pointer; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }
@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner, .split, .map-wrap, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__inner { padding-top: 78px; }
  .hero__visual { max-width: 650px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .topbar__right { display: none; }
  .nav-toggle { display: block; }
  .brand { min-width: 0; }
  .nav-menu { position: absolute; left: 20px; right: 20px; top: 94px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 20px; display: grid; gap: 16px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s; }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .award-band__inner, .value-grid, .management-grid, .process-grid, .timeline-grid, .footer__inner { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__trust { grid-template-columns: 1fr; }
  .cta__inner, .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 74px 0; }
  .hero h1 { font-size: 44px; }
  .service-grid, .sector-grid, .stat-grid { grid-template-columns: 1fr; }
  .award-band { margin-top: -36px; }
  .award-band__inner, .contact-form, .profile-panel, .split__card { padding: 24px; }
  .brand img { height: 44px; max-width: 180px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 9px; }
}


/* Premium workflow timeline */
.workflow-section {
  position: relative;
  overflow: hidden;
}
.workflow-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,132,40,.18), transparent 68%);
  pointer-events: none;
}
.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.workflow::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(31,102,157,.08), rgba(255,132,40,.55), rgba(31,102,157,.08));
  transform: translateX(-50%);
}
.workflow-card {
  position: relative;
  min-height: 230px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(8,34,63,.10);
  border-radius: 30px;
  padding: 30px 30px 30px 106px;
  box-shadow: 0 18px 52px rgba(8,34,63,.08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.workflow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(8,34,63,.14);
  border-color: rgba(255,132,40,.38);
}
.workflow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,102,157,.08), transparent 46%, rgba(255,132,40,.08));
  opacity: 0;
  transition: opacity .25s ease;
}
.workflow-card:hover::before {
  opacity: 1;
}
.workflow-card::after {
  content: "";
  position: absolute;
  top: 45px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(255,132,40,.14);
  z-index: 2;
}
.workflow-card:nth-child(odd)::after {
  right: -32px;
}
.workflow-card:nth-child(even)::after {
  left: -32px;
}
.workflow-number {
  position: absolute;
  right: 28px;
  top: 22px;
  color: rgba(8,34,63,.08);
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.workflow-icon {
  position: absolute;
  left: 30px;
  top: 34px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffffff, #f6f9fc);
  border: 1px solid rgba(8,34,63,.10);
  box-shadow: 0 12px 28px rgba(8,34,63,.10);
  font-size: 25px;
}
.workflow-content {
  position: relative;
  z-index: 1;
}
.workflow-content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,132,40,.11);
  color: #bd5a14;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.workflow-content h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
}
.workflow-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.workflow-note {
  margin: 34px auto 0;
  max-width: 890px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.workflow-note strong {
  color: var(--orange-2);
  white-space: nowrap;
}
@media (max-width: 860px) {
  .workflow {
    grid-template-columns: 1fr;
  }
  .workflow::before {
    left: 28px;
  }
  .workflow-card {
    padding: 28px 24px 28px 98px;
  }
  .workflow-card::after {
    left: 20px !important;
    right: auto !important;
    top: 52px;
  }
  .workflow-icon {
    left: 48px;
  }
  .workflow-note {
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .workflow-card {
    padding: 92px 22px 24px;
  }
  .workflow::before {
    display: none;
  }
  .workflow-card::after {
    display: none;
  }
  .workflow-icon {
    left: 22px;
    top: 22px;
  }
  .workflow-number {
    font-size: 46px;
  }
}


.service-card__image {
  background-size: cover;
  background-position: center;
}
.service-card {
  overflow: hidden;
}
.service-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 28%);
}


.profile-visual {
  background: linear-gradient(135deg, #f7fbff, #eef5fb);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.profile-visual img {
  width: 100%;
  border-radius: 24px;
}
.split--profile {
  align-items: start;
}
.service-card__image {
  min-height: 200px;
}
.service-card__image::after {
  background: linear-gradient(to top, rgba(8,34,63,.28), rgba(8,34,63,.08));
}

.split--profile { grid-template-columns: 1fr 1fr; }
.split--profile .profile-panel { margin-top: 24px; }
@media (min-width: 1101px) { .split--profile { grid-template-columns: 1fr 0.95fr; } .split--profile .profile-visual { grid-column: 2; } .split--profile .profile-panel { grid-column: 2; } }


/* Customer document download feature */
.download-preview {
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
}
.download-card {
  background: radial-gradient(circle at 85% 15%, rgba(255,132,40,.22), transparent 25%), linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 34px;
  padding: 44px;
  color: #fff;
  box-shadow: var(--shadow);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.download-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 34px;
  margin-bottom: 20px;
}
.download-card h3 {
  font-size: 30px;
  line-height: 1.12;
  margin: 0 0 12px;
}
.download-card p {
  color: rgba(255,255,255,.76);
  margin: 0 0 24px;
}
.download-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.download-card__chips span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 800;
}
.download-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.download-form-panel,
.download-result-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 18px 52px rgba(8,34,63,.08);
}
.download-form-panel h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.download-help {
  color: var(--muted);
  margin: 0 0 26px;
}
.document-form {
  display: grid;
  gap: 16px;
}
.document-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
}
.download-security-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(31,102,157,.08);
  color: var(--muted);
  display: grid;
  gap: 4px;
  font-size: 14px;
}
.download-security-note strong {
  color: var(--navy);
}
.download-result-panel {
  min-height: 430px;
  display: grid;
  align-content: center;
}
.download-result-empty,
.download-result-error,
.download-result-list {
  text-align: center;
}
.download-result-empty .download-card__icon {
  margin-inline: auto;
  background: var(--light);
  color: var(--navy);
  border-color: var(--line);
}
.download-result-panel h3 {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 12px;
}
.download-result-panel p {
  color: var(--muted);
}
.demo-note {
  background: var(--light);
  border: 1px dashed rgba(31,102,157,.28);
  border-radius: 16px;
  padding: 12px 14px;
  margin-top: 18px;
  font-size: 14px;
}
.document-buttons {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.document-download-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--light);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.document-download-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,132,40,.45);
  box-shadow: 0 14px 32px rgba(8,34,63,.08);
}
.document-download-btn span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 860px) {
  .download-layout {
    grid-template-columns: 1fr;
  }
}


/* Secure online document center + admin panel */
.alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin: 14px 0;
  font-weight: 800;
}
.alert--success { background: rgba(25,165,123,.12); color: #087653; }
.alert--error { background: rgba(220,38,38,.10); color: #b91c1c; }
.alert--warning { background: rgba(255,132,40,.14); color: #a64c0d; }

.admin-body { background: #f6f9fc; }
.admin-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(8,34,63,.06);
}
.admin-nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.admin-menu {
  display: flex;
  gap: 18px;
  font-weight: 900;
  color: var(--navy);
}
.admin-main { padding: 54px 0 90px; }
.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 52px rgba(8,34,63,.08);
  margin-bottom: 28px;
}
.admin-card.narrow { max-width: 560px; margin-inline: auto; }
.admin-card h1, .admin-dashboard h1 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.admin-card h2 { color: var(--navy); margin: 0 0 18px; }
.admin-card p { color: var(--muted); }
.admin-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0;
}
.admin-stat-grid div {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 52px rgba(8,34,63,.10);
}
.admin-stat-grid strong {
  display: block;
  color: var(--orange-2);
  font-size: 42px;
  line-height: 1;
}
.admin-stat-grid span { color: rgba(255,255,255,.78); }
.admin-form {
  display: grid;
  gap: 16px;
}
.admin-form-grid {
  grid-template-columns: repeat(2, 1fr);
}
.admin-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--navy);
}
.admin-form .full { grid-column: 1 / -1; }
.admin-note { font-size: 14px; }
.admin-note a { color: var(--blue); font-weight: 900; }
.table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}
.admin-table th, .admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.admin-table a {
  color: var(--blue);
  font-weight: 900;
}
.inline-form { display: inline; }
.inline-form button {
  border: 0;
  background: transparent;
  color: #b91c1c;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  margin-left: 10px;
}
@media (max-width: 860px) {
  .admin-title-row, .admin-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-stat-grid, .admin-form-grid {
    grid-template-columns: 1fr;
  }
}


/* Enhancements: status, filters, policy */
.admin-filter-grid {
  grid-template-columns: 1.2fr repeat(4, 1fr) auto;
  align-items: end;
}
.admin-filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn--ghost-admin {
  background: #eef5fb;
  color: var(--navy);
  box-shadow: none;
}
.status-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.status-active { background: rgba(25,165,123,.12); color: #087653; }
.status-draft { background: rgba(100,116,139,.14); color: #475569; }
.status-revision { background: rgba(255,132,40,.14); color: #a64c0d; }
.status-expired { background: rgba(220,38,38,.10); color: #b91c1c; }
.status-cancelled { background: rgba(15,23,42,.10); color: #0f172a; }
.policy-content {
  max-width: 920px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 18px 52px rgba(8,34,63,.08);
}
.policy-content h2 {
  color: var(--navy);
  margin: 28px 0 10px;
}
.policy-content h2:first-child {
  margin-top: 0;
}
.policy-content p {
  color: var(--muted);
}
@media (max-width: 1100px) {
  .admin-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-filter-actions {
    grid-column: 1 / -1;
  }
}
@media (max-width: 700px) {
  .admin-filter-grid {
    grid-template-columns: 1fr;
  }
  .policy-content {
    padding: 26px;
  }
}



/* =========================================================
   PREMIUM VISUAL UPGRADE - PT. Megah Bersama Logistik
   ========================================================= */

:root {
  --navy: #071f3a;
  --navy-2: #0a345f;
  --blue: #1f669d;
  --blue-2: #2586c7;
  --orange: #ff8428;
  --orange-2: #ffb45f;
  --text: #132133;
  --muted: #66788e;
  --light: #f4f8fd;
  --white: #ffffff;
  --line: rgba(7, 31, 58, .12);
  --shadow: 0 28px 80px rgba(7, 31, 58, .16);
  --soft-shadow: 0 16px 44px rgba(7, 31, 58, .09);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255,132,40,.08), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(31,102,157,.08), transparent 26%),
    #ffffff;
}

.site-header {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(7,31,58,.06);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
}
.nav {
  min-height: 88px;
}
.brand img {
  height: 64px;
  filter: drop-shadow(0 8px 18px rgba(7,31,58,.08));
}
.nav-menu {
  gap: 24px;
}
.nav-menu a:not(.btn) {
  padding: 10px 0;
}
.nav-menu a.active {
  color: var(--blue);
}
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.38) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover::before {
  transform: translateX(120%);
}

.hero {
  min-height: 830px;
  isolation: isolate;
}
.hero__bg {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,132,40,.38), transparent 26%),
    radial-gradient(circle at 78% 12%, rgba(54,152,219,.32), transparent 27%),
    linear-gradient(135deg, #06162a 0%, #08223f 42%, #0d4f79 100%);
}
.hero__bg::before {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .9;
}
.hero__bg::after {
  width: 920px;
  height: 920px;
  right: -290px;
  bottom: -360px;
  background: linear-gradient(135deg, rgba(255,132,40,.16), rgba(255,255,255,.05));
}
.hero__inner {
  min-height: 830px;
  grid-template-columns: 1.05fr .95fr;
}
.hero .eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  color: var(--orange-2);
  backdrop-filter: blur(14px);
}
.hero h1 {
  max-width: 820px;
  text-wrap: balance;
  letter-spacing: -0.07em;
}
.lead {
  color: rgba(255,255,255,.80);
}
.hero__visual {
  padding: 10px;
}
.hero__visual::before {
  inset: 12% 8% 7% 12%;
  border-radius: 56px;
  background: linear-gradient(135deg, rgba(255,132,40,.28), rgba(37,134,199,.24));
  filter: blur(18px);
}
.hero__visual img {
  border-radius: 34px;
  transform: translateY(0);
  animation: premiumFloat 5.5s ease-in-out infinite;
}
.hero-floating-card {
  position: absolute;
  z-index: 3;
  min-width: 172px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.90);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 22px 52px rgba(7,31,58,.18);
  backdrop-filter: blur(18px);
}
.hero-floating-card strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}
.hero-floating-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 6px;
}
.hero-floating-card--one {
  left: -10px;
  bottom: 110px;
}
.hero-floating-card--two {
  right: 10px;
  top: 148px;
}
@keyframes premiumFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero__trust div {
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .25s ease, background .25s ease;
}
.hero__trust div:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.15);
}

.award-band {
  margin-top: -74px;
}
.award-band__inner {
  border: 1px solid rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 92% 10%, rgba(255,132,40,.12), transparent 26%),
    rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
}
.premium-strip {
  position: relative;
  z-index: 2;
  padding: 56px 0 0;
}
.premium-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.premium-strip__inner div {
  min-height: 112px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #f6faff);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
}
.premium-strip__inner div::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  right: -22px;
  top: -24px;
  background: rgba(255,132,40,.13);
}
.premium-strip__inner strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.18;
  position: relative;
}
.premium-strip__inner span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
  position: relative;
}

.section {
  position: relative;
}
.section-heading h2,
.split__content h2,
.map-content h2,
.contact-info h2,
.cta h2 {
  text-wrap: balance;
}
.section-heading p {
  font-size: 16px;
}

.service-grid {
  gap: 28px;
}
.service-card {
  border: 1px solid rgba(7,31,58,.09);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(255,132,40,.30);
}
.service-card__image {
  height: 220px;
  min-height: 220px;
}
.service-card__image::after {
  background:
    linear-gradient(to top, rgba(7,31,58,.16), transparent 62%),
    radial-gradient(circle at top right, rgba(255,255,255,.20), transparent 28%);
}
.service-card__body {
  padding: 28px;
}
.service-icon {
  width: 54px;
  height: 54px;
  margin-top: -58px;
  border-radius: 18px;
  padding: 10px;
}
.service-card h3 {
  font-size: 24px;
}
.service-card ul li {
  margin-bottom: 6px;
}

.section--light {
  background:
    radial-gradient(circle at 12% 18%, rgba(31,102,157,.07), transparent 28%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}
.profile-visual {
  border-radius: 40px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(235,246,255,.94));
}
.profile-visual img {
  border-radius: 30px;
}
.profile-panel,
.split__card,
.download-card {
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 88% 12%, rgba(255,132,40,.22), transparent 26%),
    linear-gradient(135deg, #071f3a, #0a345f 58%, #1f669d);
}

.value-card,
.management-card,
.process-card,
.news-card,
.download-form-panel,
.download-result-panel,
.admin-card {
  border-radius: 30px;
  border: 1px solid rgba(7,31,58,.09);
  box-shadow: var(--soft-shadow);
}
.value-card:hover,
.management-card:hover,
.process-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(255,132,40,.28);
}
.value-card,
.management-card,
.process-card,
.news-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.workflow-card {
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255,132,40,.11), transparent 26%),
    rgba(255,255,255,.94);
}
.workflow-content h3 {
  font-size: 25px;
}
.workflow-note {
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 90% 12%, rgba(255,132,40,.20), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.map-card {
  border-radius: 40px;
  padding: 14px;
  border: 1px solid rgba(7,31,58,.09);
}
.map-card iframe {
  border-radius: 30px;
}

.cta {
  background:
    radial-gradient(circle at 82% 16%, rgba(255,132,40,.28), transparent 26%),
    linear-gradient(135deg, #06162a, #0a345f 54%, #1f669d);
}
.footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,132,40,.16), transparent 24%),
    #06162a;
}
.footer__brand img {
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.page-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,132,40,.26), transparent 25%),
    radial-gradient(circle at 88% 10%, rgba(37,134,199,.32), transparent 25%),
    linear-gradient(135deg, #06162a, #08223f 54%, #0d4f79);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -260px;
  bottom: -360px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}

.download-layout {
  align-items: stretch;
}
.download-form-panel,
.download-result-panel {
  background:
    radial-gradient(circle at 92% 10%, rgba(255,132,40,.09), transparent 22%),
    #ffffff;
}

.admin-body {
  background:
    radial-gradient(circle at 15% 0%, rgba(255,132,40,.08), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(31,102,157,.08), transparent 28%),
    #f6f9fc;
}
.admin-header {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
}
.admin-stat-grid div {
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 85% 12%, rgba(255,132,40,.22), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

@media (max-width: 1100px) {
  .hero-floating-card {
    display: none;
  }
  .premium-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .brand img {
    height: 52px;
  }
  .nav-menu {
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
  }
  .premium-strip {
    padding-top: 36px;
  }
  .premium-strip__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero__inner {
    padding-top: 56px;
  }
  .service-card__image {
    height: 190px;
    min-height: 190px;
  }
}
