:root {
  --navy: #082b60;
  --blue: #0754a6;
  --bright: #0877d1;
  --steel: #687382;
  --soft: #eef3f7;
  --white: #ffffff;
  --text: #142033;
  --muted: #596579;
  --line: #dbe4ee;
  --shadow: 0 18px 42px rgba(8, 43, 96, 0.12);
  --radius: 8px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; letter-spacing: 0; color: var(--text); }
h1 { max-width: 850px; font-size: clamp(2.55rem, 5vw, 5.8rem); color: var(--white); }
h2 { font-size: clamp(2rem, 3.2vw, 3.65rem); }
h3 { font-size: 1.12rem; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(8, 119, 209, 0.45); outline-offset: 3px; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed; z-index: 999; top: 12px; left: 12px; padding: 0.75rem 1rem;
  background: var(--navy); color: var(--white); transform: translateY(-150%); border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; min-height: var(--header-height);
  background: rgba(255,255,255,0.94); border-bottom: 1px solid rgba(219,228,238,0.72);
  backdrop-filter: blur(16px); transition: box-shadow 180ms ease, min-height 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(8,43,96,0.1); min-height: 72px; }
.header-inner { min-height: inherit; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; width: clamp(230px, 20vw, 320px); min-height: 58px; flex: 0 0 auto; }
.brand img { width: 100%; height: 64px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 1.25rem; font-size: 0.94rem; font-weight: 650; color: var(--text); }
.primary-nav a { position: relative; padding: 0.7rem 0; }
.primary-nav a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.35rem; height: 2px;
  background: var(--bright); transform: scaleX(0); transform-origin: left; transition: transform 160ms ease;
}
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0.85rem 1.25rem; border: 1px solid var(--bright); border-radius: var(--radius);
  background: var(--bright); color: var(--white); font-weight: 750; line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(8,119,209,0.22); background: #056fbd; }
.button-small { min-height: 42px; padding: 0.65rem 0.95rem !important; color: var(--white); }
.button-ghost { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.72); }
.button-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--navy); transition: transform 180ms ease, opacity 180ms ease; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; padding: calc(var(--header-height) + 6rem) 0 6.5rem; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-video, .hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 700ms ease; }
.hero-video.is-active, .hero-fallback.is-active { opacity: 1; }
.hero-overlay { background: linear-gradient(90deg, rgba(8,43,96,0.94), rgba(8,43,96,0.68) 52%, rgba(8,43,96,0.32)); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-copy { max-width: 900px; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28); }
.hero-copy h2 { color: var(--white); font-size: clamp(2.45rem, 4.6vw, 5rem); }
.hero-copy p { max-width: 720px; color: rgba(255,255,255,0.86); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.eyebrow, .section-kicker {
  margin-bottom: 0.9rem; color: var(--bright); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero .eyebrow { color: #a8ddff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.65rem; }
.hero-controls {
  position: absolute; z-index: 3; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.65rem; padding: 0.45rem; border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px; background: rgba(8,43,96,0.35); backdrop-filter: blur(12px);
}
.icon-button {
  width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32); background: rgba(255,255,255,0.12); color: var(--white);
}
.icon-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.pause-button .play-icon { display: none; fill: currentColor; stroke: none; }
.pause-button.is-paused .pause-icon { display: none; }
.pause-button.is-paused .play-icon { display: block; }
.hero-dots { display: flex; gap: 0.42rem; }
.hero-dots button { width: 34px; height: 4px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,0.35); }
.hero-dots button.is-active { background: var(--white); }

.capability-strip { position: relative; z-index: 4; background: var(--white); border-bottom: 1px solid var(--line); }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.capability-grid article { padding: 1.8rem 1.5rem; border-left: 1px solid var(--line); }
.capability-grid article:last-child { border-right: 1px solid var(--line); }
.capability-grid h2 { font-size: 1rem; margin-bottom: 0.45rem; }
.capability-grid p { font-size: 0.94rem; margin: 0; }
.line-icon { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 0.9rem; border: 1px solid var(--line); border-radius: var(--radius); color: var(--blue); background: #f8fbff; }
.line-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.section { padding: 6.5rem 0; }
.section-soft { background: var(--soft); }
.section-white { background: var(--white); }
.two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.two-column > div > p { font-size: 1.05rem; }
.media-frame { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: auto; object-fit: contain; background: var(--white); }
.check-list, .attribute-list { display: grid; gap: 0.75rem; padding: 0; margin: 1.4rem 0 0; list-style: none; }
.check-list li, .attribute-list span {
  position: relative; padding: 0.8rem 0.85rem 0.8rem 2.45rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--white); color: var(--text); font-weight: 650;
}
.check-list li::before, .attribute-list span::before {
  content: ""; position: absolute; left: 0.9rem; top: 1.15rem; width: 9px; height: 9px; border-radius: 50%; background: var(--bright);
}
.tag-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.tag-grid span {
  padding: 0.72rem 0.85rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--text); font-weight: 700; font-size: 0.94rem;
}
.section-heading { max-width: 860px; margin-bottom: 2.2rem; }
.section-heading p:last-child { font-size: 1.06rem; }
.mission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.feature-card, .product-card, .process-grid article, .advantage-grid article {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 1.35rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.feature-card:hover, .product-card:hover, .advantage-grid article:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #bfd3e7; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process-grid article span { display: inline-block; margin-bottom: 1.1rem; color: var(--bright); font-weight: 850; }
.product-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 1.4rem; align-items: start; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.product-card a { display: inline-flex; margin-top: 0.4rem; color: var(--blue); font-weight: 800; }
.logistics-grid { grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr); }
.advantage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.cta-section { padding: 5rem 0; background: linear-gradient(135deg, var(--navy), #0c427f); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-inner h2, .cta-inner p { color: var(--white); }
.cta-inner p { max-width: 690px; opacity: 0.86; }

.contact-layout { display: grid; grid-template-columns: 0.72fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; gap: 0.4rem; }
.form-row.full { grid-column: 1 / -1; }
label { color: var(--text); font-weight: 750; }
input, select, textarea {
  width: 100%; min-height: 46px; border: 1px solid #cbd7e5; border-radius: var(--radius);
  padding: 0.75rem 0.85rem; background: var(--white); color: var(--text);
}
textarea { resize: vertical; min-height: 150px; }
.field-error { min-height: 1.1rem; margin: 0; color: #9b1c1c; font-size: 0.88rem; }
.form-status { margin: 0.5rem 0 0; color: var(--muted); font-weight: 650; }
.consent-row { grid-template-columns: 18px 1fr; column-gap: 0.75rem; align-items: start; }
.consent-row input { width: 18px; min-height: 18px; margin-top: 0.25rem; }
.consent-row .field-error { grid-column: 1 / -1; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-details { display: grid; gap: 0.6rem; margin-top: 1.2rem; }
.contact-details a, .contact-details span { color: var(--text); font-weight: 700; }

.egwa-widget,
.egwa-widget * {
  box-sizing: border-box;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.egwa-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999999;
}
.egwa-chat-window {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: 365px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.egwa-widget.egwa-open .egwa-chat-window {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.egwa-header {
  background: var(--blue);
  color: var(--white);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.egwa-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background: var(--white);
}
.egwa-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: left center;
  border: 3px solid rgba(255,255,255,.75);
}
.egwa-status-dot {
  position: absolute;
  right: 1px;
  bottom: 4px;
  width: 13px;
  height: 13px;
  background: #22c55e;
  border: 2px solid var(--blue);
  border-radius: 50%;
}
.egwa-agent-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
.egwa-agent-name {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.egwa-agent-status {
  margin: 6px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  line-height: 1.2;
}
.egwa-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.86);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.egwa-body {
  min-height: 220px;
  padding: 28px 18px 20px;
  background: #f3efe9;
  background-image: radial-gradient(circle at 10px 10px, rgba(0,0,0,.04) 2px, transparent 2.2px);
  background-size: 40px 40px;
}
.egwa-time {
  text-align: center;
  color: #7b8492;
  font-size: 12px;
  margin-bottom: 24px;
}
.egwa-message {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  white-space: pre-line;
}
.egwa-input-area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 18px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.05);
}
.egwa-input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  color: var(--text);
  min-width: 0;
  background: transparent;
}
.egwa-send,
.egwa-floating-btn {
  border: 0;
  background: #25d366;
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.egwa-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 40px;
}
.egwa-footer {
  padding: 10px 12px;
  background: #fafafa;
  text-align: center;
  color: #757f8d;
  font-size: 12px;
  border-top: 1px solid rgba(0,0,0,.04);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.egwa-floating-btn {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37,211,102,.35);
  margin-left: auto;
}
.egwa-notification {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 13px;
  height: 13px;
  background: #ff3131;
  border-radius: 50%;
  border: 2px solid #25d366;
}
.egwa-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.egwa-close .egwa-icon,
.egwa-send .egwa-icon {
  width: 22px;
  height: 22px;
}
.egwa-footer .egwa-icon {
  width: 14px;
  height: 14px;
}
.egwa-floating-btn .egwa-icon {
  width: 42px;
  height: 42px;
}

.site-footer { background: #071f45; color: rgba(255,255,255,0.86); padding: 4rem 0 1.2rem; }
.site-footer p, .site-footer a { color: rgba(255,255,255,0.78); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 0.9fr; gap: 2rem; }
.footer-grid h2 { color: var(--white); font-size: 1rem; }
.footer-grid a { display: block; margin-bottom: 0.55rem; }
.footer-logo { width: min(320px, 100%); height: auto; max-height: 96px; object-fit: contain; object-position: left center; margin-bottom: 1rem; background: var(--white); border-radius: var(--radius); padding: 0.5rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.16); font-size: 0.92rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .primary-nav { gap: 0.75rem; font-size: 0.88rem; }
  .capability-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout, .contact-layout { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-height: 72px; }
  .container { width: min(100% - 28px, 1180px); }
  .brand { width: min(250px, calc(100vw - 96px)); }
  .brand img { height: 58px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed; top: var(--header-height); left: 0; right: 0; display: grid; align-content: start;
    gap: 0; padding: 0.75rem 1rem 1.2rem; background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform 220ms ease;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a { padding: 0.92rem 0.3rem; }
  .primary-nav .button { margin-top: 0.4rem; width: 100%; }
  .hero { min-height: 92svh; padding: calc(var(--header-height) + 4rem) 0 6.25rem; }
  .hero-overlay { background: linear-gradient(180deg, rgba(8,43,96,0.7), rgba(8,43,96,0.86)); }
  .hero-controls { width: calc(100% - 28px); justify-content: center; }
  .two-column, .logistics-grid { grid-template-columns: 1fr; }
  .reverse-mobile figure { order: 2; }
  .mission-grid, .product-grid, .advantage-grid, .contact-form { grid-template-columns: 1fr; }
  .section { padding: 4.4rem 0; }
  .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2rem; }
  .capability-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .capability-grid article { border-right: 1px solid var(--line); }
  .hero-actions .button { width: 100%; }
  .icon-button { width: 42px; height: 42px; }
  .hero-dots button { width: 24px; }
  .egwa-widget { right: 14px; bottom: 14px; }
  .egwa-chat-window { width: calc(100vw - 28px); bottom: 82px; }
  .egwa-floating-btn { width: 64px; height: 64px; }
  .egwa-floating-btn .egwa-icon { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
