*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #fff;
  --bg2: #f3f6fd;
  --bg3: #e8edf8;
  --border: rgba(10, 25, 80, 0.1);
  --border2: rgba(10, 25, 80, 0.18);
  --text: #0a1950;
  --text2: #3a4f7a;
  --text3: #7e92b8;
  --navy: #0a1950;
  --nm: #1a3a9e;
  --nl: #2d55c8;
  --green: #16a34a;
  --gdim: rgba(22, 163, 74, 0.1);
  --orange: #d97706;
  --sky: #dce8ff;
  --glow: rgba(26, 58, 158, 0.15);
  --f: Verdana, "Geneva", Arial, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --nh: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f);
  background: #fff;
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--nm);
  border-radius: 2px;
}
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nm);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: multiply;
}
#cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 58, 158, 0.3);
  pointer-events: none;
  z-index: 9998;
}
body.hov #cur {
  transform: scale(2.5);
}
body.hov #cur-ring {
  transform: scale(0.6);
  opacity: 0.4;
}
.page {
  display: none;
  min-height: 100vh;
  padding-top: var(--nh);
}
.page.active {
  display: block;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nh);
  display: flex;
  align-items: center;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(10, 25, 80, 0.08);
}
.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--text2);
  letter-spacing: 0.02em;
}
.lm {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--nm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 14px var(--glow);
}
.lt {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nl {
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--f);
  transition:
    color 0.2s,
    background 0.2s;
}
.nl:hover {
  color: var(--navy);
  background: var(--bg2);
}
.nl.active {
  color: var(--nm);
  background: rgba(26, 58, 158, 0.08);
}
.ncta {
  padding: 9px 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--f);
  box-shadow: 0 4px 16px var(--glow);
  transition:
    transform 0.2s var(--spring),
    background 0.2s;
}
.ncta:hover {
  transform: translateY(-1px);
  background: var(--nm);
}
.ham-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border2);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.ham-btn:hover {
  background: var(--bg2);
  border-color: var(--nm);
}
.ham-line {
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.ham-btn.open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham-btn.open .ham-line:nth-child(2) {
  opacity: 0;
}
.ham-btn.open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mob-nav {
  display: none;
  position: fixed;
  top: var(--nh);
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  box-shadow: 0 12px 40px rgba(10, 25, 80, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s;
}
.mob-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mob-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.mob-nl {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--f);
  text-align: left;
  transition:
    color 0.2s,
    background 0.2s;
}
.mob-nl:hover,
.mob-nl.active {
  color: var(--nm);
  background: rgba(26, 58, 158, 0.07);
}
.mob-nl.active {
  font-weight: 700;
}
.mob-cta {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--f);
}
.c {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
[data-r] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-r].on {
  opacity: 1;
  transform: none;
}
[data-r][data-d="1"] {
  transition-delay: 0.08s;
}
[data-r][data-d="2"] {
  transition-delay: 0.16s;
}
[data-r][data-d="3"] {
  transition-delay: 0.24s;
}
[data-r][data-d="4"] {
  transition-delay: 0.32s;
}
[data-r][data-d="5"] {
  transition-delay: 0.4s;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(26, 58, 158, 0.2);
  background: rgba(26, 58, 158, 0.06);
  font-size: 11px;
  font-weight: 700;
  color: var(--nm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nm);
  animation: pulse 2s ease-in-out infinite;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--f);
  box-shadow: 0 4px 16px var(--glow);
  transition:
    transform 0.2s var(--spring),
    background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--nm);
}
.btn-out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: var(--text2);
  border: 1.5px solid var(--border2);
  cursor: pointer;
  font-family: var(--f);
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.btn-out:hover {
  color: var(--navy);
  border-color: var(--nm);
  background: var(--bg2);
}
.slbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nm);
  margin-bottom: 12px;
}
.hxl {
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.hlg {
  font-size: clamp(24px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.hmd {
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.grad {
  background: linear-gradient(
    130deg,
    var(--navy) 0%,
    var(--nm) 55%,
    var(--nl) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes gridMove {
  to {
    background-position: 48px 48px;
  }
}
@keyframes orbit {
  from {
    transform: rotateZ(0deg) rotateX(70deg);
  }
  to {
    transform: rotateZ(360deg) rotateX(70deg);
  }
}
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 25, 80, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 25, 80, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  animation: gridMove 20s linear infinite;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.pill {
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  font-size: 11px;
  color: var(--text2);
  font-weight: 600;
}
.pill.ac {
  background: rgba(26, 58, 158, 0.08);
  border-color: rgba(26, 58, 158, 0.22);
  color: var(--nm);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.chklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.chklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}
.chklist li::before {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--gdim);
  border: 1.5px solid rgba(22, 163, 74, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── HOME ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 48px 80px;
  overflow: hidden;
}
.hb {
  margin-bottom: 26px;
  animation: fadeUp 0.6s var(--ease) both;
}
.hero h1 {
  max-width: 800px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}
.hero-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.8;
  animation: fadeUp 0.7s var(--ease) 0.2s both;
  margin-bottom: 34px;
}
.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease) 0.3s both;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10, 25, 80, 0.07);
  animation: fadeUp 0.7s var(--ease) 0.4s both;
}
.hs {
  flex: 1;
  padding: 18px 28px;
  background: #fff;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hs:last-child {
  border-right: none;
}
.hsv {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hsv em {
  font-style: normal;
  color: var(--nm);
}
.hsl {
  font-size: 11px;
  color: var(--text3);
  margin-top: 4px;
}
.fcard {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 14px 17px;
  box-shadow: 0 14px 48px rgba(10, 25, 80, 0.1);
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
}
.fc1 {
  left: 2%;
  top: 37%;
  animation-delay: 0s;
  display: none;
}
.fc2 {
  right: 2%;
  top: 43%;
  animation-delay: 2.5s;
  display: none;
}
@media (min-width: 1100px) {
  .fc1,
  .fc2 {
    display: block;
  }
}
.fclbl {
  font-size: 9px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.fcrow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  font-size: 11px;
  color: var(--text2);
}
.fcdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fcbg {
  flex: 1;
  height: 4px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden;
}
.fcbar {
  height: 100%;
  border-radius: 2px;
  background: var(--nm);
}
.fcval {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--navy);
  font-weight: 700;
  min-width: 24px;
  text-align: right;
}
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  background: var(--bg2);
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.ti {
  font-size: clamp(13px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--text3);
  white-space: nowrap;
}
.ti em {
  font-style: normal;
  color: var(--nm);
}
.how {
  padding: 104px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(10, 25, 80, 0.05);
  margin-top: 44px;
}
.step {
  background: #fff;
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.step:hover {
  background: var(--bg2);
}
.sn {
  font-size: 50px;
  font-weight: 800;
  color: var(--nm);
  opacity: 0.06;
  position: absolute;
  top: -4px;
  right: 12px;
}
.sico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sico svg {
  width: 18px;
  height: 18px;
  stroke: var(--nm);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.st {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.sd {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.7;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 68px;
}
.bc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.bc:hover {
  border-color: rgba(26, 58, 158, 0.24);
  transform: translateY(-3px);
}
.bc.wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 36px;
}
.bv {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--navy);
}
.bv em {
  font-style: normal;
  color: var(--nm);
}
.bl {
  height: 3px;
  width: 38px;
  background: var(--nm);
  border-radius: 2px;
  margin-bottom: 14px;
}
.bdesc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 240px;
}
.svcs {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 44px;
}
.sc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition:
    border-color 0.3s,
    transform 0.4s var(--ease),
    box-shadow 0.3s;
}
.sc:hover {
  border-color: rgba(26, 58, 158, 0.26);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(10, 25, 80, 0.08);
}
.sc.feat {
  background: linear-gradient(
    135deg,
    rgba(26, 58, 158, 0.05),
    rgba(45, 85, 200, 0.02)
  );
  border-color: rgba(26, 58, 158, 0.18);
}
.sc-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sc-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--nm);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sc.feat .sc-ico {
  background: rgba(26, 58, 158, 0.1);
  border-color: rgba(26, 58, 158, 0.2);
}
.sc-t {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.sc-d {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.free-tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.24);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cta-sec {
  padding: 124px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.cta-sec p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  margin: 18px 0 32px;
}

/* ── PRODUCTS ── */
.ph {
  padding: 76px 0 52px;
  text-align: center;
}
.ph p {
  font-size: 15px;
  color: var(--text2);
  max-width: 480px;
  margin: 14px auto 0;
}
.ptabs {
  display: flex;
  gap: 3px;
  padding: 5px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  width: fit-content;
  margin: 38px auto 68px;
}
.pt {
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--f);
  transition:
    color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.pt.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(10, 25, 80, 0.1);
}
.ps {
  display: none;
  animation: fadeUp 0.35s ease;
}
.ps.active {
  display: block;
}
.p2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 68px;
}
.ptag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(26, 58, 158, 0.08);
  border: 1px solid rgba(26, 58, 158, 0.18);
  font-size: 10px;
  font-weight: 700;
  color: var(--nm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ss-wrap {
  position: relative;
  padding-bottom: 16px;
}
.ss-main {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: 0 16px 56px rgba(10, 25, 80, 0.14);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--ease);
  background: #f0f3ff;
  line-height: 0;
}
.ss-wrap:hover .ss-main {
  transform: none;
}
.ss-main img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 340px;
  object-fit: cover;
  object-position: top;
}
.ss-live {
  position: absolute;
  bottom: 4px;
  right: 10px;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 7px 12px;
  box-shadow: 0 6px 20px rgba(10, 25, 80, 0.1);
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.ss-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: block;
  flex-shrink: 0;
}
.ss-strip {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}
.ss-t {
  border-radius: 7px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  cursor: pointer;
  opacity: 0.5;
  transition:
    opacity 0.2s,
    transform 0.2s,
    border-color 0.2s;
  background: #f0f3ff;
  line-height: 0;
  aspect-ratio: 16/10;
}
.ss-t:hover,
.ss-t.on {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--nm);
}
.ss-t img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.ss-caps {
  display: grid;
  gap: 6px;
  margin-top: 6px;
  font-size: 9px;
  color: var(--text3);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.fg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.fc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 26px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.fc-card:hover {
  border-color: rgba(26, 58, 158, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(10, 25, 80, 0.08);
}
.fi {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26, 58, 158, 0.08);
  border: 1px solid rgba(26, 58, 158, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}
.fi svg {
  width: 17px;
  height: 17px;
  stroke: var(--nm);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ft {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.fd {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.65;
}

/* ── ABOUT ── */
.abh {
  padding: 76px 0;
  text-align: center;
}
.abh p {
  font-size: 15px;
  color: var(--text2);
  max-width: 560px;
  margin: 14px auto 0;
}
.ab2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 68px 0;
  border-top: 1px solid var(--border);
}
.orbit-ring {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px solid rgba(26, 58, 158, 0.16);
  position: relative;
  margin: 0 auto;
  animation: orbit 18s linear infinite;
}
.od {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--nm);
  box-shadow: 0 0 10px var(--glow);
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.oc {
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg2), #fff);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--nm);
}
.about-logo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(26, 58, 158, 0.18));
}
.vg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 44px;
}
.vc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 26px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.vc:hover {
  border-color: rgba(26, 58, 158, 0.22);
  transform: translateY(-3px);
}
.ve {
  font-size: 26px;
  display: block;
  margin-bottom: 11px;
}
.vt {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.vd {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.65;
}
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.tc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 17px;
  padding: 26px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.tc:hover {
  border-color: rgba(26, 58, 158, 0.22);
  transform: translateY(-3px);
}
.tav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 13px;
  background: linear-gradient(135deg, var(--navy), var(--nm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 18px var(--glow);
}
.tn {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--navy);
}
.tr2 {
  font-size: 12px;
  color: var(--nm);
  margin-bottom: 9px;
  font-weight: 600;
}
.tb {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}
.tl-w {
  position: relative;
  padding-left: 34px;
  margin-top: 40px;
}
.tl-w::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(180deg, var(--nm), transparent);
}
.tli {
  position: relative;
  padding-bottom: 36px;
}
.tli::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nm);
  box-shadow: 0 0 10px var(--glow);
}
.ty {
  font-size: 10px;
  font-weight: 700;
  color: var(--nm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.th {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.tp {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 540px;
}

/* ── CONTACT ── */
.ctsec {
  padding: 76px 0 110px;
}
.ctg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  margin-top: 52px;
  align-items: start;
}
.ci-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.ci {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border-radius: 13px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.ci:hover {
  border-color: rgba(26, 58, 158, 0.24);
}
.ci-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26, 58, 158, 0.08);
  border: 1px solid rgba(26, 58, 158, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--nm);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ci-l {
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
}
.ci-v {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.cf {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 22px;
  padding: 36px;
}
.cf-t {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--navy);
}
.cf-s {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 26px;
}
.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 13px;
}
.fg2 {
  margin-bottom: 13px;
}
.fl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fi2,
.fsel,
.fta {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid var(--border2);
  color: var(--navy);
  font-family: var(--f);
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.fi2:focus,
.fsel:focus,
.fta:focus {
  border-color: var(--nm);
  box-shadow: 0 0 0 3px rgba(26, 58, 158, 0.1);
}
.fi2::placeholder,
.fta::placeholder {
  color: var(--text3);
}
.fsel {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237e92b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  cursor: pointer;
}
.fsel option {
  background: #fff;
}
.fta {
  resize: vertical;
  min-height: 96px;
}
.fsub {
  width: 100%;
  padding: 13px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
}
.fsuccess {
  display: none;
  text-align: center;
  padding: 22px;
  animation: fadeUp 0.5s ease;
}
footer {
  border-top: 1px solid var(--border);
  padding: 52px 0 34px;
}
.ftg {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 36px;
}
.fb p {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.7;
  margin-top: 9px;
  max-width: 230px;
}
.fct {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 13px;
}
.fl2 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fl2 a {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.fl2 a:hover {
  color: var(--nm);
}
.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.fcp {
  font-size: 12px;
  color: var(--text3);
}
.sbs {
  display: flex;
  gap: 9px;
}
.sb {
  width: 33px;
  height: 33px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.sb:hover {
  border-color: var(--nm);
  background: rgba(26, 58, 158, 0.07);
}
.sb svg {
  width: 14px;
  height: 14px;
  stroke: var(--text2);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── PAIN POINTS ── */
.pain-sec {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}
.pain-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pie-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pie-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  flex-shrink: 0;
}
.pie-wrap svg {
  width: 100%;
  height: 100%;
}
.pie-labels {
  margin-left: 28px;
}
.pie-lbl {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text2);
}
.pie-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pie-pct {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-right: 4px;
}
.pain-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.pain-item:hover {
  border-color: rgba(26, 58, 158, 0.25);
  box-shadow: 0 8px 28px rgba(10, 25, 80, 0.07);
}
.pain-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pain-t {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.pain-d {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── BENEFITS ── */
.benefits-sec {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.ben-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.ben-card:hover {
  border-color: rgba(26, 58, 158, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 25, 80, 0.09);
}
.ben-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(26, 58, 158, 0.07),
    rgba(45, 85, 200, 0.04)
  );
  border-color: rgba(26, 58, 158, 0.22);
}
.ben-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  border: 2px solid rgba(22, 163, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ben-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ben-t {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--navy);
}
.ben-d {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── INDUSTRIES ── */
.ind-sec {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 52px;
}
.ind-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  cursor: default;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.ind-card:hover {
  border-color: rgba(26, 58, 158, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 25, 80, 0.08);
}
.ind-emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.ind-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ── FAQ ── */
.faq-sec {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
}
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(26, 58, 158, 0.28);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  gap: 12px;
  user-select: none;
}
.faq-q:hover {
  background: rgba(26, 58, 158, 0.03);
}
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--nm);
  border-color: var(--nm);
  transform: rotate(45deg);
}
.faq-toggle svg {
  width: 12px;
  height: 12px;
  stroke: var(--text2);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.faq-item.open .faq-toggle svg {
  stroke: #fff;
}
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

/* ── BULLET TRAIN ── */
.train-sec {
  padding: 72px 0 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
}
.train-scene {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: linear-gradient(
    180deg,
    #c8e8f8 0%,
    #daf0fb 18%,
    #edf7e6 36%,
    #c6e8a0 54%,
    #8dc43a 66%,
    #6aad20 74%,
    #5a9a18 100%
  );
}
.train-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #b8dff5 0%, #d4edf8 15%, transparent 35%);
}
.train-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: linear-gradient(180deg, #6aad20 0%, #5a9a18 40%, #4a8510 100%);
  z-index: 2;
}
.train-rails {
  position: absolute;
  bottom: 46px;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    #8b6914 0px,
    #8b6914 30px,
    #6b4f0f 30px,
    #6b4f0f 38px,
    transparent 38px,
    transparent 52px
  );
  z-index: 3;
}
.train-rails::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 3px;
  background: #c8a835;
  border-radius: 2px;
}
.train-rails::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 3px;
  background: #c8a835;
  border-radius: 2px;
}
.cloud {
  position: absolute;
  z-index: 1;
  background: #fff;
  border-radius: 50px;
  opacity: 0.82;
  animation: cloudDrift linear infinite;
}
.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
.cloud-1 {
  width: 90px;
  height: 28px;
  top: 18px;
  animation-duration: 60s;
  animation-delay: -10s;
}
.cloud-1::before {
  width: 44px;
  height: 36px;
  top: -20px;
  left: 12px;
}
.cloud-1::after {
  width: 32px;
  height: 26px;
  top: -12px;
  left: 42px;
}
.cloud-2 {
  width: 70px;
  height: 22px;
  top: 36px;
  animation-duration: 80s;
  animation-delay: -30s;
}
.cloud-2::before {
  width: 34px;
  height: 30px;
  top: -16px;
  left: 8px;
}
.cloud-2::after {
  width: 26px;
  height: 20px;
  top: -8px;
  left: 34px;
}
.cloud-3 {
  width: 110px;
  height: 32px;
  top: 10px;
  animation-duration: 70s;
  animation-delay: -50s;
}
.cloud-3::before {
  width: 54px;
  height: 44px;
  top: -24px;
  left: 16px;
}
.cloud-3::after {
  width: 40px;
  height: 32px;
  top: -14px;
  left: 56px;
}
@keyframes cloudDrift {
  0% {
    transform: translateX(110vw);
  }
  100% {
    transform: translateX(-200px);
  }
}
.scenery-strip {
  position: absolute;
  bottom: 56px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 0;
  animation: sceneryMove 22s linear infinite;
  width: max-content;
}
@keyframes sceneryMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.tree {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin: 0 6px;
}
.tree-top {
  border-left: solid transparent;
  border-right: solid transparent;
  border-bottom: solid #2d8a1e;
}
.tree-top2 {
  border-left: solid transparent;
  border-right: solid transparent;
  border-bottom: solid #3aa625;
  margin-top: -8px;
}
.tree-trunk {
  background: #8b5e2a;
  border-radius: 1px;
}
.tree-sm .tree-top {
  border-width: 0 12px 22px 12px;
}
.tree-sm .tree-top2 {
  border-width: 0 15px 28px 15px;
}
.tree-sm .tree-trunk {
  width: 7px;
  height: 12px;
}
.tree-md .tree-top {
  border-width: 0 16px 30px 16px;
}
.tree-md .tree-top2 {
  border-width: 0 20px 38px 20px;
}
.tree-md .tree-trunk {
  width: 9px;
  height: 16px;
}
.tree-lg .tree-top {
  border-width: 0 20px 38px 20px;
}
.tree-lg .tree-top2 {
  border-width: 0 26px 50px 26px;
}
.tree-lg .tree-trunk {
  width: 12px;
  height: 20px;
}
.tree-round {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin: 0 5px;
}
.tree-round-top {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5dc42e, #2d8a1e);
}
.tree-round-trunk {
  background: #8b5e2a;
  border-radius: 1px;
}
.tree-round.sm .tree-round-top {
  width: 28px;
  height: 26px;
}
.tree-round.sm .tree-round-trunk {
  width: 6px;
  height: 10px;
}
.tree-round.md .tree-round-top {
  width: 38px;
  height: 34px;
}
.tree-round.md .tree-round-trunk {
  width: 8px;
  height: 14px;
}
.tree-round.lg .tree-round-top {
  width: 50px;
  height: 44px;
}
.tree-round.lg .tree-round-trunk {
  width: 10px;
  height: 18px;
}
.bush {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 4px;
  border-radius: 50% 50% 40% 40%;
  background: radial-gradient(circle at 40% 40%, #6dd62e, #3d9a15);
}
.bush.sm {
  width: 22px;
  height: 14px;
}
.bush.md {
  width: 32px;
  height: 20px;
}
.bush.lg {
  width: 44px;
  height: 26px;
}
.hill {
  display: inline-block;
  flex-shrink: 0;
  margin: 0;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #7dc840 0%, #5aaa18 100%);
}
.hill.sm {
  width: 80px;
  height: 28px;
}
.hill.md {
  width: 130px;
  height: 40px;
}
.hill.lg {
  width: 200px;
  height: 55px;
}
.train-runner {
  position: absolute;
  bottom: 56px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  animation: trainRTL 20s linear infinite;
  width: max-content;
}
.train-scene:hover .train-runner {
  animation-play-state: paused;
}
.train-scene:hover .scenery-strip {
  animation-play-state: paused;
}
@keyframes trainRTL {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(calc(-100% - 100vw));
  }
}
.train-engine {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.engine-cab {
  width: 170px;
  height: 80px;
  background: linear-gradient(180deg, #0a1950 0%, #0d2370 100%);
  border-radius: 10px 0 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: -6px 0 20px rgba(10, 25, 80, 0.3);
  flex-shrink: 0;
}
.engine-cab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 5px;
  background: linear-gradient(90deg, #4d6ef5, var(--nm), #4d6ef5);
  opacity: 0.85;
}
.engine-cab-window {
  position: absolute;
  left: 16px;
  top: 10px;
  width: 40px;
  height: 30px;
  background: linear-gradient(
    135deg,
    rgba(160, 200, 255, 0.65),
    rgba(210, 230, 255, 0.3)
  );
  border-radius: 5px 5px 3px 3px;
  border: 1.5px solid rgba(160, 200, 255, 0.5);
}
.engine-cab-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--f);
}
.engine-cab-light {
  position: absolute;
  right: 10px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffdc50;
  box-shadow:
    0 0 12px #ffdc50,
    0 0 24px rgba(255, 220, 80, 0.7);
  animation: lightBlink 1.4s ease-in-out infinite;
}
@keyframes lightBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow:
      0 0 12px #ffdc50,
      0 0 24px rgba(255, 220, 80, 0.7);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 4px #ffdc50;
  }
}
.engine-nose-left {
  width: 60px;
  height: 80px;
  background: linear-gradient(225deg, #0a1950 60%, #1a3a9e);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 40%);
  border-radius: 0 0 0 4px;
  position: relative;
  flex-shrink: 0;
}
.engine-nose-left::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 6px;
  width: 18px;
  height: 11px;
  border-radius: 3px;
  background: rgba(255, 220, 80, 0.95);
  box-shadow:
    0 0 10px rgba(255, 220, 80, 0.9),
    -2px 0 14px rgba(255, 220, 80, 0.5);
}
.engine-undercarriage {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: #071238;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.wheel-row {
  display: flex;
  align-items: center;
  padding: 0;
  height: 22px;
  gap: 18px;
  justify-content: center;
}
.w {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 35% 35%, #7a8aaa, #1a2550);
  border: 2.5px solid #0a1950;
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: wspin 0.5s linear infinite;
}
.w::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9aaace;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.w.lg {
  width: 26px;
  height: 26px;
}
.w.lg::after {
  width: 8px;
  height: 8px;
}
@keyframes wspin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.steam-wrap {
  position: absolute;
  top: -32px;
  right: 20px;
  display: flex;
  gap: 5px;
  pointer-events: none;
}
.sp {
  border-radius: 50%;
  background: rgba(220, 228, 240, 0.75);
  animation: steamRise 1.6s ease-out infinite;
}
.sp:nth-child(1) {
  width: 12px;
  height: 12px;
  animation-delay: 0s;
}
.sp:nth-child(2) {
  width: 9px;
  height: 9px;
  animation-delay: 0.55s;
}
.sp:nth-child(3) {
  width: 7px;
  height: 7px;
  animation-delay: 1.1s;
}
@keyframes steamRise {
  0% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px) scale(2.8);
  }
}
.coach {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.coach-body {
  width: 152px;
  height: 80px;
  background: linear-gradient(180deg, #f2f5ff 0%, #e2e8f8 100%);
  border: 1.5px solid rgba(26, 58, 158, 0.18);
  border-right: none;
  position: relative;
  overflow: hidden;
}
.coach.dk .coach-body {
  background: linear-gradient(180deg, #0a1950 0%, #0d2370 100%);
  border-color: rgba(100, 130, 220, 0.3);
}
.coach-top-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--nm), #4d6ef5, var(--nm));
}
.coach.dk .coach-top-stripe {
  background: linear-gradient(90deg, #4d6ef5, #7b9bff, #4d6ef5);
}
.coach-wins {
  display: flex;
  gap: 7px;
  position: absolute;
  top: 13px;
  left: 10px;
}
.cw {
  width: 22px;
  height: 19px;
  border-radius: 3px 3px 2px 2px;
  background: linear-gradient(
    135deg,
    rgba(140, 180, 255, 0.55),
    rgba(210, 230, 255, 0.28)
  );
  border: 1px solid rgba(130, 170, 255, 0.4);
}
.coach.dk .cw {
  background: linear-gradient(
    135deg,
    rgba(60, 90, 200, 0.6),
    rgba(40, 70, 160, 0.35)
  );
  border-color: rgba(140, 170, 255, 0.35);
}
.coach-lbl {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.2;
  padding: 0 4px;
}
.coach-emoji {
  font-size: 13px;
  line-height: 1.1;
  display: block;
}
.coach-name {
  font-size: 9px;
  font-weight: 700;
  color: #1a2550;
  letter-spacing: 0.02em;
}
.coach.dk .coach-name {
  color: #c8d4f8;
}
.coach-wheels-row {
  display: flex;
  gap: 0;
  height: 22px;
  background: #e2e8f0;
  border: 1px solid rgba(26, 58, 158, 0.12);
  border-top: none;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
}
.coach.dk .coach-wheels-row {
  background: #071238;
  border-color: rgba(80, 110, 200, 0.2);
}

/* ── BLOG ── */
.blog-header {
  padding: 76px 0 52px;
  text-align: center;
}
.blog-header p {
  font-size: 15px;
  color: var(--text2);
  max-width: 560px;
  margin: 14px auto 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  padding-bottom: 100px;
}
.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.35s var(--ease),
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(26, 58, 158, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(10, 25, 80, 0.09);
}
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(26, 58, 158, 0.08);
  border: 1px solid rgba(26, 58, 158, 0.18);
  font-size: 10px;
  font-weight: 700;
  color: var(--nm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 16px;
}
.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text3);
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.blog-read-link {
  color: var(--nm);
  font-weight: 700;
  font-size: 12px;
}
.blog-article {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.blog-article.active {
  display: block;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  background: var(--bg2);
  border: 1px solid var(--border2);
  cursor: pointer;
  font-family: var(--f);
  margin-bottom: 36px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.blog-back:hover {
  color: var(--nm);
  border-color: var(--nm);
  background: rgba(26, 58, 158, 0.05);
}
.blog-article-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(26, 58, 158, 0.08);
  border: 1px solid rgba(26, 58, 158, 0.18);
  font-size: 10px;
  font-weight: 700;
  color: var(--nm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.blog-article-meta {
  font-size: 12px;
  color: var(--text3);
  font-weight: 600;
  margin-bottom: 32px;
}
.blog-article h1 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}
.blog-article h2 {
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.2;
}
.blog-article h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.blog-article p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 18px;
}
.blog-article ul,
.blog-article ol {
  margin: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-article li {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.blog-article strong {
  color: var(--navy);
}
.blog-article-cta {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(26, 58, 158, 0.06), rgba(45, 85, 200, 0.03));
  border: 1px solid rgba(26, 58, 158, 0.18);
  border-radius: 16px;
  text-align: center;
}
.blog-article-cta p {
  font-size: 13px;
  margin-bottom: 16px;
}
.blog-article-cta .btn {
  font-size: 13px;
}

@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .c {
    padding: 0 20px;
  }
  .comp-grid {
    grid-template-columns: 1fr !important;
  }
  .nav-links {
    display: none;
  }
  .ncta {
    display: none;
  }
  .ham-btn {
    display: flex;
  }
  .mob-nav {
    display: block;
  }
  .hero {
    padding: 76px 20px 60px;
    min-height: auto;
  }
  .hero-stats {
    flex-direction: column;
    border-radius: 10px;
  }
  .hs {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 22px;
  }
  .hs:last-child {
    border-bottom: none;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn,
  .hero-btns .btn-out {
    width: 100%;
    justify-content: center;
  }
  .fcard {
    display: none !important;
  }
  #cur,
  #cur-ring {
    display: none;
  }
  .bento,
  .fg,
  .vg,
  .tg,
  .ftg,
  .ben-grid,
  .faq-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .svc-grid,
  .p2,
  .ab2,
  .ctg,
  .fr,
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .bc.wide {
    grid-column: span 1 !important;
    flex-direction: column;
    gap: 18px;
  }
  .bc[style] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .bdesc {
    max-width: 100%;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .ind-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ss-main {
    transform: none;
  }
  .ss-strip {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .ss-caps {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .ptabs {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .pt {
    flex: 1;
    text-align: center;
  }
  .pain-grid {
    gap: 36px;
  }
  .pie-visual {
    flex-direction: column;
    align-items: center;
  }
  .pie-labels {
    margin-left: 0;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .orbit-ring {
    animation-duration: 36s;
  }
  .ab2 {
    gap: 36px;
    padding: 48px 0;
  }
  .tg {
    gap: 13px;
  }
  .tl-w {
    padding-left: 24px;
  }
  .tli::before {
    left: -29px;
  }
  .ctg {
    gap: 36px;
  }
  .ftg {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .fbot {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .sbs {
    justify-content: center;
  }
  .train-scene {
    height: 180px;
  }
  .pain-sec,
  .benefits-sec,
  .ind-sec,
  .faq-sec {
    padding: 72px 0;
  }
  .how {
    padding: 72px 0;
  }
  .svcs {
    padding: 72px 0;
  }
  .ctsec {
    padding: 60px 0 80px;
  }
}

@media (max-width: 480px) {
  .c {
    padding: 0 14px;
  }
  .hero {
    padding: 64px 14px 48px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hs {
    padding: 12px 16px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    padding: 24px 20px;
  }
  .ss-strip {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .ss-caps {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .ss-main img {
    max-height: 220px;
  }
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ind-card {
    padding: 14px 8px;
    border-radius: 12px;
  }
  .ind-emoji {
    font-size: 22px;
  }
  .ind-name {
    font-size: 10px;
  }
  .pie-wrap {
    width: 170px;
    height: 170px;
  }
  .orbit-ring {
    width: 200px;
    height: 200px;
  }
  .oc {
    inset: 20px;
    font-size: 20px;
  }
  .about-logo {
    max-width: 280px;
  }
  .ftg {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cf {
    padding: 22px 16px;
    border-radius: 16px;
  }
  .bv {
    font-size: clamp(32px, 10vw, 56px);
  }
  .bc {
    padding: 24px;
  }
  .train-scene {
    height: 150px;
  }
  .engine-cab {
    width: 120px;
    height: 60px;
  }
  .coach-body {
    width: 110px;
    height: 60px;
  }
  .pain-sec,
  .benefits-sec,
  .ind-sec,
  .faq-sec {
    padding: 56px 0;
  }
  .how {
    padding: 56px 0;
  }
  .svcs {
    padding: 56px 0;
  }
  .abh,
  .ph {
    padding: 56px 0 36px;
  }
  .ctsec {
    padding: 48px 0 64px;
  }
  .cta-sec {
    padding: 80px 0;
  }
  .faq-q {
    font-size: 12px;
    padding: 15px 16px;
  }
  .faq-a {
    padding: 0 16px 14px;
    font-size: 12px;
  }
  .ticker-track {
    gap: 24px;
  }
  .pills {
    gap: 5px;
  }
  .pill {
    font-size: 10px;
    padding: 3px 9px;
  }
}
