/* ============================================================
   Nayaship — Marketing website
   Plain CSS · responsive · navy-blue professional theme
   Standalone — shares nothing with the ERP application.
   ============================================================ */

:root {
  --navy:       #0e4f8f;
  --navy-600:   #0b4179;
  --navy-700:   #0a3a6b;
  --navy-800:   #0a2f54;
  --navy-900:   #0b2440;
  --navy-50:    #eef4fb;
  --navy-100:   #dce8f6;
  --navy-200:   #b9d0ea;
  --teal:       #11a597;
  --teal-50:    #e2f5f3;

  --ink:        #102036;
  --text:       #44505f;
  --muted:      #66717f;
  --faint:      #98a3b2;

  --white:      #ffffff;
  --soft:       #f4f7fb;
  --mute:       #eaeff5;
  --border:     #e4e9f1;
  --border-2:   #d3dce7;

  --green:      #1c9a6b;
  --gold:       #e0992f;

  --shadow-sm:  0 1px 2px rgba(13,38,72,.06);
  --shadow:     0 4px 14px rgba(13,38,72,.08), 0 1px 3px rgba(13,38,72,.06);
  --shadow-lg:  0 22px 54px rgba(13,38,72,.16);

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 26px;

  --wrap: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; line-height: 1.18; letter-spacing: -.022em; }
::selection { background: var(--navy-100); color: var(--navy-900); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(13,38,72,.07);
}
.nav {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__menu { display: contents; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -.025em;
  flex-shrink: 0;
}
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--navy), var(--navy-700));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 5px 13px rgba(14,79,143,.34);
}
.brand__mark svg { width: 22px; height: 22px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
}
.nav__link {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--ink); background: var(--soft); }
.nav__link.is-active { color: var(--navy); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: var(--navy);
}
.nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__signin {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  padding: 9px 12px;
}
.nav__signin:hover { color: var(--navy); }
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--border-2);
  border-radius: 11px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__toggle span {
  width: 19px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Language switcher ---- */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--soft);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 3px;
  margin-right: 4px;
}
.nav__lang-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--muted);
  padding: 5px 10px;
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav__lang-link:hover { color: var(--navy); }
.nav__lang-link.is-active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 11px;
  border: 1.5px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: background .16s, border-color .16s, color .16s, transform .07s, box-shadow .16s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14,79,143,.30);
}
.btn--primary:hover { background: var(--navy-700); box-shadow: 0 10px 26px rgba(14,79,143,.38); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }
.btn--outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--border-2);
}
.btn--outline:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-50); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--navy-50); transform: translateY(-1px); }
.btn--ghost-light {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.30);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.18); }
.btn--lg { padding: 15px 30px; font-size: 16px; border-radius: 13px; }
.btn--block { width: 100%; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 96px 0; }
.section--soft { background: var(--soft); }
.section--tight { padding: 66px 0; }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head--left { margin-left: 0; margin-right: auto; text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; }
.section-title { font-size: clamp(27px, 3.3vw, 41px); color: var(--ink); }
.section-lead { margin-top: 15px; font-size: 18px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   HERO + AURORA
   ============================================================ */
.hero {
  position: relative;
  padding: 158px 0 92px;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f7fc 0%, #ffffff 78%);
  isolation: isolate;
}
.aurora {
  position: absolute; inset: -10%;
  width: 120%; height: 120%;
  z-index: -1;
  filter: blur(46px) saturate(126%);
  opacity: .9;
  pointer-events: none;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 50% at 30% 36%, rgba(255,255,255,.7), rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 54px;
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.8);
  color: var(--navy-700);
  border: 1px solid var(--navy-100);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .01em;
  padding: 6px 13px 6px 9px;
  border-radius: 30px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero__pill .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal-50);
  display: grid; place-items: center;
}
.hero__pill .dot::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(17,165,151,.5);
  animation: livePing 2.4s ease-out infinite;
}
@keyframes livePing {
  0% { box-shadow: 0 0 0 0 rgba(17,165,151,.5); }
  70%,100% { box-shadow: 0 0 0 7px rgba(17,165,151,0); }
}
.hero h1 {
  font-size: clamp(34px, 4.7vw, 57px);
  line-height: 1.06;
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  color: var(--navy);
  background-image: linear-gradient(to top, var(--navy-100) 0, var(--navy-100) 26%, transparent 26%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero__lead { margin-top: 22px; font-size: 18.5px; color: var(--muted); max-width: 520px; }
.hero__cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__proof { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -9px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__avatars span:nth-child(1) { background: var(--navy); }
.hero__avatars span:nth-child(2) { background: var(--teal); }
.hero__avatars span:nth-child(3) { background: var(--navy-700); }
.hero__avatars span:nth-child(4) { background: #2c6aa6; }
.hero__proof-text { font-size: 13.5px; color: var(--muted); }
.hero__proof-text b { color: var(--ink); font-weight: 700; }
.hero__proof-stars { color: var(--gold); letter-spacing: 1px; }

/* ---------- Hero visual : live shipment card ---------- */
.hero__media { position: relative; min-width: 0; }
.ship-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ship-card__bar { display: flex; align-items: center; gap: 7px; padding: 12px 15px; background: var(--navy-900); }
.ship-card__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); }
.ship-card__bar i:nth-child(1) { background: #f0685b; }
.ship-card__bar i:nth-child(2) { background: #f2bd3e; }
.ship-card__bar i:nth-child(3) { background: #61c466; }
.ship-card__bar span { margin-left: 6px; font-size: 11.5px; color: rgba(255,255,255,.6); font-weight: 600; }
.ship-card__bar .live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .06em;
  color: #6fe0c8; text-transform: uppercase;
}
.ship-card__bar .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #43d8b6; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .25; } }
.ship-card__scene { background: linear-gradient(180deg, #eef4fb, #f7fafd); padding: 4px; }
.ship-card__scene svg { width: 100%; height: auto; display: block; }
.ship-card__foot { padding: 15px 17px 17px; }
.ship-card__route { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.ship-card__route svg { width: 15px; height: 15px; color: var(--navy); }
.ship-card__route .arr { color: var(--faint); }
.ship-card__route .eta { margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--teal); }
.ship-card__bars { margin-top: 12px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.ship-card__bars i { height: 6px; border-radius: 3px; background: var(--mute); }
.ship-card__bars i.on { background: var(--navy); }
.ship-card__bars i.cur { background: var(--teal); }
.ship-card__stages { margin-top: 7px; display: grid; grid-template-columns: repeat(5, 1fr); font-size: 9.5px; font-weight: 700; letter-spacing: .01em; color: var(--faint); text-transform: uppercase; }
.ship-card__stages span:nth-child(3) { color: var(--teal); }

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 11px 13px;
  display: flex; align-items: center; gap: 10px;
}
.float-card .fc-icon { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.float-card .fc-icon svg { width: 18px; height: 18px; }
.float-card b { font-size: 12.5px; color: var(--ink); display: block; line-height: 1.3; }
.float-card span { font-size: 11px; color: var(--faint); }
.float-card--tl { top: 30px; left: -38px; animation: floatY 5s ease-in-out infinite; }
.float-card--br { bottom: 84px; right: -34px; animation: floatY 5.6s ease-in-out infinite reverse; }
@keyframes floatY { 50% { transform: translateY(-11px); } }

/* ============================================================
   LOGO / TRUST BAR
   ============================================================ */
.trust { padding: 30px 0 6px; }
.trust__label { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; color: var(--faint); text-transform: uppercase; margin-bottom: 22px; }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 38px; }
.trust__logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 16.5px; color: #9aa6b4; letter-spacing: -.02em; transition: color .15s; }
.trust__logo:hover { color: var(--navy); }
.trust__logo svg { width: 21px; height: 21px; }

/* ============================================================
   MODULE / FEATURE CARDS
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.module-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  overflow: hidden;
}
.module-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--navy-100); }
.module-card:hover::before { transform: scaleX(1); }
.module-card__icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(150deg, var(--navy-50), #fff); border: 1px solid var(--navy-100); color: var(--navy); display: grid; place-items: center; margin-bottom: 18px; }
.module-card__icon svg { width: 26px; height: 26px; }
.module-card h3 { font-size: 19px; }
.module-card p { margin-top: 9px; font-size: 14.5px; color: var(--muted); }
.module-card__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--navy); }
.module-card__link svg { width: 15px; height: 15px; transition: transform .15s; }
.module-card:hover .module-card__link svg { transform: translateX(4px); }
.module-card__tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.module-card__tags span { font-size: 11.5px; font-weight: 700; color: var(--navy-700); background: var(--navy-50); border: 1px solid var(--navy-100); padding: 3px 9px; border-radius: 20px; }

.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 22px; transition: transform .16s, box-shadow .16s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; margin-bottom: 14px; }
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 16.5px; }
.feature-card p { margin-top: 7px; font-size: 14px; color: var(--muted); }

/* ============================================================
   FEATURE ROWS
   ============================================================ */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-row + .feature-row { margin-top: 96px; }
.feature-row--reverse .feature-row__media { order: -1; }
.feature-row__num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 16px; }
.feature-row h2 { font-size: clamp(23px, 2.7vw, 32px); }
.feature-row__text > p { margin-top: 13px; font-size: 16.5px; color: var(--muted); }
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; gap: 11px; font-size: 15px; color: var(--text); }
.check-list li svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--green); margin-top: 1px; }
.check-list li b { color: var(--ink); font-weight: 700; }

.media-panel { background: linear-gradient(158deg, var(--navy-50), #fff); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow); }
.media-panel--plain { background: #fff; }

.uic { background: #fff; border: 1px solid var(--border); border-radius: var(--r); }
.uic + .uic { margin-top: 12px; }
.uic__head { display: flex; align-items: center; gap: 9px; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.uic__head .ico { width: 28px; height: 28px; border-radius: 8px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; }
.uic__head .ico svg { width: 15px; height: 15px; }
.uic__head b { font-size: 13.5px; color: var(--ink); }
.uic__head .pill { margin-left: auto; font-size: 10.5px; font-weight: 800; padding: 3px 9px; border-radius: 20px; background: #e1f3e9; color: #1c7a4f; }
.uic__body { padding: 14px; }
.uic-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; }
.uic-row + .uic-row { border-top: 1px dashed var(--border); }
.uic-row .k { font-size: 12px; color: var(--faint); font-weight: 700; width: 92px; flex-shrink: 0; }
.uic-row .v { font-size: 12.5px; color: var(--ink); font-weight: 600; }
.uic-row .v.r { margin-left: auto; }

.step-track { display: flex; align-items: center; gap: 0; }
.step-track .node { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; border: 2px solid var(--border-2); background: #fff; color: var(--faint); }
.step-track .node svg { width: 13px; height: 13px; }
.step-track .node.done { background: var(--navy); border-color: var(--navy); color: #fff; }
.step-track .node.now { border-color: var(--navy); color: var(--navy); box-shadow: 0 0 0 4px var(--navy-50); }
.step-track .line { flex: 1; height: 2px; background: var(--border-2); }
.step-track .line.done { background: var(--navy); }

/* ============================================================
   PROJECT FLOW (animated SVG)
   ============================================================ */
.flow-row { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.flow-svg-wrap { background: linear-gradient(160deg, var(--navy-50), #fff); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 18px; box-shadow: var(--shadow); }
.flow-svg { width: 100%; height: auto; display: block; }
.flow-legend { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.flow-legend li { display: flex; gap: 11px; font-size: 14.5px; color: var(--text); }
.flow-legend li svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.flow-legend li b { color: var(--ink); }

.fl-track { stroke: var(--navy-100); }
.fl-dash { stroke: var(--navy); stroke-dasharray: 5 9; animation: flMarch 1.1s linear infinite; }
@keyframes flMarch { to { stroke-dashoffset: -28; } }
.fl-pulse { fill: var(--teal); animation: flPulse 7s ease-in-out infinite; }
@keyframes flPulse {
  0%   { transform: translateY(0);    opacity: 0; }
  6%   { opacity: 1; }
  62%  { opacity: 1; }
  72%  { transform: translateY(512px); opacity: 0; }
  100% { transform: translateY(512px); opacity: 0; }
}
.fl-glow { fill: var(--navy); transform-box: fill-box; transform-origin: center; animation: flGlow 7s ease-in-out infinite; }
@keyframes flGlow {
  0%, 40%, 100% { transform: scale(.5); opacity: 0; }
  8%  { transform: scale(.5); opacity: .5; }
  20% { transform: scale(2.1); opacity: 0; }
}
.fl-node-2 .fl-glow { animation-delay: 1.15s; }
.fl-node-3 .fl-glow { animation-delay: 2.30s; }
.fl-node-4 .fl-glow { animation-delay: 3.45s; }
.fl-node-5 .fl-glow { animation-delay: 4.60s; }

.route-track { stroke: var(--navy-100); }
.route-flow { stroke: var(--navy); stroke-dasharray: 4 9; animation: flMarch 1s linear infinite; }
.sh-ring { fill: none; stroke: var(--teal); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: shRing 2.8s ease-out infinite; }
.sh-ring.d2 { animation-delay: 1.4s; }
@keyframes shRing { 0% { transform: scale(.35); opacity: .65; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============================================================
   STEPS / BENEFITS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 22px; }
.step__n { width: 40px; height: 40px; border-radius: 11px; background: var(--navy-900); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 16px; margin-bottom: 16px; }
.step h3 { font-size: 17px; }
.step p { margin-top: 8px; font-size: 14px; color: var(--muted); }

.benefit { display: flex; gap: 14px; }
.benefit__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; }
.benefit__icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 17px; }
.benefit p { margin-top: 6px; font-size: 14.5px; color: var(--muted); }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--navy-100); }
.case-card__top { display: flex; align-items: center; gap: 11px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.case-card__logo { width: 42px; height: 42px; border-radius: 11px; background: var(--navy-900); color: #fff; display: grid; place-items: center; }
.case-card__logo svg { width: 21px; height: 21px; }
.case-card__co b { display: block; font-size: 15px; color: var(--ink); font-weight: 800; }
.case-card__co span { font-size: 12.5px; color: var(--muted); }
.case-card__metrics { display: flex; gap: 12px; padding: 20px 0; }
.case-metric { flex: 1; }
.case-metric__num { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.case-metric__label { font-size: 11.5px; font-weight: 600; color: var(--muted); margin-top: 5px; }
.case-card__text { font-size: 14.5px; color: var(--muted); }
.case-card__quote { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; gap: 11px; align-items: center; }
.case-card__av { width: 38px; height: 38px; border-radius: 50%; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.case-card__quote p { font-size: 12.5px; color: var(--ink); font-weight: 600; }
.case-card__quote span { font-size: 11.5px; color: var(--faint); font-weight: 500; }

/* ============================================================
   STATS / TESTIMONIAL / CTA
   ============================================================ */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-item__num { font-size: clamp(32px, 4vw, 46px); font-weight: 800; color: #fff; letter-spacing: -.03em; }
.stat-item__num em { font-style: normal; color: #6fb0e6; }
.stat-item__label { margin-top: 4px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.64); }

.quote { max-width: 840px; margin: 0 auto; text-align: center; }
.quote__mark { font-size: 58px; line-height: 1; font-weight: 800; color: var(--navy-200); }
.quote__text { font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; color: var(--ink); line-height: 1.45; letter-spacing: -.02em; margin-top: 2px; }
.quote__who { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 13px; }
.quote__av { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 16px; }
.quote__who b { display: block; color: var(--ink); font-size: 15px; }
.quote__who span { font-size: 13.5px; color: var(--muted); }

.cta-band { background: linear-gradient(150deg, var(--navy-800), var(--navy-900)); border-radius: var(--r-xl); padding: 62px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.cta-band::before { width: 360px; height: 360px; background: radial-gradient(circle, rgba(111,176,230,.26), transparent 70%); top: -150px; left: -90px; }
.cta-band::after { width: 320px; height: 320px; background: radial-gradient(circle, rgba(67,216,182,.16), transparent 70%); bottom: -160px; right: -70px; }
.cta-band__inner { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.2vw, 39px); }
.cta-band p { margin: 14px auto 0; color: rgba(255,255,255,.76); font-size: 17px; max-width: 540px; }
.cta-band__btns { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band__note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ============================================================
   PAGE HERO / PRICING / FAQ / ABOUT / CONTACT
   ============================================================ */
.page-hero { position: relative; padding: 150px 0 70px; background: linear-gradient(180deg, var(--navy-50), #fff); border-bottom: 1px solid var(--border); text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(14,79,143,.09), transparent 68%); top: -240px; right: -120px; pointer-events: none; }
.page-hero__inner { position: relative; }
.page-hero h1 { font-size: clamp(33px, 4.3vw, 52px); max-width: 800px; margin: 14px auto 0; letter-spacing: -.03em; }
.page-hero p { margin: 16px auto 0; font-size: 18.5px; color: var(--muted); max-width: 620px; }
.page-hero__btns { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.billing-toggle { display: inline-flex; align-items: center; gap: 4px; background: var(--mute); border-radius: 30px; padding: 4px; }
.billing-toggle button { border: none; background: transparent; font-size: 14px; font-weight: 700; color: var(--muted); padding: 9px 20px; border-radius: 30px; transition: background .15s, color .15s; }
.billing-toggle button.is-active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.billing-save { font-size: 13px; font-weight: 700; color: var(--green); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; position: relative; }
.price-card--featured { border: 2px solid var(--navy); box-shadow: var(--shadow-lg); }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.price-card__name { font-size: 19px; }
.price-card__desc { margin-top: 5px; font-size: 13.5px; color: var(--muted); min-height: 40px; }
.price-card__price { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.price-card__amount { font-size: 42px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.price-card__per { font-size: 14px; color: var(--muted); font-weight: 600; }
.price-card__sub { font-size: 12.5px; color: var(--faint); min-height: 18px; }
.price-card .btn { margin-top: 20px; }
.price-card__list { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 11px; }
.price-card__list li { display: flex; gap: 10px; font-size: 14px; color: var(--text); }
.price-card__list li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.price-card__list li.muted { color: var(--faint); }
.price-card__list li.muted svg { color: var(--faint); }

.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare th, .compare td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--border); }
.compare thead th { font-size: 15px; color: var(--ink); font-weight: 800; }
.compare thead th span { display: block; font-size: 12px; font-weight: 600; color: var(--muted); }
.compare th:first-child, .compare td:first-child { text-align: left; font-size: 14px; font-weight: 600; color: var(--text); }
.compare tbody tr:hover { background: var(--soft); }
.compare .grp td { background: var(--soft); font-weight: 800; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); text-align: left; }
.compare .yes svg { width: 19px; height: 19px; color: var(--green); display: inline-block; }
.compare .no { color: var(--faint); font-size: 16px; }
.compare td.val { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.compare__featured { background: rgba(14,79,143,.04); }

.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--r); background: #fff; margin-bottom: 12px; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.faq__item.is-open { border-color: var(--navy-100); box-shadow: var(--shadow); }
.faq__q { width: 100%; display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: none; border: none; text-align: left; font-size: 16px; font-weight: 700; color: var(--ink); }
.faq__q .icon { margin-left: auto; flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; transition: transform .2s, background .2s, color .2s; }
.faq__q .icon svg { width: 15px; height: 15px; }
.faq__item.is-open .faq__q .icon { transform: rotate(45deg); background: var(--navy); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .26s ease; }
.faq__a p { padding: 0 20px 20px; font-size: 15px; color: var(--muted); }

.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; transition: transform .16s, box-shadow .16s; }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; margin-bottom: 16px; }
.value-card__icon svg { width: 23px; height: 23px; }
.value-card h3 { font-size: 17px; }
.value-card p { margin-top: 8px; font-size: 14px; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; text-align: center; }
.team-card__av { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; font-size: 25px; font-weight: 800; color: #fff; background: var(--navy); }
.team-card__av.v2 { background: var(--navy-700); }
.team-card__av.v3 { background: #2c6aa6; }
.team-card__av.v4 { background: var(--navy-900); }
.team-card h3 { font-size: 16.5px; }
.team-card__role { font-size: 13px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.team-card p { margin-top: 9px; font-size: 13px; color: var(--muted); }

.timeline { max-width: 720px; margin: 0 auto; position: relative; padding-left: 38px; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: var(--border-2); }
.timeline__item { position: relative; padding-bottom: 30px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -38px; top: 1px; width: 24px; height: 24px; border-radius: 50%; background: var(--navy); border: 4px solid var(--navy-50); }
.timeline__year { font-size: 13px; font-weight: 800; color: var(--navy); }
.timeline__item h3 { font-size: 17px; margin-top: 2px; }
.timeline__item p { margin-top: 5px; font-size: 14.5px; color: var(--muted); }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 32px; }
.form-card h2 { font-size: 23px; }
.form-card > p { margin-top: 6px; font-size: 14.5px; color: var(--muted); }
.form-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field label .req { color: #c2410c; }
.field input, .field select, .field textarea { font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; border: 1.5px solid var(--border-2); border-radius: 10px; padding: 11px 13px; outline: none; transition: border-color .15s, box-shadow .15s; }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2366717f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m4 6 4 4 4-4'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-50); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c2410c; }
.field__err { font-size: 12px; color: #c2410c; font-weight: 600; display: none; }
.field.has-error .field__err { display: block; }
.form-card__submit { margin-top: 22px; }
.form-consent { margin-top: 12px; font-size: 12.5px; color: var(--faint); }
.form-success { display: none; text-align: center; padding: 38px 20px; }
.form-success.is-on { display: block; }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: #e1f3e9; color: var(--green); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success__icon svg { width: 32px; height: 32px; }
.form-success h2 { font-size: 22px; }
.form-success p { margin-top: 8px; font-size: 15px; color: var(--muted); }

.contact-aside { display: flex; flex-direction: column; gap: 14px; }
.contact-info { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 20px; display: flex; gap: 14px; }
.contact-info__icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; }
.contact-info__icon svg { width: 21px; height: 21px; }
.contact-info b { font-size: 14.5px; color: var(--ink); }
.contact-info p { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.contact-info a { color: var(--navy); font-weight: 600; }
.contact-card-dark { background: linear-gradient(150deg, var(--navy-800), var(--navy-900)); border-radius: var(--r); padding: 22px; color: rgba(255,255,255,.8); }
.contact-card-dark h3 { color: #fff; font-size: 16px; }
.contact-card-dark p { font-size: 13.5px; margin-top: 6px; }
.contact-card-dark ul { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.contact-card-dark li { display: flex; gap: 9px; font-size: 13.5px; }
.contact-card-dark li svg { width: 17px; height: 17px; color: #6fe0c8; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 290px; }
.footer-social { margin-top: 18px; display: flex; gap: 9px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: background .15s, color .15s; }
.footer-social a:hover { background: var(--navy); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .fl-dash, .fl-pulse, .fl-glow, .float-card, .route-flow, .sh-ring,
  .hero__pill .dot::before, .ship-card__bar .live::before { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .flow-row { grid-template-columns: 1fr; gap: 36px; }
  .flow-svg-wrap { max-width: 460px; margin: 0 auto; width: 100%; }
}

@media (max-width: 1000px) {
  .hero { padding-top: 132px; }
  .hero__grid { grid-template-columns: 1fr; gap: 52px; }
  .hero__lead { max-width: none; }
  .hero__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row + .feature-row { margin-top: 64px; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .about-split { grid-template-columns: 1fr; gap: 38px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card--featured { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .float-card--tl { left: 6px; }
  .float-card--br { right: 6px; }
}

@media (max-width: 760px) {
  .nav { height: 66px; }
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 14px;
  }
  .nav.is-open .nav__menu { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; margin-left: 0; }
  .nav__link { padding: 12px 14px; font-size: 16px; }
  .nav__link.is-active::after { display: none; }
  .nav__actions { margin-left: 0; flex-direction: column; align-items: stretch; gap: 8px; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
  .nav__signin { padding: 12px 14px; text-align: center; }
  .nav__actions .btn { width: 100%; }
  .nav__lang { justify-content: center; }

  .section { padding: 66px 0; }
  .section-head { margin-bottom: 40px; }
  .cards-grid, .cards-grid--3, .cards-grid--4 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .hero__media { max-width: 420px; }
  .flow-svg-wrap { max-width: 380px; }
  .page-hero { padding-top: 116px; }
  .feature-row + .feature-row { margin-top: 52px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .nav { padding: 0 18px; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: 33px; }
  .team-grid { grid-template-columns: 1fr; }
  .media-panel { padding: 18px; }
  .form-card { padding: 22px; }
  .hero__cta .btn, .page-hero__btns .btn, .cta-band__btns .btn { width: 100%; }
  .hero__proof { gap: 12px; }
}
