* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #071327;
  --bg-soft: #0e1d3f;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --card: #fff;
  --primary: #1a73e8;
  --primary-2: #6d4cff;
  --accent: #0f172a;
  --shadow: 0 20px 60px rgba(16, 24, 40, .08);
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, .08);
  --shadow-strong: 0 30px 90px rgba(16, 24, 40, .14);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(109, 76, 255, .05), transparent 24%),
    linear-gradient(180deg, #f5f7fb 0%, #eef1f6 100%);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  color: rgba(255, 255, 255, .82);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background:
    linear-gradient(180deg, rgba(12, 24, 47, .96) 0%, rgba(13, 27, 51, .92) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 34px rgba(5, 12, 24, .18);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  height: 54px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.desktop-nav a,
.mobile-nav a {
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  font-size: 15px;
  transition: .2s;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: #fff;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgba(255, 255, 255, .08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 14px 16px;
  background: #071327;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.mobile-nav a {
  display: block;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
  box-shadow: 0 14px 34px rgba(26, 115, 232, .26);
}

.btn-light {
  background: #fff;
  color: var(--bg);
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
}

.btn-outline-dark {
  color: var(--accent);
  border: 1px solid var(--line);
  background: #fff;
}

.btn-download {
  width: 100%;
}

.hero {
  position: relative;
  padding: 84px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(109, 76, 255, .24), transparent 32%),
    radial-gradient(circle at right center, rgba(26, 115, 232, .20), transparent 28%),
    linear-gradient(180deg, #071327 0%, #0b1830 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 64px;
  line-height: .98;
  letter-spacing: -2.6px;
  margin-bottom: 22px;
}

.hero p {
  font-size: 20px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .82);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 14px;
  backdrop-filter: blur(8px);
}

.mock-card {
  background: rgba(255, 255, 255, .98);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(16, 24, 40, .24);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.mock-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(16, 24, 40, .26);
}

.mock-top {
  padding: 16px 18px;
  background: #eef2ff;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.mock-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c7d2fe;
}

.mock-body {
  padding: 20px;
}

.mock-screen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  aspect-ratio: 16 / 10;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
  margin: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.hero-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 19, 39, .72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, transform .2s ease;
}

.hero-carousel-control:hover {
  background: rgba(7, 19, 39, .9);
  transform: translateY(-50%) scale(1.04);
}

.hero-carousel-control.is-prev {
  left: 14px;
}

.hero-carousel-control.is-next {
  right: 14px;
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7, 19, 39, .18);
  backdrop-filter: blur(10px);
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, background .2s ease;
}

.hero-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.hero-logos {
  position: relative;
  padding: 28px 0 34px;
  background:
    radial-gradient(circle at top center, rgba(109, 76, 255, .12), transparent 30%),
    radial-gradient(circle at 20% 0%, rgba(26, 115, 232, .08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  overflow: hidden;
}

.hero-logos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .55), transparent 12%, transparent 88%, rgba(255, 255, 255, .55));
  pointer-events: none;
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.partners-track {
  display: flex;
  gap: 14px;
  align-items: center;
  width: max-content;
  animation: partners-marquee 28s linear infinite;
  will-change: transform;
}

.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  align-items: center;
}

.logo-chip {
  position: relative;
  flex: 0 0 150px;
  min-width: 150px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 250, 252, .98) 100%);
  border: 1px solid rgba(212, 220, 234, .90);
  border-radius: 18px;
  box-shadow:
    0 8px 20px rgba(16, 24, 40, .04),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.logo-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .00) 20%, rgba(255, 255, 255, .46) 50%, rgba(255, 255, 255, .00) 80%);
  transform: translateX(-130%);
  transition: transform .8s ease;
  pointer-events: none;
}

.logo-chip::after {
  content: "";
  position: absolute;
  inset: auto 10px 8px 10px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(109, 76, 255, .12), transparent 70%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.logo-chip img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(.70) contrast(1.04);
  opacity: .78;
  transition: filter .28s ease, opacity .28s ease, transform .28s ease;
}

.logo-chip:hover {
  transform: translateY(-5px) scale(1.035);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow:
    0 18px 42px rgba(16, 24, 40, .11),
    0 10px 22px rgba(26, 115, 232, .08);
  border-color: rgba(120, 138, 255, .28);
}

.logo-chip:hover::before {
  transform: translateX(130%);
}

.logo-chip:hover::after {
  opacity: 1;
}

.logo-chip:hover img {
  filter: grayscale(0%) brightness(1) contrast(1.03);
  opacity: 1;
  transform: scale(1.08);
}

.section {
  padding: 72px 0;
}

.essentials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(109, 76, 255, .10), transparent 26%),
    linear-gradient(180deg, #f6f9ff 0%, #edf3fb 100%);
}

.essentials-section::before,
.essentials-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.essentials-section::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(26, 115, 232, .14), transparent 70%);
}

.essentials-section::after {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(109, 76, 255, .12), transparent 70%);
}

.essentials-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.essentials-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.essentials-copy .eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(67, 56, 202, .08);
  color: #4338ca;
  border: 1px solid rgba(67, 56, 202, .10);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.essentials-copy h2 {
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 16px;
  color: #142033;
}

.essentials-copy p {
  color: #60708d;
  font-size: 19px;
  line-height: 1.9;
}

.essentials-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.essentials-points span,
.info-card-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(208, 218, 235, .9);
  color: #243247;
  font-size: 14px;
  font-weight: 700;
}

.essentials-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

.info-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(212, 222, 235, .95);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(20, 32, 51, .08);
  backdrop-filter: blur(8px);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .22), transparent 48%);
  pointer-events: none;
}

.info-card-featured {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(26, 115, 232, .12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(241, 246, 255, .98) 100%);
}

.info-card-highlight {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(67, 56, 202, .10);
  color: #4338ca;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(180deg, #edf2ff 0%, #dde7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #3546a8;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.info-card h3 {
  font-size: 30px;
  line-height: 1.15;
  color: #142033;
  margin-bottom: 16px;
}

.info-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #5f6f86;
  margin-bottom: 22px;
}

.info-card-featured h3 {
  max-width: 560px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.info-card-featured p {
  max-width: 560px;
  font-size: 17px;
}

.info-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.info-card-compact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.info-card-compact strong {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: #243247;
}

.info-card-line {
  width: 100%;
  height: 1px;
  margin: 22px 0 18px;
  background: linear-gradient(90deg, rgba(67, 56, 202, .22), rgba(26, 115, 232, .08));
}

/* Accordion */

.essentials-accordion {
  display: grid;
  gap: 16px;
}

.accordion-item {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(212, 222, 235, .95);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(20, 32, 51, .06);
  overflow: hidden;
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accordion-item summary h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: #142033;
}

.accordion-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf3fb;
  color: #233550;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 26px 26px 26px;
  border-top: 1px solid rgba(226, 232, 240, .9);
}

.accordion-content p {
  margin: 18px 0 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #5f6f86;
}

.accordion-content strong {
  display: block;
  color: #22324a;
  font-size: 15px;
  line-height: 1.7;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  padding-top: 18px;
}

.section-head h2 {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin-bottom: 16px;
  color: rgb(20, 32, 51);
}

.section-head p {
  color: #5f6f86;
  font-size: 19px;
  line-height: 1.85;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.download-card,
.process-card,
.owner-card,
.contact-card,
.client-category-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(220, 227, 239, .95);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 22px 60px rgba(24, 38, 65, .08);
}

.download-card h3,
.process-card h3,
.owner-card h3,
.contact-card h3,
.client-category-card h3 {
  font-size: 24px;
  letter-spacing: -.6px;
  margin-bottom: 12px;
}

.download-card p,
.process-card p,
.owner-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.system-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.system-shot {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(217, 225, 236, .95);
  padding: 16px;
  border-radius: 26px;
  box-shadow: 0 20px 54px rgba(16, 24, 40, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.system-shot:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(16, 24, 40, .12);
  border-color: rgba(120, 138, 255, .28);
}

.system-shot img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(222, 229, 240, .9);
}

.system-shot strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.6px;
  margin-top: 18px;
}

.system-shot span {
  display: block;
  color: #5f6f86;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 8px;
}

.segments-section .section-head {
  margin-bottom: 26px;
}

.segment-tags {
  gap: 14px;
}

.segment-tags span {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94) !important;
  border: 1px solid rgba(214, 223, 236, .95) !important;
  color: #22324a !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: default;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .05);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.segment-tags span:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(109, 76, 255, .10), rgba(26, 115, 232, .12)) !important;
  border-color: rgba(94, 114, 228, .30) !important;
  color: #17356a !important;
  box-shadow: 0 18px 32px rgba(26, 115, 232, .12);
}

.page-hero {
  padding: 10px 0 10px;
  background:
    radial-gradient(circle at top left, rgba(109, 76, 255, .18), transparent 100%),
    linear-gradient(180deg, #071327 0%, #0b1830 100%);
  color: #fff;
}

.page-hero h1 {
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.8;
}

.about-section {
  padding: 52px 0;
}

.about-section-soft {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
}

.about-intro-grid,
.about-differential-grid,
.about-work-grid,
.about-history-grid {
  align-items: start;
}

.about-copy,
.about-head,
.about-text-card,
.about-history-card,
.about-list-card,
.about-closing {
  max-width: 700px;
}

.about-head {
  margin-bottom: 26px;
}

.about-head-left {
  margin: 0 0 26px;
  text-align: left;
  max-width: none;
  padding-top: 0;
}

.about-eyebrow {
  background: #eef2ff;
  color: #4338ca;
  border: none;
}

.about-lead {
  font-size: 18px;
  line-height: 1.8;
}

.about-text-card,
.about-history-card,
.about-list-card {
  padding: 34px;
}

.about-text-card p,
.about-history-card p,
.about-closing p {
  color: #5f6f86;
  font-size: 17px;
  line-height: 1.85;
}

.about-photo-wrap {
  display: flex;
  align-items: stretch;
}

.about-photo {
  width: 100%;
}

.about-photo img {
  aspect-ratio: 4 / 4.6;
}

.about-photo-tall img {
  aspect-ratio: 4 / 5;
}

.about-bullet-list {
  list-style: none;
  display: grid;
  gap: 18px;
}

.about-bullet-list li {
  position: relative;
  padding-left: 24px;
  color: #243247;
  font-size: 17px;
  line-height: 1.8;
}

.about-bullet-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d4cff, #1a73e8);
  box-shadow: 0 0 0 6px rgba(26, 115, 232, .10);
}

.about-bullet-list-compact {
  gap: 16px;
}

.about-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-solution-card {
  min-height: 100%;
}

.about-solution-card p {
  margin-bottom: 0;
}

.about-closing {
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 244, 251, .96));
  border: 1px solid rgba(220, 227, 239, .95);
  border-radius: 30px;
  padding: 40px 34px;
  box-shadow: 0 22px 60px rgba(24, 38, 65, .08);
}

.about-closing h2 {
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: #142033;
  margin-bottom: 14px;
}

.process-page-section {
  padding: 52px 0;
}

.process-page-section-soft {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.process-intro-grid,
.process-support-grid {
  align-items: start;
}

.process-copy,
.process-head,
.process-note-card,
.process-closing {
  max-width: 720px;
}

.process-head {
  margin-bottom: 18px;
}

.process-head-left {
  margin: 0 0 26px;
  text-align: left;
  max-width: none;
  padding-top: 0;
}

.process-eyebrow {
  background: #eef2ff;
  color: #4338ca;
  border: none;
}

.process-lead {
  font-size: 18px;
  line-height: 1.85;
}

.process-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.process-points span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(214, 223, 236, .95);
  color: #1f2f46;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .05);
  margin-bottom: 0;
}

.process-photo-stack {
  position: relative;
  padding-bottom: 24px;
}

.process-photo-main img {
  aspect-ratio: 4 / 4.7;
}

.process-shot-floating {
  position: absolute;
  right: -20px;
  bottom: 0;
  max-width: 320px;
}

.process-steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.process-step-card {
  flex: 1 1 260px;
  max-width: 320px;
  min-height: 100%;
}

.process-step-card h3 {
  color: #142033;
  font-size: 22px;
  line-height: 1.2;
}

.process-step-card p {
  margin-bottom: 0;
  color: #4f5f77;
  font-size: 15px;
  line-height: 1.75;
}

.process-step-card .icon-badge {
  color: #3546a8;
  background: linear-gradient(180deg, #edf2ff 0%, #dde7ff 100%);
}

.process-step-card .icon-badge,
.process-step-card h3,
.process-step-card p {
  position: relative;
  z-index: 1;
}

.process-step-card::before {
  opacity: .4;
}

.process-shot-wide {
  grid-column: 1 / -1;
}

.process-shot-wide img {
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.process-shot-wide strong {
  font-size: 24px;
}

.process-shot-wide span {
  max-width: 560px;
}

.process-visual-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: start;
}

.process-photo-secondary {
  grid-row: span 2;
}

.process-photo-secondary img {
  aspect-ratio: 4 / 5.1;
}

.process-note-card {
  padding: 24px;
}

.process-note-card p {
  font-size: 17px;
  line-height: 1.85;
}

.process-closing {
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(238, 244, 251, .98));
  border: 1px solid rgba(220, 227, 239, .95);
  border-radius: 30px;
  padding: 30px 28px;
  box-shadow: 0 22px 60px rgba(24, 38, 65, .08);
}

.process-closing h2 {
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -1.1px;
  color: #142033;
  margin-bottom: 14px;
}

.process-closing p {
  color: #5f6f86;
  font-size: 17px;
  line-height: 1.85;
}

.client-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.client-filter button {
  border: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}

.client-filter button.is-active {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
  border-color: transparent;
}

.client-section {
  margin-top: 30px;
}

.client-section + .client-section {
  margin-top: 52px;
}

.client-section h3 {
  font-size: 28px;
  letter-spacing: -.8px;
  margin-bottom: 18px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.client-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(16, 24, 40, .04);
}

.client-logo img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}

.clients-showcase-section {
  background:
    radial-gradient(circle at top center, rgba(109, 76, 255, .08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.clients-showcase-head {
  margin-bottom: 50px;
}

.clients-showcase-eyebrow {
  background: #eef2ff;
  color: #4338ca;
  border: none;
}

.clients-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.clients-showcase-grid > .client-section,
.clients-showcase-grid > .client-section + .client-section {
  margin-top: 0;
}

.client-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(191, 198, 210, .95);
  box-shadow: 0 18px 50px rgba(20, 32, 51, .06);
  background: linear-gradient(180deg, #d2d6dd 0%, #c7ccd4 100%);
}

.client-category-head {
  background: linear-gradient(180deg, #51545b 0%, #474a51 100%);
  min-height: 82px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
}

.client-category-head h3 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.client-category-body {
  padding: 28px 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .22), transparent 32%),
    linear-gradient(180deg, #c4c8cf 0%, #b9bec6 100%);
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.client-marquee {
  overflow: hidden;
  position: relative;
  padding: 6px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
}

.client-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--move-distance, -50%));
  }
}

.client-logo-chip {
  flex: 0 0 190px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(212, 220, 234, .95);
  box-shadow: 0 10px 24px rgba(16, 24, 40, .05);
}

.client-logo-chip img {
  max-height: 42px;
  max-width: 100%;
  object-fit: contain;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.owner-photo {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.6;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.download-card {
  text-align: center;
}

.download-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.download-logo {
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.download-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-card p {
  max-width: 320px;
  margin: 0 auto 22px;
}

.cta-band {
  padding: 0 0 72px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(109, 76, 255, .30), transparent 28%),
    linear-gradient(135deg, #08162d 0%, #17356a 60%, #1b4385 100%);
  border-radius: 34px;
  padding: 46px 50px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(12, 28, 56, .22);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -1.9px;
  margin-bottom: 14px;
  color: #fff;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .82);
}

.cta-copy {
  max-width: 760px;
}

.cta-actions {
  align-items: center;
  justify-content: flex-end;
  min-width: 190px;
}

.cta-actions .btn-light {
  box-shadow: 0 18px 38px rgba(255, 255, 255, .18);
}

.cta-actions .btn-light:hover {
  transform: translateY(-3px) scale(1.02);
}

.cta-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .36);
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
}

.contact-section {
  background:
    radial-gradient(circle at top left, rgba(109, 76, 255, .08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.contact-page-grid {
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  padding: 36px;
}

.contact-info-card {
  background:
    radial-gradient(circle at top right, rgba(26, 115, 232, .12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(244, 247, 253, .98) 100%);
}

.contact-form-card {
  background: rgba(255, 255, 255, .96);
}

.contact-eyebrow {
  background: #eef2ff;
  color: #4338ca;
  border: none;
}

.contact-info-card h2 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: #142033;
  margin-bottom: 14px;
}

.contact-intro,
.contact-form-copy {
  font-size: 17px;
  line-height: 1.8;
  color: #5f6f86;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(220, 227, 239, .95);
  background: rgba(255, 255, 255, .88);
  color: #243247;
  box-shadow: 0 12px 28px rgba(24, 38, 65, .05);
}

.contact-item-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #60708d;
}

.contact-item strong {
  font-size: 17px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
  color: #233550;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  outline: none;
  background: #fdfdff;
  color: #22324a;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .09);
}

.contact-submit {
  width: 100%;
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.notice-success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #abefc6;
}

.notice-error {
  background: #fffbeb;
  color: #b54708;
  border: 1px solid #fedf89;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(67, 56, 202, .16), transparent 28%),
    linear-gradient(180deg, #071327 0%, #08162d 100%);
  color: #fff;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
}

.footer-brand {
  max-width: 520px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 17px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.85;
}

.footer-contact {
  text-align: left;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.footer-contact h4 {
  font-size: 28px;
  letter-spacing: -.6px;
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand p,
.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links li {
  font-size: 17px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
  font-size: 14px;
}

.footer-credit a {
  font-size: 10px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .88);
}

.footer-credit a:hover {
  color: #fff;
}

.hero,
.hero-logos,
.section,
.cta-band,
.site-footer {
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .32);
  z-index: 90;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}

.maintenance {
  min-height: 100svh;
  background: linear-gradient(135deg, #071327, #153061);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fff;
  text-align: center;
}

.maintenance-card {
  max-width: 760px;
}

.maintenance img {
  height: 74px;
  width: auto;
  margin: 0 auto 28px;
}

.maintenance-gear {
  font-size: 82px;
  display: inline-block;
  animation: spin 5s linear infinite;
  margin-bottom: 20px;
}

.maintenance h1 {
  font-size: 48px;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.maintenance p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .82);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsivo */
@media (max-width: 980px) {
  .essentials-copy h2 {
    font-size: 40px;
  }

  .essentials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .essentials-copy h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .essentials-copy p {
    font-size: 17px;
    line-height: 1.7;
  }

  .info-card,
  .accordion-item summary,
  .accordion-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-item summary div {
    align-items: flex-start;
  }

  .accordion-item summary h3 {
    font-size: 18px;
  }

  .info-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .split,
  .essentials-grid,
  .cards-3,
  .footer-grid,
  .downloads-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 28px;
  }

  .logo-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .logo-chip {
    min-width: 136px;
    height: 64px;
  }

  .logo-chip img {
    max-height: 44px;
  }

  .about-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step-card {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  body.menu-open .mobile-nav {
    display: block;
  }

  .brand img {
    height: 48px;
  }

  .site-header {
    position: sticky;
  }

  .desktop-nav {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-nav {
    padding-bottom: 12px;
  }

  .mobile-nav a {
    font-size: 16px;
  }

  .hero {
    padding: 48px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero p,
  .page-hero p,
  .section-head p,
  .cta-box p,
  .essentials-copy p {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .about-section {
    padding: 40px 0;
  }

  .process-page-section {
    padding: 42px 0;
  }

  .section-head h2,
  .cta-box h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .essentials-copy h2 {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .about-closing h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .about-photo-wrap {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-box {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .partners-track {
    gap: 12px;
    animation-duration: 22s;
  }

  .logo-chip {
    min-width: 126px;
    height: 60px;
    padding: 6px 10px;
  }

  .logo-chip img {
    max-height: 42px;
  }

  .clients-showcase-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-chip {
    min-width: 164px;
    height: 78px;
    padding: 14px 16px;
  }

  .download-logo {
    width: 150px;
    height: 150px;
  }

  .contact-info-card h2 {
    font-size: 32px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .process-shot-floating {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .process-photo-stack {
    padding-bottom: 0;
  }

  .process-visual-grid {
    grid-template-columns: 1fr;
  }

  .process-shot-wide {
    grid-column: auto;
  }

  .footer-brand,
  .footer-contact {
    max-width: none;
    text-align: left;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 18px, 1180px);
  }

  .nav-shell {
    min-height: 78px;
  }

  .brand img {
    height: 42px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }

  .hero-carousel-control {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .hero-carousel-control.is-prev {
    left: 10px;
  }

  .hero-carousel-control.is-next {
    right: 10px;
  }

  .hero-carousel-dots {
    bottom: 10px;
  }

  .partners-carousel {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners-track {
    gap: 10px;
    animation-duration: 18s;
  }

  .logo-chip {
    min-width: 108px;
    height: 54px;
    border-radius: 14px;
    padding: 5px 8px;
  }

  .logo-chip img {
    max-height: 36px;
  }

  .clients-showcase-grid {
    gap: 18px;
  }

  .client-category-head {
    padding: 12px 16px;
    min-height: 60px;
  }

  .client-category-head h3 {
    font-size: 17px;
  }

  .client-category-body {
    padding: 14px;
  }

  .client-logo-chip {
    min-width: 148px;
    height: 70px;
    border-radius: 14px;
    padding: 12px 14px;
  }

  .client-logo-chip img {
    max-height: 34px;
  }

  .download-logo {
    width: 128px;
    height: 128px;
    padding: 18px;
  }

  .footer-grid {
    gap: 22px;
    padding-bottom: 24px;
  }

  .footer-brand img {
    height: 52px;
    margin-bottom: 14px;
  }

  .footer-brand,
  .footer-contact {
    padding: 22px;
    border-radius: 22px;
  }

  .footer-brand p,
  .footer-links li {
    font-size: 15px;
    line-height: 1.75;
  }

  .footer-contact h4 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .footer-bottom-row {
    align-items: center;
    text-align: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .process-points {
    gap: 10px;
  }

  .process-points span {
    width: 100%;
    text-align: center;
  }

  .process-step-card h3 {
    font-size: 20px;
  }

  .process-step-card p {
    font-size: 14px;
  }

  .process-steps-grid {
    gap: 16px;
  }

  .process-step-card {
    flex-basis: 100%;
  }

  .process-closing,
  .process-note-card {
    padding: 20px;
  }

  .process-closing h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .essentials-shell {
    gap: 28px;
  }

  .essentials-copy h2 {
    font-size: 32px;
  }

  .essentials-points {
    justify-content: flex-start;
  }

  .info-card,
  .info-card-featured {
    padding: 24px;
  }

  .info-card-featured h3 {
    font-size: 28px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .client-logo {
    height: 96px;
    padding: 14px;
  }

  .client-section h3 {
    font-size: 24px;
  }

  .download-card,
  .process-card,
  .owner-card,
  .contact-card,
  .client-category-card {
    padding: 22px;
  }

  .about-text-card,
  .about-history-card,
  .about-list-card,
  .about-closing {
    padding: 24px;
  }

  .about-bullet-list li {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .maintenance h1 {
    font-size: 34px;
  }
}