

:root {
  --ink: #102033;
  --ink-soft: #52647b;
  --paper: #ffffff;
  --canvas: #f4f7fb;
  --line: #dfe7f0;
  --brand: #08a9b5;
  --brand-dark: #087b8b;
  --lime: #84c53d;
  --navy: #0c2743;
  --shadow-sm: 0 10px 30px rgba(20, 45, 72, 0.07);
  --shadow-lg: 0 28px 80px rgba(20, 45, 72, 0.13);
}

* {
  box-sizing: border-box;
}

img,
video,
canvas {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
}

.row > * {
  min-width: 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(221, 230, 239, 0.9);
  backdrop-filter: blur(18px);
  z-index: 1030;
}

.utility-bar {
  min-height: 32px;
  background: #0b263f;
  color: #b8c8d7;
  font-size: 0.68rem;
  font-weight: 700;
}

.utility-bar .container,
.utility-bar .container > div {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility-bar .container > div {
  min-height: auto;
  justify-content: flex-end;
}

.utility-bar a {
  color: #dce9f3;
}

.utility-bar i {
  margin-right: 4px;
  color: #62d1d0;
}

.utility-separator {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.navbar {
  min-height: 78px;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-wordmark {
  color: var(--navy);
  font-size: 1.78rem;
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 1;
}

.brand-wordmark > span {
  color: var(--brand);
}

.navbar .nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0.7rem 0.85rem !important;
  border-radius: 12px;
  color: #52647b;
  font-size: 0.92rem;
  font-weight: 700;
  transition: 180ms ease;
}

.navbar .nav-link i {
  color: var(--brand);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.show {
  color: var(--brand-dark);
  background: #eaf8fa;
}

.btn {
  border-radius: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  border: 0;
  background: linear-gradient(110deg, var(--brand) 0%, #15b2a8 48%, var(--lime) 100%);
  color: white;
  box-shadow: 0 12px 28px rgba(9, 164, 173, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(110deg, #078f9a 0%, #0d9d94 52%, #70af2d 100%);
  color: white;
  box-shadow: 0 16px 36px rgba(9, 164, 173, 0.28);
}

.btn-lg {
  padding: 0.96rem 1.35rem;
  font-size: 0.96rem;
}

.mega-dropdown {
  position: relative;
}

.integration-dropdown {
  width: 338px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #e3eaf1 !important;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.integration-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 12px;
  border-bottom: 1px solid #edf1f5;
}

.integration-dropdown-head span {
  color: #7f8fa1;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.integration-dropdown-head small {
  padding: 4px 7px;
  border-radius: 99px;
  background: #eaf8fa;
  color: var(--brand-dark);
  font-size: 0.6rem;
  font-weight: 800;
}

.integration-menu-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 10px;
  border-radius: 13px;
  transition: 180ms ease;
}

.integration-menu-item:hover {
  background: #f0f9fa;
  transform: translateX(2px);
}

.integration-menu-item > i:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #e9f8f9;
  color: var(--brand);
  font-size: 1.05rem;
}

.integration-menu-item > i:last-child {
  color: #b4c0cc;
  font-size: 0.68rem;
}

.integration-menu-item span {
  display: grid;
}

.integration-menu-item strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.integration-menu-item small {
  color: #8795a5;
  font-size: 0.64rem;
}

.integration-menu-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding: 11px 12px;
  border-radius: 11px;
  background: #0c2743;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
}

.integration-menu-all:hover {
  background: var(--brand-dark);
  color: white;
}

.mega-menu {
  right: 0;
  left: 0;
  width: min(1120px, calc(100vw - 32px));
  margin: 4px auto 0;
  border: 1px solid #e6edf4 !important;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.menu-eyebrow {
  color: #8a9aac;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-all-link {
  color: var(--brand-dark);
  font-size: 0.83rem;
  font-weight: 800;
}

.mega-category {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 14px;
  border-radius: 15px;
  transition: 180ms ease;
}

.mega-category:hover {
  background: #f2f9fa;
  transform: translateY(-2px);
}

.mega-category > i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: #e8f8fa;
  color: var(--brand);
  font-size: 1.1rem;
}

.mega-category span {
  display: grid;
  min-width: 0;
}

.mega-category strong {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.3;
}

.mega-category small {
  margin-top: 4px;
  color: #8291a3;
  font-size: 0.68rem;
}

.hero {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: center;
  padding: 88px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 9%, rgba(100, 211, 201, 0.16), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(132, 197, 61, 0.1), transparent 25%),
    linear-gradient(180deg, #f7faff 0%, #f3f7fc 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(13, 94, 125, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 94, 125, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.hero-grid::before {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 44%;
  height: 58%;
  content: "";
  border: 1px solid rgba(0, 162, 177, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(132, 197, 61, 0.15);
}

.hero h1,
.page-hero h1,
.detail-hero h1,
.contact-page h1 {
  max-width: 800px;
  margin: 0 0 24px;
  color: #0e1e31;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero h1 span,
.page-hero h1 span,
.detail-hero h1 span,
.contact-page h1 span {
  color: var(--brand);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #60728a;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-proof i {
  margin-right: 4px;
  color: var(--lime);
}

.integration-cockpit {
  position: relative;
  max-width: 560px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 38px 100px rgba(22, 75, 107, 0.16);
  backdrop-filter: blur(18px);
}

.integration-cockpit::after {
  position: absolute;
  z-index: -1;
  right: -45px;
  bottom: -36px;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(8, 169, 181, 0.22), rgba(132, 197, 61, 0.1));
  filter: blur(2px);
}

.cockpit-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cockpit-top h2 {
  margin: 9px 0 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 99px;
  background: #edf9f0;
  color: #39833f;
  font-size: 0.68rem;
  font-weight: 800;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62bc69;
  box-shadow: 0 0 0 4px rgba(98, 188, 105, 0.15);
}

.cockpit-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #ecf8fa;
  color: var(--brand);
  font-size: 1.3rem;
}

.cockpit-flow {
  position: relative;
  min-height: 288px;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid #e8eef4;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(8, 169, 181, 0.08), transparent 36%),
    #f7f9fc;
}

.cockpit-flow::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.75;
  background-image:
    linear-gradient(rgba(14, 80, 112, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 80, 112, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.flow-hub {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 108px;
  height: 108px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(9, 169, 181, 0.28);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 50px rgba(8, 135, 150, 0.16);
  transform: translate(-50%, -50%);
}

.flow-wordmark {
  color: var(--navy);
  font-size: 1rem !important;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.flow-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 169, 181, 0.05), rgba(8, 169, 181, 0.55));
  transform-origin: right;
}

.flow-line::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--brand);
}

.flow-line-1 {
  top: 72px;
  left: 90px;
  width: 140px;
  transform: rotate(28deg);
}

.flow-line-2 {
  top: 143px;
  right: 74px;
  width: 150px;
}

.flow-line-3 {
  bottom: 72px;
  left: 91px;
  width: 140px;
  transform: rotate(-29deg);
}

.flow-brand {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 156px;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid #e5ebf2;
  border-radius: 13px;
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}

.flow-brand > span:nth-child(2) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-brand > i {
  margin-left: auto;
  color: var(--lime);
}

.flow-brand-1 {
  top: 32px;
  left: 22px;
}

.flow-brand-2 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.flow-brand-3 {
  bottom: 30px;
  left: 22px;
}

.brand-logo {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 39, 66, 0.06);
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 16px rgba(18, 39, 66, 0.07);
}

.brand-logo img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.brand-logo strong {
  font-size: 0.7em;
}

.brand-logo-sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.brand-logo-md {
  width: 52px;
  height: 52px;
}

.brand-logo-lg {
  width: 86px;
  height: 86px;
  border-radius: 22px;
}

.cockpit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cockpit-stats div {
  display: grid;
  padding: 12px;
  border-radius: 14px;
  background: #f5f8fb;
}

.cockpit-stats strong {
  color: var(--navy);
  font-size: 0.85rem;
}

.cockpit-stats span {
  color: #8291a3;
  font-size: 0.62rem;
}

.logo-strip {
  padding: 32px 0;
  border-top: 1px solid #edf1f5;
  border-bottom: 1px solid #edf1f5;
  background: white;
}

.logo-strip p {
  margin-bottom: 18px;
  color: #97a4b2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border: 1px solid #e6edf4;
  border-radius: 12px;
  color: #56687f;
  font-size: 0.76rem;
  font-weight: 800;
  transition: 180ms ease;
}

.logo-chip:hover {
  border-color: #b8dfe3;
  color: var(--brand-dark);
  transform: translateY(-2px);
}

.section-space {
  padding: 110px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.section-heading h2,
.process-shell h2,
.detail-workflow h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
}

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e3eaf1;
  border-radius: 22px;
  background: white;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feature-card > i {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 15px;
  background: #eaf8fa;
  color: var(--brand);
  font-size: 1.25rem;
}

.feature-card h3,
.capability-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.feature-card p,
.capability-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #dbe3ec;
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-card-2,
.feature-card-5 {
  background: #f5faf9;
}

.feature-card-3 {
  background: #f8f6ff;
}

.categories-section {
  background: var(--navy);
  color: white;
}

.categories-section .eyebrow {
  color: #70d4d8;
}

.categories-section .section-heading h2 {
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.categories-section .text-link {
  color: #90e2df;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.category-tab {
  display: flex;
  min-height: 290px;
  justify-content: space-between;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition: 200ms ease;
}

.category-tab:hover {
  border-color: rgba(115, 215, 213, 0.42);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}

.category-tab > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: rgba(80, 206, 207, 0.13);
  color: #7fdddd;
  font-size: 1.2rem;
}

.category-tab h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.category-tab p {
  min-height: 66px;
  margin-bottom: 18px;
  color: #a9b9c8;
  font-size: 0.77rem;
  line-height: 1.55;
}

.category-tab small {
  color: #78d8d8;
  font-size: 0.7rem;
  font-weight: 800;
}

.showcase-section {
  background: #f7f9fc;
}

.integration-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #e2e9f0;
  border-radius: 20px;
  background: white;
  box-shadow: 0 6px 25px rgba(22, 47, 74, 0.035);
  transition: 200ms ease;
}

.integration-card::before {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 125px;
  height: 125px;
  content: "";
  border-radius: 50%;
  background: var(--card-accent);
  opacity: 0.75;
  transition: 250ms ease;
}

.integration-card:hover {
  border-color: #bfdfe2;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.integration-card:hover::before {
  transform: scale(1.2);
}

.integration-card-copy {
  margin-top: auto;
}

.category-label {
  color: #8b9aab;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.integration-card h3 {
  margin: 7px 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.integration-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 23px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f1f5f8;
  color: var(--ink);
  font-size: 0.85rem;
  opacity: 0;
  transition: 180ms ease;
  transform: translate(-6px, 6px);
}

.integration-card:hover .card-arrow {
  opacity: 1;
  transform: none;
}

.process-section {
  background: #f7f9fc;
}

.process-shell {
  padding: 70px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 2% 0%, rgba(8, 169, 181, 0.28), transparent 32%),
    var(--navy);
  color: white;
}

.process-shell h2 {
  margin-bottom: 20px;
  color: white;
}

.process-shell > .row > div > p {
  max-width: 430px;
  margin-bottom: 28px;
  color: #b7c4d1;
}

.eyebrow-dark {
  color: #7ed8d6;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.process-list li:last-child {
  border: 0;
}

.process-list > li > span {
  color: #6ed0d1;
  font-size: 0.72rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 800;
}

.process-list p {
  margin: 0;
  color: #aab9c7;
  font-size: 0.82rem;
}

.page-hero {
  padding: 105px 0 64px;
  background:
    radial-gradient(circle at 82% 15%, rgba(8, 169, 181, 0.15), transparent 26%),
    #f5f8fc;
}

.page-hero h1 {
  font-size: clamp(2.9rem, 5vw, 4.8rem);
}

.page-hero p {
  color: var(--ink-soft);
}

.category-jump {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 56px;
}

.category-jump a {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid #dfe7ef;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  color: #4f6278;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  transition: 180ms ease;
}

.category-jump a:hover {
  border-color: #9ed5d8;
  color: var(--brand-dark);
  transform: translateY(-3px);
}

.category-jump i {
  color: var(--brand);
  font-size: 1.05rem;
}

.category-jump span {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: #edf4f7;
  color: #8190a1;
  font-size: 0.62rem;
}

.integrations-catalog {
  padding-bottom: 100px;
}

.catalog-section {
  padding-top: 95px;
}

.catalog-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e2e8ef;
}

.catalog-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
  background: #e9f8f9;
  color: var(--brand);
  font-size: 1.35rem;
}

.catalog-heading h2 {
  margin: 3px 0;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.catalog-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.catalog-heading > strong {
  color: #dce5ed;
  font-size: 2.2rem;
  font-weight: 800;
}

.detail-hero {
  position: relative;
  padding: 62px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 20%, var(--detail-accent), transparent 30%),
    linear-gradient(180deg, #f8fafd 0%, #f4f7fb 100%);
}

.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 58px;
  color: #8392a3;
  font-size: 0.73rem;
  font-weight: 700;
}

.breadcrumb-wrap a:hover {
  color: var(--brand-dark);
}

.breadcrumb-wrap i {
  font-size: 0.58rem;
}

.detail-hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
}

.detail-hero > .container > .row > div > p {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.detail-visual {
  max-width: 470px;
  margin-left: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.detail-logo {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 18px;
  border: 1px solid #e4eaf0;
  border-radius: 20px;
  background: white;
}

.detail-logo > div {
  display: grid;
  min-width: 0;
}

.detail-logo strong {
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-logo span {
  color: #8493a3;
  font-size: 0.68rem;
}

.detail-logo > i {
  margin-left: auto;
  color: var(--lime);
}

.sync-track {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
}

.sync-track::before {
  position: absolute;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, #b8d8dc, transparent);
}

.sync-track div {
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #c8e7e9;
  border-radius: 50%;
  background: #edf9fa;
  color: var(--brand);
}

.sync-track > span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.sync-track > span:first-child {
  top: 11px;
}

.sync-track > span:last-child {
  bottom: 11px;
}

.brand-mini-wordmark {
  display: grid;
  min-width: 96px;
  height: 58px;
  place-items: center;
  border-radius: 15px;
  background: #eaf8fa;
  color: var(--navy) !important;
  font-size: 0.92rem !important;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.entegrex-detail-logo > i {
  color: var(--brand);
}

.detail-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 18px;
}

.detail-mini-stats span {
  padding: 10px 7px;
  border-radius: 10px;
  background: #f3f7fa;
  color: #607186;
  font-size: 0.64rem;
  font-weight: 800;
  text-align: center;
}

.detail-mini-stats i {
  margin-right: 3px;
  color: var(--brand);
}

.capability-card {
  position: relative;
  min-height: 250px;
  padding: 27px;
  border: 1px solid #e2e9f0;
  border-radius: 20px;
  background: white;
  transition: 200ms ease;
}

.capability-card:hover {
  border-color: #bcdde0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.capability-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 14px;
  background: #eaf8fa;
  color: var(--brand);
  font-size: 1.15rem;
}

.capability-index {
  position: absolute;
  top: 26px;
  right: 27px;
  color: #d5dfe8;
  font-size: 0.68rem;
  font-weight: 800;
}

.detail-workflow {
  padding: 100px 0;
  background: #f4f7fa;
}

.detail-workflow p {
  margin-top: 18px;
  color: var(--ink-soft);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.workflow-steps > div {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #dfe7ef;
  border-radius: 20px;
  background: white;
}

.workflow-steps > div > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #d8e1e9;
  font-size: 0.7rem;
  font-weight: 800;
}

.workflow-steps i {
  margin: 20px 0 auto;
  color: var(--brand);
  font-size: 1.65rem;
}

.workflow-steps strong {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.workflow-steps small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.55;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading.compact h2 {
  font-size: 2.6rem;
}

.pricing-hero {
  padding-bottom: 190px;
}

.pricing-hero p {
  max-width: 650px;
  font-size: 1rem;
}

.pricing-section {
  position: relative;
  z-index: 2;
  margin-top: -130px;
  padding-bottom: 110px;
}

.pricing-card {
  position: relative;
  min-height: 570px;
  padding: 32px;
  border: 1px solid #e0e7ee;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.pricing-card-featured {
  border-color: #63cbd0;
  box-shadow: 0 28px 80px rgba(11, 113, 129, 0.15);
  transform: translateY(-14px);
}

.popular-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 99px;
  background: #e9f8f9;
  color: var(--brand-dark);
  font-size: 0.62rem;
  font-weight: 800;
}

.pricing-card h2 {
  margin: 12px 0 8px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-card > p {
  min-height: 80px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.price-copy {
  display: grid;
  margin: 26px 0 24px;
}

.price-copy strong {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.price-copy span {
  color: #8997a6;
  font-size: 0.75rem;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #53657a;
  font-size: 0.82rem;
}

.pricing-card li i {
  margin-right: 6px;
  color: var(--lime);
}

.pricing-note {
  max-width: 850px;
  margin: 30px auto 0;
  color: #7f8e9e;
  font-size: 0.76rem;
  text-align: center;
}

.contact-page {
  padding: 105px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(132, 197, 61, 0.08), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(8, 169, 181, 0.12), transparent 26%),
    #f5f8fc;
}

.contact-page h1 {
  max-width: 100%;
  font-size: clamp(2.65rem, 3.85vw, 4.1rem);
  overflow-wrap: normal;
}

.contact-page > .container > .row > div > p {
  max-width: 570px;
  color: var(--ink-soft);
}

.contact-points {
  display: grid;
  gap: 18px;
  margin: 35px 0;
}

.contact-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-points > div > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  background: #e8f7f8;
  color: var(--brand);
}

.contact-points > div > div {
  display: grid;
}

.contact-points strong {
  font-size: 0.87rem;
}

.contact-points small {
  color: #7c8c9d;
  font-size: 0.72rem;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid #dce6ed;
  border-radius: 14px;
  background: white;
}

.contact-mail > i {
  color: var(--brand);
}

.contact-mail span {
  display: grid;
}

.contact-mail small {
  color: #8b99a8;
  font-size: 0.62rem;
}

.contact-mail strong {
  font-size: 0.78rem;
}

.contact-form-shell {
  width: 100%;
  max-width: 100%;
  padding: 38px;
  border: 1px solid #e0e7ee;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading h2 {
  margin: 12px 0 3px;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.form-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.form-label {
  margin-bottom: 6px;
  color: #334a62;
  font-size: 0.72rem;
  font-weight: 800;
}

.form-control {
  width: 100%;
  max-width: 100%;
  min-height: 51px;
  border: 1px solid #dce5ed;
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.84rem;
}

.form-control:focus {
  border-color: #58c1c7;
  box-shadow: 0 0 0 4px rgba(8, 169, 181, 0.1);
}

textarea.form-control {
  min-height: 110px;
}

.form-disclaimer {
  display: block;
  margin-top: 16px;
  color: #8a99a8;
  font-size: 0.66rem;
  text-align: center;
}

.form-disclaimer i {
  color: var(--brand);
}

.site-footer {
  background: #091e33;
  color: white;
}

.footer-cta {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-footer {
  color: white;
}

.footer-about {
  max-width: 360px;
  margin: 20px 0;
  color: #9db0c1;
  font-size: 0.83rem;
}

.footer-mail {
  color: #78d7d6;
  font-size: 0.8rem;
  font-weight: 800;
}

.site-footer h3 {
  margin-bottom: 17px;
  color: #dbe5ee;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li a {
  color: #91a5b7;
  font-size: 0.78rem;
  transition: 160ms ease;
}

.site-footer li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #71889b;
  font-size: 0.68rem;
}

@media (min-width: 1200px) {
  .mega-dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
    max-height: calc(100vh - 116px);
    padding: 14px 0 22px;
    overflow-y: auto;
  }

  .navbar .nav-link {
    justify-content: flex-start;
  }

  .navbar .btn-brand {
    width: 100%;
    margin: 10px 0 0 !important;
  }

  .integration-dropdown {
    position: static !important;
    width: 100%;
    margin: 5px 0 8px;
    box-shadow: none;
  }

  .contact-page {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .contact-page #destek {
    max-width: 760px;
  }

  .contact-page h1 {
    max-width: 720px;
    font-size: clamp(2.8rem, 6vw, 4.35rem);
  }

  .category-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-tab {
    min-height: 240px;
  }

  .category-jump {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .utility-bar .container > div > span:last-child,
  .utility-separator {
    display: none;
  }

  .navbar {
    min-height: 72px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 84px);
    padding: 14px 0 22px;
    overflow-y: auto;
  }

  .navbar .nav-link {
    justify-content: flex-start;
  }

  .navbar .btn-brand {
    width: 100%;
    margin: 10px 0 0 !important;
  }

  .mega-menu {
    position: static !important;
    width: 100%;
    margin: 5px 0 8px;
    box-shadow: none;
  }

  .integration-dropdown {
    position: static !important;
    width: 100%;
    margin: 5px 0 8px;
    box-shadow: none;
  }

  .hero {
    padding-top: 70px;
  }

  .integration-cockpit {
    margin: auto;
  }

  .section-heading {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .category-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-shell {
    padding: 48px;
  }

  .page-hero {
    padding-top: 75px;
  }

  .category-jump {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-visual {
    margin: 20px auto 0;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card-featured {
    transform: none;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .brand {
    font-size: 1.45rem;
  }

  .utility-bar {
    display: none;
  }

  .hero,
  .section-space,
  .detail-workflow,
  .contact-page {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1,
  .contact-page h1 {
    font-size: clamp(2.3rem, 10vw, 2.75rem);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .integration-cockpit {
    padding: 15px;
    border-radius: 22px;
  }

  .cockpit-flow {
    min-height: 270px;
  }

  .flow-brand {
    width: 128px;
    font-size: 0.61rem;
  }

  .flow-brand-1,
  .flow-brand-3 {
    left: 10px;
  }

  .flow-brand-2 {
    right: 8px;
  }

  .cockpit-stats span {
    display: none;
  }

  .cockpit-stats strong {
    text-align: center;
  }

  .section-heading h2,
  .process-shell h2,
  .detail-workflow h2 {
    font-size: 2.25rem;
  }

  .category-tabs,
  .category-jump {
    grid-template-columns: 1fr;
  }

  .category-tab {
    min-height: 205px;
  }

  .process-shell {
    padding: 28px;
    border-radius: 24px;
  }

  .catalog-heading {
    grid-template-columns: auto 1fr;
  }

  .catalog-heading > strong {
    display: none;
  }

  .catalog-heading h2 {
    font-size: 1.35rem;
  }

  .catalog-heading p {
    display: none;
  }

  .detail-hero {
    padding: 38px 0 72px;
  }

  .breadcrumb-wrap {
    margin-bottom: 40px;
  }

  .detail-visual {
    padding: 18px;
  }

  .detail-logo {
    padding: 12px;
  }

  .brand-logo-lg {
    width: 64px;
    height: 64px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps > div {
    min-height: 190px;
  }

  .contact-form-shell {
    padding: 23px;
  }

  .footer-bottom {
    gap: 8px;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions .btn,
  .detail-hero .btn,
  .footer-cta .btn {
    width: 100%;
  }

  .contact-page {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-page h1 {
    font-size: clamp(2.15rem, 11vw, 2.55rem);
    letter-spacing: -0.055em;
  }

  .contact-form-shell {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-mail {
    width: 100%;
    max-width: 100%;
  }

  .contact-mail strong {
    overflow-wrap: anywhere;
  }

  .contact-points > div {
    align-items: flex-start;
  }

  .detail-mini-stats,
  .cockpit-stats {
    grid-template-columns: 1fr;
  }

  .footer-cta h2 {
    font-size: 2rem;
  }
}

/* Lighter typography pass */
.utility-bar,
.navbar .nav-link {
  font-weight: 600;
}

.brand,
.brand-wordmark,
.flow-wordmark,
.brand-mini-wordmark {
  font-weight: 700;
}

.btn,
.eyebrow,
.status-pill,
.category-label,
.menu-eyebrow,
.menu-all-link,
.integration-dropdown-head span,
.integration-dropdown-head small,
.integration-menu-all,
.text-link {
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.detail-hero h1,
.contact-page h1,
.section-heading h2,
.process-shell h2,
.detail-workflow h2,
.footer-cta h2 {
  font-weight: 700;
}

.feature-card h3,
.capability-card h3,
.integration-card h3,
.category-tab h3,
.catalog-heading h2,
.pricing-card h2,
.form-heading h2,
.process-list h3,
.cockpit-top h2,
.site-footer h3,
.integration-menu-item strong,
.detail-logo strong,
.workflow-steps strong,
.price-copy strong,
.contact-points strong,
strong {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
