:root {
  --bg: #070D17;
  --bg-2: #0B1220;
  --bg-3: #0F1828;
  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(148, 163, 184, 0.28);
  --text: #F4F4F5;
  --text-dim: #94A3B8;
  --text-dimmer: #64748B;
  --blue: #3B82F6;
  --cyan: #22D3EE;
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;
  --glow-cyan: 0 0 24px rgba(34, 211, 238, 0.55);
  --glow-green: 0 0 24px rgba(16, 185, 129, 0.55);
  --glow-blue: 0 0 24px rgba(59, 130, 246, 0.55);
}

html[data-theme="light"] {
  --bg: #F6F7F9;
  --bg-2: #ffffff;
  --bg-3: #F0F2F5;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.18);
  --text: #0B1220;
  --text-dim: #475569;
  --text-dimmer: #94A3B8;
  --glow-cyan: 0 0 0 rgba(0,0,0,0);
  --glow-green: 0 0 0 rgba(0,0,0,0);
  --glow-blue: 0 0 0 rgba(0,0,0,0);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59, 130, 246, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(34, 211, 238, 0.08), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

html[data-theme="light"] body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59, 130, 246, 0.06), transparent 60%),
    var(--bg);
}

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: "ss01"; }

/* Shared layout */
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }

.hero-section {
  overflow: hidden;
}

.hero-video,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 23, 0.95) 0%, rgba(7, 13, 23, 0.82) 42%, rgba(7, 13, 23, 0.66) 62%, rgba(7, 13, 23, 0.86) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.14) 0%, rgba(6, 11, 22, 0.42) 100%);
}

html[data-theme="light"] .hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(246, 247, 249, 0.9) 0%, rgba(246, 247, 249, 0.74) 42%, rgba(246, 247, 249, 0.48) 62%, rgba(246, 247, 249, 0.78) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(203, 213, 225, 0.22) 100%);
}

.hero-anim-wrap {
  z-index: 2;
}

.hero-title {
  font-size: clamp(42px, 5.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.45;
}

.hero-video-toggle {
  font-size: 13px;
}

.nav-theme-btn {
  padding: 8px 14px;
  font-size: 13px;
}

.solutions-panel-bg,
.solutions-panel-overlay {
  position: absolute;
  inset: 0;
}

.solutions-panel-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.36;
  transform: scale(1.03);
  transition: opacity .25s, background-image .25s;
}

.solutions-panel-overlay {
  background:
    linear-gradient(180deg, rgba(7, 13, 23, 0.68) 0%, rgba(7, 13, 23, 0.46) 42%, rgba(7, 13, 23, 0.72) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.16) 0%, rgba(11, 18, 32, 0.06) 100%);
}

.catalogs-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: stretch;
}

.catalogs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog-card {
  text-align: left;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.catalog-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -28px rgba(34, 211, 238, 0.28);
}

.catalog-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-dimmer);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.catalog-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.catalogs-video-panel {
  position: relative;
  min-height: 430px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.catalogs-video,
.catalogs-video-overlay {
  position: absolute;
  inset: 0;
}

.catalogs-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalogs-video-overlay {
  background:
    linear-gradient(180deg, rgba(7, 13, 23, 0.16) 0%, rgba(7, 13, 23, 0.48) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.1) 0%, rgba(11, 18, 32, 0.2) 100%);
}

.catalogs-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(7, 13, 23, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogs-actions {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.catalogs-download-btn {
  background: rgba(7, 13, 23, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f8fafc;
}

.catalogs-download-btn:hover {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.34);
}

.catalogs-video-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 74px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(7, 13, 23, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.catalogs-video-copy-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.76);
  margin-bottom: 8px;
}

.catalogs-video-copy-text {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.5;
  max-width: 720px;
}

.about-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-card {
  padding: 20px;
}

.about-photo-wrap {
  height: 320px;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}

.about-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.about-name {
  font-size: 28px;
  margin-bottom: 12px;
}

.about-bio {
  font-size: 15px;
  line-height: 1.65;
}

.catalogs-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

html[data-theme="light"] .catalog-card {
  box-shadow: 0 14px 32px -28px rgba(15, 23, 42, 0.18);
}

html[data-theme="light"] .catalogs-video-overlay {
  background:
    linear-gradient(180deg, rgba(246, 247, 249, 0.06) 0%, rgba(246, 247, 249, 0.22) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(226, 232, 240, 0.12) 100%);
}

html[data-theme="light"] .catalogs-video-badge {
  background: rgba(255, 255, 255, 0.76);
  color: #0b1220;
  border-color: rgba(148, 163, 184, 0.28);
}

html[data-theme="light"] .catalogs-video-copy {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(148, 163, 184, 0.28);
}

html[data-theme="light"] .catalogs-video-copy-kicker {
  color: #475569;
}

html[data-theme="light"] .catalogs-video-copy-text {
  color: #0b1220;
}

html[data-theme="light"] .catalogs-download-btn {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(148, 163, 184, 0.28);
  color: #0b1220;
}

html[data-theme="light"] .solutions-panel-overlay {
  background:
    linear-gradient(180deg, rgba(246, 247, 249, 0.5) 0%, rgba(246, 247, 249, 0.32) 42%, rgba(246, 247, 249, 0.56) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(226, 232, 240, 0.16) 100%);
}

.timeline-photo {
  margin-top: 24px;
  height: 535px;
  border-radius: 14px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.12), 0 0 28px rgba(34, 211, 238, 0.08);
}

.timeline-photo-image,
.timeline-photo-overlay {
  position: absolute;
  inset: 0;
}

.timeline-photo-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: timelinePhotoFade .45s ease;
  transform: scale(1.02);
}

.timeline-photo-overlay {
  background:
    linear-gradient(180deg, rgba(7, 13, 23, 0.14) 0%, rgba(7, 13, 23, 0.28) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.06) 0%, rgba(11, 18, 32, 0.16) 100%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 28%);
}

html[data-theme="light"] .timeline-photo-overlay {
  background:
    linear-gradient(180deg, rgba(246, 247, 249, 0.04) 0%, rgba(246, 247, 249, 0.14) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(226, 232, 240, 0.1) 100%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.06), transparent 28%);
}

@keyframes timelinePhotoFade {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

h1, h2, h3 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(48px, 7vw, 104px); font-weight: 400; letter-spacing: -0.03em; }
h2 { font-size: clamp(36px, 4.5vw, 64px); }
h3 { font-size: clamp(22px, 2vw, 32px); }

p { color: var(--text-dim); line-height: 1.55; }

a { color: inherit; text-decoration: none; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: inline-flex; align-items: center;
}
.nav-logo-image {
  display: block;
  width: auto;
  height: 36px;
  max-width: min(42vw, 320px);
  object-fit: contain;
}
.nav-logo-image-footer {
  height: 53px;
  max-width: min(100%, 340px);
}

.nav-links { display: flex; gap: 22px; font-size: 13px; }
.nav-links a { color: var(--text-dim); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links-mobile { display: none; }
.nav-links-mobile a { color: var(--text-dim); white-space: nowrap; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: inline-flex;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 3px;
  background: var(--bg-2);
}
.lang-toggle button {
  padding: 4px 10px;
  border-radius: 100px;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.lang-toggle button.active {
  background: var(--text);
  color: var(--bg);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.btn:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #04121A;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 10px 40px -10px rgba(34, 211, 238, 0.6);
}
.btn-primary:hover { color: #04121A; filter: brightness(1.1); transform: translateY(-1px); }

/* Cards */
.card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.card:hover { border-color: var(--line-strong); }
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 400px 200px at var(--mx, 50%) var(--my, 0%), rgba(34, 211, 238, 0.08), transparent 60%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 960px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .catalogs-layout { grid-template-columns: 1fr; }
  .catalogs-video-panel { min-height: 320px; }
  .nav-links { display: none; }
  .nav {
    padding: 10px 16px 56px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-right {
    margin-left: auto;
    gap: 8px;
  }
  .nav-links-mobile {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 10px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 12px;
    scrollbar-width: none;
  }
  .nav-links-mobile::-webkit-scrollbar { display: none; }
  .nav-logo-image { height: 28px; max-width: 52vw; }
  .nav-logo-image-footer { height: 42px; max-width: min(100%, 280px); }
  .clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .hero-video { opacity: 0.24; }
  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .hero-sub { font-size: 16px; }
  .hero-readout {
    flex-wrap: wrap;
    gap: 10px 18px !important;
  }
  .solutions-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .solutions-tabs {
    gap: 8px !important;
  }
  .solutions-panel {
    padding: 24px !important;
    min-height: auto !important;
  }
  .solutions-modules {
    grid-template-columns: 1fr !important;
  }
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .contact-form-row {
    grid-template-columns: 1fr !important;
  }
  .footer-layout {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .dashboard-shell {
    overflow-x: auto;
  }
  .dashboard-main-grid {
    min-width: 760px;
  }
}

@media (max-height: 860px) and (min-width: 961px) {
  .catalogs-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .catalogs-video-panel {
    min-height: 380px;
  }
}

@media (max-height: 860px) and (min-width: 961px) {
  .hero-title { font-size: clamp(40px, 5vw, 76px); }
  .hero-sub { font-size: 16px; }
}

/* Divider with label */
.divider {
  display: flex; align-items: center; gap: 16px;
  color: var(--text-dimmer);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

/* Corner markers on cards */
.corners::before, .corners::after,
.corners > .tl, .corners > .tr {
  content: ''; position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--cyan);
  opacity: 0.6;
}
.corners::before { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.corners::after { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }

/* Scanline shimmer */
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* Clients */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.client-logo-shell {
  position: relative;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 24, 40, 0.92), rgba(11, 18, 32, 0.96));
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.client-logo-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 260px 120px at var(--mx, 50%) var(--my, 0%), rgba(34, 211, 238, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

.client-logo-shell:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px -24px rgba(34, 211, 238, 0.35);
}

.client-logo-shell:hover::before { opacity: 1; }

.client-logo-plate {
  min-height: 132px;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #eef2f7);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.client-logo-image {
  width: 100%;
  height: 84px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.client-logo-fallback {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.client-logo-caption {
  margin-top: 12px;
  color: var(--text-dimmer);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clients-empty {
  padding: 24px;
  text-align: center;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  background: var(--bg-2);
}

/* Ticker data readouts */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Dashed vertical column rules (like a spec) */
.spec-grid {
  background-image:
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100px 100%;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* SVG text placeholders */
.placeholder-img {
  background:
    repeating-linear-gradient(135deg, rgba(148, 163, 184, 0.06) 0 8px, transparent 8px 16px),
    var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--text-dimmer);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-thumb {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--bg-3);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 13, 23, 0.8);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.video-thumb-logo-wrap {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.24);
  display: grid;
  place-items: center;
}

.video-thumb-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-thumb-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 13, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 22px;
  padding-left: 4px;
}

@media (max-width: 560px) {
  .section { padding: 88px 0; }
  .clients-grid { grid-template-columns: 1fr; }
  .client-logo-plate { min-height: 116px; }
  .client-logo-image { height: 72px; }
  .timeline-photo { height: 386px; }
  .footer-layout {
    grid-template-columns: 1fr !important;
  }
  .catalogs-actions {
    right: 14px;
  }
  .catalogs-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
