:root {
  --brand: #2b25f2;
  --brand-light: #5752ff;
  --brand-soft: #eeefff;
  --navy: #030c20;
  --navy-2: #071631;
  --navy-3: #0b1f43;
  --ink: #0a1530;
  --muted: #61708f;
  --line: #dfe5f1;
  --surface: #f5f7fb;
  --white: #fff;
  --cyan: #36d9ff;
  --green: #19c987;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-lg: 0 30px 80px rgba(3, 12, 32, .14);
  --shadow-sm: 0 14px 34px rgba(3, 12, 32, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.menu-open main, body.menu-open footer { pointer-events: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 1200; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 15px; color: #fff; border-radius: 8px; background: var(--brand); }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(3,12,32,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-logo { position: relative; display: block; flex: 0 0 auto; width: 84px; height: 49px; overflow: hidden; }
.brand-logo img { position: absolute; width: 188px; max-width: none; left: -55px; top: -48px; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: 26px; flex: 1; }
.nav-item { position: relative; }
.nav-link, .nav-trigger { display: inline-flex; align-items: center; gap: 6px; padding: 26px 0; color: rgba(255,255,255,.78); border: 0; cursor: pointer; background: none; font-size: .9rem; font-weight: 600; }
.nav-link:hover, .nav-trigger:hover, .nav-item:focus-within > .nav-trigger { color: #fff; }
.nav-trigger svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-item:hover .nav-trigger svg, .nav-item:focus-within .nav-trigger svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% - 8px); left: -18px; min-width: 230px; opacity: 0; visibility: hidden; transform: translateY(8px); padding: 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: #08162f; box-shadow: 0 20px 50px rgba(0,0,0,.35); transition: .2s ease; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 11px 12px; color: rgba(255,255,255,.72); border-radius: 9px; font-size: .875rem; }
.dropdown a:hover, .dropdown a:focus { color: #fff; background: rgba(43,37,242,.28); }
.nav-cta, .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; color: #fff; border: 1px solid transparent; border-radius: 10px; cursor: pointer; background: linear-gradient(135deg, var(--brand-light), var(--brand)); box-shadow: 0 13px 30px rgba(43,37,242,.26); font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.nav-cta { min-height: 42px; padding: 0 17px; font-size: .875rem; }
.btn:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 17px 36px rgba(43,37,242,.34); }
.btn svg, .nav-cta svg { width: 17px; height: 17px; }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.07); box-shadow: none; }
.btn-secondary:hover { background: rgba(255,255,255,.12); box-shadow: none; }
.btn-light { color: var(--brand); background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.17); }
.btn-light:hover { box-shadow: 0 22px 44px rgba(0,0,0,.22); }
.mobile-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: #fff; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.06); }
.mobile-toggle svg { width: 22px; }
.mobile-panel { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 138px 0 92px;
  color: #fff;
  background: #030c20;
}
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(2,8,23,.98) 0%, rgba(2,8,23,.92) 27%, rgba(3,12,32,.74) 48%, rgba(3,12,32,.28) 72%, rgba(3,12,32,.12) 100%); }
.hero::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(2,8,23,.76) 0%, rgba(2,8,23,.08) 38%, rgba(2,8,23,.25) 100%); }
.hero-slideshow { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: #030c20; }
.hero-slide { position: absolute; inset: 0; display: block; width: 100%; height: 100%; opacity: 0; object-fit: cover; object-position: center; transform: scale(1.08); animation: hero-slide-crossfade 18s linear infinite both; will-change: opacity, transform; }
.hero-slide:nth-child(1) { animation-delay: 0s; object-position: center 55%; }
.hero-slide:nth-child(2) { animation-delay: 6s; object-position: center 52%; }
.hero-slide:nth-child(3) { animation-delay: 12s; object-position: center 50%; }
.hero-connectivity { position: absolute; z-index: 2; inset: 0; overflow: hidden; pointer-events: none; }
.hero-connectivity::before { content: ""; position: absolute; right: -7%; top: 7%; width: 68%; height: 83%; opacity: .18; background-image: radial-gradient(circle, rgba(106,217,255,.9) 1px, transparent 1.7px); background-size: 34px 34px; transform: perspective(760px) rotateY(-18deg) rotateZ(-4deg); -webkit-mask-image: radial-gradient(ellipse, #000 0%, transparent 69%); mask-image: radial-gradient(ellipse, #000 0%, transparent 69%); animation: hero-connect-mesh 16s ease-in-out infinite alternate; }
.hero-connect-arc { position: absolute; display: block; border: 1px solid rgba(95,162,255,.25); border-right-color: rgba(93,225,255,.64); border-radius: 50%; filter: drop-shadow(0 0 9px rgba(61,153,255,.3)); animation: hero-connect-orbit 22s linear infinite; }
.hero-connect-arc-one { right: 5%; top: 11%; width: 46vw; height: 46vw; }
.hero-connect-arc-two { right: 20%; top: 34%; width: 27vw; height: 27vw; border-color: rgba(91,111,255,.18); border-left-color: rgba(93,225,255,.55); animation-duration: 17s; animation-direction: reverse; }
.hero-connect-line { position: absolute; display: block; height: 1px; overflow: hidden; opacity: .62; background: linear-gradient(90deg, transparent, rgba(104,130,255,.2), rgba(87,222,255,.88), rgba(104,130,255,.2), transparent); transform-origin: left center; }
.hero-connect-line::after { content: ""; position: absolute; top: -2px; width: 70px; height: 5px; background: linear-gradient(90deg, transparent, #7ce9ff, transparent); filter: blur(.3px) drop-shadow(0 0 7px #4bcfff); animation: hero-connect-signal 5.2s ease-in-out infinite; }
.hero-connect-line-one { left: 47%; top: 33%; width: 38%; transform: rotate(-10deg); }
.hero-connect-line-two { left: 57%; top: 58%; width: 34%; transform: rotate(15deg); }
.hero-connect-line-three { left: 45%; top: 76%; width: 40%; transform: rotate(-4deg); }
.hero-connect-line-two::after { animation-delay: -1.7s; }
.hero-connect-line-three::after { animation-delay: -3.3s; }
.hero-connect-node { position: absolute; display: block; width: 9px; height: 9px; border: 2px solid rgba(169,230,255,.9); border-radius: 50%; background: #3158ff; box-shadow: 0 0 0 8px rgba(57,141,255,.09), 0 0 24px rgba(71,207,255,.8); animation: hero-connect-node-pulse 3.2s ease-in-out infinite; }
.hero-connect-node-one { right: 16%; top: 23%; }
.hero-connect-node-two { right: 7%; top: 53%; animation-delay: -1.1s; }
.hero-connect-node-three { right: 28%; bottom: 13%; animation-delay: -2s; }
.hero-connect-node-four { left: 48%; top: 45%; animation-delay: -.5s; }
.hero-connect-particle { position: absolute; display: block; width: 5px; height: 5px; border-radius: 50%; opacity: .62; background: #7deaff; box-shadow: 0 0 14px rgba(77,215,255,.9); animation: hero-connect-float 7s ease-in-out infinite; }
.hero-connect-particle:nth-of-type(3n) { width: 3px; height: 3px; background: #8290ff; animation-duration: 8.5s; }
.hero-connect-particle-one { left: 42%; top: 18%; }
.hero-connect-particle-two { left: 54%; top: 27%; animation-delay: -3.2s; }
.hero-connect-particle-three { right: 31%; top: 14%; animation-delay: -5.4s; }
.hero-connect-particle-four { right: 12%; top: 36%; animation-delay: -1.5s; }
.hero-connect-particle-five { right: 3%; bottom: 32%; animation-delay: -4.1s; }
.hero-connect-particle-six { right: 22%; bottom: 8%; animation-delay: -6.4s; }
.hero-connect-particle-seven { left: 49%; bottom: 17%; animation-delay: -2.2s; }
.hero-connect-particle-eight { left: 37%; top: 54%; animation-delay: -4.8s; }
.hero-connect-particle-nine { right: 39%; top: 47%; animation-delay: -.8s; }
.hero-connect-particle-ten { right: 8%; top: 13%; animation-delay: -5.9s; }
.hero-grid { position: relative; z-index: 3; }
.hero-copy { max-width: 650px; text-shadow: 0 2px 24px rgba(0,0,0,.42); }
.kicker { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px; color: #7e96ff; font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(54,217,255,.1); }
h1, h2, h3, h4 { margin: 0; font-family: inherit; font-weight: 750; letter-spacing: -.035em; text-wrap: balance; }
.text-accent { color: #5d69ff; }
h1 { max-width: 670px; font-size: clamp(2.2rem, 3.85vw, 3.65rem); line-height: 1.04; }
.hero-copy > p:not(.kicker) { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.8); font-size: 1.1rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 36px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.72); font-size: .84rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #5f63ff; }
.hero-product { position: relative; min-height: 500px; display: grid; align-items: center; isolation: isolate; animation: hero-showcase-in .9s cubic-bezier(.2,.8,.2,1) both; }
.hero-glow { position: absolute; width: 70%; aspect-ratio: 1; left: 20%; top: 10%; border-radius: 50%; background: rgba(43,37,242,.22); filter: blur(70px); }
.product-image { position: relative; z-index: 2; width: 118%; max-width: none; margin-left: -8%; filter: drop-shadow(0 38px 40px rgba(0,0,0,.4)); animation: dashboard-float 7s ease-in-out .9s infinite; will-change: transform; }
.product-badge { position: absolute; z-index: 4; left: 5%; top: 18%; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(3,12,32,.94); box-shadow: 0 15px 35px rgba(0,0,0,.3); font-size: .75rem; font-weight: 800; }
.product-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(25,201,135,.12); animation: live-pulse 2.2s ease-out infinite; }
.hero-detail { position: absolute; z-index: 5; width: 182px; overflow: hidden; padding: 7px 7px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(7,22,49,.94); box-shadow: 0 20px 45px rgba(0,0,0,.38); backdrop-filter: blur(14px); }
.hero-detail-image { display: block; height: 93px; border-radius: 9px; background-image: url('/assets/operations-dashboard.png'); background-repeat: no-repeat; }
.hero-detail small { display: block; padding: 9px 4px 0; color: rgba(255,255,255,.76); font-size: .75rem; font-weight: 750; }
.hero-detail-tracking { right: -5%; top: 12%; animation: detail-float-one 5.6s ease-in-out 1.1s infinite; }
.hero-detail-tracking .hero-detail-image { background-size: 675px auto; background-position: -391px -306px; }
.hero-detail-analytics { left: -7%; bottom: 6%; animation: detail-float-two 6.2s ease-in-out 1.35s infinite; }
.hero-detail-analytics .hero-detail-image { background-size: 640px auto; background-position: -160px -225px; }
.hero-stat { position: absolute; z-index: 6; right: -4%; bottom: 9%; min-width: 190px; padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(7,22,49,.94); box-shadow: 0 18px 45px rgba(0,0,0,.32); backdrop-filter: blur(14px); animation: detail-float-one 6.8s ease-in-out 1.5s infinite reverse; }
.hero-stat small { display: block; color: rgba(255,255,255,.5); font-size: .75rem; }
.hero-stat b { display: block; margin-top: 6px; font-size: 1.05rem; }

@keyframes hero-showcase-in {
  from { opacity: 0; transform: translate3d(38px, 24px, 0) scale(.94); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes hero-slide-crossfade {
  0% { opacity: 1; transform: scale(1.08); }
  29% { opacity: 1; transform: scale(1.02); }
  36%, 100% { opacity: 0; transform: scale(1.01); }
}
@keyframes hero-connect-orbit { to { transform: rotate(360deg); } }
@keyframes hero-connect-mesh { 0% { opacity: .11; transform: perspective(760px) rotateY(-18deg) rotateZ(-4deg) translate3d(0,0,0); } 100% { opacity: .22; transform: perspective(760px) rotateY(-14deg) rotateZ(-2deg) translate3d(-25px,18px,0); } }
@keyframes hero-connect-signal { 0% { left: -80px; opacity: 0; } 15%, 80% { opacity: 1; } 100% { left: calc(100% + 20px); opacity: 0; } }
@keyframes hero-connect-node-pulse { 0%, 100% { transform: scale(.82); opacity: .54; } 50% { transform: scale(1.18); opacity: 1; } }
@keyframes hero-connect-float { 0%, 100% { transform: translate3d(0,0,0); opacity: .35; } 50% { transform: translate3d(22px,-27px,0); opacity: .95; } }
@keyframes dashboard-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
@keyframes detail-float-one {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -9px, 0); }
}
@keyframes detail-float-two {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.5deg); }
  50% { transform: translate3d(4px, -11px, 0) rotate(0deg); }
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(25,201,135,.42); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(25,201,135,0); }
}

.hero-trust { margin-top: 46px; padding-top: 29px; color: #fff; border-top: 1px solid rgba(255,255,255,.16); }
.trust-card { display: block; }
.trust-heading { margin: 0 0 26px; color: #b6c2dd; font-size: 1rem; line-height: 1.5; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.trust-marks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; }
.trust-mark { display: flex; align-items: center; gap: 15px; min-width: 0; }
.trust-mark svg { flex: 0 0 38px; width: 38px; height: 38px; color: #94a4ca; }
.trust-mark strong { display: block; color: rgba(255,255,255,.96); font-size: .96rem; line-height: 1.1; letter-spacing: .075em; }
.trust-mark span { display: block; margin-top: 6px; color: #8c9bb9; font-size: .75rem; line-height: 1.1; letter-spacing: .08em; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 16px 36px; margin-top: 31px; }
.hero-assurance { display: inline-flex; align-items: center; gap: 11px; margin: 0; color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 700; line-height: 1.45; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.assurance-check { flex: 0 0 25px; display: block; width: 25px; height: 25px; color: #20dc87; filter: drop-shadow(0 0 9px rgba(32,220,135,.22)); }
.assurance-check svg { display: block; width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.home-dark-flow { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: radial-gradient(circle at 8% 14%, rgba(66,70,255,.2), transparent 22%), radial-gradient(circle at 90% 38%, rgba(54,217,255,.09), transparent 20%), radial-gradient(circle at 20% 74%, rgba(43,37,242,.16), transparent 24%), linear-gradient(155deg, #020817 0%, #071633 48%, #020817 100%); background-size: 130% 112%; animation: dark-flow-shift 24s ease-in-out infinite alternate; }
.home-dark-flow::before, .home-dark-flow::after { content: ""; position: absolute; z-index: 0; width: 620px; height: 620px; border-radius: 50%; pointer-events: none; filter: blur(110px); }
.home-dark-flow::before { left: -300px; top: 17%; background: rgba(72,80,255,.18); animation: ambient-orb-left 16s ease-in-out infinite; }
.home-dark-flow::after { right: -310px; bottom: 13%; background: rgba(54,217,255,.1); animation: ambient-orb-right 18s ease-in-out infinite; }
.home-dark-flow > section { position: relative; z-index: 1; color: #fff; background: transparent; }
.home-stats-section { padding: 92px 0 34px; }
.home-stats-section::before { content: ""; position: absolute; width: 600px; height: 260px; right: 2%; top: 12%; opacity: .48; pointer-events: none; background: radial-gradient(ellipse, rgba(65,85,255,.2), transparent 69%); filter: blur(22px); animation: stats-ambient-drift 9s ease-in-out infinite; }
.home-stats-heading { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 70px; align-items: end; }
.home-stats-title { min-width: 0; }
.home-stats-heading .eyebrow { margin: 0 0 12px; color: #8295ff; }
.home-stats-heading h2 { margin: 0; color: #fff; font-size: clamp(1.55rem, 2.6vw, 2.35rem); line-height: 1.1; letter-spacing: -.04em; }
.home-stats-heading p { max-width: 560px; margin: 0 0 2px; color: #9aa8c6; font-size: .95rem; line-height: 1.65; }
.home-stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 40px; overflow: hidden; border-top: 1px solid rgba(103,125,229,.34); border-bottom: 1px solid rgba(103,125,229,.25); }
.home-stats-grid::before { content: ""; position: absolute; left: -22%; top: -1px; width: 24%; height: 2px; background: linear-gradient(90deg, transparent, #7d8cff, #55dfff, transparent); box-shadow: 0 0 18px rgba(85,223,255,.7); animation: stats-line-travel 5.8s ease-in-out infinite; }
.home-stat-card { --stat-accent: #6976ff; position: relative; min-width: 0; padding: 28px 30px 30px; opacity: 0; border-right: 1px solid rgba(103,125,229,.23); background: transparent; transform: translateY(18px); transition: opacity .58s ease var(--reveal-delay, 0ms), transform .58s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.home-stat-card:nth-child(2) { --stat-accent: #8b75ff; }
.home-stat-card:nth-child(3) { --stat-accent: #39d3d1; }
.home-stat-card:nth-child(4) { --stat-accent: #4f9dff; border-right: 0; }
.home-stats-section.is-visible .home-stat-card { opacity: 1; transform: none; }
.home-stat-card::before { content: ""; position: absolute; left: 30px; top: -4px; width: 8px; height: 8px; border: 2px solid #071633; border-radius: 50%; background: var(--stat-accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--stat-accent) 13%, transparent), 0 0 18px var(--stat-accent); }
.home-stat-icon { display: block; width: 29px; height: 29px; color: var(--stat-accent); filter: drop-shadow(0 0 11px color-mix(in srgb, var(--stat-accent) 45%, transparent)); }
.home-stat-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.home-stat-value { display: flex; align-items: baseline; margin-top: 18px; }
.home-stat-value strong { color: #fff; font-size: clamp(2.25rem, 3.6vw, 3.4rem); font-variant-numeric: tabular-nums; font-weight: 850; line-height: 1; letter-spacing: -.055em; text-shadow: 0 0 28px color-mix(in srgb, var(--stat-accent) 30%, transparent); }
.home-stat-card h3 { margin-top: 13px; color: #edf1fb; font-size: .92rem; line-height: 1.3; }
.home-stat-card p { margin-top: 6px; color: #8493b1; font-size: .75rem; line-height: 1.5; }
@keyframes stats-ambient-drift { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(-70px, 25px, 0) scale(1.08); } }
@keyframes stats-line-travel { 0% { left: -22%; opacity: 0; } 16%, 82% { opacity: 1; } 100% { left: 102%; opacity: 0; } }
.feature-showcase { position: relative; color: #fff; background: transparent; }
.feature-showcase { padding: 108px 0; }
.feature-symbols { position: absolute; width: 0; height: 0; overflow: hidden; }
.feature-showcase > .container, .operating-layer-section > .container, .mobility-showcase > .container, .driver-app-section > .container { position: relative; z-index: 1; }
.feature-showcase-head { max-width: 820px; margin: 0; text-align: left; }
.feature-showcase .eyebrow { color: #7b91ff; }
.feature-showcase-head h2 { margin-top: 0; font-size: clamp(1.75rem, 3.1vw, 2.9rem); line-height: 1.08; }
.feature-showcase-head p { max-width: 680px; margin: 18px 0 0; color: #9aa8c6; font-size: 1.02rem; line-height: 1.7; }
.platform-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 54px; }
.platform-feature-card { position: relative; isolation: isolate; display: flex; min-height: 276px; flex-direction: column; overflow: hidden; padding: 24px; border: 1px solid rgba(91,111,204,.34); border-radius: 20px; background: linear-gradient(145deg, rgba(15,31,72,.96), rgba(7,19,49,.96)); box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 20px 55px rgba(0,0,0,.12); transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease, background .35s ease; }
.platform-feature-card::before { content: ""; position: absolute; z-index: -1; width: 190px; height: 190px; right: -105px; top: -115px; opacity: 0; border-radius: 50%; background: rgba(72,80,255,.35); filter: blur(35px); transition: opacity .35s ease, transform .45s ease; }
.platform-feature-card:hover, .platform-feature-card:focus-within { transform: translateY(-7px); border-color: rgba(100,107,255,.72); background: linear-gradient(145deg, rgba(22,41,91,.98), rgba(9,23,57,.98)); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 28px 64px rgba(0,0,0,.3), 0 0 0 1px rgba(43,37,242,.16); }
.platform-feature-card:hover::before, .platform-feature-card:focus-within::before { opacity: 1; transform: translate3d(-24px, 24px, 0); }
.feature-icon { display: grid; place-items: center; width: 54px; height: 54px; color: #6672ff; border: 1px solid rgba(75,82,255,.48); border-radius: 16px; background: rgba(43,37,242,.14); transition: color .3s ease, background .3s ease, border-color .3s ease, transform .35s cubic-bezier(.2,.8,.2,1); }
.feature-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.platform-feature-card:hover .feature-icon, .platform-feature-card:focus-within .feature-icon { color: #fff; border-color: rgba(107,116,255,.9); background: linear-gradient(135deg, #5752ff, var(--brand)); transform: translateY(-2px) rotate(-3deg); }
.platform-feature-card h3 { margin-top: 22px; font-size: 1.04rem; line-height: 1.3; letter-spacing: -.02em; }
.platform-feature-card > p { margin: 11px 0 18px; color: #9ba8c4; font-size: .91rem; line-height: 1.6; }
.feature-link { position: relative; isolation: isolate; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; min-height: 39px; margin-top: auto; padding: 0 14px; overflow: hidden; color: #8490ff; border: 1px solid rgba(98,107,255,.34); border-radius: 999px; font-size: .86rem; font-weight: 800; transition: color .28s ease, border-color .28s ease, transform .28s ease, box-shadow .28s ease; }
.feature-link::before { content: ""; position: absolute; z-index: -1; inset: 0; transform: scaleX(0); transform-origin: left; background: linear-gradient(135deg, #5752ff, var(--brand)); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.feature-link svg { width: 16px; height: 16px; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.feature-link:hover, .feature-link:focus-visible { color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(43,37,242,.32); outline: none; }
.feature-link:hover::before, .feature-link:focus-visible::before { transform: scaleX(1); }
.feature-link:hover svg, .feature-link:focus-visible svg { transform: translateX(4px); }
.feature-showcase-action { display: flex; justify-content: center; margin-top: 44px; }
.feature-all-button { position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 23px; overflow: hidden; color: #fff; border: 1px solid rgba(98,107,255,.52); border-radius: 12px; background: rgba(10,23,54,.78); box-shadow: 0 0 0 0 rgba(43,37,242,0); font-size: .92rem; font-weight: 800; animation: feature-button-pulse 3.2s ease-in-out infinite; transition: color .3s ease, border-color .3s ease, transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease; }
.feature-all-button::before { content: ""; position: absolute; z-index: -1; inset: 0; transform: translateX(-102%); background: linear-gradient(110deg, var(--brand), #405dff 55%, #1ba6e8); transition: transform .38s cubic-bezier(.2,.8,.2,1); }
.feature-all-button svg { width: 18px; height: 18px; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.feature-all-button:hover, .feature-all-button:focus-visible { color: #fff; border-color: rgba(99,207,255,.72); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(43,37,242,.34); outline: none; }
.feature-all-button:hover::before, .feature-all-button:focus-visible::before { transform: translateX(0); }
.feature-all-button:hover svg, .feature-all-button:focus-visible svg { transform: translateX(5px); }
@keyframes feature-button-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43,37,242,0); }
  50% { box-shadow: 0 0 0 7px rgba(43,37,242,.08); }
}
@keyframes ambient-orb-left {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(150px, 80px, 0) scale(1.08); }
}
@keyframes ambient-orb-right {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-130px, -70px, 0) scale(1.1); }
}
@keyframes dark-flow-shift {
  from { background-position: 0% 0%; }
  to { background-position: 100% 72%; }
}

.section { padding: 112px 0; }
.section-soft { background: var(--surface); }
.section-dark { color: #fff; background: var(--navy); }
.section-heading { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { max-width: 720px; font-size: clamp(1.65rem, 2.8vw, 2.8rem); line-height: 1.1; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.section-dark .section-heading > p { color: rgba(255,255,255,.62); }
.eyebrow { display: block; margin-bottom: 17px; color: var(--brand); font-size: .78rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.section-dark .eyebrow { color: #7b91ff; }
.home-solutions .section-heading > p { color: #9aa8c6; }
.home-dark-flow > .section:last-child { padding-top: 18px; }
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.solution-card { --card-accent: #6976ff; --card-link: #a5adff; position: relative; isolation: isolate; display: flex; min-height: 372px; flex-direction: column; overflow: hidden; padding: 0 24px 24px; color: #fff; border: 1px solid rgba(105,118,255,.38); border-radius: 20px; background: linear-gradient(150deg, rgba(14,42,91,.98), rgba(4,17,43,.98)); box-shadow: inset 0 3px 0 var(--card-accent), inset 0 1px 0 rgba(255,255,255,.06), 0 20px 46px rgba(0,0,0,.18); transform-style: preserve-3d; transition: transform .38s cubic-bezier(.2,.8,.2,1), border-color .32s ease, box-shadow .38s ease, background .38s ease; }
.solution-card:nth-child(2) { --card-accent: #8775ff; --card-link: #c0b7ff; border-color: rgba(135,117,255,.46); background: linear-gradient(150deg, rgba(63,44,184,.98), rgba(20,18,84,.99)); }
.solution-card:nth-child(3) { --card-accent: #39d3d1; --card-link: #7ee8e6; border-color: rgba(57,211,209,.36); background: linear-gradient(150deg, rgba(7,70,91,.98), rgba(3,26,52,.99)); }
.solution-card:nth-child(4) { --card-accent: #4f9dff; --card-link: #83bdff; border-color: rgba(79,157,255,.38); background: linear-gradient(150deg, rgba(23,58,125,.98), rgba(10,25,65,.99)); }
.solution-card:hover, .solution-card:focus-visible { transform: translateY(-9px) rotateX(1.2deg); border-color: var(--card-accent); box-shadow: inset 0 3px 0 var(--card-accent), inset 0 1px 0 rgba(255,255,255,.1), 0 30px 62px rgba(0,0,0,.34), 0 0 34px rgba(70,86,255,.1); outline: none; }
.solution-card:nth-child(even):hover, .solution-card:nth-child(even):focus-visible { transform: translateY(-9px) rotateX(1.2deg) rotateZ(.35deg); }
.solution-card::before { content: ""; position: absolute; z-index: -1; width: 190px; height: 190px; right: -76px; bottom: -88px; color: var(--card-accent); opacity: .33; border: 1px solid currentColor; border-radius: 50%; background: radial-gradient(circle, currentColor 0%, transparent 66%); box-shadow: 0 0 0 34px rgba(255,255,255,.025); animation: solution-orb-float 7s ease-in-out infinite; transition: opacity .35s ease, transform .5s cubic-bezier(.2,.8,.2,1); }
.solution-card::after { content: ""; position: absolute; z-index: 1; width: 68px; height: 150%; left: -120px; top: -25%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent); transition: left .75s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.solution-card:hover::before, .solution-card:focus-visible::before { opacity: .52; transform: translate3d(-22px, -18px, 0) scale(1.08); }
.solution-card:hover::after, .solution-card:focus-visible::after { left: calc(100% + 70px); }
.solution-card > * { position: relative; z-index: 2; }
.solution-thumbnail { width: calc(100% + 48px); height: 132px; margin: 0 -24px; overflow: hidden; background: #061534; }
.solution-thumbnail::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,17,43,.82), transparent 64%), linear-gradient(90deg, rgba(3,12,32,.2), transparent 44%); pointer-events: none; }
.solution-thumbnail img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.94) contrast(1.06); transition: transform .75s cubic-bezier(.2,.8,.2,1), filter .45s ease; }
.solution-thumbnail-limousine img { object-position: 53% 67%; }
.solution-thumbnail-staff img { object-position: 58% 56%; }
.solution-thumbnail-tourism img { object-position: 64% 55%; }
.solution-thumbnail-corporate img { object-position: 68% 57%; }
.solution-card:hover .solution-thumbnail img, .solution-card:focus-visible .solution-thumbnail img { transform: scale(1.085); filter: saturate(1.12) brightness(1.06); }
.card-no { position: absolute; left: 15px; top: 15px; display: inline-flex; align-self: flex-start; padding: 7px 10px; color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(2,10,29,.68); box-shadow: 0 8px 24px rgba(0,0,0,.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.solution-card h3 { margin-top: 19px; font-size: 1.05rem; line-height: 1.24; }
.solution-card p { margin: 12px 0 20px; color: rgba(255,255,255,.62); font-size: .86rem; line-height: 1.6; }
.solution-card .text-link { margin-top: auto; color: var(--card-link); transition: color .25s ease; }
.solution-card:hover .text-link, .solution-card:focus-visible .text-link { color: #fff; }
@keyframes solution-orb-float {
  0%, 100% { translate: 0 0; }
  50% { translate: -10px -9px; }
}
.text-link { display: inline-flex; align-items: center; gap: 8px; color: inherit; font-size: .86rem; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.platform-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.platform-copy h2 { font-size: clamp(1.7rem, 3.08vw, 3rem); line-height: 1.1; }
.platform-copy > p { margin: 24px 0 0; color: rgba(255,255,255,.63); font-size: 1.02rem; line-height: 1.75; }
.feature-list { display: grid; gap: 11px; margin-top: 30px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.045); }
.feature-item b { display: block; font-size: .9rem; }
.feature-item span { display: block; margin-top: 4px; color: rgba(255,255,255,.49); font-size: .8rem; line-height: 1.5; }
.check { flex: 0 0 21px; display: grid; place-items: center; width: 21px; height: 21px; margin-top: 1px; color: #fff; border-radius: 6px; background: var(--brand); font-size: .72rem; }
.platform-product { min-width: 0; min-height: 500px; }
.platform-product .product-image { width: 108%; margin-left: -4%; }
.platform-product .hero-detail-tracking, .platform-product .hero-stat { right: 0; }
.platform-product .hero-detail-analytics { left: 0; }
.operating-layer-section { border-top: 0; }

.mobility-showcase > .container { width: min(1400px, calc(100% - 40px)); }
.mobility-showcase-head { max-width: 820px; margin: 0; text-align: left; }
.mobility-showcase-head h2 { font-size: clamp(1.75rem, 3.1vw, 2.9rem); line-height: 1.08; }
.mobility-showcase-head h2 span { color: #5d69ff; }
.mobility-showcase-head p { max-width: 720px; margin: 18px 0 0; color: #9aa8c6; font-size: 1.02rem; line-height: 1.7; }
.mobility-constellation { position: relative; min-height: 540px; margin-top: 34px; overflow: hidden; isolation: isolate; }
.mobility-constellation::before { content: ""; position: absolute; z-index: -2; left: 50%; top: 49%; width: 700px; height: 360px; border-radius: 50%; background: radial-gradient(ellipse, rgba(49,75,255,.2), rgba(23,84,161,.07) 42%, transparent 70%); filter: blur(25px); transform: translate(-50%, -50%); animation: mobility-ambient 7s ease-in-out infinite; }
.mobility-constellation::after { content: ""; position: absolute; z-index: -1; left: 50%; bottom: 2%; width: 78%; height: 34%; opacity: .14; background-image: linear-gradient(rgba(98,137,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(98,137,255,.35) 1px, transparent 1px); background-size: 42px 42px; transform: translateX(-50%) perspective(360px) rotateX(62deg); transform-origin: bottom center; -webkit-mask-image: linear-gradient(to top, #000, transparent 82%); mask-image: linear-gradient(to top, #000, transparent 82%); }
.mobility-orbit { position: absolute; z-index: -1; left: 50%; top: 49%; display: block; border: 1px dashed rgba(74,128,255,.2); border-radius: 50%; transform: translate(-50%, -50%); }
.mobility-orbit-one { width: 660px; height: 420px; animation: mobility-orbit 28s linear infinite; }
.mobility-orbit-two { width: 420px; height: 420px; border-color: rgba(64,210,255,.13); animation: mobility-orbit 20s linear infinite reverse; }
.mobility-links { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; overflow: visible; }
.mobility-links path { fill: none; stroke: rgba(80,160,255,.55); stroke-width: 1.4; stroke-dasharray: 3 9; stroke-linecap: round; filter: drop-shadow(0 0 5px rgba(59,174,255,.62)); animation: mobility-data-flow 8s linear infinite; }
.mobility-links path:nth-child(even) { stroke: rgba(87,225,255,.42); animation-direction: reverse; animation-duration: 10s; }
.mobility-hub { position: absolute; z-index: 3; left: 50%; top: 49%; display: grid; width: 176px; height: 176px; place-items: center; padding: 22px; color: #fff; border: 1px solid rgba(110,151,255,.62); border-radius: 50%; background: radial-gradient(circle at 35% 22%, rgba(55,93,211,.96), rgba(10,31,77,.98) 52%, #061329 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 0 0 10px rgba(65,95,255,.07), 0 0 0 26px rgba(52,86,228,.035), 0 25px 55px rgba(0,0,0,.35), 0 0 54px rgba(40,115,255,.28); text-align: center; transform: translate(-50%, -50%); transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease; }
.mobility-hub::before, .mobility-hub::after { content: ""; position: absolute; inset: -16px; border: 1px solid rgba(88,134,255,.22); border-radius: 50%; animation: mobility-hub-wave 3.8s ease-out infinite; }
.mobility-hub::after { animation-delay: -1.9s; }
.mobility-hub:hover, .mobility-hub:focus-visible { color: #fff; border-color: rgba(105,226,255,.92); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 0 0 12px rgba(65,95,255,.09), 0 28px 64px rgba(0,0,0,.38), 0 0 68px rgba(53,198,255,.36); outline: none; transform: translate(-50%, -50%) scale(1.05); }
.mobility-hub img { display: block; width: 140px; max-height: 76px; object-fit: contain; }
.mobility-hub small { display: block; margin-top: -18px; color: #9fb1d3; font-size: .58rem; font-weight: 800; letter-spacing: .09em; line-height: 1.3; text-transform: uppercase; }
.mobility-node { --node-accent: #6976ff; position: absolute; z-index: 2; display: flex; min-width: 205px; align-items: center; gap: 13px; color: #fff; transition: color .3s ease, transform .42s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.mobility-node:hover, .mobility-node:focus-visible { color: #fff; outline: none; transform: translateY(-7px) scale(1.04); filter: drop-shadow(0 16px 25px rgba(25,80,190,.28)); }
.mobility-node:nth-of-type(3n) { --node-accent: #39d3d1; }
.mobility-node:nth-of-type(3n + 1) { --node-accent: #8775ff; }
.mobility-node-icon { flex: 0 0 58px; display: grid; width: 58px; height: 58px; place-items: center; color: #aab5ff; border: 1px solid color-mix(in srgb, var(--node-accent) 58%, transparent); border-radius: 50%; background: radial-gradient(circle at 34% 27%, color-mix(in srgb, var(--node-accent) 28%, #102558), rgba(5,20,50,.96) 67%); box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 0 0 7px color-mix(in srgb, var(--node-accent) 6%, transparent), 0 12px 25px rgba(0,0,0,.24); transition: color .3s ease, transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.mobility-node:hover .mobility-node-icon, .mobility-node:focus-visible .mobility-node-icon { color: #fff; transform: rotate(-7deg) scale(1.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 0 0 9px color-mix(in srgb, var(--node-accent) 10%, transparent), 0 0 34px color-mix(in srgb, var(--node-accent) 45%, transparent); }
.mobility-node-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.mobility-node-copy { display: block; min-width: 0; }
.mobility-node-copy strong { display: block; max-width: 150px; font-size: .9rem; line-height: 1.35; }
.mobility-node-status { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; color: #20dc87; font-size: .66rem; font-weight: 800; letter-spacing: .02em; }
.mobility-node-status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(32,220,135,.07), 0 0 11px currentColor; }
.mobility-node-status.progress { color: #ffbd3d; }
.mobility-node-1 { left: 3%; top: 10%; }
.mobility-node-2 { left: 31%; top: 0; }
.mobility-node-3 { right: 3%; top: 11%; }
.mobility-node-4 { left: 4%; bottom: 11%; }
.mobility-node-5 { left: 62%; bottom: 1%; }
.mobility-node-6 { right: 2%; bottom: 13%; }
.mobility-data-pulse { position: absolute; z-index: 1; display: block; width: 7px; height: 7px; border: 1px solid #b9f5ff; border-radius: 50%; background: #53dcff; box-shadow: 0 0 13px #51d8ff; animation: mobility-pulse-drift 6s ease-in-out infinite; }
.mobility-data-pulse-one { left: 24%; top: 29%; }
.mobility-data-pulse-two { right: 25%; top: 28%; animation-delay: -2s; }
.mobility-data-pulse-three { left: 25%; bottom: 23%; animation-delay: -4s; }
.mobility-data-pulse-four { right: 23%; bottom: 24%; animation-delay: -1s; }
@keyframes mobility-data-flow { to { stroke-dashoffset: -72; } }
@keyframes mobility-orbit { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes mobility-ambient { 0%, 100% { opacity: .75; transform: translate(-50%, -50%) scale(.92); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); } }
@keyframes mobility-hub-wave { 0% { opacity: .7; transform: scale(.76); } 70%, 100% { opacity: 0; transform: scale(1.36); } }
@keyframes mobility-pulse-drift { 0%, 100% { opacity: .2; transform: translate3d(-15px,12px,0) scale(.7); } 50% { opacity: 1; transform: translate3d(30px,-24px,0) scale(1.15); } }
.integration-status { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; min-height: 36px; margin-top: auto; padding: 0 12px; color: #8ea0ff; border: 1px solid rgba(98,107,255,.48); border-radius: 999px; background: rgba(43,37,242,.11); font-size: .76rem; font-weight: 800; }
.integration-status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(98,107,255,.09); }
.integration-status.connected { color: #20dc87; border-color: rgba(32,220,135,.48); background: rgba(21,170,107,.1); }
.integration-status.progress { color: #ffbd3d; border-color: rgba(255,189,61,.55); background: rgba(255,177,31,.11); }
.mobility-showcase { border-top: 0; }
.driver-app-layout { display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); gap: 72px; align-items: center; }
.driver-app-visual { --phone-tilt-x: 0deg; --phone-tilt-y: 0deg; position: relative; width: min(100%, 620px); min-height: 520px; justify-self: center; isolation: isolate; perspective: 1300px; transform: rotateX(var(--phone-tilt-x)) rotateY(var(--phone-tilt-y)); transform-style: preserve-3d; transition: transform .22s ease-out; }
.driver-app-glow { position: absolute; z-index: -1; width: 88%; aspect-ratio: 1; left: 6%; top: 2%; border-radius: 50%; background: radial-gradient(circle, rgba(43,37,242,.4), rgba(54,217,255,.09) 42%, transparent 72%); filter: blur(25px); animation: driver-glow 6s ease-in-out infinite; }
.driver-phone { position: absolute; width: min(45%, 230px); margin: 0; opacity: 1; cursor: default; transform-style: preserve-3d; will-change: transform, opacity; transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.driver-phone-home { z-index: 3; left: 10%; top: 0; transform: translate3d(-20px, -4px, 18px) rotateY(8deg) rotateZ(-4deg); }
.driver-phone-earnings { z-index: 2; right: 10%; top: 24px; width: min(42%, 216px); transform: translate3d(18px, 18px, 0) rotateY(-10deg) rotateZ(3deg); }
.driver-phone-shell { position: relative; display: block; padding: 8px; border: 1px solid rgba(145,173,255,.55); border-radius: 39px; background: linear-gradient(145deg, #17274a 0%, #060c1a 48%, #294a83 100%); box-shadow: inset 0 1px 1px rgba(255,255,255,.42), inset 0 -1px 1px rgba(0,0,0,.85), 0 30px 48px rgba(0,0,0,.42), 0 0 0 2px rgba(5,10,23,.82); transform-style: preserve-3d; }
.driver-phone-shell::before, .driver-phone-shell::after { content: ""; position: absolute; z-index: 4; width: 3px; border-radius: 3px; background: linear-gradient(#6287c7, #111b31); box-shadow: 0 1px 1px rgba(255,255,255,.24); }
.driver-phone-shell::before { left: -5px; top: 23%; height: 52px; }
.driver-phone-shell::after { right: -5px; top: 18%; height: 68px; }
.driver-phone-speaker { position: absolute; z-index: 5; top: 13px; left: 50%; width: 32%; height: 7px; transform: translateX(-50%); border-radius: 999px; background: #030711; box-shadow: inset 0 1px 1px rgba(255,255,255,.1), 0 1px 3px rgba(0,0,0,.55); }
.driver-phone-screen { display: block; overflow: hidden; aspect-ratio: 738 / 1600; border: 1px solid rgba(255,255,255,.08); border-radius: 31px; background: #f5f6fb; box-shadow: inset 0 0 0 1px rgba(0,0,0,.35); }
.driver-phone-screen img { display: block; width: 100%; height: 100%; object-fit: cover; }
.driver-app-visual.is-animated:not(.is-visible) .driver-phone-home { opacity: 0; transform: translate3d(-92px, 24px, -70px) rotateY(82deg) rotateZ(-9deg) scale(.86); }
.driver-app-visual.is-animated:not(.is-visible) .driver-phone-earnings { opacity: 0; transform: translate3d(92px, 42px, -80px) rotateY(-82deg) rotateZ(9deg) scale(.86); }
.driver-app-visual.is-visible .driver-phone-home { animation: phone-flip-in-left 1.05s cubic-bezier(.18,.86,.22,1) .06s backwards; }
.driver-app-visual.is-visible .driver-phone-earnings { animation: phone-flip-in-right 1.08s cubic-bezier(.18,.86,.22,1) .2s backwards; }
.driver-phone-home:hover { z-index: 6; transform: translate3d(-23px, -18px, 54px) rotateY(-2deg) rotateZ(-3deg) scale(1.025); filter: drop-shadow(0 22px 25px rgba(43,37,242,.2)); }
.driver-phone-earnings:hover { z-index: 6; transform: translate3d(15px, 2px, 54px) rotateY(2deg) rotateZ(2deg) scale(1.025); filter: drop-shadow(0 22px 25px rgba(54,217,255,.14)); }
.driver-app-copy h2 { max-width: 670px; font-size: clamp(1.75rem, 3.1vw, 2.9rem); line-height: 1.08; }
.driver-app-copy > p { max-width: 680px; margin: 22px 0 0; color: #9aa8c6; font-size: 1.02rem; line-height: 1.7; }
.driver-capability-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 30px; margin-top: 34px; }
.driver-capability-grid > span { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.88); font-size: .94rem; font-weight: 650; }
.driver-capability-grid i { flex: 0 0 20px; display: grid; place-items: center; width: 20px; height: 20px; color: #fff; border-radius: 50%; background: linear-gradient(135deg, #6673ff, var(--brand)); box-shadow: 0 0 0 5px rgba(88,98,255,.08); font-size: .68rem; font-style: normal; }
.driver-app-copy .btn { margin-top: 38px; }
.app-store-downloads { display: grid; gap: 11px; width: min(100%, 420px); margin-top: 25px; }
.app-store-download-label { color: #8392b2; font-size: .68rem; font-weight: 800; line-height: 1.3; text-transform: uppercase; letter-spacing: .12em; }
.app-store-badge-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.app-store-badge { position: relative; display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 10px; min-height: 60px; align-items: center; overflow: hidden; padding: 9px 12px; color: #fff; border: 1px solid rgba(132,151,232,.38); border-radius: 13px; background: linear-gradient(145deg, rgba(12,25,58,.96), rgba(3,9,24,.98)); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 14px 28px rgba(0,0,0,.18); }
.app-store-badge::after { content: ""; position: absolute; width: 76px; height: 76px; right: -48px; top: -45px; border-radius: 50%; background: rgba(76,101,255,.24); filter: blur(15px); }
.app-store-badge svg { display: block; width: 28px; height: 32px; filter: drop-shadow(0 5px 10px rgba(0,0,0,.28)); }
.app-store-badge > span { position: relative; z-index: 1; display: block; min-width: 0; }
.app-store-badge small, .app-store-badge strong { display: block; }
.app-store-badge small { color: #98a6c2; font-size: .51rem; font-weight: 750; line-height: 1.15; text-transform: uppercase; letter-spacing: .075em; }
.app-store-badge strong { margin-top: 3px; color: #f7f9ff; font-size: .98rem; font-weight: 800; line-height: 1.05; letter-spacing: -.025em; }
.app-store-badge.is-pending { cursor: default; }
.driver-always-copy .app-store-downloads { margin-top: 28px; }
.driver-always-copy .page-actions { margin-top: 24px; }
@keyframes phone-flip-in-left {
  from { opacity: 0; transform: translate3d(-92px, 24px, -70px) rotateY(82deg) rotateZ(-9deg) scale(.86); }
  68% { opacity: 1; transform: translate3d(-12px, -11px, 28px) rotateY(-5deg) rotateZ(-3deg) scale(1.018); }
  to { opacity: 1; transform: translate3d(-20px, -4px, 18px) rotateY(8deg) rotateZ(-4deg) scale(1); }
}
@keyframes phone-flip-in-right {
  from { opacity: 0; transform: translate3d(92px, 42px, -80px) rotateY(-82deg) rotateZ(9deg) scale(.86); }
  70% { opacity: 1; transform: translate3d(10px, 9px, 22px) rotateY(5deg) rotateZ(2deg) scale(1.016); }
  to { opacity: 1; transform: translate3d(18px, 18px, 0) rotateY(-10deg) rotateZ(3deg) scale(1); }
}
@keyframes driver-glow {
  0%, 100% { opacity: .7; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Dedicated Driver App platform page */
.driver-platform-page { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 88% 8%, rgba(57,83,255,.19), transparent 24%), radial-gradient(circle at 7% 51%, rgba(54,217,255,.07), transparent 20%), linear-gradient(155deg, #020817 0%, #071633 48%, #020817 100%); }
.driver-platform-page > .section { color: #fff; background: transparent; }
.driver-page-hero { position: relative; isolation: isolate; min-height: 790px; overflow: hidden; padding: 126px 0 82px; }
.driver-page-hero::before { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .16; background-image: linear-gradient(rgba(89,118,216,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(89,118,216,.18) 1px, transparent 1px); background-size: 68px 68px; -webkit-mask-image: linear-gradient(to bottom, #000, transparent 84%); mask-image: linear-gradient(to bottom, #000, transparent 84%); }
.driver-page-hero::after { content: ""; position: absolute; z-index: -1; width: 650px; height: 650px; right: -250px; top: -220px; border-radius: 50%; background: rgba(54,217,255,.08); filter: blur(110px); animation: driver-page-ambient 10s ease-in-out infinite; }
.driver-page-hero > .container { position: relative; z-index: 2; }
.driver-page-hero .breadcrumb { margin-bottom: 35px; }
.driver-page-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); gap: 52px; align-items: center; }
.driver-page-copy { position: relative; z-index: 4; }
.driver-page-copy h1 { max-width: 620px; margin-top: 17px; font-size: clamp(2.25rem, 3.85vw, 3.6rem); line-height: 1.04; letter-spacing: -.05em; }
.driver-page-copy > p { max-width: 590px; margin: 24px 0 0; color: #9eabc5; font-size: 1rem; line-height: 1.75; }
.driver-play-icon { display: grid; width: 24px; height: 24px; place-items: center; padding-left: 2px; color: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: .57rem; }
.driver-page-promises { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 21px 24px; margin-top: 40px; }
.driver-page-promises > div { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 11px; align-items: start; }
.driver-page-promises svg { width: 25px; height: 25px; color: #6678ff; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 10px rgba(91,110,255,.38)); }
.driver-page-promises b { display: block; color: #f4f7fd; font-size: .84rem; line-height: 1.35; }
.driver-page-promises small { display: block; margin-top: 4px; color: #8190af; font-size: .72rem; line-height: 1.45; }
.driver-page-phone-stage { width: min(100%, 620px); min-height: 565px; margin-right: -15px; }
.driver-page-phone-stage::before { content: ""; position: absolute; z-index: -2; left: 6%; right: 3%; top: 8%; height: 73%; border: 1px solid rgba(92,119,221,.18); border-radius: 50%; background: radial-gradient(circle, rgba(30,85,196,.22), rgba(3,15,39,.04) 56%, transparent 72%); transform: perspective(700px) rotateX(68deg) scaleY(1.45); }
.driver-page-phone-stage .driver-app-glow { left: 1%; top: 1%; width: 98%; }
.driver-page-phone-stage .driver-phone-home { left: 13%; top: 16px; }
.driver-page-phone-stage .driver-phone-earnings { right: 13%; top: 45px; }
.driver-page-orbit { position: absolute; z-index: -1; display: block; border: 1px dashed rgba(88,138,255,.25); border-radius: 50%; animation: driver-page-orbit 22s linear infinite; }
.driver-page-orbit-one { left: 4%; top: 5%; width: 84%; height: 78%; transform: rotate(-10deg); }
.driver-page-orbit-two { right: 3%; top: 18%; width: 61%; height: 58%; border-color: rgba(54,217,255,.15); animation-duration: 17s; animation-direction: reverse; }
.driver-page-floor { position: absolute; z-index: -2; left: 5%; right: 0; bottom: 4%; height: 35%; opacity: .23; background-image: linear-gradient(rgba(90,132,255,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(90,132,255,.45) 1px, transparent 1px); background-size: 37px 37px; transform: perspective(390px) rotateX(65deg); transform-origin: bottom center; -webkit-mask-image: radial-gradient(ellipse, #000, transparent 72%); mask-image: radial-gradient(ellipse, #000, transparent 72%); }
.driver-page-float { position: absolute; z-index: 7; display: grid; min-width: 142px; padding: 12px 14px 12px 34px; color: #fff; border: 1px solid rgba(100,128,227,.46); border-radius: 13px; background: rgba(7,23,58,.86); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 38px rgba(0,0,0,.3); backdrop-filter: blur(14px); animation: driver-page-float 5s ease-in-out infinite; }
.driver-page-float i { position: absolute; left: 14px; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: #20dc87; box-shadow: 0 0 0 5px rgba(32,220,135,.08), 0 0 13px rgba(32,220,135,.68); }
.driver-page-float small { color: #8493b3; font-size: .63rem; line-height: 1.3; }
.driver-page-float b { margin-top: 4px; font-size: .74rem; line-height: 1.3; }
.driver-page-float-trip { left: 0; bottom: 17%; }
.driver-page-float-live { right: -1%; top: 19%; animation-delay: -2.4s; }
.driver-page-particles { position: absolute; z-index: 1; inset: 76px 0 0; overflow: hidden; pointer-events: none; }
.driver-page-particle { position: absolute; width: 5px; height: 5px; border-radius: 50%; opacity: .66; background: #65dcff; box-shadow: 0 0 14px rgba(69,211,255,.9); animation: driver-page-particle 7s ease-in-out infinite; }
.driver-page-particle:nth-child(3n) { width: 3px; height: 3px; background: #7787ff; animation-duration: 8.4s; }
.driver-page-particle-1 { left: 4%; top: 17%; }.driver-page-particle-2 { left: 23%; top: 8%; animation-delay: -3s; }.driver-page-particle-3 { left: 47%; top: 21%; animation-delay: -5s; }
.driver-page-particle-4 { right: 38%; top: 7%; animation-delay: -1.5s; }.driver-page-particle-5 { right: 18%; top: 20%; animation-delay: -4.4s; }.driver-page-particle-6 { right: 4%; top: 48%; animation-delay: -6.2s; }
.driver-page-particle-7 { right: 29%; bottom: 11%; animation-delay: -2.1s; }.driver-page-particle-8 { left: 39%; bottom: 18%; animation-delay: -5.4s; }.driver-page-particle-9 { left: 9%; bottom: 26%; animation-delay: -.8s; }
.driver-page-particle-10 { right: 8%; bottom: 8%; animation-delay: -3.8s; }.driver-page-particle-11 { left: 55%; top: 48%; animation-delay: -1.2s; }.driver-page-particle-12 { left: 31%; top: 46%; animation-delay: -6s; }

.driver-feature-section { position: relative; padding: 110px 0; border-top: 1px solid rgba(89,111,205,.13); scroll-margin-top: 76px; }
.driver-feature-section::before { content: ""; position: absolute; right: -180px; top: 6%; width: 520px; height: 520px; border-radius: 50%; background: rgba(43,37,242,.1); filter: blur(110px); pointer-events: none; }
.driver-section-heading { position: relative; z-index: 1; max-width: 760px; }
.driver-section-heading h2 { max-width: 720px; margin-top: 13px; font-size: clamp(1.75rem, 3.1vw, 2.9rem); line-height: 1.08; letter-spacing: -.04em; }
.driver-section-heading p { max-width: 650px; margin: 18px 0 0; color: #9aa8c6; font-size: .96rem; line-height: 1.7; }
.driver-feature-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; margin-top: 48px; }
.driver-feature-card { --driver-card-accent: #6976ff; position: relative; min-height: 226px; overflow: hidden; padding: 22px; border: 1px solid rgba(105,118,255,.34); border-radius: 17px; background: linear-gradient(145deg, rgba(14,42,91,.88), rgba(4,17,43,.94)); box-shadow: inset 3px 0 0 var(--driver-card-accent), inset 0 1px 0 rgba(255,255,255,.05), 0 15px 32px rgba(0,0,0,.15); transition: transform .34s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .34s ease, background .3s ease; }
.driver-feature-card:nth-child(4n + 2) { --driver-card-accent: #8775ff; border-color: rgba(135,117,255,.36); background: linear-gradient(145deg, rgba(62,44,177,.7), rgba(19,18,79,.94)); }
.driver-feature-card:nth-child(4n + 3) { --driver-card-accent: #39d3d1; border-color: rgba(57,211,209,.3); background: linear-gradient(145deg, rgba(7,67,88,.82), rgba(3,25,50,.95)); }
.driver-feature-card:nth-child(4n + 4) { --driver-card-accent: #4f9dff; border-color: rgba(79,157,255,.32); background: linear-gradient(145deg, rgba(23,57,122,.84), rgba(9,24,62,.95)); }
.driver-feature-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -82px; top: -88px; border-radius: 50%; background: var(--driver-card-accent); opacity: .1; filter: blur(22px); transition: opacity .3s ease, transform .4s ease; }
.driver-feature-card:hover { transform: translateY(-8px); border-color: var(--driver-card-accent); box-shadow: inset 3px 0 0 var(--driver-card-accent), inset 0 1px 0 rgba(255,255,255,.09), 0 24px 48px rgba(0,0,0,.25); }
.driver-feature-card:hover::after { opacity: .22; transform: scale(1.25); }
.driver-feature-icon { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; place-items: center; color: #9eabff; border: 1px solid color-mix(in srgb, var(--driver-card-accent) 55%, transparent); border-radius: 14px; background: color-mix(in srgb, var(--driver-card-accent) 12%, transparent); transition: color .3s ease, transform .36s cubic-bezier(.2,.8,.2,1), background .3s ease; }
.driver-feature-card:hover .driver-feature-icon { color: #fff; background: var(--driver-card-accent); transform: rotate(-5deg) scale(1.08); }
.driver-feature-icon svg { width: 25px; height: 25px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.driver-feature-card h3 { position: relative; z-index: 1; margin-top: 35px; font-size: .94rem; line-height: 1.35; }
.driver-feature-card p { position: relative; z-index: 1; margin-top: 11px; color: #8f9dbb; font-size: .78rem; line-height: 1.6; }

.driver-always-section { position: relative; padding: 96px 0 112px; border-top: 1px solid rgba(89,111,205,.13); }
.driver-always-layout { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 85px; align-items: center; }
.driver-always-copy h2 { max-width: 560px; margin-top: 13px; font-size: clamp(1.75rem, 3.1vw, 2.9rem); line-height: 1.08; letter-spacing: -.04em; }
.driver-always-copy > p { max-width: 560px; margin: 20px 0 0; color: #9aa8c6; font-size: .96rem; line-height: 1.72; }
.driver-reliability-list { border-top: 1px solid rgba(100,121,211,.3); border-bottom: 1px solid rgba(100,121,211,.3); }
.driver-reliability-list article { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(100,121,211,.22); transition: transform .3s ease, border-color .3s ease; }
.driver-reliability-list article:last-child { border-bottom: 0; }
.driver-reliability-list article:hover { border-color: rgba(105,119,255,.6); transform: translateX(7px); }
.driver-reliability-list article > span { display: grid; width: 50px; height: 50px; place-items: center; color: #8493ff; border: 1px solid rgba(102,119,255,.38); border-radius: 14px; background: rgba(43,37,242,.1); }
.driver-reliability-list svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.driver-reliability-list h3 { font-size: .97rem; line-height: 1.35; }
.driver-reliability-list p { margin: 7px 0 0; color: #8e9cba; font-size: .82rem; line-height: 1.6; }
@keyframes driver-page-orbit { to { transform: rotate(360deg); } }
@keyframes driver-page-float { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-10px,18px); } }
@keyframes driver-page-particle { 0%, 100% { opacity: .25; transform: translate3d(0,0,0); } 50% { opacity: .92; transform: translate3d(19px,-28px,0); } }
@keyframes driver-page-ambient { 0%, 100% { opacity: .7; transform: translate3d(0,0,0) scale(.94); } 50% { opacity: 1; transform: translate3d(-65px,40px,0) scale(1.08); } }

/* Dedicated Operations Platform page */
.operations-platform-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 87% 8%, rgba(57,83,255,.2), transparent 24%),
    radial-gradient(circle at 5% 52%, rgba(54,217,255,.065), transparent 21%),
    radial-gradient(circle at 83% 82%, rgba(43,37,242,.12), transparent 24%),
    linear-gradient(155deg, #020817 0%, #071633 48%, #020817 100%);
}
.operations-platform-page::before,
.operations-platform-page::after { content: ""; position: absolute; z-index: -1; width: 610px; height: 610px; border-radius: 50%; pointer-events: none; filter: blur(120px); }
.operations-platform-page::before { left: -330px; top: 32%; background: rgba(75,78,255,.12); }
.operations-platform-page::after { right: -320px; bottom: 8%; background: rgba(54,217,255,.07); }
.operations-platform-page > .section { position: relative; color: #fff; background: transparent; }
.operations-page-hero { position: relative; isolation: isolate; min-height: 790px; overflow: hidden; padding: 126px 0 86px; }
.operations-page-hero::before { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .15; background-image: linear-gradient(rgba(89,118,216,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(89,118,216,.18) 1px, transparent 1px); background-size: 68px 68px; -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%); mask-image: linear-gradient(to bottom, #000, transparent 88%); }
.operations-page-hero::after { content: ""; position: absolute; z-index: -1; width: 670px; height: 670px; right: -240px; top: -240px; border-radius: 50%; background: rgba(54,217,255,.075); filter: blur(115px); animation: operations-ambient 11s ease-in-out infinite; }
.operations-page-hero > .container { position: relative; z-index: 2; }
.operations-page-hero .breadcrumb { margin-bottom: 34px; }
.operations-page-hero-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr); gap: 44px; align-items: center; }
.operations-page-copy { position: relative; z-index: 5; }
.operations-page-copy h1 { max-width: 620px; margin-top: 17px; font-size: clamp(2.2rem, 3.8vw, 3.55rem); line-height: 1.04; letter-spacing: -.05em; }
.operations-page-copy > p { max-width: 590px; margin: 24px 0 0; color: #9eabc5; font-size: 1rem; line-height: 1.75; }
.operations-hero-capabilities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; margin-top: 37px; color: #c5cfe3; font-size: .78rem; line-height: 1.45; }
.operations-hero-capabilities span { display: flex; align-items: center; gap: 9px; }
.operations-hero-capabilities i { flex: 0 0 7px; width: 7px; height: 7px; border-radius: 50%; background: #5f74ff; box-shadow: 0 0 0 5px rgba(95,116,255,.09), 0 0 14px rgba(95,116,255,.58); }
.operations-hero-stage { --operations-tilt-x: 0deg; --operations-tilt-y: 0deg; position: relative; z-index: 2; width: min(100%, 720px); min-height: 560px; justify-self: end; isolation: isolate; perspective: 1400px; transform: rotateX(var(--operations-tilt-x)) rotateY(var(--operations-tilt-y)); transform-style: preserve-3d; transition: transform .24s ease-out; }
.operations-stage-glow { position: absolute; z-index: -3; left: 4%; top: 4%; width: 94%; height: 78%; border-radius: 50%; background: radial-gradient(circle, rgba(45,90,255,.3), rgba(27,69,189,.12) 45%, transparent 72%); filter: blur(30px); animation: operations-glow 7s ease-in-out infinite; }
.operations-stage-orbit { position: absolute; z-index: -2; display: block; border: 1px dashed rgba(88,138,255,.22); border-radius: 50%; animation: operations-orbit 23s linear infinite; }
.operations-stage-orbit-one { left: 2%; top: 2%; width: 95%; height: 82%; transform: rotate(-8deg); }
.operations-stage-orbit-two { right: -2%; top: 18%; width: 67%; height: 59%; border-color: rgba(54,217,255,.14); animation-duration: 18s; animation-direction: reverse; }
.operations-stage-floor { position: absolute; z-index: -2; left: 0; right: -4%; bottom: 2%; height: 38%; opacity: .25; background-image: linear-gradient(rgba(90,132,255,.44) 1px, transparent 1px), linear-gradient(90deg, rgba(90,132,255,.44) 1px, transparent 1px); background-size: 39px 39px; transform: perspective(390px) rotateX(65deg); transform-origin: bottom center; -webkit-mask-image: radial-gradient(ellipse, #000, transparent 72%); mask-image: radial-gradient(ellipse, #000, transparent 72%); }
.operations-hero-dashboard { position: absolute; z-index: 3; left: -5%; top: 38px; width: 112%; margin: 0; overflow: visible; transform: translate3d(0,0,40px) rotateY(-9deg) rotateX(3deg) rotateZ(-.45deg); transform-origin: 48% 54%; transform-style: preserve-3d; animation: operations-dashboard-float 7s ease-in-out infinite; transition: opacity .7s ease, filter .7s ease; }
.operations-laptop-screen { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; padding: 10px; border: 1px solid rgba(146,165,220,.7); border-radius: 24px 24px 10px 10px; background: linear-gradient(145deg, #46536a 0%, #111a2b 12%, #020713 52%, #27334a 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 0 0 2px rgba(0,0,0,.62), 0 34px 65px rgba(0,0,0,.48), 0 0 55px rgba(64,98,255,.2); transform: translateZ(18px); }
.operations-laptop-screen::after { content: ""; position: absolute; z-index: 3; inset: 10px; border-radius: 15px 15px 5px 5px; background: linear-gradient(110deg, transparent 0%, transparent 37%, rgba(255,255,255,.1) 49%, transparent 60%, transparent 100%); transform: translateX(-115%); animation: operations-dashboard-shine 6.5s ease-in-out 1.4s infinite; pointer-events: none; }
.operations-laptop-camera { position: absolute; z-index: 4; left: 50%; top: 3px; width: 4px; height: 4px; transform: translateX(-50%); border-radius: 50%; background: #11192a; box-shadow: 0 0 0 1px rgba(125,153,225,.28), 0 0 5px rgba(69,123,255,.7); }
.operations-laptop-screen img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; border-radius: 15px 15px 5px 5px; }
.operations-laptop-base { position: relative; display: block; width: 112%; height: 25px; left: -6%; margin-top: -1px; border: 1px solid rgba(188,200,225,.7); border-radius: 3px 3px 19px 19px; background: linear-gradient(180deg, #d5dbe6 0%, #8f9bae 18%, #445066 54%, #202a3b 78%, #0b1220 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 23px 28px rgba(0,0,0,.42), 0 4px 0 #070c15; transform: translateZ(9px) rotateX(-54deg); transform-origin: top center; }
.operations-laptop-base::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: -8px; height: 9px; border-radius: 0 0 14px 14px; background: linear-gradient(180deg, #354054, #0b111d); box-shadow: 0 8px 18px rgba(0,0,0,.42); }
.operations-laptop-base > i { position: absolute; left: 50%; top: 3px; width: 17%; height: 5px; transform: translateX(-50%); border-radius: 0 0 8px 8px; background: linear-gradient(180deg, rgba(17,26,42,.75), rgba(132,145,169,.34)); box-shadow: inset 0 1px 2px rgba(0,0,0,.48); }
.operations-hero-stage.is-animated:not(.is-visible) .operations-hero-dashboard { opacity: 0; filter: blur(8px); animation: none; transform: translate3d(100px,36px,-80px) rotateY(-38deg) rotateX(8deg) scale(.86); }
.operations-stage-status { position: absolute; z-index: 7; right: -1%; bottom: 7%; display: flex; min-width: 185px; align-items: center; gap: 12px; padding: 13px 15px; color: #fff; border: 1px solid rgba(98,127,226,.46); border-radius: 14px; background: rgba(7,23,58,.88); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 42px rgba(0,0,0,.32); backdrop-filter: blur(14px); animation: operations-status-float 5s ease-in-out infinite; }
.operations-stage-status > i { flex: 0 0 10px; width: 10px; height: 10px; border-radius: 50%; background: #20dc87; box-shadow: 0 0 0 6px rgba(32,220,135,.08), 0 0 15px rgba(32,220,135,.7); }
.operations-stage-status small, .operations-stage-status b { display: block; }
.operations-stage-status small { color: #8393b2; font-size: .62rem; line-height: 1.3; }
.operations-stage-status b { margin-top: 4px; font-size: .76rem; line-height: 1.3; }
.operations-hero-particles { position: absolute; z-index: 1; inset: 76px 0 0; overflow: hidden; pointer-events: none; }
.operations-hero-particle { position: absolute; width: 5px; height: 5px; border-radius: 50%; opacity: .62; background: #65dcff; box-shadow: 0 0 14px rgba(69,211,255,.9); animation: operations-particle 7.4s ease-in-out infinite; }
.operations-hero-particle:nth-child(3n) { width: 3px; height: 3px; background: #7787ff; animation-duration: 8.8s; }
.operations-hero-particle-1 { left: 4%; top: 18%; }.operations-hero-particle-2 { left: 22%; top: 7%; animation-delay: -3s; }.operations-hero-particle-3 { left: 46%; top: 22%; animation-delay: -5s; }
.operations-hero-particle-4 { right: 38%; top: 8%; animation-delay: -1.5s; }.operations-hero-particle-5 { right: 17%; top: 21%; animation-delay: -4.4s; }.operations-hero-particle-6 { right: 4%; top: 49%; animation-delay: -6.2s; }
.operations-hero-particle-7 { right: 28%; bottom: 11%; animation-delay: -2.1s; }.operations-hero-particle-8 { left: 39%; bottom: 18%; animation-delay: -5.4s; }.operations-hero-particle-9 { left: 9%; bottom: 26%; animation-delay: -.8s; }
.operations-hero-particle-10 { right: 8%; bottom: 8%; animation-delay: -3.8s; }.operations-hero-particle-11 { left: 55%; top: 48%; animation-delay: -1.2s; }.operations-hero-particle-12 { left: 31%; top: 46%; animation-delay: -6s; }
.operations-modules-section { padding: 108px 0; border-top: 1px solid rgba(89,111,205,.14); scroll-margin-top: 76px; }
.operations-modules-section .section-heading h2 { color: #fff; }
.operations-modules-section .section-heading > p { color: #9aa8c6; }
.operations-platform-page > .section:last-child { padding-top: 28px; }
@keyframes operations-orbit { to { transform: rotate(360deg); } }
@keyframes operations-glow { 0%, 100% { opacity: .7; transform: scale(.95); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes operations-particle { 0%, 100% { opacity: .25; transform: translate3d(0,0,0); } 50% { opacity: .92; transform: translate3d(20px,-28px,0); } }
@keyframes operations-ambient { 0%, 100% { opacity: .7; transform: translate3d(0,0,0) scale(.94); } 50% { opacity: 1; transform: translate3d(-60px,38px,0) scale(1.08); } }
@keyframes operations-dashboard-float { 0%, 100% { transform: translate3d(0,0,40px) rotateY(-9deg) rotateX(3deg) rotateZ(-.45deg); } 50% { transform: translate3d(0,-11px,58px) rotateY(-7deg) rotateX(2deg) rotateZ(-.2deg); } }
@keyframes operations-dashboard-shine { 0%, 62% { transform: translateX(-115%); opacity: 0; } 72% { opacity: 1; } 90%, 100% { transform: translateX(115%); opacity: 0; } }
@keyframes operations-status-float { 0%, 100% { transform: translate3d(0,0,70px); } 50% { transform: translate3d(0,-9px,82px); } }

@media (max-width: 1040px) {
  .operations-page-hero-grid { grid-template-columns: minmax(0, .88fr) minmax(455px, 1.12fr); gap: 28px; }
  .operations-hero-stage { min-height: 455px; }
  .operations-hero-dashboard { top: 58px; }
}

@media (max-width: 820px) {
  .operations-page-hero { min-height: auto; padding: 116px 0 74px; }
  .operations-page-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .operations-page-copy { max-width: 720px; }
  .operations-hero-stage { width: min(100%, 700px); min-height: 535px; justify-self: center; }
  .operations-hero-dashboard { left: 0; width: 100%; transform: translate3d(0,0,40px) rotateY(-5deg) rotateX(2deg); }
}

@media (max-width: 620px) {
  .operations-page-hero { padding: 105px 0 58px; }
  .operations-page-hero .breadcrumb { margin-bottom: 27px; }
  .operations-page-copy h1 { font-size: 2rem; }
  .operations-page-copy > p { font-size: .94rem; }
  .operations-hero-capabilities { grid-template-columns: 1fr; gap: 10px; margin-top: 31px; }
  .operations-hero-stage { min-height: 355px; }
  .operations-hero-dashboard { top: 32px; }
  .operations-laptop-screen { padding: 6px; border-radius: 17px 17px 7px 7px; }
  .operations-laptop-screen::after { inset: 6px; border-radius: 11px 11px 4px 4px; }
  .operations-laptop-screen img { border-radius: 11px 11px 4px 4px; }
  .operations-laptop-base { height: 18px; border-radius: 2px 2px 13px 13px; }
  .operations-stage-status { display: none; }
  .operations-stage-orbit-one { height: 76%; }
  .operations-stage-floor { bottom: -2%; }
  .operations-modules-section { padding: 78px 0; }
}

.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 58px; color: #fff; border-radius: 24px; background: radial-gradient(circle at 85% 30%, rgba(54,217,255,.18), transparent 28%), linear-gradient(135deg, var(--brand), #151068); box-shadow: 0 28px 70px rgba(43,37,242,.25); }
.cta-band h2 { max-width: 760px; font-size: clamp(1.5rem, 2.66vw, 2.55rem); line-height: 1.1; }
.cta-band p { max-width: 680px; margin: 16px 0 0; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.65; }

.page-hero { position: relative; overflow: hidden; padding: 145px 0 88px; color: #fff; background: radial-gradient(circle at 84% 30%, rgba(43,37,242,.38), transparent 28%), var(--navy); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(94,115,184,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(94,115,184,.12) 1px, transparent 1px); background-size: 64px 64px; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 25px; color: rgba(255,255,255,.48); font-size: .8rem; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { max-width: 860px; font-size: clamp(2.05rem, 3.85vw, 3.6rem); }
.page-hero p { max-width: 720px; margin: 25px 0 0; color: rgba(255,255,255,.66); font-size: 1.08rem; line-height: 1.75; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-card { min-height: 245px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 14px 34px rgba(3,12,32,.045); }
.info-card .card-index { display: block; margin-bottom: 65px; color: var(--brand); font-size: .75rem; font-weight: 850; letter-spacing: .1em; }
.info-card h3 { font-size: 1rem; line-height: 1.32; }
.info-card p { margin: 13px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.feature-detail-card { display: flex; flex-direction: column; }
.feature-detail-card .card-index { margin-bottom: 44px; }
.feature-detail-card .text-link { margin-top: auto; padding-top: 22px; color: var(--brand); }
.outcome-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 40px; }
.outcome { display: flex; gap: 13px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.outcome .check { margin-top: 2px; }
.outcome b { display: block; font-size: .92rem; }
.outcome p { margin: 5px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.solution-quote-section { overflow: hidden; background: #fff; }
.solution-quote-section .quote-block { position: relative; isolation: isolate; overflow: hidden; padding: clamp(38px, 5vw, 62px); color: var(--ink); border: 1px solid #dfe5f1; border-radius: 24px; background: linear-gradient(145deg, #fff 0%, #f7f9ff 100%); box-shadow: 0 22px 58px rgba(3,12,32,.09); }
.solution-quote-section .quote-block::before { content: ""; position: absolute; z-index: -1; width: 360px; height: 360px; right: -170px; top: -190px; border-radius: 50%; background: radial-gradient(circle, rgba(87,82,255,.15), transparent 70%); }
.solution-quote-section .quote-block::after { content: ""; position: absolute; left: 0; top: 46px; bottom: 46px; width: 4px; border-radius: 0 6px 6px 0; background: linear-gradient(#5752ff, #36d9ff); box-shadow: 0 0 20px rgba(87,82,255,.35); }
.solution-quote-section .quote-block .eyebrow { margin: 0 0 18px; color: #5d69ff; }
.solution-quote-section .quote-block p { max-width: 900px; margin: 0; color: var(--ink); font-size: clamp(1.55rem, 2.6vw, 2.45rem); font-weight: 800; line-height: 1.18; letter-spacing: -.04em; text-wrap: balance; }
.solution-quote-section .quote-block small { display: block; margin-top: 24px; color: var(--muted); font-size: .86rem; font-weight: 650; line-height: 1.5; }

.integration-hero { position: relative; isolation: isolate; overflow: hidden; padding: 135px 0 78px; color: #fff; background: radial-gradient(circle at 14% 10%, rgba(72,80,255,.2), transparent 25%), radial-gradient(circle at 86% 47%, rgba(54,217,255,.09), transparent 25%), linear-gradient(155deg, #020817 0%, #071633 52%, #020817 100%); }
.integration-hero::before { content: ""; position: absolute; z-index: -1; width: 680px; height: 680px; right: -320px; top: 20%; border-radius: 50%; background: rgba(54,217,255,.08); filter: blur(120px); animation: ambient-orb-right 18s ease-in-out infinite; pointer-events: none; }
.integration-hero-copy { position: relative; z-index: 2; max-width: 930px; }
.integration-hero-copy h1 { max-width: 900px; font-size: clamp(2.05rem, 3.85vw, 3.6rem); line-height: 1.05; }
.integration-hero-copy > p { max-width: 740px; margin: 25px 0 0; color: rgba(255,255,255,.67); font-size: 1.08rem; line-height: 1.75; }
.integration-hero .breadcrumb { color: rgba(255,255,255,.48); }
.integration-hero .breadcrumb a:hover { color: #fff; }
.integration-page-flow { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: radial-gradient(circle at 8% 12%, rgba(72,80,255,.2), transparent 25%), radial-gradient(circle at 92% 50%, rgba(54,217,255,.1), transparent 22%), linear-gradient(155deg, #020817 0%, #071633 52%, #020817 100%); }
.integration-page-flow::before { content: ""; position: absolute; z-index: -1; width: 680px; height: 680px; left: -360px; top: 38%; border-radius: 50%; background: rgba(67,74,255,.15); filter: blur(120px); animation: ambient-orb-left 17s ease-in-out infinite; pointer-events: none; }
.integration-page-flow > .section { color: #fff; background: transparent; }
.integration-overview { padding-top: 94px; padding-bottom: 82px; }
.integration-page-flow .section-heading > p { color: #9aa8c6; }
.integration-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.integration-card { position: relative; display: flex; min-height: 238px; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.integration-card header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.integration-card-heading { display: flex; min-width: 0; align-items: flex-start; gap: 13px; }
.integration-card-icon { flex: 0 0 46px; display: grid; width: 46px; height: 46px; place-items: center; color: var(--card-link); border: 1px solid var(--card-border); border-radius: 14px; background: color-mix(in srgb, var(--card-accent) 13%, transparent); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); transition: color .3s ease, background .3s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease; }
.integration-card-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.integration-card:hover .integration-card-icon, .integration-card:focus-within .integration-card-icon { color: #fff; background: linear-gradient(135deg, var(--card-accent), var(--brand)); transform: translateY(-3px) rotate(-4deg); box-shadow: 0 12px 24px rgba(43,37,242,.22); }
.integration-card h3 { margin-top: 9px; font-size: 1.05rem; }
.integration-card-type { display: block; margin: 0; color: var(--card-link); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-tag { flex: 0 0 auto; padding: 7px 10px; color: #8ea0ff; border: 1px solid rgba(98,107,255,.4); border-radius: 999px; background: rgba(43,37,242,.11); font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.status-tag.connected { color: #20dc87; border-color: rgba(32,220,135,.45); background: rgba(21,170,107,.1); }
.status-tag.progress { color: #ffbd3d; border-color: rgba(255,189,61,.5); background: rgba(255,177,31,.11); }
.integration-card p { margin: 20px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.62; }
.integration-card small { display: block; margin-top: auto; padding-top: 16px; color: #98a1b4; font-size: .73rem; line-height: 1.45; }
.provider-mark { display: inline-flex; min-width: 0; min-height: 48px; align-items: center; gap: 10px; color: #fff; }
.provider-mark strong { display: block; color: inherit; font-size: 1.12rem; line-height: 1; letter-spacing: -.02em; }
.provider-mark small { display: block; margin: 4px 0 0; padding: 0; color: #8fa0c3; font-size: .62rem; line-height: 1.15; letter-spacing: .035em; text-transform: uppercase; }
.provider-mark svg { flex: 0 0 auto; width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.provider-mark-logo { width: 100%; }
.provider-mark-logo > img { display: block; max-width: 132px; max-height: 52px; object-fit: contain; object-position: left center; filter: drop-shadow(0 8px 15px rgba(0,0,0,.14)); transition: transform .38s cubic-bezier(.2,.8,.2,1), filter .32s ease; }
.provider-mark-itc { gap: 6px; }
.provider-logo-panel { display: grid; height: 48px; place-items: center; overflow: hidden; padding: 5px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: #fff; box-shadow: 0 8px 18px rgba(0,0,0,.16); }
.provider-logo-panel-mobility { width: 88px; }
.provider-logo-panel-itc { width: 68px; }
.provider-logo-panel img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .38s cubic-bezier(.2,.8,.2,1); }
.provider-mark-rta > img { width: 104px; }
.provider-mark-q strong { display: grid; place-items: center; width: 38px; height: 38px; color: #fff; border-radius: 50%; background: linear-gradient(135deg, #755cff, #315dff 58%, #35d9ff); box-shadow: 0 0 20px rgba(72,92,255,.28); font-size: 1.25rem; }
.provider-mark-q b { display: block; color: #fff; font-size: 1rem; line-height: 1; }
.provider-mark-salik > img { width: 122px; }
.provider-mark-darb > img { width: 65px; max-height: 58px; }
.provider-mark-api { display: grid; gap: 3px; }
.provider-mark-api strong { color: #6eeaf0; font-family: inherit; font-size: 1.16rem; letter-spacing: -.05em; }
.provider-mark-api small { margin: 0; }
.notice { display: flex; gap: 14px; margin-top: 22px; padding: 20px; color: #26365a; border: 1px solid #cfd5ff; border-radius: 13px; background: var(--brand-soft); font-size: .88rem; line-height: 1.6; }
.notice b { color: var(--brand); }
.integration-notice { color: #aab7d0; border-color: rgba(83,105,198,.38); background: rgba(7,21,52,.76); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.integration-notice b { color: #788bff; }
.business-tools { margin-top: 88px; }
.business-tools-heading { max-width: 800px; margin: 0; text-align: left; }
.business-tools-heading .eyebrow { margin-bottom: 14px; color: #7589ff; }
.business-tools-heading h2 { max-width: 760px; font-size: clamp(1.65rem, 2.8vw, 2.8rem); font-weight: 750; line-height: 1.1; letter-spacing: -.035em; }
.business-tools-heading p { max-width: 680px; margin: 17px 0 0; color: #9aa8c6; font-size: 1rem; line-height: 1.7; }
.business-tools-panel { position: relative; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin-top: 38px; overflow: hidden; padding: 24px; border: 1px solid rgba(91,111,204,.34); border-radius: 24px; background: linear-gradient(145deg, rgba(12,31,72,.94), rgba(4,16,42,.96)); box-shadow: inset 0 2px 0 rgba(105,118,255,.3), inset 0 1px 0 rgba(255,255,255,.045), 0 24px 56px rgba(0,0,0,.18); }
.business-tools-panel::before { content: ""; position: absolute; width: 300px; height: 300px; right: -160px; bottom: -190px; border-radius: 50%; background: radial-gradient(circle, rgba(54,217,255,.14), transparent 67%); pointer-events: none; }
.business-tool { position: relative; z-index: 1; min-width: 0; padding: 18px 10px; text-align: center; border-radius: 16px; transition: transform .32s cubic-bezier(.2,.8,.2,1), background .3s ease, box-shadow .3s ease; }
.business-tool:hover { transform: translateY(-6px); background: rgba(68,80,205,.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 16px 32px rgba(0,0,0,.16); }
.business-tool-icon { display: grid; width: 52px; height: 52px; margin: 0 auto 18px; place-items: center; color: #7e8eff; border: 1px solid rgba(103,117,255,.35); border-radius: 15px; background: rgba(43,37,242,.12); transition: color .3s ease, transform .35s cubic-bezier(.2,.8,.2,1), background .3s ease, box-shadow .3s ease; }
.business-tool-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.business-tool:hover .business-tool-icon { color: #fff; background: linear-gradient(135deg, #5362ff, var(--brand)); transform: rotate(-5deg) scale(1.06); box-shadow: 0 13px 28px rgba(43,37,242,.25); }
.business-tool h3 { font-size: .92rem; line-height: 1.3; }
.business-tool p { margin: 10px 0 0; color: #8f9dbb; font-size: .78rem; line-height: 1.55; }

.integration-network { position: relative; isolation: isolate; height: 650px; margin-top: 54px; overflow: hidden; border: 1px solid rgba(87,112,210,.34); border-radius: 34px; background: radial-gradient(circle at 50% 50%, rgba(43,37,242,.23), transparent 24%), radial-gradient(circle at 50% 50%, rgba(54,217,255,.075), transparent 54%), linear-gradient(145deg, rgba(3,15,42,.98), rgba(2,8,24,.99)); box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 38px 90px rgba(0,0,0,.24); }
.integration-network-hero { margin-top: 52px; }
.integration-network::before { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .25; background-image: linear-gradient(rgba(85,110,210,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(85,110,210,.11) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent); transform: perspective(520px) rotateX(61deg) translateY(31%); transform-origin: bottom; }
.integration-network::after { content: ""; position: absolute; z-index: -1; width: 460px; height: 1000px; left: -520px; top: -170px; transform: rotate(27deg); background: linear-gradient(90deg, transparent, rgba(80,121,255,.06), transparent); animation: network-scan 10s ease-in-out infinite; pointer-events: none; }
.network-connections { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; overflow: visible; }
.network-link, .network-flow { fill: none; vector-effect: non-scaling-stroke; }
.network-link { stroke: rgba(88,111,255,.32); stroke-width: 1.6; filter: drop-shadow(0 0 6px rgba(66,100,255,.2)); transition: stroke .3s ease, stroke-width .3s ease, filter .3s ease; }
.network-flow { stroke: rgba(81,202,255,.78); stroke-width: 1.8; stroke-linecap: round; stroke-dasharray: 3 17; filter: drop-shadow(0 0 5px rgba(54,217,255,.62)); animation: network-data-flow 2.3s linear infinite; transition: stroke .3s ease, stroke-width .3s ease, filter .3s ease; }
.network-flow-rta, .network-flow-darb { animation-delay: -.75s; }
.network-flow-qmobility, .network-flow-salik { animation-delay: -1.4s; }
.network-orbit { position: absolute; z-index: 0; left: 50%; top: 50%; border: 1px dashed rgba(87,112,255,.17); border-radius: 50%; pointer-events: none; }
.network-orbit-one { width: 570px; height: 570px; margin: -285px 0 0 -285px; animation: network-orbit-spin 28s linear infinite; }
.network-orbit-two { width: 400px; height: 400px; margin: -200px 0 0 -200px; border-color: rgba(54,217,255,.12); animation: network-orbit-spin 22s linear infinite reverse; }
.network-hub { position: absolute; z-index: 5; left: 50%; top: 50%; display: flex; width: 238px; min-height: 178px; align-items: center; justify-content: center; flex-direction: column; transform: translate(-50%, -50%) perspective(700px) rotateX(7deg); color: #fff; border: 1px solid rgba(91,160,255,.72); border-radius: 30px; background: radial-gradient(circle at 50% 0%, rgba(54,217,255,.18), transparent 40%), linear-gradient(145deg, rgba(18,52,119,.99), rgba(11,18,73,.99)); box-shadow: inset 0 2px 0 rgba(255,255,255,.12), inset 0 -3px 0 rgba(54,217,255,.22), 0 0 0 12px rgba(40,66,185,.12), 0 0 0 24px rgba(43,37,242,.055), 0 28px 65px rgba(0,0,0,.42), 0 0 48px rgba(54,136,255,.26); animation: network-hub-float 5s ease-in-out infinite; }
.network-hub::before, .network-hub::after { content: ""; position: absolute; z-index: -1; left: 8%; right: 8%; height: 100%; border: 1px solid rgba(77,117,255,.42); border-radius: 28px; background: rgba(10,28,78,.62); }
.network-hub::before { top: 12px; transform: translateY(12px); }
.network-hub::after { top: 24px; transform: translateY(24px); opacity: .56; }
.network-hub-ring { position: absolute; inset: -14px; border: 1px solid rgba(54,217,255,.14); border-radius: 38px; animation: network-hub-ring 3.3s ease-out infinite; }
.network-hub .brand-logo { width: 138px; height: 80px; }
.network-hub .brand-logo img { width: 310px; left: -90px; top: -79px; }
.network-hub strong { margin-top: -7px; font-size: .78rem; letter-spacing: .025em; }
.network-hub small { margin-top: 7px; color: #8ea1c7; font-size: .63rem; letter-spacing: .055em; text-transform: uppercase; }
.network-node { --node-transform: none; position: absolute; z-index: 4; display: flex; width: 220px; min-height: 142px; flex-direction: column; justify-content: center; padding: 19px; color: #fff; border: 1px solid rgba(82,112,218,.46); border-radius: 21px; background: linear-gradient(145deg, rgba(13,37,87,.96), rgba(5,18,48,.98)); box-shadow: inset 0 2px 0 rgba(255,255,255,.065), 0 22px 45px rgba(0,0,0,.28), 0 0 24px rgba(49,85,214,.08); transform: var(--node-transform); transition: opacity .3s ease, transform .38s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .35s ease, filter .3s ease; }
.network-node::before { content: ""; position: absolute; inset: 0; opacity: 0; border-radius: inherit; background: radial-gradient(circle at 70% 10%, rgba(54,217,255,.16), transparent 42%); transition: opacity .3s ease; pointer-events: none; }
.network-node:hover, .network-node:focus-visible { z-index: 7; border-color: rgba(91,176,255,.92); outline: none; transform: var(--node-transform) translateY(-8px) scale(1.045); box-shadow: inset 0 2px 0 rgba(255,255,255,.11), 0 30px 60px rgba(0,0,0,.38), 0 0 36px rgba(54,150,255,.2); }
.network-node:hover::before, .network-node:focus-visible::before { opacity: 1; }
.network-node:hover .provider-mark-logo > img, .network-node:focus-visible .provider-mark-logo > img, .network-node:hover .provider-logo-panel img, .network-node:focus-visible .provider-logo-panel img { transform: scale(1.11); filter: drop-shadow(0 9px 18px rgba(54,217,255,.2)); }
.network-node-itc { left: 6%; top: 12%; }
.network-node-rta { --node-transform: translateX(-50%); left: 50%; top: 3%; }
.network-node-qmobility { right: 6%; top: 12%; }
.network-node-salik { left: 6%; bottom: 12%; }
.network-node-darb { --node-transform: translateX(-50%); left: 50%; bottom: 3%; }
.network-node-api { right: 6%; bottom: 12%; }
.network-node-type { margin-bottom: 11px; color: #7188bc; font-size: .62rem; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; }
.network-node .provider-mark { min-height: 40px; }
.network-node-status { display: inline-flex; align-self: flex-start; align-items: center; gap: 7px; margin-top: 12px; color: #20dc87; font-size: .67rem; font-weight: 800; }
.network-node-status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(32,220,135,.08); }
.network-node-status.progress { color: #ffbd3d; }
.network-node-status.progress i { box-shadow: 0 0 0 5px rgba(255,189,61,.08); }
.integration-network:has(.network-node:hover) .network-node:not(:hover), .integration-network:has(.network-node:focus-visible) .network-node:not(:focus-visible) { opacity: .46; filter: saturate(.65); transform: var(--node-transform) scale(.965); }
.integration-network:has(.network-node-itc:hover) :is(.network-link-itc, .network-flow-itc), .integration-network:has(.network-node-itc:focus-visible) :is(.network-link-itc, .network-flow-itc),
.integration-network:has(.network-node-rta:hover) :is(.network-link-rta, .network-flow-rta), .integration-network:has(.network-node-rta:focus-visible) :is(.network-link-rta, .network-flow-rta),
.integration-network:has(.network-node-qmobility:hover) :is(.network-link-qmobility, .network-flow-qmobility), .integration-network:has(.network-node-qmobility:focus-visible) :is(.network-link-qmobility, .network-flow-qmobility),
.integration-network:has(.network-node-salik:hover) :is(.network-link-salik, .network-flow-salik), .integration-network:has(.network-node-salik:focus-visible) :is(.network-link-salik, .network-flow-salik),
.integration-network:has(.network-node-darb:hover) :is(.network-link-darb, .network-flow-darb), .integration-network:has(.network-node-darb:focus-visible) :is(.network-link-darb, .network-flow-darb),
.integration-network:has(.network-node-api:hover) :is(.network-link-api, .network-flow-api), .integration-network:has(.network-node-api:focus-visible) :is(.network-link-api, .network-flow-api) { stroke: #69e9ff; stroke-width: 3; filter: drop-shadow(0 0 9px rgba(54,217,255,.95)); }
@keyframes network-data-flow { to { stroke-dashoffset: -40; } }
@keyframes network-orbit-spin { to { transform: rotate(360deg); } }
@keyframes network-scan { 0%, 18% { left: -520px; } 70%, 100% { left: calc(100% + 180px); } }
@keyframes network-hub-float { 0%, 100% { transform: translate(-50%, -50%) perspective(700px) rotateX(7deg) translateY(0); } 50% { transform: translate(-50%, -50%) perspective(700px) rotateX(7deg) translateY(-8px); } }
@keyframes network-hub-ring { 0% { opacity: .55; transform: scale(.96); } 75%, 100% { opacity: 0; transform: scale(1.12); } }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 520px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.price-card.featured { color: #fff; border-color: var(--brand); background: linear-gradient(150deg, #2b25f2, #171170); box-shadow: 0 28px 60px rgba(43,37,242,.23); }
.recommended { position: absolute; top: 18px; right: 18px; padding: 7px 9px; color: #fff; border-radius: 999px; background: rgba(255,255,255,.15); font-size: .75rem; font-weight: 850; text-transform: uppercase; }
.price-card h3 { margin-top: 25px; font-size: 1.05rem; }
.price-label { margin-top: 18px; color: var(--brand); font-size: 1.65rem; font-weight: 850; }
.featured .price-label { color: #fff; }
.price-card > p { min-height: 68px; margin: 13px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.featured > p { color: rgba(255,255,255,.65); }
.price-features { display: grid; gap: 12px; margin: 25px 0 30px; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; }
.featured .price-features { border-color: rgba(255,255,255,.15); }
.price-features li { display: flex; gap: 9px; color: #405071; font-size: .85rem; line-height: 1.4; }
.featured .price-features li { color: rgba(255,255,255,.77); }
.price-features li::before { content: "✓"; color: var(--brand); font-weight: 900; }
.featured .price-features li::before { color: #75eeff; }
.price-card .btn { margin-top: auto; }
.featured .btn { color: var(--brand); background: #fff; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card { display: flex; flex-direction: column; min-height: 370px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.article-art { position: relative; height: 150px; overflow: hidden; background: linear-gradient(135deg, #0a1b3d, #2b25f2); }
.article-art::after { content: ""; position: absolute; width: 140px; height: 140px; right: -40px; top: -55px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.035); }
.article-art span { position: absolute; left: 22px; bottom: 20px; color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.article-body h3 { font-size: 1rem; line-height: 1.38; }
.article-body p { margin: 13px 0 24px; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.article-body .text-link { margin-top: auto; color: var(--brand); }
.article-detail { max-width: 820px; margin: 0 auto; padding: 32px 0; }
.article-detail + .article-detail { border-top: 1px solid var(--line); }
.article-detail h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.2; }
.article-detail p { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.article-detail ul { color: var(--muted); line-height: 1.8; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.video-card { display: grid; grid-template-columns: 155px 1fr; min-height: 170px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.video-thumb { position: relative; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #071632, #2b25f2); }
.play { display: grid; place-items: center; width: 48px; height: 48px; padding-left: 3px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.12); }
.video-copy { padding: 25px; }
.video-copy small { color: var(--brand); font-weight: 800; }
.video-copy h3 { margin-top: 12px; font-size: 1rem; }
.video-copy p { margin: 10px 0 0; color: var(--muted); font-size: .85rem; line-height: 1.6; }

.about-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.about-split h2 { font-size: clamp(1.75rem, 3.15vw, 2.95rem); line-height: 1.1; }
.about-copy p { margin: 0 0 20px; color: var(--muted); font-size: 1.02rem; line-height: 1.82; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 48px; }
.value { min-height: 210px; padding: 25px; color: #fff; border-radius: 17px; background: var(--navy-2); }
.value b { display: block; margin-top: 65px; font-size: 1.1rem; }
.value p { margin: 9px 0 0; color: rgba(255,255,255,.56); font-size: .84rem; line-height: 1.55; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.partner-card { min-height: 280px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.partner-card span { color: var(--brand); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.partner-card h3 { margin-top: 76px; font-size: 1rem; }
.partner-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

.contact-layout, .demo-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 50px; align-items: start; }
.contact-side h2 { font-size: clamp(1.55rem, 2.8vw, 2.6rem); line-height: 1.13; }
.contact-side > p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.contact-methods { display: grid; gap: 12px; margin-top: 30px; }
.contact-method { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.contact-method small, .contact-method b { display: block; }
.contact-method small { color: #8a94a8; font-size: .75rem; }
.contact-method b { margin-top: 6px; font-size: .92rem; overflow-wrap: anywhere; }
.form-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-lg); }
.form-card h2 { font-size: 1.4rem; }
.form-card > p { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label, legend { color: #263657; font-size: .78rem; font-weight: 750; }
input, select, textarea { width: 100%; color: var(--ink); border: 1px solid #d8deea; outline: 0; border-radius: 10px; background: #fbfcff; transition: border .2s, box-shadow .2s, background .2s; }
input, select { height: 49px; padding: 0 13px; }
textarea { min-height: 115px; padding: 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(43,37,242,.08); }
input::placeholder, textarea::placeholder { color: #a5adbd; }
fieldset { margin: 0; padding: 0; border: 0; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 10px; }
.check-label { display: flex; align-items: center; gap: 9px; min-height: 43px; padding: 0 11px; border: 1px solid var(--line); border-radius: 9px; color: #425271; font-size: .78rem; }
.check-label input { width: 16px; height: 16px; accent-color: var(--brand); }
.form-card .btn { width: 100%; margin-top: 5px; }
.form-fine { margin: 0; color: #9099aa; font-size: .75rem; line-height: 1.5; text-align: center; }
.form-status { display: none; margin: 0; padding: 12px; color: #116744; border-radius: 9px; background: #e9fbf3; font-size: .82rem; text-align: center; }
.form-status.show { display: block; }
.demo-benefits { display: grid; gap: 12px; margin-top: 28px; }
.demo-benefit { display: flex; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.demo-benefit b { display: block; font-size: .86rem; }
.demo-benefit span { display: block; margin-top: 4px; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.demo-layout .contact-side > .btn-whatsapp { display: flex; width: 100%; min-height: 62px; margin-top: 12px; }

/* Shared premium card language — mirrors the Solutions by operation cards. */
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit) {
  --card-accent: #6976ff;
  --card-link: #a5adff;
  --card-border: rgba(105,118,255,.38);
  --card-bg: linear-gradient(150deg, rgba(14,42,91,.98), rgba(4,17,43,.98));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  border-color: var(--card-border);
  border-radius: 20px;
  background: var(--card-bg);
  box-shadow: inset 0 3px 0 var(--card-accent), inset 0 1px 0 rgba(255,255,255,.06), 0 20px 46px rgba(0,0,0,.16);
  transform-style: preserve-3d;
  transition: transform .38s cubic-bezier(.2,.8,.2,1), border-color .32s ease, box-shadow .38s ease, background .38s ease;
}
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):nth-child(4n + 2) {
  --card-accent: #8775ff;
  --card-link: #c0b7ff;
  --card-border: rgba(135,117,255,.46);
  --card-bg: linear-gradient(150deg, rgba(63,44,184,.98), rgba(20,18,84,.99));
}
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):nth-child(4n + 3) {
  --card-accent: #39d3d1;
  --card-link: #7ee8e6;
  --card-border: rgba(57,211,209,.36);
  --card-bg: linear-gradient(150deg, rgba(7,70,91,.98), rgba(3,26,52,.99));
}
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):nth-child(4n + 4) {
  --card-accent: #4f9dff;
  --card-link: #83bdff;
  --card-border: rgba(79,157,255,.38);
  --card-bg: linear-gradient(150deg, rgba(23,58,125,.98), rgba(10,25,65,.99));
}
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit)::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  right: -78px;
  bottom: -92px;
  color: var(--card-accent);
  opacity: .28;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: radial-gradient(circle, currentColor 0%, transparent 66%);
  box-shadow: 0 0 0 30px rgba(255,255,255,.022);
  animation: solution-orb-float 7s ease-in-out infinite;
  transition: opacity .35s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit)::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 68px;
  height: 150%;
  left: -120px;
  top: -25%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  transition: left .75s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit) > * { position: relative; z-index: 2; }
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):hover,
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):focus-within {
  transform: translateY(-8px) rotateX(1deg);
  border-color: var(--card-accent);
  background: var(--card-bg);
  box-shadow: inset 0 3px 0 var(--card-accent), inset 0 1px 0 rgba(255,255,255,.1), 0 30px 62px rgba(0,0,0,.3), 0 0 34px rgba(70,86,255,.1);
}
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):hover::before,
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):focus-within::before { opacity: .5; transform: translate3d(-20px, -16px, 0) scale(1.07); }
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):hover::after,
:is(.platform-feature-card, .info-card, .outcome, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit):focus-within::after { left: calc(100% + 70px); }

:is(.platform-feature-card, .info-card, .integration-card, .price-card, .article-card, .video-card, .value, .partner-card, .contact-method, .demo-benefit) :is(h3, b) { color: #fff; }
:is(.platform-feature-card > p, .info-card p, .outcome p, .integration-card p, .integration-card small, .price-card > p, .price-features li, .article-body p, .video-copy p, .value p, .partner-card p, .contact-method small, .demo-benefit span) { color: #a8b5cf; }
.platform-feature-card .feature-icon { color: var(--card-link); border-color: var(--card-border); background: color-mix(in srgb, var(--card-accent) 15%, transparent); }
.platform-feature-card:hover .feature-icon, .platform-feature-card:focus-within .feature-icon { color: #fff; border-color: var(--card-accent); background: linear-gradient(135deg, var(--card-accent), var(--brand)); }
.feature-link, .feature-detail-card .text-link, .article-body .text-link, .video-copy small, .partner-card span { color: var(--card-link); }
.info-card .card-index { display: inline-flex; align-self: flex-start; width: fit-content; margin-bottom: 65px; padding: 7px 10px; color: var(--card-link); border: 1px solid rgba(255,255,255,.11); border-radius: 999px; background: rgba(2,10,29,.28); }
.feature-detail-card .card-index { margin-bottom: 44px; }
.outcome .check { background: var(--card-accent); }
.price-card .eyebrow, .price-label, .price-features li::before { color: var(--card-link); }
.price-features { border-color: rgba(255,255,255,.13); }
.price-card.featured {
  --card-accent: #39d3d1;
  --card-link: #8df1ef;
  --card-border: rgba(57,211,209,.55);
  --card-bg: linear-gradient(150deg, rgba(56,45,196,.99), rgba(14,23,85,.99));
  border-color: var(--card-border);
  background: var(--card-bg);
  box-shadow: inset 0 3px 0 var(--card-accent), inset 0 1px 0 rgba(255,255,255,.09), 0 28px 60px rgba(43,37,242,.24);
}
.price-card.featured:hover, .price-card.featured:focus-within { border-color: var(--card-accent); background: var(--card-bg); box-shadow: inset 0 3px 0 var(--card-accent), inset 0 1px 0 rgba(255,255,255,.11), 0 32px 68px rgba(27,23,143,.35), 0 0 36px rgba(57,211,209,.11); }
.featured .price-label, .featured .price-features li::before { color: var(--card-link); }
.featured .price-features li, .featured > p { color: #b7c1d8; }
.article-art { border-bottom: 1px solid var(--card-border); }
.video-thumb { border-right: 1px solid var(--card-border); }
.contact-method b a { color: #fff; }

.feature-item {
  --card-accent: #6976ff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(105,118,255,.34);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(14,42,91,.9), rgba(4,17,43,.92));
  box-shadow: inset 3px 0 0 var(--card-accent), inset 0 1px 0 rgba(255,255,255,.045), 0 12px 28px rgba(0,0,0,.12);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.feature-item:nth-child(4n + 2) { --card-accent: #8775ff; border-color: rgba(135,117,255,.38); background: linear-gradient(145deg, rgba(63,44,184,.72), rgba(20,18,84,.92)); }
.feature-item:nth-child(4n + 3) { --card-accent: #39d3d1; border-color: rgba(57,211,209,.3); background: linear-gradient(145deg, rgba(7,70,91,.82), rgba(3,26,52,.94)); }
.feature-item:nth-child(4n + 4) { --card-accent: #4f9dff; border-color: rgba(79,157,255,.32); background: linear-gradient(145deg, rgba(23,58,125,.85), rgba(10,25,65,.94)); }
.feature-item:hover { transform: translateX(6px); border-color: var(--card-accent); box-shadow: inset 3px 0 0 var(--card-accent), inset 0 1px 0 rgba(255,255,255,.08), 0 18px 36px rgba(0,0,0,.22); }
.feature-item .check { background: var(--card-accent); }

.site-footer { color: #fff; background: #02091a; }
.footer-main { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 45px; padding: 74px 0 55px; }
.footer-brand .brand-logo { width: 106px; height: 62px; }
.footer-brand .brand-logo img { width: 238px; left: -64px; top: -59px; }
.footer-brand p { max-width: 250px; margin: 18px 0 0; color: rgba(255,255,255,.47); font-size: .82rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a { display: grid; width: 40px; height: 40px; place-items: center; color: #8495bd; border: 1px solid rgba(109,128,210,.26); border-radius: 12px; background: rgba(255,255,255,.04); transition: color .25s ease, transform .3s cubic-bezier(.2,.8,.2,1), border-color .25s ease, background .25s ease, box-shadow .3s ease; }
.footer-socials a:hover, .footer-socials a:focus-visible { color: #fff; border-color: rgba(102,117,255,.72); background: linear-gradient(135deg, rgba(86,96,255,.72), rgba(43,37,242,.72)); transform: translateY(-4px); box-shadow: 0 14px 28px rgba(43,37,242,.22); outline: none; }
.footer-socials svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h3 { margin-bottom: 20px; color: rgba(255,255,255,.92); font-size: .82rem; letter-spacing: 0; }
.footer-col a { display: block; width: fit-content; margin: 11px 0; color: rgba(255,255,255,.48); font-size: .8rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0 28px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.08); font-size: .75rem; }

.support-panel { position: fixed; z-index: 145; right: 24px; bottom: 104px; width: min(390px, calc(100vw - 32px)); max-height: calc(100svh - 126px); overflow-y: auto; padding: 28px; color: #fff; border: 1px solid rgba(87,112,210,.48); border-radius: 24px; background: linear-gradient(155deg, rgba(12,29,69,.98), rgba(4,14,37,.99)); box-shadow: 0 30px 80px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.04); opacity: 0; visibility: hidden; transform: translate3d(0, 18px, 0) scale(.94); transform-origin: right bottom; transition: opacity .28s ease, visibility .28s ease, transform .34s cubic-bezier(.2,.8,.2,1); }
.support-panel.is-open { opacity: 1; visibility: visible; transform: translate3d(0, 0, 0) scale(1); }
.support-available { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; color: #8ea0ff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.support-available i { width: 8px; height: 8px; border-radius: 50%; background: #20dc87; box-shadow: 0 0 0 5px rgba(32,220,135,.09); animation: live-pulse 2.2s ease-out infinite; }
.support-panel-head h2 { font-size: 1.55rem; line-height: 1.15; letter-spacing: -.025em; }
.support-panel-head p { margin: 10px 0 0; color: #9aa8c6; font-size: .95rem; line-height: 1.55; }
.support-options { display: grid; gap: 11px; margin-top: 24px; }
.support-option { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr) 20px; gap: 13px; align-items: center; min-height: 76px; padding: 12px 15px; overflow: hidden; border: 1px solid rgba(77,105,201,.45); border-radius: 16px; background: rgba(1,9,27,.62); transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.support-option::before { content: ""; position: absolute; inset: 0; opacity: 0; background: linear-gradient(110deg, rgba(43,37,242,.2), rgba(54,217,255,.06)); transition: opacity .25s ease; }
.support-option:hover, .support-option:focus-visible { transform: translateX(-4px); border-color: rgba(101,116,255,.82); background: rgba(12,27,64,.92); box-shadow: 0 12px 26px rgba(0,0,0,.22); outline: none; }
.support-option:hover::before, .support-option:focus-visible::before { opacity: 1; }
.support-option > * { position: relative; z-index: 1; }
.support-option-icon { display: grid; place-items: center; width: 42px; height: 42px; color: #6472ff; border-radius: 12px; background: rgba(43,37,242,.13); }
.support-option-icon-contact { color: #20dc87; background: rgba(32,220,135,.09); }
.support-option-icon svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.support-option strong { display: block; font-size: .94rem; line-height: 1.25; }
.support-option small { display: block; margin-top: 4px; overflow-wrap: anywhere; color: #8190af; font-size: .75rem; line-height: 1.35; }
.support-option > svg { width: 20px; height: 20px; color: #7d8dab; transition: transform .24s ease, color .24s ease; }
.support-option:hover > svg, .support-option:focus-visible > svg { color: #fff; transform: translateX(3px); }
.floating-controls { position: fixed; z-index: 150; right: 24px; bottom: 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.scroll-top-button, .support-toggle { display: grid; place-items: center; padding: 0; color: #fff; border: 1px solid rgba(100,120,224,.46); cursor: pointer; box-shadow: 0 18px 42px rgba(0,0,0,.3); transition: opacity .25s ease, visibility .25s ease, transform .3s cubic-bezier(.2,.8,.2,1), border-color .25s ease, box-shadow .25s ease; }
.scroll-top-button { width: 48px; height: 48px; border-radius: 50%; background: rgba(9,25,60,.94); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px) scale(.9); }
.scroll-top-button.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.scroll-top-button:hover, .scroll-top-button:focus-visible { color: #90a0ff; border-color: rgba(109,128,255,.9); transform: translateY(-3px); outline: none; }
.scroll-top-button svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.support-toggle { width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(145deg, #5264ff, #2b25f2); box-shadow: 0 18px 42px rgba(43,37,242,.38), 0 0 0 8px rgba(43,37,242,.08); animation: support-button-pulse 3.2s ease-in-out infinite; }
.support-toggle:hover, .support-toggle:focus-visible { border-color: rgba(160,196,255,.82); transform: translateY(-4px) scale(1.03); box-shadow: 0 24px 48px rgba(43,37,242,.46), 0 0 0 10px rgba(43,37,242,.1); outline: none; }
.support-toggle svg { width: 30px; height: 30px; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.support-toggle .close-icon { display: none; }
.support-toggle[aria-expanded='true'] { transform: rotate(90deg); }
.support-toggle[aria-expanded='true'] .headset-icon { display: none; }
.support-toggle[aria-expanded='true'] .close-icon { display: block; }
@keyframes support-button-pulse {
  0%, 100% { box-shadow: 0 18px 42px rgba(43,37,242,.36), 0 0 0 7px rgba(43,37,242,.07); }
  50% { box-shadow: 0 20px 46px rgba(43,37,242,.45), 0 0 0 12px rgba(43,37,242,.035); }
}

@media (max-width: 1280px) {
  .mobility-showcase > .container { width: min(1180px, calc(100% - 40px)); }
  .mobility-constellation { min-height: 570px; }
  .mobility-node { min-width: 190px; }
  .mobility-node-1, .mobility-node-4 { left: 1%; }
  .mobility-node-3, .mobility-node-6 { right: 1%; }
}

@media (max-width: 1040px) {
  .desktop-nav { gap: 17px; }
  .nav-link, .nav-trigger { font-size: .82rem; }
  .driver-page-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 34px; }
  .driver-page-phone-stage { margin-right: 0; }
  .driver-feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .driver-always-layout { gap: 52px; }
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(760px, 100%); min-height: 430px; margin: -25px auto 0; }
  .platform-product { margin: 0 auto; }
  .platform-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-stat-card:nth-child(2) { border-right: 0; }
  .home-stat-card:nth-child(-n + 2) { border-bottom: 1px solid rgba(103,125,229,.23); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-tools-panel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .network-node { width: 194px; padding: 17px; }
  .network-node-itc, .network-node-salik { left: 3%; }
  .network-node-qmobility, .network-node-api { right: 3%; }
  .platform-split { gap: 45px; }
  .footer-main { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .mobile-toggle { position: relative; z-index: 1002; display: inline-flex; touch-action: manipulation; }
  .mobile-panel { position: fixed; z-index: 999; inset: 76px 0 0; width: 100%; height: calc(100dvh - 76px); max-height: none; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 17px 20px max(36px, env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.08); background: #030c20; box-shadow: 0 24px 70px rgba(0,0,0,.55); pointer-events: none; touch-action: pan-y; }
  body.menu-open .mobile-panel { display: block; pointer-events: auto; }
  body.menu-open .floating-controls, body.menu-open .support-panel { visibility: hidden; pointer-events: none; }
  .mobile-panel a { position: relative; z-index: 2; display: block; padding: 12px 5px; color: rgba(255,255,255,.72); font-size: .93rem; touch-action: manipulation; }
  .mobile-panel .mobile-group { margin: 10px 0; padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.03); }
  .mobile-panel strong { display: block; margin-bottom: 6px; color: #738bff; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
  .mobile-panel .nav-cta { margin-top: 15px; color: #fff; text-align: center; }
  .integration-hero { padding-top: 122px; }
  .driver-page-hero { min-height: auto; padding: 116px 0 78px; }
  .driver-page-hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .driver-page-copy { max-width: 720px; }
  .driver-page-phone-stage { min-height: 540px; justify-self: center; }
  .driver-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .driver-always-layout { grid-template-columns: 1fr; gap: 50px; }
  .driver-always-copy { max-width: 700px; }
  .home-stats-heading { grid-template-columns: 1fr; gap: 18px; }
  .home-stats-heading p { max-width: 680px; }
  .trust-marks { grid-template-columns: repeat(2, 1fr); gap: 30px 54px; }
  .section-heading, .platform-split, .driver-app-layout, .about-split, .contact-layout, .demo-layout { grid-template-columns: 1fr; gap: 34px; }
  .driver-app-visual { min-height: 510px; }
  .driver-app-copy { max-width: 720px; }
  .content-grid, .pricing-grid, .article-grid, .partner-grid { grid-template-columns: 1fr; }
  .integration-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .integration-network { display: grid; height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 28px; }
  .network-connections, .network-orbit { display: none; }
  .network-hub { position: relative; left: auto; top: auto; grid-column: 1 / -1; justify-self: center; margin: 5px 0 20px; transform: none; animation: none; }
  .network-node { --node-transform: none; position: relative; inset: auto; width: auto; min-height: 150px; transform: none; }
  .network-node:hover, .network-node:focus-visible { transform: translateY(-6px) scale(1.02); }
  .integration-network:has(.network-node:hover) .network-node:not(:hover), .integration-network:has(.network-node:focus-visible) .network-node:not(:focus-visible) { transform: scale(.98); }
  .mobility-constellation { display: grid; min-height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 34px; margin-top: 44px; overflow: visible; }
  .mobility-constellation::before { width: 100%; height: 100%; opacity: .72; }
  .mobility-constellation::after, .mobility-orbit, .mobility-links, .mobility-data-pulse { display: none; }
  .mobility-hub { position: relative; left: auto; top: auto; grid-column: 1 / -1; justify-self: center; margin: 15px 0 36px; transform: none; }
  .mobility-hub:hover, .mobility-hub:focus-visible { transform: scale(1.045); }
  .mobility-node { position: relative; inset: auto; min-width: 0; padding: 20px 3px; border-top: 1px solid rgba(88,111,205,.24); }
  .mobility-node:hover, .mobility-node:focus-visible { transform: translateX(7px); }
  .price-card { min-height: auto; }
  .video-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 70px; }
  .mobile-panel { top: 71px; max-height: calc(100dvh - 71px); }
  .driver-page-hero { padding: 105px 0 64px; }
  .driver-page-hero .breadcrumb { margin-bottom: 27px; }
  .driver-page-copy h1 { font-size: 2rem; }
  .driver-page-copy > p { font-size: .94rem; }
  .driver-page-promises { grid-template-columns: 1fr; gap: 17px; margin-top: 32px; }
  .driver-page-phone-stage { min-height: 365px; }
  .driver-page-phone-stage .driver-phone-home { left: 6%; top: 8px; }
  .driver-page-phone-stage .driver-phone-earnings { right: 6%; top: 28px; }
  .driver-page-float { display: none; }
  .driver-feature-section { padding: 78px 0; }
  .driver-section-heading h2, .driver-always-copy h2 { font-size: 1.78rem; }
  .driver-section-heading p, .driver-always-copy > p { font-size: .92rem; }
  .driver-feature-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .driver-feature-card { min-height: 205px; }
  .driver-always-section { padding: 76px 0 82px; }
  .app-store-downloads { width: 100%; }
  .app-store-badge-row { grid-template-columns: 1fr; max-width: 228px; }
  .app-store-badge { min-height: 62px; }
  .driver-reliability-list article { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; padding: 21px 0; }
  .driver-reliability-list article > span { width: 44px; height: 44px; }
  .hero { min-height: 100vh; min-height: 100svh; padding: 118px 0 68px; }
  .hero::before { background: linear-gradient(90deg, rgba(2,8,23,.94) 0%, rgba(2,8,23,.82) 68%, rgba(2,8,23,.46) 100%); }
  .hero::after { background: linear-gradient(0deg, rgba(2,8,23,.78) 0%, rgba(2,8,23,.14) 48%, rgba(2,8,23,.34) 100%); }
  .hero-slide:nth-child(1), .hero-slide:nth-child(2) { object-position: center; }
  .hero-slide:nth-child(3) { object-position: center 53%; }
  .hero-connectivity { opacity: .58; }
  .hero-connectivity::before { right: -38%; width: 130%; }
  .hero-connect-arc-one { right: -28%; top: 18%; width: 90vw; height: 90vw; }
  .hero-connect-arc-two { right: 8%; top: 46%; width: 58vw; height: 58vw; }
  h1 { font-size: clamp(1.95rem, 9vw, 2.8rem); }
  .hero-copy > p:not(.kicker) { font-size: 1rem; }
  .hero-product { min-height: 305px; margin-top: 0; }
  .product-image { width: 112%; margin-left: -6%; }
  .product-badge { left: 2%; top: 13%; padding: 8px 10px; font-size: .75rem; }
  .hero-detail { width: 132px; padding: 5px 5px 8px; border-radius: 11px; }
  .hero-detail-image { height: 64px; border-radius: 7px; }
  .hero-detail small { padding: 7px 3px 0; }
  .hero-detail-tracking { right: 0; top: 3%; }
  .hero-detail-tracking .hero-detail-image { background-size: 490px auto; background-position: -284px -222px; }
  .hero-detail-analytics { left: 0; bottom: 1%; }
  .hero-detail-analytics .hero-detail-image { background-size: 465px auto; background-position: -116px -164px; }
  .hero-stat { display: none; }
  .hero-trust { margin-top: 35px; padding-top: 25px; }
  .trust-heading { margin-bottom: 25px; font-size: .92rem; }
  .trust-marks { gap: 24px 16px; }
  .trust-mark { gap: 10px; }
  .trust-mark svg { flex-basis: 30px; width: 30px; height: 30px; }
  .trust-mark strong { font-size: .8rem; }
  .trust-mark span { margin-top: 4px; font-size: .75rem; letter-spacing: .055em; }
  .hero-assurances { display: grid; gap: 12px; margin-top: 28px; }
  .hero-assurance { font-size: .86rem; }
  .assurance-check { flex-basis: 23px; width: 23px; height: 23px; }
  .feature-showcase { padding: 78px 0; }
  .home-stats-section { padding: 78px 0 24px; }
  .home-stats-heading h2 { font-size: 1.78rem; }
  .home-stats-heading p { font-size: .94rem; }
  .home-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 32px; }
  .home-stat-card { min-height: 0; padding: 24px 14px 25px; }
  .home-stat-card::before { left: 14px; }
  .home-stat-icon { width: 26px; height: 26px; }
  .home-stat-value { margin-top: 16px; }
  .home-stat-value strong { font-size: clamp(2rem, 10vw, 2.65rem); }
  .home-stat-card h3 { font-size: .82rem; }
  .home-stat-card p { display: none; }
  .feature-showcase-head h2, .mobility-showcase-head h2, .driver-app-copy h2 { font-size: 1.78rem; }
  .platform-feature-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .platform-feature-card { min-height: 239px; padding: 22px; }
  .mobility-showcase > .container { width: min(100% - 28px, 1180px); }
  .mobility-constellation { grid-template-columns: 1fr; gap: 0; margin-top: 35px; }
  .mobility-hub { width: 150px; height: 150px; margin-bottom: 28px; }
  .mobility-hub img { width: 123px; }
  .mobility-node { padding: 17px 2px; }
  .mobility-node-icon { flex-basis: 52px; width: 52px; height: 52px; }
  .driver-app-visual { width: min(100%, 360px); min-height: 350px; }
  .driver-phone-home { left: 4%; width: 45%; }
  .driver-phone-earnings { right: 4%; top: 18px; width: 42%; }
  .driver-phone-shell { padding: 6px; border-radius: 30px; }
  .driver-phone-screen { border-radius: 24px; }
  .driver-phone-speaker { top: 10px; height: 5px; }
  .driver-phone-shell::before { left: -4px; height: 38px; }
  .driver-phone-shell::after { right: -4px; height: 48px; }
  .driver-capability-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .feature-showcase-action { margin-top: 32px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .platform-copy h2 { font-size: 1.72rem; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 350px; }
  .solution-thumbnail { height: 142px; }
  .solution-card h3 { margin-top: 18px; }
  .cta-band { grid-template-columns: 1fr; padding: 36px 25px; }
  .page-hero { padding: 124px 0 69px; }
  .page-hero h1 { font-size: 1.95rem; }
  .integration-hero { padding: 116px 0 64px; }
  .integration-hero-copy h1 { font-size: 1.95rem; }
  .integration-hero-copy > p { font-size: 1rem; }
  .outcome-list { grid-template-columns: 1fr; }
  .integration-cards, .integration-network { grid-template-columns: 1fr; }
  .integration-card { min-height: 226px; padding: 20px; }
  .integration-card header { gap: 12px; }
  .integration-card-heading { gap: 10px; }
  .integration-card-icon { flex-basis: 42px; width: 42px; height: 42px; }
  .business-tools { margin-top: 66px; }
  .business-tools-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 14px; }
  .business-tool { padding: 17px 8px; }
  .integration-network { padding: 19px; border-radius: 25px; }
  .network-hub { grid-column: auto; width: min(238px, 86%); }
  .network-node { min-height: 142px; }
  .quote-block { padding: 33px 25px; }
  .form-card { padding: 21px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .checks { grid-template-columns: 1fr; }
  .video-card { grid-template-columns: 110px 1fr; }
  .video-copy { padding: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; padding-top: 58px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .support-panel { right: 14px; bottom: 91px; width: calc(100vw - 28px); max-height: calc(100svh - 108px); padding: 21px; border-radius: 20px; }
  .support-panel-head h2 { font-size: 1.4rem; }
  .support-option { grid-template-columns: 38px minmax(0, 1fr) 18px; min-height: 69px; padding: 10px 12px; }
  .support-option-icon { width: 38px; height: 38px; }
  .floating-controls { right: 14px; bottom: 14px; gap: 10px; }
  .scroll-top-button { width: 45px; height: 45px; }
  .support-toggle { width: 62px; height: 62px; }
}

/* Resource hub */
.resource-hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  overflow: hidden;
  padding: 126px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 79% 37%, rgba(43,76,255,.25), transparent 27%),
    radial-gradient(circle at 9% 84%, rgba(54,217,255,.08), transparent 22%),
    linear-gradient(150deg, #020817 0%, #061633 50%, #020817 100%);
}
.resource-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(105,128,235,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(105,128,235,.17) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, transparent 95%);
}
.resource-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  right: -250px;
  top: -220px;
  border: 1px solid rgba(93,119,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(68,88,255,.025), 0 0 0 170px rgba(68,88,255,.018);
  animation: resource-orbit-spin 24s linear infinite;
}
.resource-art-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #020817;
}
.resource-art-layer::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #020817 0%, rgba(2,8,23,.98) 20%, rgba(2,8,23,.88) 34%, rgba(2,8,23,.42) 52%, rgba(2,8,23,.08) 72%, transparent 100%),
    linear-gradient(180deg, #020817 0%, rgba(2,8,23,.38) 10%, transparent 26%, transparent 76%, rgba(2,8,23,.7) 92%, #020817 100%);
}
.resource-art-layer::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: radial-gradient(ellipse 74% 92% at 76% 48%, transparent 48%, rgba(2,8,23,.16) 72%, rgba(2,8,23,.72) 100%);
}
.resource-art-layer img {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 72% 52%;
  opacity: .98;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
  transition: transform .75s cubic-bezier(.2,.8,.2,1), filter .6s ease, opacity .6s ease;
}
.resource-hero-layout { position: relative; z-index: 4; display: grid; grid-template-columns: minmax(0, .85fr) minmax(470px, 1.15fr); gap: 58px; align-items: center; }
.resource-hero-copy { position: relative; z-index: 3; }
.resource-hero .breadcrumb { margin-bottom: 42px; color: rgba(255,255,255,.5); }
.resource-hero .breadcrumb a { color: rgba(255,255,255,.5); }
.resource-hero-copy .kicker { color: #8295ff; }
.resource-hero-copy h1 { max-width: 620px; margin-top: 17px; color: #fff; font-size: clamp(2.1rem, 3.75vw, 3.35rem); line-height: 1.04; letter-spacing: -.048em; }
.resource-hero-copy > p { max-width: 600px; margin-top: 23px; color: #9eabc5; font-size: 1rem; line-height: 1.72; }
.resource-hero-visual { position: relative; width: min(100%, 680px); min-height: 500px; justify-self: end; isolation: isolate; }
.resource-hero-visual::before { content: ""; position: absolute; z-index: 0; inset: 4% -12% 1% -7%; border-radius: 50%; background: radial-gradient(ellipse, rgba(19,90,255,.24), rgba(13,71,170,.08) 43%, transparent 72%); filter: blur(27px); animation: resource-art-breathe 7s ease-in-out infinite; }
.resource-hero:hover .resource-art-layer img { opacity: 1; transform: scale(1.035); filter: saturate(1.08) brightness(1.02); }
@keyframes resource-art-breathe { 0%, 100% { opacity: .68; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.06); } }
.resource-visual-orbit { position: absolute; z-index: 1; border: 1px dashed rgba(80,131,255,.22); border-radius: 50%; pointer-events: none; }
.resource-visual-orbit-one { width: 420px; height: 420px; right: -90px; top: -12px; animation: resource-orbit-spin 22s linear infinite; }
.resource-visual-orbit-two { width: 275px; height: 275px; left: -30px; bottom: -22px; border-color: rgba(54,217,255,.15); animation: resource-orbit-spin 17s linear infinite reverse; }
.resource-signal { position: absolute; z-index: 4; display: block; width: 13px; height: 13px; border: 2px solid #6edfff; border-radius: 50%; background: #1c4fff; box-shadow: 0 0 0 8px rgba(54,217,255,.08), 0 0 22px rgba(54,217,255,.75); animation: resource-signal-pulse 2.8s ease-out infinite; }
.resource-signal-one { right: 6%; top: 15%; }
.resource-signal-two { left: 2%; bottom: 18%; animation-delay: -1.2s; }
.resource-particles { position: absolute; z-index: 5; inset: -18px -20px; pointer-events: none; }
.resource-particle { position: absolute; display: block; width: 6px; height: 6px; opacity: .78; border-radius: 50%; background: #70dfff; box-shadow: 0 0 12px rgba(75,212,255,.85); animation: resource-particle-fly 5.8s ease-in-out infinite; }
.resource-particle:nth-child(3n + 2) { width: 4px; height: 4px; background: #7d8cff; animation-duration: 7.2s; }
.resource-particle:nth-child(3n + 3) { width: 8px; height: 8px; opacity: .48; background: transparent; border: 1px solid #536cff; animation-duration: 8.4s; }
.resource-particle-1 { left: 1%; top: 14%; }
.resource-particle-2 { left: 8%; top: 44%; animation-delay: -2s; }
.resource-particle-3 { left: 14%; bottom: 5%; animation-delay: -4s; }
.resource-particle-4 { left: 34%; top: 1%; animation-delay: -1.3s; }
.resource-particle-5 { right: 32%; top: 3%; animation-delay: -3.4s; }
.resource-particle-6 { right: 4%; top: 31%; animation-delay: -.7s; }
.resource-particle-7 { right: 0; bottom: 22%; animation-delay: -4.7s; }
.resource-particle-8 { right: 25%; bottom: 0; animation-delay: -2.8s; }
.resource-particle-9 { left: 42%; bottom: 3%; animation-delay: -5.2s; }
.resource-particle-10 { left: -2%; top: 66%; animation-delay: -1.8s; }
.resource-particle-11 { right: 13%; top: 7%; animation-delay: -3.1s; }
.resource-particle-12 { left: 24%; top: 18%; animation-delay: -5.8s; }

.resources-page-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, rgba(66,70,255,.17), transparent 22%),
    radial-gradient(circle at 92% 55%, rgba(54,217,255,.07), transparent 20%),
    linear-gradient(155deg, #020817 0%, #071633 50%, #020817 100%);
}
.resources-page-flow > .section { position: relative; z-index: 1; background: transparent; }
.resource-listing-section { padding-top: 104px; }
.resource-listing-heading { max-width: 720px; margin-bottom: 45px; }
.resource-listing-heading .eyebrow { color: #8295ff; }
.resource-listing-heading h2 { font-size: clamp(1.7rem, 2.8vw, 2.65rem); line-height: 1.1; letter-spacing: -.035em; }
.resources-page-flow .article-grid { gap: 18px; }
.resources-page-flow .article-card { min-height: 450px; }
.resources-page-flow .article-art { height: 205px; }
.resources-page-flow .article-art::after { inset: 0; width: auto; height: auto; border: 0; border-radius: 0; background: linear-gradient(0deg, rgba(2,10,29,.94) 0%, rgba(2,10,29,.08) 66%); box-shadow: none; }
.resources-page-flow .article-art img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .55s ease; }
.resources-page-flow .article-card:hover .article-art img, .resources-page-flow .article-card:focus-within .article-art img { transform: scale(1.065); filter: saturate(1.1) brightness(1.04); }
.resources-page-flow .article-art span { z-index: 2; left: 20px; bottom: 17px; color: #bfc9ff; }
.resources-page-flow .article-body { padding: 23px; }
.resources-page-flow .article-body > small { color: #7c8ead; font-size: .72rem; font-weight: 700; }
.resources-page-flow .article-body h3 { margin-top: 10px; color: #fff; font-size: 1.03rem; }
.resources-page-flow .article-body p { margin-bottom: 21px; font-size: .88rem; }
.resources-page-flow .article-body .text-link { min-height: 38px; padding: 0 13px; border: 1px solid rgba(102,117,255,.3); border-radius: 999px; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
.resources-page-flow .article-body .text-link:hover, .resources-page-flow .article-body .text-link:focus-visible { color: #fff; border-color: rgba(103,118,255,.72); background: linear-gradient(135deg, rgba(82,100,255,.7), rgba(43,37,242,.7)); transform: translateY(-2px); outline: none; }
.resource-notice { color: #aab7d0; border-color: rgba(83,105,198,.38); background: rgba(7,21,52,.76); }
.article-reader-section { padding: 90px 0 105px; }
.article-back-link { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 25px; color: #a9b5d0; font-size: .86rem; font-weight: 750; transition: color .25s ease, transform .25s ease; }
.article-back-link:hover, .article-back-link:focus-visible { color: #fff; transform: translateX(-4px); outline: none; }
.article-reader { max-width: 880px; padding: clamp(28px, 5vw, 58px); border: 1px solid rgba(91,111,204,.38); border-radius: 25px; background: linear-gradient(150deg, rgba(13,35,82,.95), rgba(4,16,42,.98)); box-shadow: inset 0 3px 0 #6976ff, inset 0 1px 0 rgba(255,255,255,.06), 0 28px 70px rgba(0,0,0,.24); }
.article-reader header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.article-reader header .eyebrow { margin: 0; color: #8b9cff; }
.article-reader-meta { display: flex; gap: 18px; color: #7f8dab; font-size: .75rem; }
.article-reader h2 { margin: 42px 0 17px; color: #fff; font-size: clamp(1.45rem, 2.5vw, 2.05rem); line-height: 1.18; }
.article-reader h3 { margin: 30px 0 10px; color: #c9d2ff; font-size: 1.05rem; line-height: 1.35; }
.article-reader p { margin: 0 0 20px; color: #aab6ce; font-size: 1rem; line-height: 1.82; }
.article-reader .article-lead { color: #d6ddef; font-size: 1.08rem; line-height: 1.8; }
.article-reader blockquote { margin: 34px 0; padding: 22px 24px; color: #dce4fa; border: 1px solid rgba(74,202,223,.23); border-left: 3px solid #39d3d1; border-radius: 4px 16px 16px 4px; background: rgba(11,57,77,.35); font-size: 1rem; font-weight: 650; line-height: 1.7; }
@keyframes resource-orbit-spin { to { transform: rotate(360deg); } }
@keyframes resource-signal-pulse { 0% { box-shadow: 0 0 0 0 rgba(54,217,255,.3), 0 0 22px rgba(54,217,255,.7); } 72%, 100% { box-shadow: 0 0 0 18px rgba(54,217,255,0), 0 0 30px rgba(54,217,255,.36); } }
@keyframes resource-particle-fly { 0%, 100% { opacity: .35; transform: translate3d(0, 0, 0) scale(.9); } 45% { opacity: 1; transform: translate3d(18px, -24px, 0) scale(1.18); } 72% { opacity: .58; transform: translate3d(-8px, -37px, 0) scale(.86); } }

@media (max-width: 1040px) {
  .resource-hero-layout { grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); gap: 32px; }
  .resource-hero-visual { min-height: 450px; }
}

@media (max-width: 820px) {
  .resource-hero { padding: 116px 0 74px; }
  .resource-art-layer::before { background: linear-gradient(180deg, #020817 0%, rgba(2,8,23,.98) 33%, rgba(2,8,23,.75) 52%, rgba(2,8,23,.16) 72%, #020817 100%); }
  .resource-art-layer::after { background: linear-gradient(90deg, rgba(2,8,23,.42), transparent 30%, transparent 78%, rgba(2,8,23,.48)); }
  .resource-art-layer img { object-position: 70% 72%; opacity: .82; }
  .resource-hero-layout { grid-template-columns: 1fr; }
  .resource-hero-copy { max-width: 700px; }
  .resource-hero-visual { width: min(100%, 620px); min-height: 430px; justify-self: center; }
  .resources-page-flow .article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .resource-hero { padding: 105px 0 58px; }
  .resource-hero .breadcrumb { margin-bottom: 28px; }
  .resource-hero-copy h1 { font-size: 2rem; }
  .resource-hero-copy > p { font-size: .94rem; }
  .resource-hero-visual { min-height: 345px; }
  .resource-art-layer img { object-position: 67% 78%; }
  .resource-visual-orbit-one { width: 290px; height: 290px; }
  .resource-visual-orbit-two { width: 190px; height: 190px; }
  .resource-listing-section { padding-top: 76px; }
  .resources-page-flow .article-card { min-height: 430px; }
  .article-reader-section { padding: 68px 0 78px; }
  .article-reader { border-radius: 20px; }
  .article-reader header { align-items: flex-start; flex-direction: column; }
  .article-reader-meta { flex-direction: column; gap: 5px; }
  .article-reader p, .article-reader blockquote { font-size: .94rem; }
}

/* Pricing experience */
.pricing-hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  padding: 126px 0 92px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 25%, rgba(69,80,255,.24), transparent 25%),
    radial-gradient(circle at 12% 82%, rgba(54,217,255,.1), transparent 24%),
    linear-gradient(150deg, #020817 0%, #071633 52%, #020817 100%);
}
.pricing-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 720px;
  right: -240px;
  top: -250px;
  border: 1px solid rgba(107,124,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(86,102,255,.025), 0 0 0 190px rgba(86,102,255,.018);
  animation: pricing-orbit 18s linear infinite;
}
.pricing-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(114,135,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(114,135,255,.18) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, transparent, #000 28%, transparent 96%);
}
.pricing-ambient { position: absolute; z-index: -1; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.pricing-ambient-one { width: 330px; height: 330px; right: 18%; bottom: -170px; background: rgba(43,37,242,.28); animation: pricing-ambient 10s ease-in-out infinite; }
.pricing-ambient-two { width: 230px; height: 230px; left: -70px; top: 38%; background: rgba(54,217,255,.1); animation: pricing-ambient 12s ease-in-out infinite reverse; }
.pricing-hero .breadcrumb { margin-bottom: 34px; color: rgba(255,255,255,.5); }
.pricing-hero .breadcrumb a { color: rgba(255,255,255,.5); }
.pricing-segment-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  width: min(660px, 100%);
  padding: 7px;
  border: 1px solid rgba(96,116,222,.38);
  border-radius: 18px;
  background: rgba(6,20,53,.74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 24px 50px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}
.pricing-switch-button {
  display: inline-flex;
  min-height: 57px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 18px;
  color: #a7b2cb;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  transition: color .25s ease, transform .3s cubic-bezier(.2,.8,.2,1), border-color .25s ease, background .3s ease, box-shadow .3s ease;
}
.pricing-switch-button svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pricing-switch-button:hover { color: #fff; background: rgba(255,255,255,.045); }
.pricing-switch-button.is-active { color: #fff; border-color: rgba(125,138,255,.58); background: linear-gradient(135deg, #5264ff, #2b25f2); box-shadow: 0 13px 30px rgba(43,37,242,.28); }
.pricing-switch-button:focus-visible { outline: 2px solid #89dfff; outline-offset: 3px; }
.pricing-hero-copy { max-width: 900px; margin-top: 62px; }
.pricing-hero-copy .kicker { color: #8093ff; }
.pricing-hero-copy h1 { max-width: 850px; margin-top: 17px; color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.55rem); line-height: 1.02; letter-spacing: -.052em; }
.pricing-hero-copy > p { max-width: 760px; margin-top: 23px; color: #9eabc6; font-size: 1.03rem; line-height: 1.7; }
.pricing-highlights { display: flex; flex-wrap: wrap; gap: 13px 28px; margin-top: 34px; }
.pricing-highlights span { display: inline-flex; align-items: center; gap: 9px; color: #dbe2f4; font-size: .87rem; font-weight: 700; }
.pricing-highlights i { display: grid; width: 21px; height: 21px; place-items: center; color: #071633; border-radius: 50%; background: #39d3d1; box-shadow: 0 0 0 5px rgba(57,211,209,.08); font-size: .68rem; font-style: normal; font-weight: 900; }

.pricing-page-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 6% 17%, rgba(69,80,255,.16), transparent 20%),
    radial-gradient(circle at 94% 48%, rgba(54,217,255,.08), transparent 19%),
    radial-gradient(circle at 24% 90%, rgba(43,37,242,.13), transparent 23%),
    linear-gradient(155deg, #020817 0%, #071633 50%, #020817 100%);
  background-size: 130% 115%;
  animation: dark-flow-shift 24s ease-in-out infinite alternate;
}
.pricing-page-flow::before, .pricing-page-flow::after { content: ""; position: absolute; z-index: -1; width: 560px; height: 560px; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.pricing-page-flow::before { left: -300px; top: 26%; background: rgba(72,80,255,.15); animation: ambient-orb-left 16s ease-in-out infinite; }
.pricing-page-flow::after { right: -310px; bottom: 11%; background: rgba(54,217,255,.08); animation: ambient-orb-right 18s ease-in-out infinite; }
.pricing-plans-section { padding: 105px 0 76px; }
.pricing-controls { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.pricing-controls .eyebrow, .pricing-section-heading .eyebrow, .pricing-faq-heading .eyebrow, .pricing-help-card .eyebrow { color: #8396ff; }
.pricing-controls h2, .pricing-section-heading h2, .pricing-help-card h2, .pricing-faq-heading h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.65rem); line-height: 1.08; }
.billing-switch { display: inline-grid; flex: 0 0 auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 6px; border: 1px solid rgba(91,111,204,.42); border-radius: 15px; background: rgba(6,19,49,.8); }
.billing-switch-button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 0 18px; color: #a9b5ce; border: 0; border-radius: 10px; background: transparent; cursor: pointer; font: inherit; font-size: .84rem; font-weight: 800; white-space: nowrap; transition: color .25s ease, background .3s ease, transform .3s ease, box-shadow .3s ease; }
.billing-switch-button span { padding: 5px 7px; color: #33df91; border: 1px solid rgba(51,223,145,.2); border-radius: 999px; background: rgba(33,183,116,.1); font-size: .65rem; }
.billing-switch-button:hover { color: #fff; }
.billing-switch-button.is-active { color: #fff; background: linear-gradient(135deg, #5264ff, #2b25f2); box-shadow: 0 12px 27px rgba(43,37,242,.25); }
.billing-switch-button.is-active span { color: #d7ffea; border-color: rgba(255,255,255,.2); background: rgba(2,13,36,.22); }
.billing-switch-button:focus-visible { outline: 2px solid #89dfff; outline-offset: 3px; }
.pricing-product-panel[hidden] { display: none; }
.pricing-plan-grid { gap: 18px; align-items: stretch; }
.pricing-plan-card { min-height: 880px; padding: 50px 27px 28px; }
.pricing-plan-card:nth-child(1) { --card-accent: #6976ff; --card-link: #a5adff; }
.pricing-plan-card:nth-child(2) { --card-accent: #39d3d1; --card-link: #8df1ef; }
.pricing-plan-card:nth-child(3) { --card-accent: #4f9dff; --card-link: #83bdff; }
.pricing-popular { position: absolute; z-index: 4; left: 0; right: 0; top: 0; display: flex; height: 35px; align-items: center; justify-content: center; color: #fff; background: linear-gradient(90deg, #5264ff, #2b25f2); font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.pricing-popular::before { content: "★"; margin-right: 8px; }
.pricing-plan-icon { display: grid; width: 54px; height: 54px; place-items: center; color: var(--card-link); border: 1px solid var(--card-border); border-radius: 17px; background: rgba(2,12,35,.31); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); transition: color .3s ease, transform .35s ease, background .3s ease; }
.pricing-plan-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pricing-plan-card:hover .pricing-plan-icon { color: #fff; background: linear-gradient(135deg, var(--card-accent), #2b25f2); transform: translateY(-3px) rotate(-3deg); }
.pricing-plan-level { display: block; margin-top: 21px; color: var(--card-link); font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pricing-plan-card h3 { margin-top: 8px; font-size: 1.38rem; }
.pricing-plan-card > .pricing-plan-summary { min-height: 51px; margin: 10px 0 0; color: #a8b5cf; font-size: .83rem; line-height: 1.55; }
.pricing-capacity { display: grid; gap: 4px; margin-top: 19px; color: #e2e7f2; font-size: .82rem; line-height: 1.45; }
.pricing-amount { display: flex; align-items: baseline; gap: 6px; margin-top: 22px; }
.pricing-amount > span { color: #dfe5f4; font-size: .73rem; font-weight: 800; }
.pricing-amount strong { color: #fff; font-size: 2.35rem; line-height: 1; letter-spacing: -.045em; }
.pricing-amount small { color: #9ba8c4; font-size: .78rem; }
.pricing-plan-card > .pricing-billing-note { min-height: 31px; margin: 7px 0 0; color: #8493b0; font-size: .7rem; line-height: 1.4; }
.pricing-plan-card > .btn { min-height: 48px; margin-top: 18px; color: #fff; border-color: rgba(111,128,235,.48); background: rgba(3,14,39,.38); }
.pricing-plan-card > .btn:hover, .pricing-plan-card > .btn:focus-visible { border-color: transparent; background: linear-gradient(135deg, #5264ff, #2b25f2); }
.pricing-plan-card.featured > .btn { color: #fff; border-color: transparent; background: linear-gradient(135deg, #5264ff, #2b25f2); box-shadow: 0 14px 32px rgba(43,37,242,.3); }
.pricing-plan-card.featured > .btn:hover, .pricing-plan-card.featured > .btn:focus-visible { background: linear-gradient(135deg, #39d3d1, #267fc9); box-shadow: 0 17px 36px rgba(35,181,190,.22); }
.pricing-plan-card .price-features { gap: 9px; margin: 22px 0 0; padding-top: 19px; }
.pricing-plan-card .price-features li { color: #aab6ce; font-size: .78rem; line-height: 1.35; }
.pricing-plan-card .price-features li::before { flex: 0 0 18px; display: grid; width: 18px; height: 18px; place-items: center; color: #06152f; border-radius: 50%; background: var(--card-link); font-size: .62rem; }
.pricing-plan-card .price-features .pricing-feature-intro { color: #f2f5fb; font-weight: 800; }
.pricing-plan-card .price-features .pricing-feature-intro::before { display: none; }

.pricing-comparison { padding-top: 108px; }
.pricing-section-heading { max-width: 720px; margin-bottom: 40px; }
.pricing-section-heading p, .pricing-faq-heading + p { max-width: 650px; margin-top: 15px; color: #98a6c2; font-size: .92rem; line-height: 1.65; }
.comparison-table-wrap { overflow-x: auto; border: 1px solid rgba(93,113,210,.37); border-radius: 22px; background: rgba(7,22,55,.75); box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 25px 62px rgba(0,0,0,.2); scrollbar-color: #5264ff #071633; }
.comparison-table-wrap:focus-visible { outline: 2px solid #6fdcf1; outline-offset: 4px; }
.comparison-table { width: 100%; min-width: 800px; border-collapse: collapse; table-layout: fixed; }
.comparison-table th, .comparison-table td { height: 60px; padding: 12px 19px; border-bottom: 1px solid rgba(89,108,191,.2); text-align: center; font-size: .8rem; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table thead th { height: 83px; color: #fff; background: rgba(8,23,58,.8); }
.comparison-table thead th:first-child, .comparison-table tbody th { width: 28%; text-align: left; }
.comparison-table thead th b { display: block; font-size: .98rem; }
.comparison-table thead th span { display: block; margin-top: 5px; color: #8e9dbb; font-size: .68rem; font-weight: 600; }
.comparison-table thead th strong { color: #bdc7dd; }
.comparison-table tbody th { color: #c5cee1; font-weight: 700; }
.comparison-table tbody td { color: #b3bfd7; }
.comparison-table .is-featured { background: rgba(64,69,207,.105); }
.comparison-table thead .is-featured { background: linear-gradient(180deg, rgba(58,64,197,.3), rgba(41,47,156,.16)); }
.comparison-state { display: inline-grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; font-size: .72rem; font-weight: 900; }
.comparison-state.included { color: #061a2d; background: #39d3d1; box-shadow: 0 0 0 5px rgba(57,211,209,.06); }
.comparison-state.not-included { color: #73819f; background: rgba(255,255,255,.04); }
.pricing-depth-section { padding-top: 108px; }
.pricing-depth-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.pricing-depth-card { position: relative; min-height: 220px; overflow: hidden; padding: 27px; border: 1px solid rgba(93,113,210,.32); border-radius: 19px; background: linear-gradient(145deg, rgba(14,38,84,.82), rgba(4,17,43,.95)); box-shadow: inset 3px 0 0 #6976ff, inset 0 1px 0 rgba(255,255,255,.04); transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease; }
.pricing-depth-card:nth-child(3n + 2) { box-shadow: inset 3px 0 0 #8775ff, inset 0 1px 0 rgba(255,255,255,.04); }
.pricing-depth-card:nth-child(3n + 3) { box-shadow: inset 3px 0 0 #39d3d1, inset 0 1px 0 rgba(255,255,255,.04); }
.pricing-depth-card::after { content: ""; position: absolute; width: 140px; height: 140px; right: -85px; top: -80px; border-radius: 50%; background: rgba(91,108,255,.14); filter: blur(20px); }
.pricing-depth-card:hover { transform: translateY(-6px); border-color: rgba(114,132,255,.66); box-shadow: inset 3px 0 0 #6976ff, 0 21px 42px rgba(0,0,0,.2); }
.pricing-depth-card > span { color: #7f91ff; font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.pricing-depth-card h3 { position: relative; margin-top: 36px; color: #fff; font-size: 1.02rem; line-height: 1.35; }
.pricing-depth-card p { position: relative; margin-top: 11px; color: #9eabc5; font-size: .8rem; line-height: 1.65; }
.pricing-depth-link { display: inline-flex; margin-top: 28px; }

.pricing-comparison-accordion { display: grid; gap: 12px; }
.pricing-comparison-category { overflow: hidden; border: 1px solid rgba(93,113,210,.32); border-radius: 18px; background: rgba(7,22,55,.7); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.pricing-comparison-category[open] { border-color: rgba(111,130,238,.55); box-shadow: inset 3px 0 0 #6976ff, 0 18px 40px rgba(0,0,0,.16); }
.pricing-comparison-category > summary { display: grid; grid-template-columns: minmax(0, 1fr) auto 24px; gap: 16px; min-height: 70px; align-items: center; padding: 18px 22px; color: #fff; cursor: pointer; list-style: none; }
.pricing-comparison-category > summary::-webkit-details-marker { display: none; }
.pricing-comparison-category > summary span { font-size: .92rem; font-weight: 850; }
.pricing-comparison-category > summary small { color: #8797b5; font-size: .68rem; font-weight: 700; }
.pricing-comparison-category > summary i { position: relative; width: 22px; height: 22px; border: 1px solid rgba(126,142,223,.38); border-radius: 50%; }
.pricing-comparison-category > summary i::before, .pricing-comparison-category > summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 1px; background: #acb8d1; transform: translate(-50%, -50%); transition: transform .25s ease; }
.pricing-comparison-category > summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.pricing-comparison-category[open] > summary i::after { transform: translate(-50%, -50%); }
.pricing-comparison-category .comparison-table-wrap { border: 0; border-top: 1px solid rgba(93,113,210,.26); border-radius: 0; box-shadow: none; }

.pricing-large-fleet { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 34px; align-items: center; margin-top: 68px; padding: 38px 42px; overflow: hidden; border: 1px solid rgba(100,120,226,.44); border-radius: 23px; background: linear-gradient(130deg, rgba(24,42,95,.94), rgba(10,25,65,.98)); box-shadow: inset 0 2px 0 rgba(105,122,255,.56), 0 24px 55px rgba(0,0,0,.2); }
.pricing-large-fleet .eyebrow { color: #8496ff; }
.pricing-large-fleet h2 { margin-top: 11px; color: #fff; font-size: clamp(1.55rem, 2.8vw, 2.35rem); line-height: 1.1; }
.pricing-large-fleet p { max-width: 700px; margin-top: 12px; color: #9eabc5; font-size: .88rem; line-height: 1.65; }
.pricing-large-fleet .btn { justify-content: center; min-width: 175px; }

.pricing-disclosures { display: grid; gap: 7px; max-width: 970px; margin-top: 31px; padding: 18px 20px; border: 1px solid rgba(92,113,207,.25); border-radius: 14px; background: rgba(4,16,43,.45); }
.pricing-footnote, .pricing-vat { margin: 0; color: #8493b0; font-size: .72rem; line-height: 1.6; }
.pricing-vat { color: #b0bbd0; font-weight: 750; }

.pricing-help-section { padding: 38px 0 110px; }
.pricing-help-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 28px; align-items: center; padding: 35px; overflow: hidden; border: 1px solid rgba(91,111,204,.42); border-radius: 24px; background: linear-gradient(130deg, rgba(21,38,87,.92), rgba(13,25,67,.98)); box-shadow: inset 0 2px 0 rgba(99,114,255,.7), 0 25px 58px rgba(0,0,0,.21); }
.pricing-help-card .eyebrow { margin-bottom: 10px; }
.pricing-help-card h2 { font-size: clamp(1.55rem, 2.65vw, 2.35rem); }
.pricing-help-card p { max-width: 600px; margin-top: 10px; color: #9eabc5; font-size: .88rem; line-height: 1.6; }
.pricing-help-icon { display: grid; width: 76px; height: 76px; place-items: center; color: #7384ff; border: 1px solid rgba(99,114,255,.48); border-radius: 22px; background: rgba(43,37,242,.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.pricing-help-icon svg { width: 39px; height: 39px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pricing-help-actions { display: flex; flex-direction: column; gap: 10px; min-width: 190px; }
.pricing-help-actions .btn { justify-content: center; }
.pricing-faq-heading { max-width: 680px; margin-top: 105px; }
.pricing-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
.pricing-faq { position: relative; overflow: hidden; min-height: 70px; color: #fff; border: 1px solid rgba(91,111,204,.35); border-radius: 17px; background: linear-gradient(145deg, rgba(14,42,91,.82), rgba(4,17,43,.92)); box-shadow: inset 3px 0 0 #6976ff, inset 0 1px 0 rgba(255,255,255,.04); transition: border-color .3s ease, transform .3s ease, background .3s ease, box-shadow .3s ease; }
.pricing-faq:nth-child(3n + 2) { box-shadow: inset 3px 0 0 #8775ff, inset 0 1px 0 rgba(255,255,255,.04); background: linear-gradient(145deg, rgba(49,37,137,.77), rgba(15,19,70,.93)); }
.pricing-faq:nth-child(3n + 3) { box-shadow: inset 3px 0 0 #39d3d1, inset 0 1px 0 rgba(255,255,255,.04); background: linear-gradient(145deg, rgba(7,62,82,.82), rgba(3,24,49,.94)); }
.pricing-faq:hover, .pricing-faq[open] { transform: translateY(-3px); border-color: rgba(115,131,255,.72); box-shadow: inset 3px 0 0 #6976ff, 0 18px 38px rgba(0,0,0,.22); }
.pricing-faq summary { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; cursor: pointer; list-style: none; font-size: .88rem; font-weight: 800; line-height: 1.35; }
.pricing-faq summary::-webkit-details-marker { display: none; }
.pricing-faq summary span { position: relative; flex: 0 0 22px; display: block; width: 22px; height: 22px; border: 1px solid rgba(130,145,223,.35); border-radius: 50%; }
.pricing-faq summary span::before, .pricing-faq summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 1px; background: #a6b3d0; transform: translate(-50%, -50%); transition: transform .25s ease; }
.pricing-faq summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.pricing-faq[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.pricing-faq p { padding: 0 20px 20px; color: #9daac4; font-size: .82rem; line-height: 1.65; }
@keyframes pricing-orbit { to { transform: rotate(360deg); } }
@keyframes pricing-ambient { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(-40px, -20px, 0) scale(1.1); } }

@media (max-width: 1040px) {
  .pricing-plan-card { padding-inline: 22px; }
  .pricing-amount strong { font-size: 1.95rem; }
  .pricing-depth-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-help-card { grid-template-columns: auto minmax(0, 1fr); }
  .pricing-help-actions { grid-column: 2; flex-direction: row; }
}

@media (max-width: 820px) {
  .pricing-hero { min-height: auto; padding: 116px 0 80px; }
  .pricing-hero-copy { margin-top: 48px; }
  .pricing-controls { align-items: flex-start; flex-direction: column; }
  .pricing-plan-grid { grid-template-columns: 1fr; }
  .pricing-plan-card { min-height: auto; }
  .pricing-large-fleet { grid-template-columns: 1fr; }
  .pricing-large-fleet .btn { width: fit-content; }
  .pricing-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .pricing-hero { padding: 105px 0 68px; }
  .pricing-hero .breadcrumb { margin-bottom: 25px; }
  .pricing-segment-switch { grid-template-columns: 1fr; width: 100%; }
  .pricing-switch-button { min-height: 51px; font-size: .82rem; }
  .pricing-hero-copy { margin-top: 39px; }
  .pricing-hero-copy h1 { font-size: 2rem; }
  .pricing-hero-copy > p { font-size: .94rem; }
  .pricing-highlights { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .pricing-plans-section { padding: 76px 0 58px; }
  .pricing-controls { margin-bottom: 36px; }
  .billing-switch { width: 100%; }
  .billing-switch-button { min-height: 48px; padding: 0 10px; font-size: .74rem; }
  .billing-switch-button span { display: none; }
  .pricing-plan-card { padding: 46px 21px 24px; }
  .pricing-plan-card h3 { font-size: 1.25rem; }
  .pricing-depth-section { padding-top: 78px; }
  .pricing-depth-grid { grid-template-columns: 1fr; }
  .pricing-depth-card { min-height: 0; padding: 23px 21px; }
  .pricing-depth-card h3 { margin-top: 27px; }
  .pricing-comparison { padding-top: 78px; }
  .pricing-comparison-category > summary { grid-template-columns: minmax(0, 1fr) 22px; padding: 17px 18px; }
  .pricing-comparison-category > summary small { display: none; }
  .comparison-table th, .comparison-table td { padding: 11px 14px; }
  .comparison-table { min-width: 690px; }
  .pricing-large-fleet { margin-top: 52px; padding: 28px 23px; }
  .pricing-large-fleet .btn { width: 100%; }
  .pricing-disclosures { padding: 16px; }
  .pricing-help-section { padding: 25px 0 78px; }
  .pricing-help-card { grid-template-columns: 1fr; padding: 25px; }
  .pricing-help-icon { width: 61px; height: 61px; border-radius: 18px; }
  .pricing-help-actions { grid-column: auto; flex-direction: column; width: 100%; }
  .pricing-faq-heading { margin-top: 77px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-slide { opacity: 0 !important; transform: none !important; animation: none !important; }
  .hero-slide:first-child { opacity: 1 !important; }
}

/* Content, trust and SEO amendment additions */
.home-trust-section { position: relative; padding: 92px 0 34px; }
.home-trust-section::before { content: ""; position: absolute; width: 600px; height: 260px; right: 2%; top: 12%; opacity: .48; pointer-events: none; background: radial-gradient(ellipse, rgba(65,85,255,.2), transparent 69%); filter: blur(22px); animation: stats-ambient-drift 9s ease-in-out infinite; }
.home-trust-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
.home-trust-card { --trust-accent: #6976ff; position: relative; min-height: 210px; overflow: hidden; padding: 27px; border: 1px solid rgba(96,116,214,.34); border-radius: 19px; background: linear-gradient(145deg, rgba(15,41,88,.86), rgba(4,17,43,.95)); box-shadow: inset 3px 0 0 var(--trust-accent), inset 0 1px 0 rgba(255,255,255,.045), 0 18px 42px rgba(0,0,0,.14); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.home-trust-card:nth-child(2) { --trust-accent: #8975ff; }
.home-trust-card:nth-child(3) { --trust-accent: #39d3d1; }
.home-trust-card:nth-child(4) { --trust-accent: #4f9dff; }
.home-trust-card::before { content: ""; position: absolute; width: 130px; height: 130px; right: -72px; top: -72px; border-radius: 50%; background: color-mix(in srgb, var(--trust-accent) 23%, transparent); filter: blur(22px); }
.home-trust-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--trust-accent) 68%, transparent); box-shadow: inset 3px 0 0 var(--trust-accent), 0 25px 48px rgba(0,0,0,.22); }
.home-trust-card > span { color: var(--trust-accent); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.home-trust-card h3 { position: relative; margin-top: 42px; color: #fff; font-size: 1rem; line-height: 1.35; }
.home-trust-card p { position: relative; margin-top: 12px; color: #a8b5cf; font-size: .83rem; line-height: 1.65; }

.compact-feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; margin: 23px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(111,130,218,.22); list-style: none; }
.compact-feature-list li { position: relative; padding-left: 17px; color: #bac5d9; font-size: .78rem; line-height: 1.45; }
.compact-feature-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--card-link, #6f7dff); box-shadow: 0 0 10px color-mix(in srgb, var(--card-link, #6f7dff) 55%, transparent); }
.operations-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.operations-module-card { min-height: 0; }
.operations-module-card .card-index { margin-bottom: 28px; }
.operations-module-card h2 { color: #fff; font-size: 1.08rem; line-height: 1.35; }
.operations-module-card p { max-width: 680px; }
.solution-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.solution-feature-card { min-height: 0; }
.solution-feature-card .card-index { margin-bottom: 35px; }

.integration-disclaimer { position: relative; z-index: 2; max-width: 900px; margin: 25px auto 0; padding: 13px 17px; color: #93a3bf; border: 1px solid rgba(102,123,216,.25); border-radius: 13px; background: rgba(4,16,43,.48); font-size: .75rem; line-height: 1.6; text-align: center; }
.mobility-node-status.ready, .network-node-status.ready { color: #75a8ff; }
.status-tag.ready { color: #91b8ff; border-color: rgba(94,140,255,.48); background: rgba(52,91,207,.13); }
.status-tag.progress, .network-node-status.progress, .mobility-node-status.progress { color: #ffbd3d; }

.driver-app-access { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; width: min(100%, 520px); align-items: center; margin-top: 25px; padding: 15px 17px; border: 1px solid rgba(112,132,223,.35); border-radius: 15px; background: linear-gradient(145deg, rgba(13,31,69,.82), rgba(4,16,42,.9)); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.driver-app-access-icons { display: flex; gap: 6px; align-items: center; color: #fff; }
.driver-app-access-icons svg { width: 23px; height: 28px; }
.driver-app-access strong, .driver-app-access small { display: block; }
.driver-app-access strong { color: #fff; font-size: .86rem; }
.driver-app-access small { margin-top: 4px; color: #97a6c2; font-size: .7rem; line-height: 1.5; }

.btn-whatsapp { flex-wrap: wrap; justify-content: center; gap: 4px 8px; color: #eafff4; border-color: rgba(61,211,139,.58); background: linear-gradient(135deg, rgba(28,142,91,.9), rgba(19,111,72,.96)); box-shadow: 0 13px 30px rgba(20,129,82,.2); cursor: pointer; opacity: 1; }
.btn-whatsapp:hover, .btn-whatsapp:focus-visible { color: #fff; border-color: rgba(128,255,190,.78); background: linear-gradient(135deg, #20b86f, #168455); box-shadow: 0 17px 36px rgba(20,129,82,.3); outline: none; }
.btn-whatsapp small { width: 100%; font-size: .6rem; line-height: 1; text-align: center; text-transform: uppercase; letter-spacing: .07em; }
.contact-method .btn-whatsapp { width: 100%; margin-top: 7px; }

.pricing-onboarding-section { padding: 86px 0; border-top: 1px solid rgba(90,111,207,.18); border-bottom: 1px solid rgba(90,111,207,.18); }
.onboarding-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 38px 0 0; padding: 0; list-style: none; }
.onboarding-grid li { position: relative; padding: 16px 18px 16px 43px; color: #d9e0ef; border: 1px solid rgba(92,113,207,.3); border-radius: 14px; background: rgba(8,25,58,.63); font-size: .82rem; line-height: 1.45; }
.onboarding-grid li::before { content: "✓"; position: absolute; left: 17px; top: 15px; color: #64d9d7; font-weight: 900; }
.onboarding-note { margin-top: 20px; color: #8f9fbc; font-size: .78rem; line-height: 1.6; }

.legal-layout { display: grid; grid-template-columns: minmax(0, 850px); justify-content: center; }
.legal-content { padding: 42px; border: 1px solid rgba(93,113,210,.24); border-radius: 22px; background: #fff; box-shadow: 0 22px 55px rgba(3,12,32,.07); }
.legal-updated { margin: 0 0 33px; color: #68748c; font-size: .78rem; font-weight: 700; }
.legal-content section + section { margin-top: 36px; padding-top: 33px; border-top: 1px solid #e4e9f2; }
.legal-content h2 { color: #0a1838; font-size: 1.3rem; line-height: 1.3; }
.legal-content p { margin-top: 12px; color: #516077; font-size: .93rem; line-height: 1.78; }

.footer-contact { display: grid; gap: 5px; margin-top: 18px; color: rgba(255,255,255,.58); font-size: .78rem; }
.footer-contact a { width: fit-content; color: #9eafff; }
.footer-subheading { margin-top: 24px; }

@media (max-width: 1040px) {
  .home-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .onboarding-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .operations-module-grid, .solution-feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .home-trust-section { padding: 78px 0 24px; }
  .home-trust-grid, .onboarding-grid { grid-template-columns: 1fr; }
  .home-trust-card { min-height: 0; }
  .compact-feature-list { grid-template-columns: 1fr; }
  .legal-content { padding: 25px 21px; border-radius: 17px; }
}
