/* =============================================
   LOGISTIX — Design System
   Premium 4PL eCommerce Logistics
   ============================================= */

/* --- RESET --- */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
  /* Brand */
  --navy: #1a1d3a;
  --navy-deep: #12142b;
  --navy-light: #2a2d50;
  --blue: #5ba1eb;
  --blue-hover: #4890d9;
  --blue-light: #e8f2fc;
  --blue-glow: rgba(91,161,235,.15);

  /* Neutrals */
  --white: #fff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f6;
  --gray-200: #e2e5ea;
  --gray-300: #cdd1d8;
  --gray-400: #9da3ae;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --black: #0a0c1a;

  /* Accents */
  --green: #22c55e;
  --orange: #f59e0b;
  --red: #ef4444;

  /* Type */
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --mono: 'DM Mono', 'SF Mono', monospace;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.15);
  --shadow-blue: 0 8px 30px rgba(91,161,235,.25);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: .2s var(--ease);
  --t-base: .35s var(--ease);
  --t-slow: .6s var(--ease);

  /* Layout */
  --container: 1200px;
  --container-lg: 1360px;
  --section-py: 120px;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* --- LAYOUT --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--lg {
  max-width: var(--container-lg);
}

/* --- TYPOGRAPHY --- */
.h1 { font-size: clamp(44px, 6vw, 72px); font-weight: 700; line-height: 1.05; letter-spacing: -2.5px; }
.h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; }
.h3 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.2; letter-spacing: -1px; }
.h4 { font-size: 20px; font-weight: 600; line-height: 1.3; }
.body-lg { font-size: 19px; line-height: 1.7; }
.body-sm { font-size: 14px; line-height: 1.6; }
.text-accent { color: var(--blue); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #88c8ff 50%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%,100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

/* --- TAG / LABEL --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: var(--blue-light);
  margin-bottom: 20px;
}
.tag--dark {
  background: rgba(91,161,235,.12);
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* --- SECTION HEADER --- */
.section-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p {
  font-size: 18px;
  color: var(--gray-500);
  margin-top: 16px;
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--md { font-size: 15px; padding: 14px 32px; }
.btn--lg { font-size: 16px; padding: 18px 40px; }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn--primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn--secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn--full { width: 100%; }

.btn--icon svg {
  transition: transform var(--t-fast);
}
.btn--icon:hover svg {
  transform: translateX(4px);
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--t-base);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,29,58,.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all var(--t-base);
  border-bottom: 1px solid transparent;
}

.header.scrolled::before {
  background: rgba(26,29,58,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(255,255,255,.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.header__logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.header__logo span {
  color: var(--blue);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 32px;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.header__link:hover,
.header__link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.header__login {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  padding: 5px 10px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--t-fast);
}
.header__login:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
}
.header__login svg { flex-shrink: 0; }

.header__link--login { display: none; }

.header__cta { font-size: 14px; padding: 10px 24px; margin-left: 24px; }
.header__login { margin-left: 12px; }

.header__burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-fast);
  transform-origin: center;
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px,5.5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px,-5.5px); }

/* --- HERO (HOME) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: rgba(91,161,235,.1);
  top: -20%; right: -5%;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(91,161,235,.06);
  bottom: -10%; left: 10%;
  animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}
.hero__orb--3 {
  width: 200px; height: 200px;
  background: rgba(91,161,235,.12);
  top: 30%; left: 40%;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-30px) scale(1.15); }
}

.hero__content { position: relative; z-index: 2; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(91,161,235,.25);
  border-radius: var(--r-pill);
  background: rgba(91,161,235,.06);
}
.hero__tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero__title {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero__proof-stat {
  display: flex;
  flex-direction: column;
}
.hero__proof-stat strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}
.hero__proof-stat span {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.hero__proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

/* Hero visual — Dashboard mockup */
.hero__visual {
  position: relative;
  z-index: 2;
}

.dashboard {
  background: var(--navy-light);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  overflow: hidden;
}

.dashboard__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dashboard__dots { display: flex; gap: 6px; }
.dashboard__dots span { width: 10px; height: 10px; border-radius: 50%; }
.dashboard__dots span:nth-child(1) { background: #ff5f57; }
.dashboard__dots span:nth-child(2) { background: #febc2e; }
.dashboard__dots span:nth-child(3) { background: #28c840; }
.dashboard__bar-title {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-left: 8px;
}

.dashboard__body {
  display: flex;
  min-height: 380px;
}

.dashboard__sidebar {
  width: 56px;
  background: rgba(255,255,255,.02);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dashboard__nav-dot {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  transition: all var(--t-fast);
}
.dashboard__nav-dot.active { background: var(--blue); }

.dashboard__main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dashboard__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dashboard__kpi {
  padding: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm);
}
.dashboard__kpi-label {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.dashboard__kpi-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
}
.dashboard__kpi-change {
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
}

.dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm);
}
.dashboard__chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(91,161,235,.2);
  transition: height 1.2s var(--ease);
}
.dashboard__chart-bar.highlight { background: var(--blue); }

.dashboard__rows {
  flex: 1;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.dashboard__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.04);
  align-items: center;
}
.dashboard__row span {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.dashboard__row.head {
  background: rgba(255,255,255,.04);
  font-weight: 600;
  color: rgba(255,255,255,.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.status { font-size: 11px; padding: 3px 8px; border-radius: var(--r-pill); font-weight: 600; }
.status--ok { background: rgba(34,197,94,.12); color: var(--green); }
.status--pending { background: rgba(245,158,11,.12); color: var(--orange); }

/* --- MARQUEE (Logo scroll) --- */
.marquee-section {
  padding: 48px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.marquee-section p {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.marquee {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee__item {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-300);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-base);
}
.marquee__item:hover { color: var(--gray-500); }
.marquee__item svg { opacity: .4; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee--reverse {
  animation: marqueeScrollReverse 30s linear infinite;
}
@keyframes marqueeScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-section + .marquee-section {
  border-top: none;
  padding-top: 0;
}

/* --- STATS STRIP --- */
.stats-strip {
  padding: 56px 0;
  background: var(--navy-deep);
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats-strip__item {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.stats-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: rgba(255,255,255,.08);
}
.stats-strip__number {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}
.stats-strip__label {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
  line-height: 1.4;
}

/* --- SERVICES GRID (Home) --- */
.services {
  padding: var(--section-py) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  padding: 32px 28px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #88c8ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-card__icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  grid-row: 1;
  grid-column: 1;
  align-self: center;
}
.svc-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--navy);
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  line-height: 1.2;
}
.svc-card__header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-card__header .svc-card__icon {
  grid-row: unset;
  grid-column: unset;
}
.svc-card__header .svc-card__title {
  grid-row: unset;
  grid-column: unset;
}
.svc-card__desc,
.svc-card__link {
  grid-column: 1 / -1;
}

.svc-card__desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 20px;
}

/* svc-card inside dark sections */
.section--dark .svc-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.section--dark .svc-card__title { color: var(--white); }
.section--dark .svc-card__desc { color: rgba(255,255,255,.5); }
.section--dark .svc-card__icon {
  background: rgba(91,161,235,.12);
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--t-fast);
}
.svc-card__link:hover { gap: 12px; }

/* --- SECTION DARK / LIGHT --- */
.section--dark {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}
.section--gray {
  background: var(--gray-50);
}
.section--white {
  background: var(--white);
}

/* --- HUB TEASER (Home) --- */
.hub-teaser {
  padding: var(--section-py) 0;
}
.hub-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.hub-teaser__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.hub-teaser__feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: all var(--t-base);
}
.hub-teaser__feat:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(91,161,235,.25);
  transform: translateX(8px);
}
.hub-teaser__feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(91,161,235,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hub-teaser__feat h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.hub-teaser__feat p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.hub-teaser__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}

/* --- PROCESS / HOW IT WORKS --- */
.process {
  padding: var(--section-py) 0;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gray-200), var(--gray-200), var(--blue));
  z-index: 0;
}
.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process__step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
}
.process__step:hover .process__step-num {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-blue);
}
.process__step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.process__step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* --- DIFFERENTIATORS --- */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--t-base);
  background: var(--white);
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
}
.diff-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 30px var(--blue-glow);
  transform: translateY(-4px);
}
.diff-card__num {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blue-light);
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  margin-bottom: 0;
  transition: color var(--t-base);
}
.diff-card__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.diff-card:hover .diff-card__num { color: var(--blue); }
.section--dark .diff-card__num {
  background: rgba(91,161,235,.15);
  color: var(--blue);
}
.diff-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--navy);
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  line-height: 1.2;
}
.diff-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  grid-column: 1 / -1;
  margin-top: 12px;
}

/* --- SECTORS --- */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sector {
  padding: 48px 36px;
  border-radius: var(--r-lg);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--t-base);
}
.sector:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.sector__icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--blue);
}
.sector h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.sector p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- PRESS / SOCIAL PROOF --- */
.press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press-card {
  padding: 36px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--t-base);
}
.press-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(91,161,235,.25);
  transform: translateY(-4px);
}
.press-card__source {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 16px;
}
.press-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  font-style: italic;
}
.press-card__date {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin-top: 20px;
}

/* --- CTA BANNER --- */
.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- CONTACT FORM --- */
.contact {
  padding: var(--section-py) 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__desc {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
}
.contact__list-item svg { flex-shrink: 0; }

.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
}
.form-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--gray-50);
  color: var(--gray-800);
  transition: all var(--t-fast);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-400); }
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239da3ae' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.field--check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
  cursor: pointer;
}
.field--check label {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 0;
  cursor: pointer;
}
.field--check a { color: var(--blue); text-decoration: underline; }

.form-note {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success svg { margin: 0 auto 24px; }
.form-success h3 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: 16px; color: var(--gray-500); }

/* --- FOOTER --- */
.footer {
  background: var(--black);
  padding: 80px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.footer__logo span { color: var(--blue); }
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.35);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  transition: all var(--t-fast);
}
.footer__social a:hover {
  background: var(--blue);
  color: var(--white);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--blue); }
.footer__col p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,.25);
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,.5); }

/* --- PAGE HERO (internal pages) --- */
.page-hero {
  padding: 140px 0 32px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero__orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(91,161,235,.08);
  filter: blur(80px);
  top: -30%; right: -10%;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.page-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 560px;
}
.page-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero__split .page-hero__content {
  max-width: none;
}
.page-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__visual .vblock {
  width: 100%;
}
@media (max-width: 768px) {
  .page-hero__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- FEATURE ROW (alternating layout) --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.feature-row:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}
.feature-row.reversed .feature-row__content { order: 2; }
.feature-row.reversed .feature-row__visual { order: 1; }

.feature-row__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.feature-row__content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
}
.feature-row__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-row__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
}
.feature-row__bullets li svg {
  flex-shrink: 0;
  color: var(--blue);
}

.feature-row__visual {
  background: var(--gray-50);
  border-radius: var(--r-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.feature-row__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
}
.feature-row__visual:has(> img) {
  padding: 0;
  border: none;
  background: none;
}
.feature-row__visual:has(> .vblock) {
  padding: 0;
  border: none;
  background: none;
  min-height: auto;
}

/* --- INTEGRATIONS GRID --- */
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.integration {
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--t-base);
  background: var(--white);
}
.integration:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px var(--blue-glow);
  transform: translateY(-3px);
}
.integration__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
}

/* --- FAQ --- */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-item__q:hover { color: var(--blue); }
.faq-item__q svg {
  flex-shrink: 0;
  transition: transform var(--t-fast);
  color: var(--gray-400);
}
.faq-item.open .faq-item__q svg { transform: rotate(45deg); color: var(--blue); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base), padding var(--t-base);
}
.faq-item.open .faq-item__a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-item__a p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--gray-200));
}
.timeline__item {
  position: relative;
  padding-bottom: 48px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.timeline__year {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.timeline__item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline__item p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- VISUAL DATA BLOCKS (icon + data instead of photos) --- */
.vblock {
  background: var(--gray-50);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  gap: 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
}
.vblock--dark {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
.vblock--flat {
  border: none;
  background: none;
  padding: 32px 16px;
  min-height: auto;
}
.vblock__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.vblock__icon--lg {
  width: 72px; height: 72px;
  border-radius: 18px;
}
.vblock--dark .vblock__icon {
  background: rgba(91,161,235,.1);
}
.vblock__stat {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
}
.vblock--dark .vblock__stat { color: var(--white); }
.vblock__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  max-width: 260px;
}
.vblock--dark .vblock__label { color: rgba(255,255,255,.5); }
.vblock__row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.vblock__mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.vblock__mini-stat {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}
.vblock--dark .vblock__mini-stat { color: var(--white); }
.vblock__mini-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
}
.vblock--dark .vblock__mini-label { color: rgba(255,255,255,.4); }
.vblock__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}
.vblock--dark .vblock__divider { background: rgba(255,255,255,.1); }
.vblock__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}
.vblock__grid-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}
.vblock--dark .vblock__grid-item {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}
.vblock__grid-item svg,
.vblock__grid-item i {
  color: var(--blue);
  flex-shrink: 0;
}
.vblock__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vblock--dark .vblock__tag {
  background: rgba(91,161,235,.12);
}
.vblock__flow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.vblock__flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.vblock__flow-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.vblock--dark .vblock__flow-icon {
  background: rgba(91,161,235,.1);
}
.vblock__flow-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
}
.vblock--dark .vblock__flow-text { color: rgba(255,255,255,.4); }
.vblock__flow-arrow {
  color: var(--gray-300);
  margin-top: -16px;
}
.vblock--dark .vblock__flow-arrow { color: rgba(255,255,255,.15); }
@media (max-width: 768px) {
  .vblock { padding: 20px 16px; min-height: auto; }
  .vblock__stat { font-size: 32px; }
  .vblock__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vblock__grid-item { padding: 10px 12px; font-size: 12px; gap: 8px; }
  .vblock__row { gap: 12px; }
  .vblock__icon--lg { width: 48px; height: 48px; border-radius: 12px; }
  .vblock__icon--lg svg, .vblock__icon--lg i { width: 24px; height: 24px; }
  .vblock__flow { gap: 4px; flex-wrap: nowrap; }
  .vblock__flow-icon { width: 32px; height: 32px; border-radius: 8px; }
  .vblock__flow-icon svg, .vblock__flow-icon i { width: 16px; height: 16px; }
  .vblock__flow-text { font-size: 9px; }
  .vblock__flow-arrow { font-size: 12px; }
  .vblock__flow-arrow svg, .vblock__flow-arrow i { width: 14px; height: 14px; }
  .vblock__mini-stat { font-size: 22px; }
  .vblock__mini-label { font-size: 11px; }
  .vblock__divider { height: 28px; }
}

/* --- IMAGE PLACEHOLDER (for user-uploaded photos) --- */
.img-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 40px;
  text-align: center;
  transition: all var(--t-base);
  width: 100%;
}
.img-placeholder:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.img-placeholder__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.img-placeholder__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.img-placeholder__hint {
  font-size: 12px;
  color: var(--gray-400);
}
.img-placeholder--hero {
  min-height: 400px;
  border-radius: var(--r-xl);
}
.img-placeholder--sm {
  min-height: 180px;
  padding: 24px;
}
.img-placeholder--dark {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.12);
}
.img-placeholder--dark:hover {
  border-color: var(--blue);
  background: rgba(91,161,235,.06);
}
.img-placeholder--dark .img-placeholder__icon {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.3);
}
.img-placeholder--dark .img-placeholder__text { color: rgba(255,255,255,.4); }
.img-placeholder--dark .img-placeholder__hint { color: rgba(255,255,255,.25); }

/* --- LOGO PLACEHOLDER (integration logos) --- */
.integration__logo {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}
.integration__logo img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}
.integration__name {
  display: none;
}

/* --- TRACEABILITY HIGHLIGHT --- */
.trace-banner {
  position: relative;
  overflow: hidden;
}
.trace-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trace-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  margin-bottom: 24px;
}
.trace-banner__badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}
.trace-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trace-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}
.trace-step:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trace-step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(91,161,235,.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.trace-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.trace-step p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

/* --- SOFTWARE PANEL FEATURES --- */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.panel-card {
  display: flex;
  gap: 14px;
  padding: 24px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--t-base);
}
.panel-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(91,161,235,.25);
  transform: translateY(-3px);
}
.panel-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(91,161,235,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.panel-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.panel-card p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

/* Light variant of panel-card */
.panel-card--light {
  background: var(--white);
  border-color: var(--gray-200);
}
.panel-card--light:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px var(--blue-glow);
}
.panel-card--light .panel-card__icon {
  background: var(--blue-light);
}
.panel-card--light h4 { color: var(--navy); }
.panel-card--light p { color: var(--gray-500); }

/* --- EXCLUSIVE BADGE (for unique features like traceability) --- */
.exclusive-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.15);
}

/* --- FULL-WIDTH IMAGE BAND --- */
.img-band {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.img-band .img-placeholder {
  border-radius: 0;
  min-height: 400px;
  border-left: none;
  border-right: none;
}

/* --- CAPABILITIES ROW (like BigBlue-style) --- */
.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.capability {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: all var(--t-base);
  position: relative;
}
.capability:last-child { border-right: none; }
.capability:hover {
  background: var(--blue-light);
}
.capability__number {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.capability__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.capability__desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- LOGO MARQUEE (upgraded with placeholder images) --- */
.marquee__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.marquee__logo-img {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee__logo-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* --- LEGAL CONTENT (aviso legal, privacy, cookies) --- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.legal-content a {
  color: var(--blue);
  transition: color var(--t-fast);
}
.legal-content a:hover {
  color: var(--blue-hover);
  text-decoration: underline;
}
.legal-content strong {
  color: var(--navy);
  font-weight: 600;
}
.legal-content__updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.legal-table th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-table td {
  color: var(--gray-600);
}
.legal-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .legal-table { font-size: 12px; }
  .legal-table th, .legal-table td { padding: 8px 10px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}
.cookie-banner__text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 24px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t-fast);
}
.cookie-banner__btn--accept {
  background: var(--blue);
  color: var(--white);
}
.cookie-banner__btn--accept:hover {
  background: #4a90d9;
}
.cookie-banner__btn--reject {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
}
.cookie-banner__btn--reject:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
@media (max-width: 768px) {
  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .cookie-banner__buttons { width: 100%; justify-content: center; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 540px; }
  .hero { min-height: auto; padding: 120px 0 60px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .hub-teaser__inner { grid-template-columns: 1fr; gap: 48px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .press__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reversed .feature-row__content,
  .feature-row.reversed .feature-row__visual { order: unset; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .integrations__grid { grid-template-columns: repeat(4, 1fr); }
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-strip__item::after { display: none; }
  .trace-banner__inner { grid-template-columns: 1fr; gap: 48px; }
  .panel-grid { grid-template-columns: 1fr; }
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .capability { border-bottom: 1px solid var(--gray-200); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; --header-h: 64px; }

  .header__nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18,20,43,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 99;
  }
  .header__nav.active { display: flex; }
  .header__nav .header__link { font-size: 20px; padding: 12px 24px; color: var(--white); }
  .header__cta.desktop { display: none; }
  .header__login.desktop { display: none; }
  .header__link--login.mobile { display: block; margin-top: 8px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 16px; color: rgba(255,255,255,.5); }
  .header__burger { display: flex; z-index: 101; }

  .hero__title { font-size: 36px; letter-spacing: -1.5px; }
  .hero__desc { font-size: 16px; }
  .hero__proof { flex-wrap: wrap; gap: 20px; }
  .hero__buttons { flex-direction: column; }

  .services__grid,
  .diff__grid,
  .sectors__grid,
  .process__steps,
  .stats-strip__inner { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 40px; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .integrations__grid { grid-template-columns: repeat(4, 1fr); }
  .capabilities { grid-template-columns: 1fr; }
  .capability { border-right: none; }
  .img-placeholder--hero { min-height: 260px; }
  .feature-row__visual { padding: 16px; min-height: auto; }
  .feature-row__visual:has(> .vblock) { padding: 0; }
}

@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
  .hero__proof-stat strong { font-size: 24px; }
  .hero { padding: 100px 0 48px; }
}

/* =============================================
   MOBILE FIXES — overflow & layout
   ============================================= */

/* Dashboard mockup: fit screen */
@media (max-width: 768px) {
  .dashboard { max-width: 100% !important; font-size: 12px; }
  .dashboard__sidebar { display: none; }
  .dashboard__main { padding: 12px; gap: 8px; }
  .dashboard__kpis { grid-template-columns: 1fr 1fr; gap: 8px; }
  .dashboard__kpi { padding: 10px; }
  .dashboard__kpi strong { font-size: 18px; }
  .dashboard__bar-title { font-size: 10px; }
}

/* Comparison table: readable on mobile */
@media (max-width: 768px) {
  table[style*="min-width"] { min-width: 100% !important; font-size: 13px; }
  table td, table th { padding: 10px 12px !important; }
  table th { font-size: 12px !important; }
}

/* Vblocks: prevent overflow from inline max-width */
@media (max-width: 768px) {
  [style*="max-width: 900px"],
  [style*="max-width: 700px"],
  [style*="max-width: 600px"],
  [style*="max-width:900px"],
  [style*="max-width:700px"],
  [style*="max-width:600px"] { max-width: 100% !important; }
  .vblock[style*="min-height: 480px"],
  .vblock[style*="min-height:480px"] { min-height: auto !important; }
  .vblock__grid { grid-template-columns: 1fr !important; }
}

/* Trace steps: stack on mobile */
@media (max-width: 768px) {
  .trace-steps { gap: 20px; }
  .trace-step { flex-direction: row; align-items: flex-start; }
}

/* Press cards: smaller logos */
@media (max-width: 480px) {
  .press-card [style*="width:120px"] { width: 80px !important; height: 20px !important; }
  .press-card { padding: 24px !important; }
  .marquee { gap: 32px; }
}

/* =============================================
   BLOG
   ============================================= */

/* Blog grid — listing page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.blog-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(91,161,235,.12);
  transform: translateY(-4px);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.blog-card__category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.blog-card__reading {
  font-size: 12px;
  color: var(--gray-400);
}

.blog-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 12px;
}
.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 20px;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.blog-card__footer time {
  font-size: 13px;
  color: var(--gray-400);
}
.blog-card__arrow {
  color: var(--blue);
  transition: transform .2s;
}
.blog-card:hover .blog-card__arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card { padding: 24px; }
}

/* Article page */
.article-hero {
  padding-top: 140px;
  padding-bottom: 48px;
}
.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.article-hero__breadcrumb a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.article-hero__breadcrumb a:hover { color: var(--blue); }
.article-hero__breadcrumb svg { opacity: .4; }

.article-hero__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--blue);
  background: rgba(91,161,235,.15);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.article-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  max-width: 800px;
}
.article-hero__meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.45);
}
.article-hero__meta span { display: flex; align-items: center; gap: 6px; }

/* Article body */
.article {
  padding: 60px 0 80px;
}
.article__body {
  max-width: 740px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--gray-600);
}
.article__body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.article__body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}
.article__body p {
  margin-bottom: 20px;
}
.article__body ul, .article__body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.article__body li {
  margin-bottom: 8px;
}
.article__body strong {
  color: var(--gray-800);
  font-weight: 600;
}
.article__body a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(91,161,235,.3);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
.article__body a:hover {
  text-decoration-color: var(--blue);
}
.article__body blockquote {
  border-left: 3px solid var(--blue);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--blue-light);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--gray-600);
}

/* Article nav (prev/next) */
.article__nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.article__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.article__nav a:hover { opacity: .7; }

@media (max-width: 600px) {
  .article-hero { padding-top: 120px; }
  .article-hero__title { font-size: 26px; }
  .article__body { font-size: 15px; }
  .article__body h2 { font-size: 22px; margin-top: 36px; }
  .article__body h3 { font-size: 18px; }
}

/* Compact page hero for blog */
.page-hero--compact {
  padding-bottom: 40px;
}

/* Article hero text (inside page-hero) */
.page-hero--compact h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 800px;
}
.page-hero--compact .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.page-hero--compact .breadcrumb a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.page-hero--compact .breadcrumb a:hover { color: var(--blue); }

.page-hero__meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 600px) {
  .page-hero--compact h1 { font-size: 24px; }
}
