/* =========================================================
   BRINGLIVE DIGITAL
   MAIN WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: #0b1f4a;
  background: #ffffff;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --navy-dark: #03112f;
  --navy: #061a46;
  --navy-soft: #0d2c69;
  --blue-dark: #0b48d8;
  --blue: #145cff;
  --blue-light: #3f7dff;
  --cyan: #20d7d4;
  --cyan-soft: #7ef4ef;
  --white: #ffffff;
  --off-white: #f6f9ff;
  --light-blue: #edf4ff;
  --border: rgba(20, 92, 255, 0.13);
  --border-dark: rgba(255, 255, 255, 0.12);
  --text-dark: #071733;
  --text-medium: #50627e;
  --text-light: #8899b4;
  --shadow-soft: 0 20px 60px rgba(10, 33, 81, 0.1);
  --shadow-card: 0 24px 70px rgba(4, 25, 70, 0.12);
  --shadow-blue: 0 20px 50px rgba(20, 92, 255, 0.24);
  --radius-small: 14px;
  --radius-medium: 24px;
  --radius-large: 36px;
  --container: 1240px;
}


/* =========================================================
   GLOBAL UTILITIES
========================================================= */

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--blue) 0%,
    var(--cyan) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(20, 92, 255, 0.22),
      transparent 36%
    ),
    var(--navy-dark);
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 92px;
  height: 92px;
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-line {
  width: 160px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--cyan)
  );
  animation: loaderLine 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 16px 0;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 40px rgba(5, 31, 77, 0.08);
  backdrop-filter: blur(18px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  width: 190px;
  min-width: 190px;
  height: 56px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: #38506f;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--cyan)
  );
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--blue-dark)
  );
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-blue);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(20, 92, 255, 0.32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--light-blue);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 999;
  width: min(420px, 100%);
  height: 100vh;
  height: 100dvh;
  padding:
    120px
    34px
    40px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(
      circle at top right,
      rgba(20, 215, 212, 0.18),
      transparent 30%
    ),
    var(--navy-dark);
  transition: right 0.4s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 24px;
  min-height: 54px;
  border-radius: 16px;
  color: var(--navy-dark);
  background: linear-gradient(
    90deg,
    var(--cyan),
    #69f5ec
  );
  font-weight: 600;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding:
    150px
    0
    100px;
  background:
    linear-gradient(
      180deg,
      #f7fbff 0%,
      #ffffff 100%
    );
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(
      rgba(20, 92, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(20, 92, 255, 0.06) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 86%
  );
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-glow-one {
  top: 90px;
  right: -180px;
  width: 580px;
  height: 580px;
  background: rgba(20, 92, 255, 0.16);
}

.hero-glow-two {
  bottom: -180px;
  left: -160px;
  width: 450px;
  height: 450px;
  background: rgba(32, 215, 212, 0.12);
}

.floating-square {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(20, 92, 255, 0.35);
  animation: floatingSquare 6s ease-in-out infinite;
}

.square-one {
  top: 24%;
  left: 8%;
}

.square-two {
  top: 40%;
  right: 10%;
  width: 11px;
  height: 11px;
  background: var(--cyan);
  animation-delay: 1.5s;
}

.square-three {
  bottom: 18%;
  left: 43%;
  width: 8px;
  height: 8px;
  animation-delay: 3s;
}

@keyframes floatingSquare {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(12deg);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(420px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(20, 92, 255, 0.14);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 30px rgba(18, 67, 151, 0.06);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(32, 215, 212, 0.12);
}

.hero-content h1 {
  max-width: 760px;
  color: var(--text-dark);
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.hero-content h1 span {
  display: block;
}

.hero-description {
  max-width: 650px;
  margin-top: 28px;
  color: var(--text-medium);
  font-size: 1.15rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--blue-dark)
  );
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  box-shadow: 0 28px 65px rgba(20, 92, 255, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(6, 26, 70, 0.12);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 35px rgba(3, 17, 47, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(20, 92, 255, 0.28);
  background: var(--white);
}

.hero-trust {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 42px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-item strong {
  color: var(--text-dark);
  font-size: 0.93rem;
}

.trust-item span {
  color: var(--text-light);
  font-size: 0.78rem;
}

.trust-divider {
  width: 1px;
  background: rgba(7, 23, 51, 0.11);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(20, 92, 255, 0.12);
}

.orbit-one {
  width: 520px;
  height: 520px;
  animation: orbitSpin 24s linear infinite;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-color: rgba(32, 215, 212, 0.14);
  animation: orbitSpinReverse 18s linear infinite;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.hero-dashboard-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(20, 92, 255, 0.32),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #061a46,
      #03112f
    );
  box-shadow:
    0 40px 100px rgba(3, 17, 47, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: dashboardFloat 5s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.dashboard-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.dashboard-top h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #d9e7ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(32, 215, 212, 0.8);
}

.workflow-line {
  display: flex;
  align-items: center;
  margin-top: 36px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.workflow-step {
  min-width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.55);
}

.workflow-step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
}

.workflow-step strong {
  font-size: 0.7rem;
  font-weight: 600;
}

.workflow-step.active {
  color: var(--white);
}

.workflow-step.active span {
  border-color: transparent;
  color: var(--navy-dark);
  background: var(--cyan);
}

.workflow-connector {
  flex: 1;
  height: 1px;
  margin: 0 6px;
  background: linear-gradient(
    90deg,
    rgba(32, 215, 212, 0.7),
    rgba(255, 255, 255, 0.13)
  );
}

.dashboard-panels {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
}

.mini-panel-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(32, 215, 212, 0.1);
  font-size: 0.75rem;
  font-weight: 650;
}

.mini-panel div:last-child {
  display: flex;
  flex-direction: column;
}

.mini-panel span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.mini-panel strong {
  margin-top: 2px;
  font-size: 0.9rem;
}

.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
}

.progress-summary {
  flex: 1;
}

.progress-summary span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.progress-track {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--cyan)
  );
}

.dashboard-brand-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
}

.dashboard-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: #6f829f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(6, 26, 70, 0.13);
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--blue);
  animation: scrollMove 1.8s ease-in-out infinite;
}

@keyframes scrollMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(300%);
  }
}


/* =========================================================
   CHALLENGE STRIP
========================================================= */

.challenge-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(20, 92, 255, 0.08);
  border-bottom: 1px solid rgba(20, 92, 255, 0.08);
  background: var(--off-white);
}

.challenge-strip-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.challenge-intro {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.09);
  font-size: 0.75rem;
  font-weight: 650;
}

.challenge-intro p {
  max-width: 300px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.challenge-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  color: #6f829f;
  font-size: 0.78rem;
  font-weight: 600;
}

.challenge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}


/* =========================================================
   SECTION HEADERS
========================================================= */

.section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}

.split-header {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(300px, 0.7fr);
  gap: 80px;
  align-items: end;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.08);
  font-size: 0.72rem;
}

.section-header h2,
.industries-heading h2,
.contact-content h2 {
  color: var(--text-dark);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-header-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header-copy p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
}

.centered-header {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker.centered {
  justify-content: center;
}

.centered-header p {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 255, 1),
      rgba(255, 255, 255, 1)
    );
  box-shadow: 0 14px 40px rgba(4, 36, 92, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 92, 255, 0.22);
  box-shadow: var(--shadow-card);
}

.large-card {
  grid-row: span 2;
  min-height: 642px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(20, 92, 255, 0.32),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      var(--navy),
      var(--navy-dark)
    );
}

.card-number {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 2rem;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.about-card:not(.large-card) .card-number {
  width: 60px;
  height: 60px;
  border-color: rgba(20, 92, 255, 0.10);
  border-radius: 18px;
  color: rgba(20, 92, 255, 0.32);
  background: rgba(20, 92, 255, 0.055);
  box-shadow: none;
  font-size: 1.55rem;
}

/* Keep the label and card number on one clean top row,
   then begin the heading safely below the number. */
.about-card:not(.large-card) .card-label {
  min-height: 62px;
  padding-right: 90px;
  margin-bottom: 12px;
}

.about-card-content {
  position: relative;
  z-index: 2;
}

.card-label {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.about-card:not(.large-card) .card-label {
  color: var(--blue);
}

.about-card h3 {
  max-width: 520px;
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.about-card:not(.large-card) h3 {
  color: var(--text-dark);
}

.about-card p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.about-card:not(.large-card) p {
  color: var(--text-medium);
}

.card-decoration {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.card-decoration::before,
.card-decoration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.card-decoration::before {
  inset: 50px;
}

.card-decoration::after {
  inset: 100px;
}

.company-facts {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.company-fact {
  padding: 30px 24px;
  border-right: 1px solid var(--border);
}

.company-fact:last-child {
  border-right: none;
}

.company-fact span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.11em;
}

.company-fact strong {
  color: var(--text-dark);
  font-size: 1.08rem;
  line-height: 1.5;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {
  overflow: hidden;
  background: var(--off-white);
}

.solutions-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  opacity: 0.45;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(20, 92, 255, 0.1),
      transparent 44%
    );
}

.solutions-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.solution-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(20, 92, 255, 0.12);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(4, 31, 79, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 92, 255, 0.25);
  box-shadow: var(--shadow-card);
}

.featured-solution {
  color: var(--white);
  background:
    radial-gradient(
      circle at top right,
      rgba(32, 215, 212, 0.18),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      var(--navy),
      var(--navy-dark)
    );
}

.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.09);
  font-weight: 650;
}

.featured-solution .solution-icon {
  color: var(--navy-dark);
  background: var(--cyan);
}

.solution-tag {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(32, 215, 212, 0.1);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.solution-content {
  margin-top: auto;
  padding-top: 70px;
}

.solution-content h3 {
  color: var(--text-dark);
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.featured-solution .solution-content h3 {
  color: var(--white);
}

.solution-content p {
  margin-top: 15px;
  color: var(--text-medium);
  line-height: 1.75;
}

.featured-solution .solution-content p {
  color: rgba(255, 255, 255, 0.66);
}

.solution-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 92, 255, 0.1);
}

.featured-solution .solution-footer {
  border-color: rgba(255, 255, 255, 0.09);
}

.solution-footer span:first-child {
  color: #6c7f9c;
  font-size: 0.76rem;
  font-weight: 600;
}

.featured-solution .solution-footer span:first-child {
  color: rgba(255, 255, 255, 0.56);
}

.solution-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.08);
}

.featured-solution .solution-arrow {
  color: var(--navy-dark);
  background: var(--cyan);
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
  background: var(--white);
}

.industries-layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.72fr)
    minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

.industries-heading {
  position: sticky;
  top: 130px;
}

.industries-heading p {
  margin-top: 24px;
  color: var(--text-medium);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 600;
}

.industries-list {
  border-top: 1px solid var(--border);
}

.industry-item {
  display: grid;
  grid-template-columns:
    56px
    minmax(0, 1fr)
    42px;
  align-items: center;
  gap: 20px;
  min-height: 150px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.industry-item:hover {
  transform: translateX(8px);
}

.industry-number {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 650;
}

.industry-content h3 {
  color: var(--text-dark);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.industry-content p {
  margin-top: 7px;
  color: var(--text-medium);
  line-height: 1.7;
}

.industry-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.08);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
  background: var(--off-white);
}

.process-timeline {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns:
    78px
    1px
    minmax(0, 1fr);
  gap: 34px;
  min-height: 190px;
}

.process-number {
  display: grid;
  place-items: center;
  align-self: start;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(4, 31, 79, 0.08);
  font-weight: 650;
}

.process-line {
  width: 1px;
  min-height: 100%;
  background: linear-gradient(
    to bottom,
    var(--cyan),
    rgba(20, 92, 255, 0.12)
  );
}

.process-content {
  padding-bottom: 44px;
}

.process-content > span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.process-content h3 {
  color: var(--text-dark);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.process-content p {
  max-width: 690px;
  margin-top: 12px;
  color: var(--text-medium);
  line-height: 1.8;
}

.guiding-principle {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 38px auto 0;
  padding: 42px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(32, 215, 212, 0.2),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      var(--navy),
      var(--navy-dark)
    );
}

.guiding-principle span {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.11em;
}

.guiding-principle h3 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}


/* =========================================================
   VALUE SECTION
========================================================= */

.value-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      var(--navy-dark),
      #071d50
    );
}

.value-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(30px);
  background: rgba(20, 92, 255, 0.16);
}

.light h2 {
  color: var(--white);
}

.light h2 span {
  display: block;
  color: var(--cyan);
}

.light p {
  color: rgba(255, 255, 255, 0.62);
}

.value-section .section-kicker {
  color: var(--cyan);
}

.value-section .section-kicker span {
  color: var(--cyan);
  background: rgba(32, 215, 212, 0.1);
}

.transformation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    170px
    minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.transformation-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transformation-label {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.transformation-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 68px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
}

.to-column .transformation-item {
  border-color: rgba(32, 215, 212, 0.14);
  background: rgba(32, 215, 212, 0.055);
  color: var(--white);
}

.transformation-item span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 650;
}

.transformation-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.transformation-logo {
  width: 120px;
  height: 120px;
}

.transformation-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.transformation-center > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 600;
}

.value-promise {
  max-width: 900px;
  margin: 58px auto 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.value-promise p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  line-height: 1.8;
}

.value-promise strong {
  color: var(--cyan);
}


/* =========================================================
   VALUES STRIP
========================================================= */

.values-strip {
  overflow: hidden;
  padding: 20px 0;
  background: var(--blue);
}

.values-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 24px;
  color: var(--white);
  animation: marquee 28s linear infinite;
}

.values-track span:not(.values-dot) {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.values-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(420px, 1.18fr);
  gap: 80px;
  align-items: start;
}

.contact-content p {
  max-width: 600px;
  margin-top: 24px;
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.85;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--off-white);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

a.contact-detail:hover {
  transform: translateX(6px);
  border-color: rgba(20, 92, 255, 0.25);
  box-shadow: 0 18px 45px rgba(4, 31, 79, 0.08);
}

.contact-detail-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.09);
  font-weight: 650;
}

.contact-detail div:last-child {
  display: flex;
  flex-direction: column;
}

.contact-detail span {
  color: var(--text-light);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.contact-detail strong {
  margin-top: 3px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      #f7fbff,
      #ffffff
    );
  box-shadow: var(--shadow-soft);
}

.contact-form-heading {
  margin-bottom: 28px;
}

.contact-form-heading span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.contact-form-heading h3 {
  margin-top: 8px;
  color: var(--text-dark);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(6, 26, 70, 0.12);
  outline: none;
  border-radius: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group input {
  min-height: 52px;
  padding: 0 15px;
}

.form-group textarea {
  min-height: 150px;
  padding: 15px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a6b3c6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(20, 92, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(20, 92, 255, 0.08);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  color: var(--text-light);
  font-size: 0.74rem;
  text-align: center;
}

.form-message {
  min-height: 24px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {
  padding:
    20px
    0
    110px;
  background: var(--white);
}

.final-cta {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  background:
    linear-gradient(
      145deg,
      var(--blue),
      #0a3ec1
    );
  box-shadow: 0 40px 100px rgba(20, 92, 255, 0.25);
}

.final-cta-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.final-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.circle-one {
  top: -220px;
  right: -150px;
  width: 580px;
  height: 580px;
}

.circle-two {
  bottom: -260px;
  left: -140px;
  width: 520px;
  height: 520px;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 70px 28px;
  text-align: center;
}

.final-cta-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.final-cta-content > span {
  display: block;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.final-cta-content h2 {
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.btn-light {
  margin-top: 30px;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding:
    78px
    0
    28px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(20, 92, 255, 0.18),
      transparent 26%
    ),
    var(--navy-dark);
}

.footer-top {
  display: grid;
  grid-template-columns:
    minmax(250px, 0.8fr)
    minmax(0, 1.2fr);
  gap: 80px;
  padding-bottom: 54px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 252px;
  padding: 14px 18px;
  border: 1px solid rgba(32, 215, 212, 0.22);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(238, 246, 255, 0.96)
  );
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 36px rgba(32, 215, 212, 0.10);
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: saturate(1.06) contrast(1.04);
}

.footer-brand p {
  max-width: 320px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.footer-navigation {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.footer-column a,
.footer-column span:not(.footer-heading) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

  .desktop-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.86rem;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero-container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(390px, 0.9fr);
    gap: 40px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 5.2vw, 5.3rem);
  }

  .solutions-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 1020px) {

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-section {
    padding-top: 130px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .split-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    grid-row: auto;
    min-height: 500px;
  }

  .company-facts {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .company-fact:nth-child(2) {
    border-right: none;
  }

  .company-fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .industries-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .industries-heading {
    position: relative;
    top: auto;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .transformation-center {
    order: -1;
    margin-bottom: 20px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}


@media (max-width: 760px) {

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 86px 0;
  }

  .site-header {
    padding: 10px 0;
  }

  .brand-logo {
    width: 160px;
    min-width: 160px;
    height: 48px;
  }

  .hero-section {
    min-height: auto;
    padding:
      92px
      0
      76px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 18px;
  }

  .trust-divider {
    width: 100%;
    height: 1px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 20px;
  }

  .visual-orbit {
    display: none;
  }

  .hero-dashboard-card {
    padding: 20px;
    border-radius: 24px;
  }

  .dashboard-top {
    flex-direction: column;
  }

  .workflow-line {
    overflow-x: auto;
  }

  .workflow-step {
    min-width: 64px;
  }

  .scroll-indicator {
    display: none;
  }

  .challenge-strip-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .challenge-items {
    justify-content: flex-start;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2,
  .industries-heading h2,
  .contact-content h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .about-grid {
    gap: 16px;
  }

  .about-card,
  .large-card {
    min-height: 360px;
    padding: 24px;
  }

  /* Decorative card numbers must never sit behind readable text on phones. */
  .card-number {
    display: none;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-fact {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .company-fact:last-child {
    border-bottom: none;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 320px;
  }

  .industry-item {
    grid-template-columns:
      42px
      minmax(0, 1fr);
  }

  .industry-arrow {
    display: none;
  }

  .process-step {
    grid-template-columns:
      58px
      minmax(0, 1fr);
    gap: 18px;
  }

  .process-line {
    display: none;
  }

  .process-number {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .guiding-principle {
    padding: 30px 24px;
  }

  .transformation-center {
    margin-bottom: 10px;
  }

  .transformation-logo {
    width: 92px;
    height: 92px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
    border-radius: 24px;
  }

  .final-cta-section {
    padding-bottom: 80px;
  }

  .final-cta {
    min-height: 480px;
    border-radius: 28px;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: min(240px, 100%);
    padding: 12px 16px;
    border-radius: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}


@media (max-width: 480px) {

  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .mobile-menu {
    padding-inline: 22px;
  }

  .eyebrow {
    align-items: flex-start;
    border-radius: 16px;
    font-size: 0.72rem;
  }

  .hero-dashboard-card {
    padding: 17px;
  }

  .dashboard-top h3 {
    font-size: 2rem;
  }

  .workflow-line {
    padding: 14px;
  }

  .dashboard-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-brand-icon {
    align-self: flex-end;
  }

  .about-card h3 {
    font-size: 1.6rem;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .contact-form-heading h3 {
    font-size: 1.7rem;
  }

  .final-cta-content h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

}


/* =========================================================
   LANDSCAPE PHONE FIX
   Keeps navigation and section content visible on short screens.
========================================================= */

@media (
  max-width: 1020px
) and (
  max-height: 600px
) and (
  orientation: landscape
) {

  .site-header {
    padding: 6px 0;
  }

  .brand-logo {
    width: 148px;
    min-width: 148px;
    height: 42px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    width: min(460px, 100%);
    height: 100vh;
    height: 100dvh;
    padding:
      56px
      24px
      18px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-nav {
    gap: 0;
  }

  .mobile-nav-link {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.96rem;
  }

  .mobile-menu-cta {
    min-height: 44px;
    margin-top: 14px;
    margin-bottom: 16px;
    font-size: 0.9rem;
  }

  /* Reduce vertical whitespace when the phone is turned sideways. */
  .section {
    padding: 58px 0;
  }

  .hero-section {
    min-height: auto;
    padding:
      72px
      0
      50px;
  }

  .hero-container {
    gap: 28px;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 7vw, 4rem);
  }

  .hero-description {
    margin-top: 20px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-trust {
    margin-top: 28px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header h2,
  .industries-heading h2,
  .contact-content h2 {
    font-size: clamp(2.3rem, 7vw, 3.7rem);
  }

  /* Keep decorative numbering away from headings and paragraphs. */
  .card-number {
    display: none;
  }

}

/* =========================================================
   FINAL POLISH — CTA ICON + MOBILE ABOUT CARD NUMBERS
   Added after the main responsive rules so these refinements
   take priority without changing the existing layout system.
========================================================= */

/* Make the B icon in the final blue CTA clearly visible and premium. */
.final-cta-icon {
  width: 96px;
  height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #edf4ff 58%,
      #dfeaff 100%
    );
  box-shadow:
    0 18px 46px rgba(3, 17, 47, 0.28),
    0 0 0 7px rgba(255, 255, 255, 0.08),
    0 0 34px rgba(32, 215, 212, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  filter: saturate(1.14) brightness(1.08);
}

/* Bring the clean desktop number-badge treatment to phones too. */
@media (max-width: 760px) {
  .card-number {
    display: grid;
    top: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 17px;
    font-size: 1.45rem;
  }

  .about-card:not(.large-card) .card-number {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    font-size: 1.4rem;
  }

  .about-card:not(.large-card) .card-label {
    min-height: 56px;
    padding-right: 72px;
    margin-bottom: 12px;
  }

  .final-cta-icon {
    width: 88px;
    height: 88px;
    padding: 13px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .card-number,
  .about-card:not(.large-card) .card-number {
    top: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.3rem;
  }

  .about-card:not(.large-card) .card-label {
    min-height: 52px;
    padding-right: 66px;
  }

  .final-cta-icon {
    width: 82px;
    height: 82px;
    padding: 12px;
    border-radius: 22px;
  }
}

/* Keep the same aligned badges when a phone is turned sideways. */
@media (max-width: 1020px) and (max-height: 600px) and (orientation: landscape) {
  .card-number,
  .about-card:not(.large-card) .card-number {
    display: grid;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1.25rem;
  }

  .about-card:not(.large-card) .card-label {
    min-height: 50px;
    padding-right: 64px;
    margin-bottom: 10px;
  }

  .final-cta-icon {
    width: 76px;
    height: 76px;
    padding: 11px;
    border-radius: 20px;
  }
}


/* =========================================================
   BRINGLIVE BRAND ICONOGRAPHY REFINEMENT
   Focused changes only:
   - Keep the About card numbers exactly as the aligned badges.
   - Remove decorative duplicate numbering from the challenge strip.
   - Replace repetitive solution and industry arrows/numbers with
     brand-colour iconography and restrained motion.
   - No red/coral accents.
========================================================= */

/* ---------- Logo-inspired section marker ---------- */
.section-kicker .brand-pixel-mark {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(20, 92, 255, 0.13);
  border-radius: 12px;
  background:
    radial-gradient(circle at 75% 28%, rgba(32, 215, 212, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow:
    0 12px 30px rgba(4, 31, 79, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.section-kicker .brand-pixel-mark i {
  position: absolute;
  display: block;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(20, 92, 255, 0.18);
}

.section-kicker .brand-pixel-mark i:nth-child(1) {
  width: 10px;
  height: 10px;
  left: 9px;
  top: 9px;
}

.section-kicker .brand-pixel-mark i:nth-child(2) {
  width: 7px;
  height: 7px;
  left: 21px;
  top: 13px;
  background: var(--cyan);
}

.section-kicker .brand-pixel-mark i:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 14px;
  top: 23px;
  background: var(--blue-light);
}

/* ---------- Challenge strip: one visual signal, not another “01” ---------- */
.section-number.challenge-signal {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 92, 255, 0.13);
  border-radius: 13px;
  background:
    radial-gradient(circle at 68% 32%, rgba(32, 215, 212, 0.20), transparent 34%),
    rgba(20, 92, 255, 0.07);
  overflow: hidden;
}

.challenge-signal i {
  position: absolute;
  left: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: left center;
  animation: challengeSignal 2.8s ease-in-out infinite;
}

.challenge-signal i:nth-child(1) { top: 11px; width: 16px; }
.challenge-signal i:nth-child(2) { top: 19px; width: 22px; animation-delay: 0.16s; }
.challenge-signal i:nth-child(3) { top: 27px; width: 12px; animation-delay: 0.32s; }

@keyframes challengeSignal {
  0%, 100% { transform: scaleX(0.72); opacity: 0.58; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* ---------- Solutions: unique icons instead of repeated numbers/arrows ---------- */
.solution-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(20, 92, 255, 0.12);
  border-radius: 17px;
  color: var(--blue);
  background:
    radial-gradient(circle at 75% 24%, rgba(32, 215, 212, 0.16), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow:
    0 14px 34px rgba(4, 31, 79, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.solution-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(32, 215, 212, 0.08);
}

.solution-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.38s ease;
}

.featured-solution .solution-icon {
  color: var(--navy-dark);
  border-color: rgba(255, 255, 255, 0.20);
  background:
    radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(145deg, var(--cyan), #79f3ef);
  box-shadow: 0 16px 40px rgba(32, 215, 212, 0.18);
}

.solution-card:hover .solution-icon svg {
  transform: scale(1.08) rotate(-2deg);
}

.solution-signal {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  width: 38px;
  height: 30px;
  padding: 7px 9px;
  border: 1px solid rgba(20, 92, 255, 0.10);
  border-radius: 10px;
  background: rgba(20, 92, 255, 0.055);
}

.solution-signal i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  animation: solutionSignal 1.9s ease-in-out infinite;
}

.solution-signal i:nth-child(1) { height: 7px; }
.solution-signal i:nth-child(2) { height: 13px; animation-delay: 0.14s; }
.solution-signal i:nth-child(3) { height: 9px; animation-delay: 0.28s; }

.featured-solution .solution-signal {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
}

@keyframes solutionSignal {
  0%, 100% { transform: scaleY(0.72); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Who We Serve: unique sector symbols, no arrows on both sides ---------- */
.industry-item {
  position: relative;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding-inline: 14px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.industry-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  width: 2px;
  height: 56%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.32s ease;
}

.industry-item:hover {
  transform: translateX(5px);
  background: linear-gradient(90deg, rgba(20, 92, 255, 0.035), rgba(32, 215, 212, 0.015), transparent 76%);
  box-shadow: inset 0 1px 0 rgba(20, 92, 255, 0.02);
}

.industry-item:hover::before {
  transform: scaleY(1);
}

.industry-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(20, 92, 255, 0.12);
  border-radius: 16px;
  color: var(--blue);
  background:
    radial-gradient(circle at 75% 25%, rgba(32, 215, 212, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow:
    0 12px 30px rgba(4, 31, 79, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.industry-symbol::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(32, 215, 212, 0.08);
}

.industry-symbol svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-item:hover .industry-symbol {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(32, 215, 212, 0.34);
  box-shadow: 0 16px 38px rgba(20, 92, 255, 0.11);
}

/* The CTA keeps a clear destination without adding another arrow. */
.text-link-mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 2px;
}

.text-link-mark i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  animation: textLinkPulse 2s ease-in-out infinite;
}

.text-link-mark i:nth-child(2) {
  background: var(--blue-light);
  animation-delay: 0.16s;
}

.text-link-mark i:nth-child(3) {
  background: var(--cyan);
  animation-delay: 0.32s;
}

@keyframes textLinkPulse {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-2px); opacity: 1; }
}

/* ---------- Responsive protection ---------- */
@media (max-width: 760px) {
  .section-kicker .brand-pixel-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 11px;
  }

  .solution-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .solution-icon svg {
    width: 27px;
    height: 27px;
  }

  .industry-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding-inline: 8px;
  }

  .industry-symbol {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .industry-symbol svg {
    width: 23px;
    height: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .challenge-signal i,
  .solution-signal i,
  .text-link-mark i {
    animation: none;
  }

  .solution-icon svg,
  .industry-symbol,
  .industry-item,
  .industry-item::before {
    transition: none;
  }
}


/* =========================================================
   FINAL SECTION SYSTEM REFINEMENT
   - Major section headers use one consistent BringLive pixel marker.
   - Numbers remain only where they communicate a real sequence.
   - Value transformation cards use brand-colour signal markers, not repeated 01–06 labels.
========================================================= */

/* Keep the logo-inspired marker crisp and consistent in every major section. */
.section-kicker > .brand-pixel-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

/* Dark-section version of the same marker. */
.value-section .section-kicker > .brand-pixel-mark {
  border-color: rgba(32, 215, 212, 0.24);
  background:
    radial-gradient(circle at 75% 28%, rgba(32, 215, 212, 0.24), transparent 35%),
    linear-gradient(145deg, rgba(20, 92, 255, 0.16), rgba(32, 215, 212, 0.07));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Value section: replace duplicated numbers with a compact animated signal. */
.transformation-item {
  position: relative;
  padding-left: 48px;
  overflow: hidden;
}

.transformation-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  transform: translateY(-50%) rotate(45deg);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:
    0 0 0 5px rgba(20, 92, 255, 0.08),
    0 0 20px rgba(32, 215, 212, 0.18);
  animation: valueSignalPulse 3.2s ease-in-out infinite;
}

.to-column .transformation-item::before {
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  box-shadow:
    0 0 0 5px rgba(32, 215, 212, 0.08),
    0 0 22px rgba(32, 215, 212, 0.22);
}

.transformation-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: center;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  transition: transform 0.35s ease;
}

.transformation-item:hover::after {
  transform: scaleY(1);
}

.transformation-item:hover::before {
  animation-duration: 1.2s;
}

.transformation-column .transformation-item:nth-of-type(3)::before { animation-delay: 0.22s; }
.transformation-column .transformation-item:nth-of-type(4)::before { animation-delay: 0.44s; }
.transformation-column .transformation-item:nth-of-type(5)::before { animation-delay: 0.66s; }
.transformation-column .transformation-item:nth-of-type(6)::before { animation-delay: 0.88s; }
.transformation-column .transformation-item:nth-of-type(7)::before { animation-delay: 1.10s; }

@keyframes valueSignalPulse {
  0%, 100% {
    transform: translateY(-50%) rotate(45deg) scale(0.92);
    opacity: 0.76;
  }
  50% {
    transform: translateY(-50%) rotate(45deg) scale(1.08);
    opacity: 1;
  }
}

/* Respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
  .transformation-item::before {
    animation: none;
  }
}

/* Mobile: keep markers compact and prevent them from crowding headings. */
@media (max-width: 720px) {
  .section-kicker > .brand-pixel-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
  }

  .transformation-item {
    padding-left: 46px;
  }

  .transformation-item::before {
    left: 17px;
    width: 11px;
    height: 11px;
  }
}


/* BRINGLIVE LEGAL ESSENTIALS v1.1 */
.footer-legal-links{display:flex;flex-wrap:wrap;justify-content:center;gap:8px 16px;margin-top:18px;font-size:.82rem}.footer-legal-links a{color:inherit;opacity:.84;text-decoration:none}.footer-legal-links a:hover{opacity:1;color:#16c8d4}.legal-page{margin:0;background:#f4f8ff;color:#102a43;line-height:1.7}.legal-page-hero{background:linear-gradient(135deg,#03132f,#061a46);color:#fff;padding:24px 0 76px}.legal-shell,.legal-main{width:min(1040px,calc(100% - 40px));margin:0 auto}.legal-topbar,.legal-footer-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}.legal-brand img{width:min(285px,68vw);max-height:82px;object-fit:contain}.legal-brand{color:#fff;text-decoration:none;font-size:1.35rem}.legal-home{color:#fff!important;text-decoration:none;border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:10px 16px;font-weight:600}.legal-kicker{margin:64px 0 8px;color:#16c8d4;font-size:.78rem;font-weight:650;letter-spacing:.18em;text-transform:uppercase}.legal-page-hero h1{max-width:830px;margin:0 0 14px;color:#fff;font-size:clamp(2.2rem,6vw,4.5rem);line-height:1.05}.legal-intro{max-width:790px;color:#d9e9ff;font-size:1.08rem}.legal-main{margin-top:-42px;margin-bottom:72px}.legal-card{background:#fff;border:1px solid #d8e4f3;border-radius:24px;box-shadow:0 24px 70px rgba(6,26,70,.12);padding:clamp(24px,5vw,58px)}.legal-meta{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:30px}.legal-meta span{background:#eaf4ff;border:1px solid #cce0fb;border-radius:999px;padding:7px 12px;color:#061a46;font-size:.82rem;font-weight:600}.legal-card h2{color:#061a46;margin-top:38px}.legal-card li{margin:8px 0}.legal-notice,.legal-warning{border-radius:14px;padding:16px 18px;margin:22px 0}.legal-notice{background:#edf9f7;border:1px solid #bfe9e1;border-left:5px solid #087f5b}.legal-warning{background:#fff8e8;border:1px solid #f2d89a;border-left:5px solid #c98500}.legal-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.legal-links a{display:block;background:#f4f8ff;border:1px solid #d8e4f3;border-radius:18px;padding:20px;color:#102a43;text-decoration:none}.legal-links strong{display:block;color:#061a46;font-size:1.08rem}.legal-contact{background:#061a46;color:#fff;border-radius:18px;padding:22px;margin-top:34px}.legal-contact a{color:#8cebf0}.legal-page-footer{background:#03132f;color:#d8e8ff;padding:34px 0}.legal-page-footer nav{display:flex;flex-wrap:wrap;gap:8px 14px}.legal-page-footer a{color:#fff}@media(max-width:720px){.legal-links{grid-template-columns:1fr}}


/* =========================================================
   MOBILE PRECISION SYSTEM
   Refines phone proportions without changing the desktop
   design, brand assets, animation system or content structure.
========================================================= */

.legal-brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.legal-brand img {
  width: min(220px, 54vw);
  height: auto;
  max-height: 58px;
}

.legal-card ul {
  padding-left: 22px;
  list-style: disc;
}

.legal-card li {
  padding-left: 3px;
}

.legal-contact h2 {
  color: #ffffff;
}

.privacy-static-ready .page-loader {
  display: none;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header,
  .site-header.scrolled {
    padding: 8px 0;
  }

  .nav-container {
    gap: 14px;
  }

  .brand-logo {
    width: 148px;
    min-width: 148px;
    height: 44px;
  }

  .menu-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero-section {
    padding: 84px 0 64px;
  }

  .hero-container {
    gap: 32px;
  }

  .hero-content,
  .hero-visual,
  .section-header,
  .section-header-copy {
    min-width: 0;
  }

  .floating-square {
    display: none;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 0.72rem;
    line-height: 1.35;
    white-space: normal;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 11.3vw, 3.4rem);
    line-height: 1.01;
    letter-spacing: -0.045em;
  }

  .hero-description {
    max-width: 100%;
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.68;
    overflow-wrap: break-word;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .hero-actions .btn {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .hero-trust {
    gap: 14px;
    margin-top: 30px;
  }

  .hero-visual {
    padding-top: 8px;
  }

  .hero-dashboard-card {
    max-width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .dashboard-top {
    gap: 14px;
  }

  .dashboard-label {
    margin-bottom: 8px;
  }

  .dashboard-top h3 {
    font-size: 1.75rem;
  }

  .dashboard-status {
    gap: 7px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .workflow-line {
    margin-top: 24px;
    padding: 12px 8px;
    overflow: visible;
    border-radius: 16px;
  }

  .workflow-step {
    min-width: 48px;
    gap: 3px;
  }

  .workflow-step span {
    width: 28px;
    height: 28px;
    font-size: 0.64rem;
  }

  .workflow-step strong {
    font-size: 0.62rem;
  }

  .workflow-connector {
    margin: 0 3px;
  }

  .dashboard-panels {
    gap: 8px;
    margin-top: 14px;
  }

  .mini-panel {
    gap: 11px;
    padding: 12px;
    border-radius: 14px;
  }

  .mini-panel-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 0.68rem;
  }

  .mini-panel span {
    font-size: 0.68rem;
  }

  .mini-panel strong {
    font-size: 0.82rem;
  }

  .dashboard-footer {
    gap: 14px;
    margin-top: 18px;
  }

  .dashboard-brand-icon {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .split-header {
    gap: 22px;
  }

  .section-kicker {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .section-kicker > .brand-pixel-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .section-header h2,
  .industries-heading h2,
  .contact-content h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9.5vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .section-header-copy p,
  .centered-header p {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .about-card,
  .large-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .large-card {
    min-height: 390px;
  }

  .card-number,
  .about-card:not(.large-card) .card-number {
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.15rem;
  }

  .about-card:not(.large-card) .card-label {
    min-height: 46px;
    padding-right: 58px;
    margin-bottom: 10px;
  }

  .about-card h3 {
    font-size: 1.45rem;
    line-height: 1.16;
  }

  .about-card p {
    margin-top: 14px;
    line-height: 1.68;
  }

  .footer-legal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px 16px;
    justify-content: stretch;
    text-align: left;
  }

  .legal-shell,
  .legal-main {
    width: min(calc(100% - 32px), 1040px);
  }

  .legal-page-hero {
    padding: 16px 0 56px;
  }

  .legal-topbar {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .legal-brand {
    flex: 0 1 178px;
    min-width: 0;
    padding: 6px 10px;
    border-radius: 14px;
  }

  .legal-brand img {
    width: 100%;
    max-height: 42px;
  }

  .legal-home {
    flex: 0 0 auto;
    padding: 9px 12px;
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .legal-kicker {
    margin: 36px 0 8px;
    font-size: 0.68rem;
    line-height: 1.4;
    letter-spacing: 0.14em;
  }

  .legal-page-hero h1 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    overflow-wrap: break-word;
  }

  .legal-intro {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .legal-main {
    margin-top: -28px;
    margin-bottom: 52px;
  }

  .legal-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .legal-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
  }

  .legal-meta span {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 42px;
    padding: 7px 9px;
    border-radius: 12px;
    font-size: 0.7rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .legal-card h2 {
    margin-top: 28px;
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .legal-card p,
  .legal-card li {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .legal-notice,
  .legal-warning {
    margin: 18px 0;
    padding: 14px;
    border-radius: 12px;
  }

  .legal-links {
    gap: 10px;
  }

  .legal-links a {
    padding: 15px;
    border-radius: 14px;
  }

  .legal-links strong {
    font-size: 1rem;
  }

  .legal-contact {
    margin-top: 28px;
    padding: 18px 15px;
    border-radius: 16px;
  }

  .legal-contact h2 {
    margin-top: 0;
  }

  .legal-contact p,
  .legal-contact a {
    overflow-wrap: anywhere;
  }

  .legal-page-footer {
    padding: 28px 0;
  }

  .legal-footer-inner {
    align-items: flex-start;
    gap: 20px;
  }

  .legal-page-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px 16px;
  }

  .legal-page-footer a {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .container,
  .legal-shell,
  .legal-main {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-logo {
    width: 142px;
    min-width: 142px;
    height: 42px;
  }

  .menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .hero-content h1 {
    font-size: clamp(2.45rem, 11vw, 2.9rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .legal-brand {
    flex-basis: 164px;
  }

  .legal-home {
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  .legal-page-hero h1 {
    font-size: clamp(1.8rem, 8.7vw, 2.15rem);
  }

  .legal-meta span {
    font-size: 0.67rem;
  }
}

.guard-nav-icon,.meet-nav-icon{width:36px;height:36px;object-fit:contain;flex:0 0 36px}.product-mobile-link{display:flex!important;align-items:center;gap:10px}.product-mobile-link img{object-fit:contain;flex:0 0 auto}
