/* ============================================================
   SV Tech — landing page
   Scale rules applied from the Figma export:
   font-size  : original - 4px   (line-height scaled to match)
   padding/gap: original - 10px  (floored so small values stay visible)
   ============================================================ */

:root {
  --blue: #0c5a99;
  --teal: #00b8b0;
  --ink: #1e1e1e;
  --ink-deep: #050316;
  --muted: rgba(30, 30, 30, 0.7);
  --line: #dcdcdc;
  --page: 1440px;
  --gutter: 70px;
  /* 80 - 10 */
  --radius-card: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Anchor targets clear the sticky header instead of hiding beneath it. */
section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family:
    Lato,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Poppins, sans-serif;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 14px;
  /* 18 - 4 */
  line-height: 17.5px;
  color: #fff;
  margin: 0;
}

.eyebrow-teal {
  color: var(--teal);
}

.eyebrow.caps {
  font-family: Poppins, sans-serif;
  font-size: 12px;
  /* 16 - 4 */
  line-height: 15px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.04px;
}

.section-title {
  font-size: 28px;
  /* 32 - 4 */
  line-height: 35px;
  font-weight: 600;
  margin-top: 10px;
}

.section-title.white {
  color: #fff;
}

.section-title.blue {
  color: var(--blue);
}

.section-title.black {
  color: #000;
}

.section-title.dark {
  color: var(--ink);
}

.section-sub {
  font-family: Lato, sans-serif;
  font-size: 16px;
  /* 20 - 4 */
  line-height: 22px;
  font-weight: 400;
  color: var(--muted);
}

.section-sub.white {
  color: #fff;
}

.section-sub.faded {
  color: rgba(255, 255, 255, 0.78);
}

.section-sub.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.narrow {
  max-width: 1104px;
  margin-inline: auto;
}

/* ---------- buttons ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  /* 18 - 4 */
  line-height: 17.5px;
  font-weight: 600;
  letter-spacing: 0.04px;
  text-transform: capitalize;
  padding: 12px 14px;
  /* 22/16 - 10, floored */
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill-light {
  background: #fff;
  color: #262324;
  border: 1px solid #e0e0e0;
}

.pill-outline {
  color: #fff;
  border: 1px solid #e0e0e0;
}

.pill-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.pill-bordered {
  background: #fff;
  color: #262324;
  border: 1px solid #e0e0e0;
  padding: 12px 14px;
}

.pill-teal {
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0, 184, 176, 0.25);
}

.pill-teal:hover {
  background: #009e97;
  border-color: #009e97;
  box-shadow: 0 6px 18px rgba(0, 184, 176, 0.35);
}

.pill-ghost {
  color: #fbfbfe;
  border: 1px solid #fbfbfe;
  font-size: 12px;
  padding: 10px 14px;
}

.pill-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pill-solid {
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 1000px;
}

.pill-solid:hover {
  background: #0a4c81;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 12px;
  /* 16 - 4 */
  line-height: 15px;
  letter-spacing: 0.04px;
  text-transform: capitalize;
  border-radius: 100px;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 8px 14px;
  /* 8/24 - 10, floored */
}

.btn-primary:hover {
  background: #0a4c81;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 75px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.header-inner {
  height: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex: none;
}

.logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  /* 16 - 10 */
}

.main-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: none;
  white-space: nowrap;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  /* 16 - 4 */
  line-height: 15px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.04px;
  color: var(--ink);
  padding: 4px 6px 6px;
  transition: color 0.18s ease;
}

/* Reserves the bold width so the row never shifts when the active item changes. */
.main-nav a::after {
  content: attr(data-text);
  height: 0;
  font-weight: 600;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a.active {
  color: var(--blue);
  font-weight: 600;
}

/* Solutions Dropdown Menu Container */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  position: relative !important;
  padding-right: 18px !important;
  cursor: pointer;
}

.dropdown-trigger .chevron-icon {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 5px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.8;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-trigger .chevron-icon {
  transform: translateY(-50%) rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 400px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 15px 45px rgba(5, 3, 22, 0.12),
    0 2px 8px rgba(5, 3, 22, 0.04);
  border: 1px solid rgba(5, 3, 22, 0.06);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  transition:
    opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.25s;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-header {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
  padding-left: 8px;
}

.dropdown-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  width: 100% !important;
  text-align: left !important;
  text-transform: none !important;
  white-space: normal !important;
  transition:
    background 0.2s ease,
    color 0.2s ease !important;
}

.dropdown-item::after {
  display: none !important;
}

.item-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.item-icon-box img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.2s ease;
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-title {
  display: block;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.item-desc {
  display: block;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(30, 30, 30, 0.65);
  line-height: 1.4;
  transition: color 0.2s ease;
}

/* Hover/Active states matching Figma exactly */
.dropdown-item:hover,
.dropdown-item.active {
  background: var(--blue) !important;
}

.dropdown-item:hover .item-title,
.dropdown-item.active .item-title {
  color: #ffffff !important;
}

.dropdown-item:hover .item-desc,
.dropdown-item.active .item-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

.dropdown-item:hover .item-icon-box,
.dropdown-item.active .item-icon-box {
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0;
  transition:
    left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.18s ease;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  min-height: calc(100dvh - 75px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom-left-radius: 16.74px;
  border-bottom-right-radius: 16.74px;
  background: #0f172a;
  padding: 40px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content h1 {
  max-width: 590px;
  color: #fff;
  font-size: 40px;
  /* 48 - 4 */
  line-height: 55px;
  font-weight: 600;
}

.hero-divider {
  width: 100%;
  max-width: 1256px;
  height: 1.67px;
  margin: 13px 0 12px 14px;
  /* 23.44 - 10 */
  background: rgba(255, 255, 255, 0.2);
}

.hero-sub {
  max-width: 864px;
  padding-left: 14px;
  color: #fff;
  font-size: 16px;
  /* 20 - 4 */
  line-height: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  /* 20 - 10 */
  margin-top: 18px;
}

.hero-actions .pill {
  padding: 14px 24px;
  font-size: 16px;
  line-height: 20px;
  gap: 8px;
}

.hero-actions .pill svg {
  width: 15px;
  height: 12px;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: 40px 0 30px;
}

.intro .eyebrow {
  margin-bottom: 4px;
}

.intro .section-title {
  margin-bottom: 10px;
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions {
  background: var(--blue);
  border-radius: 30px;
  padding: 40px 0;
  /* 50 - 10 */
  margin: 10px 0;
}

.solutions-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 21px;
}

.solutions-head .section-sub {
  margin-top: 4px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  /* 26 - 10 */
}

.solution-card {
  position: relative;
  min-height: 490px;
  border-radius: 12.56px;
  overflow: hidden;
  background-color: #123;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 0;
}

.solution-card-body {
  position: relative;
  z-index: 1;
  padding: 22px;
  /* 32 - 10 */
  max-width: 502px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.solution-card-body h3 {
  color: #fff;
  font-size: 20px;
  /* 24 - 4 */
  line-height: 25px;
  font-weight: 600;
}

.solution-card-body p {
  color: #fff;
  font-size: 16px;
  /* 20 - 4 */
  line-height: 22px;
}

.card-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease;
}

.solution-card:hover .card-arrow {
  transform: translate(2px, -2px);
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.technology {
  padding: 60px 0;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(0, 844px) minmax(0, 411px);
  gap: 20px;
  align-items: start;
}

.tech-visual {
  position: sticky;
  top: 95px;
  height: 475px;
  min-height: 475px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f9fb;
}

.tech-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-visual-tint {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.15);
}

.tech-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 475px;
  width: min(563px, 100%);
  padding: 30px;
  /* 40 - 10 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.9) 0%,
    rgba(2, 6, 23, 0.5) 50%,
    rgba(2, 6, 23, 0) 100%
  );
}

.tech-visual-content .section-sub {
  margin-top: 4px;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-item {
  border: 1px solid #c6c6cd;
  border-radius: 12px;
  padding: 10px;
  /* 20 - 10 */
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.tech-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(0, 184, 176, 0.12);
}

.tech-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tech-item-head h3 {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 16px;
  /* 20 - 4 */
  line-height: 22px;
  color: var(--ink-deep);
}

.tech-item p {
  font-size: 14px;
  /* 18 - 4 */
  line-height: 17.5px;
  color: var(--ink-deep);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 40px 0;
}

.process-container {
  padding-inline: 150px;
}

/* 160 - 10 */
.process-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  /* 80 - 10 */
  margin-bottom: 10px;
}

.process-head .eyebrow {
  margin-bottom: 4px;
}

.process-illustration {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-row {
  display: flex;
  align-items: center;
  gap: 90px;
  /* 100 - 10 */
  padding: 14px 0;
  /* 24 - 10 */
  border-bottom: 1px solid var(--line);
}

.process-row:last-child {
  border-bottom: 0;
}

.process-label {
  display: flex;
  align-items: center;
  gap: 50px;
  /* 60 - 10 */
  width: 210px;
  flex: none;
}

.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  flex: none;
}

.process-icon.green {
  background: #4ea62f;
}

.process-icon.red {
  background: #ff3b30;
}

.process-icon.orange {
  background: #ff9500;
}

.process-name {
  font-family: Outfit, sans-serif;
  font-weight: 500;
  font-size: 20px;
  /* 24 - 4 */
  color: #000;
}

.process-desc {
  font-size: 14px;
  /* 18 - 4 */
  line-height: 17.5px;
  color: rgba(0, 0, 0, 0.4);
  max-width: 631px;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
  position: relative;
  background: var(--blue);
  min-height: calc(100vh - 75px);
  min-height: calc(100dvh - 75px);
  padding: 30px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.industries-rings {
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 42px
    ),
    repeating-radial-gradient(
      circle at 88% 78%,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 42px
    );
  pointer-events: none;
}

.industries-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.industries-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.industries-head .section-sub {
  margin-top: 4px;
}

.industries-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  height: clamp(350px, calc(100vh - 220px), 520px);
}

.industry-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 0;
  background: #0b3d68;
}

.industry-card-lg {
  height: 100%;
  min-height: 0;
}

.industry-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-tint {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.4);
}

.industry-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.industry-card-lg .industry-body {
  padding: 24px;
  min-height: 0;
  height: 100%;
}

.industry-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.industry-card h3 {
  color: #fff !important;
  font-size: 18px;
  /* 22 - 4 */
  line-height: 22.5px;
  font-weight: 600;
}

.industry-card-lg h3 {
  font-size: 24px;
  color: #fff !important;
  /* 28 - 4 */
  line-height: 30px;
}

.industry-card p {
  color: #fff !important;
  font-size: 12px;
  /* 16 - 4 */
  line-height: 16px;
  max-width: 573px;
}

.industry-card-lg p {
  font-size: 14px;
  color: #fff !important;
  /* 18 - 4 */
  line-height: 17.5px;
}

.industry-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.industry-col .industry-card {
  flex: 1 1 0;
  min-height: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-inner {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 0 1 460px;
  width: 100%;
  max-width: 500px;
  height: 480px;
  object-fit: cover;
  border-radius: 15.33px;
}

.about-content {
  flex: 0 1 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 440px;
}

.about-rule {
  display: block;
  width: 90px;
  height: 4px;
  background: var(--teal);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink-deep);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 62px;
  /* 42/72 - 10 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-text h2 {
  color: #fbfbfe;
  font-size: 24px;
  /* 28 - 4 */
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  /* 20 - 4 */
  line-height: 22px;
  max-width: 620px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 30px;
  padding: 46px 0 30px;
  /* 56 - 10 */
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 241px;
}

.footer-logo {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 16px;
  /* 20 - 4 */
  color: var(--ink-deep);
}

.footer-brand p:not(.footer-logo) {
  font-size: 16px;
  /* 18 - 4 */
  line-height: 20px;
  color: var(--muted);
}

.footer-col h4 {
  font-size: 20px;
  /* 22 - 4 */
  line-height: 22.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 15px;
  /* 18 - 4 */
  line-height: 17.5px;
  color: var(--ink-deep);
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-divider {
  height: 2px;
  background: rgba(32, 30, 29, 0.4);
}

.footer-contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: 21px 0 22px;
  /* 31.17/32 - 10 */
}

.footer-contact h3 {
  font-size: 20px;
  /* 24 - 4 */
  line-height: 25px;
  font-weight: 600;
  color: var(--ink-deep);
  margin-bottom: 6px;
}

.footer-contact > div:first-child > p {
  font-size: 16px;
  /* 20 - 4 */
  line-height: 22px;
  color: rgba(5, 3, 22, 0.78);
  max-width: 382px;
  margin-bottom: 12px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-details p {
  font-size: 16px;
  /* 20 - 4 */
  line-height: 22px;
  color: rgba(5, 3, 22, 0.6);
}

.footer-contact-details a {
  color: var(--blue);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  /* 24 - 10 */
}

.footer-bottom p {
  font-size: 14px;
  /* 18 - 4 */
  line-height: 17.5px;
  font-weight: 700;
  color: rgba(30, 30, 30, 0.8);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 14px;
  line-height: 17.5px;
  font-weight: 700;
  color: var(--ink);
}

.footer-legal a:hover {
  color: var(--blue);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --gutter: 32px;
  }

  .process-container {
    padding-inline: 32px;
  }

  .tech-layout {
    grid-template-columns: 1fr;
  }

  .tech-visual-content {
    width: 100%;
    background: linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.9) 0%,
      rgba(2, 6, 23, 0.65) 100%
    );
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
  }

  .header-inner {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .main-nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding-bottom: 8px;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .nav-indicator {
    display: none;
  }

  .main-nav a.active {
    border-bottom: 2px solid var(--blue);
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding-right: 0;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 10px 0;
    margin-left: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    transition: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-header {
    display: none;
  }

  .dropdown-menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 8px;
    border-left: 2px solid rgba(12, 90, 153, 0.15);
  }

  .dropdown-item {
    padding: 10px 8px !important;
    gap: 12px !important;
  }

  .item-icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .item-icon-box img {
    width: 18px;
    height: 18px;
  }

  .item-title {
    font-size: 14px;
  }

  .item-desc {
    font-size: 12px;
  }

  .header-cta {
    order: 2;
  }

  .hero {
    min-height: calc(100vh - 75px);
    min-height: calc(100dvh - 75px);
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 340px;
  }

  .process-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .process-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .process-label {
    width: auto;
    gap: 16px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card-lg {
    min-height: 380px;
  }

  .industry-card-lg .industry-body {
    min-height: 380px;
  }

  .about-inner {
    flex-direction: column;
    gap: 30px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 18px;
  }

  .process-container {
    padding-inline: 18px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .section-title {
    font-size: 22px;
    line-height: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT US PAGE (Figma "About Us" frame)
   Same scale rules: font -4px, padding/margin/gap -10px (floored)
   ============================================================ */
.about-page {
  display: flex;
  flex-direction: column;
  gap: 40px; /* 50 - 10 */
  padding-top: 50px; /* 60 - 10 */
  padding-bottom: 0;
}

/* ---------- intro ---------- */
.ap-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px; /* 12 - 10, floored */
}
.ap-badge {
  align-self: flex-start;
  background: #e7eff5;
  color: var(--blue);
  border-radius: 2.25px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 14px; /* 14 - 4 */
  line-height: 12.5px;
  margin-bottom: 8px;
  letter-spacing: 0.035px;
  padding: 4px 6px; /* 4.5/13.5 - 10, floored */
}
.ap-title {
  max-width: 1154px;
  font-size: 36px; /* 40 - 4 */
  line-height: 45px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #191c1e;
}
.ap-lead {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: rgba(30, 30, 30, 0.8);
}
.ap-hero {
  position: relative;
  margin: 13px 0 0; /* 27 - 10, minus the 4px column gap */
  width: 100%;
  height: 480px;
  border-radius: 4.5px;
  overflow: hidden;
  box-shadow: 0 4.5px 13.5px rgba(0, 0, 0, 0.05);
}
.ap-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.ap-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(25, 28, 30, 0.4) 0%,
    rgba(25, 28, 30, 0) 100%
  );
}

/* ---------- shared band ---------- */
.ap-band-inner {
  max-width: 1008px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* 12 - 10, floored */
  text-align: center;
}
.ap-h2 {
  font-size: 28px; /* 32 - 4 */
  line-height: 35px;
  font-weight: 600;
  letter-spacing: -0.08px;
  color: #191c1e;
}

/* ---------- who we are ---------- */
.ap-who {
  background: #e7eff5;
  padding: 40px 0; /* band height 226 minus content, -10 applied */
}
.ap-who .ap-h2 {
  color: var(--ink);
}
.ap-band-text {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #424656;
  padding-bottom: 8px; /* 18 - 10 */
}

/* ---------- what we do ---------- */
.ap-what {
  max-width: var(--page);
  margin: 0 auto;
  width: 100%;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 10px; /* 20 - 10 */
}
.ap-what-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* 12 - 10, floored */
  text-align: center;
}
.ap-what-sub {
  max-width: 756px;
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #424656;
  margin-bottom: 20px;
}
.ap-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px; /* 27 - 10 */
}
.ap-card {
  background: #fff;
  border: 1.125px solid #c2c6d8;
  border-radius: 12px;
  padding: 18px 18px 45px; /* 28.125 / 55.125 - 10 */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px; /* 13.5 - 10, floored */
  min-height: 20px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.ap-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(0, 184, 176, 0.12);
}
.ap-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #e6f8f7;
  display: grid;
  place-items: center;
  flex: none;
}
.ap-card h3 {
  font-size: 18px; /* 22 - 4 */
  line-height: 22.5px;
  font-weight: 600;
  color: #191c1e;
  padding-top: 10px; /* 13.5 - 10, floored */
}
.ap-card p {
  font-size: 16px; /* 18 - 4 */
  line-height: 22px;
  color: #424656;
  margin-top: 8px;
  max-width: 200px;
}

/* ---------- technology + vision ---------- */
.ap-panels-inner {
  display: grid;
  grid-template-columns: minmax(0, 735fr) minmax(0, 518fr);
  gap: 17px; /* 27 - 10 */
  align-items: stretch;
}
.ap-panel-head {
  display: flex;
  align-items: center;
  gap: 8px; /* icon margin 16 - 10 */
   margin-bottom: 10px;
}
.ap-panel-head h2 {
  font-size: 20px; /* 24 - 4 */
  line-height: 25px;
  font-weight: 600;
}
.ap-tech-panel {
  background: #f7f9fb;
  border: 1.125px solid #c2c6d8;
  border-radius: 20px;
  padding: 27px; /* 37.125 - 10 */
  display: flex;
  flex-direction: column;
  gap: 6px; /* 12 - 10, floored */
  filter: drop-shadow(0 1.125px 1.125px rgba(0, 0, 0, 0.05));
}
.ap-tech-panel .ap-panel-head h2 {
  color: #191c1e;
}
.ap-tech-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ap-tech-list li {
  display: flex;
  align-items: center;
  gap: 8px; /* icon margin 15.8 - 10 */
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  color: #424656;
}
.ap-vision-panel {
  background: var(--blue);
  border: 1.125px solid #fff;
  border-radius: 20px;
  padding: 27px 27px 20px; /* 37.125 / 21.125 - 10 */
  display: flex;
  flex-direction: column;
  gap: 4px; /* 12 - 10, floored */
}
.ap-vision-panel .ap-panel-head h2 {
  color: #fff;
}
.ap-vision-text {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #e6e8ea;
}
.ap-vision-tagline {
  margin-top: auto;
  border-top: 1.125px solid #fff;
  font-family: Poppins, sans-serif;
  padding-top: 10px;
  font-weight: 600;
  font-size: 14px; /* 16 - 4 */
  line-height: 15px;
  letter-spacing: 0.04px;
  text-transform: capitalize;
  color: #fff;
}

/* ---------- closing CTA ---------- */
.ap-cta {
  background: var(--blue);
  border-top: 1.125px solid #c2c6d8;
  padding: 46px 0; /* section 270 tall, -10 applied */
}
.ap-cta .ap-band-inner {
  gap: 6px;
} /* 16 - 10 */
.ap-cta-title {
  font-size: 28px; /* 32 - 4 */
  line-height: 35px;
  font-weight: 600;
  letter-spacing: -0.08px;
  color: #fff;
  font-family: Poppins, sans-serif;
}
.ap-cta-text {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #fff;
  padding-bottom: 8px; /* 18 - 10 */
  max-width: 680px;
}
.ap-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  padding: 12px 26px; /* 13.5 / 36 - 10, floored */
  font-family: Poppins, sans-serif;
  font-weight: 600;
  margin-top: 10px;
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  letter-spacing: 0.045px;
  text-transform: capitalize;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.ap-cta-btn:hover {
  background: #009c95;
  transform: translateY(-1px);
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .ap-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ap-panels-inner {
    grid-template-columns: 1fr;
  }
  .ap-hero {
    height: 360px;
  }
}

@media (max-width: 900px) {
  .about-page {
    padding-top: 30px;
    gap: 30px;
  }
  .ap-title {
    font-size: 28px;
    line-height: 36px;
  }
  .ap-hero {
    height: 280px;
  }
  .ap-who {
    padding: 30px 0;
  }
  .ap-cta {
    padding: 34px 0;
  }
}

@media (max-width: 560px) {
  .ap-card-grid {
    grid-template-columns: 1fr;
  }
  .ap-card {
    min-height: 0;
    padding-bottom: 24px;
  }
  .ap-title {
    font-size: 24px;
    line-height: 31px;
  }
  .ap-h2,
  .ap-cta-title {
    font-size: 22px;
    line-height: 28px;
  }
  .ap-hero {
    height: 220px;
  }
}

/* ============================================================
   CONTACT US PAGE (Figma "Contact us" frame)
   Same scale rules: font -4px, padding/margin/gap -10px (floored)
   ============================================================ */
.contact-page {
  display: flex;
  flex-direction: column;
  gap: 40px; /* 50 - 10 */
  padding-top: 50px; /* 60 - 10 */
}

/* ---------- intro ---------- */
.cp-intro-inner {
  max-width: 848px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* 12 - 10, floored */
  text-align: center;
}
.cp-title {
  font-size: 36px; /* 40 - 4 */
  line-height: 45px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #191c1e;
}
.cp-lead {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #5d5e61;
}
.cp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px; /* 8 - 10, floored */
  background: var(--teal);
  color: #f8f7ff;
  border-radius: 100px;
  padding: 10px 22px; /* 16/32 - 10, floored */
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  letter-spacing: 0.045px;
  text-transform: capitalize;
  margin-top: 12px;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.cp-hero-btn:hover {
  background: #009c95;
  transform: translateY(-1px);
}

/* ---------- info + form grid ---------- */
.cp-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 17px; /* 27 - 10 */
  align-items: start;
}
.cp-info {
  grid-column: 1 / span 4;
  display: flex;
  flex-direction: column;
  gap: 10px; /* 20 - 10 */
}
.cp-form-col {
  grid-column: 5 / span 8;
}

.cp-info-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-info-head h2 {
  font-size: 24px; /* 28 - 4 */
  line-height: 30px;
  font-weight: 600;
  color: #191c1e;
}
.cp-info-head p {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #5d5e61;
}

.cp-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-card {
  background: #fff;
  border: 1.125px solid #c2c6d8;
  border-radius: 12px;
  padding: 18px 18px 19px; /* 28.125 / 29.25 - 10 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px; /* 9 - 10, floored */
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.cp-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(0, 184, 176, 0.12);
}
.cp-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #e6f8f7;
  display: grid;
  place-items: center;
  flex: none;
}
.cp-card h3 {
  font-size: 18px; /* 22 - 4 */
  line-height: 22.5px;
  font-weight: 600;
  color: #191c1e;
  padding-top: 4px; /* 9 - 10, floored */
}
.cp-card p {
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  color: #5d5e61;
}
.cp-card-link,
.cp-card-value {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 12px; /* 16 - 4 */
  line-height: 15px;
  letter-spacing: 0.04px;
  text-transform: capitalize;
  color: var(--teal);
}
.cp-card-link:hover {
  color: #009c95;
}
.cp-card-value {
  color: #191c1e;
}

/* ---------- enquiry form ---------- */
.cp-form-card {
  background: #fff;
  border: 1.125px solid #c2c6d8;
  border-radius: 20px;
  padding: 21px; /* 31.125 - 10 */
  display: flex;
  flex-direction: column;
  gap: 26px; /* 36 - 10 */
  filter: drop-shadow(0 1.125px 1.125px rgba(0, 0, 0, 0.05));
}
.cp-form-head {
  display: flex;
  flex-direction: column;
  gap: 4px; /* 9 - 10, floored */
  padding-bottom: 1.125px;
  border-bottom: 1.125px solid #c2c6d8;
}
.cp-form-head h2 {
  font-size: 24px; /* 28 - 4 */
  line-height: 30px;
  font-weight: 600;
  color: #191c1e;
}
.cp-form-head p {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #5d5e61;
}

.cp-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px; /* 27 - 10 */
}
.cp-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px; /* 27 - 10 */
  width: 100%;
}
.cp-field {
  display: flex;
  flex-direction: column;
  gap: 4px; /* 9 - 10, floored */
  width: 100%;
}
.cp-field label {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 18px; /* 22 - 4 */
  line-height: 22.5px;
  color: #191c1e;
}
.cp-field input,
.cp-field select,
.cp-field textarea {
  width: 100%;
  background: #f7f9fb;
  border: 1.125px solid #c2c6d8;
  border-radius: 6px;
  padding: 7px 9px; /* 16.875 / 19.125 - 10, floored */
  font-family: Lato, sans-serif;
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  color: #191c1e;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.cp-field input::placeholder,
.cp-field textarea::placeholder {
  color: #6b7280;
}
.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(0, 184, 176, 0.15);
}
.cp-field textarea {
  min-height: 110px; /* textarea block 197 tall in Figma, less the label + gap */
  resize: vertical;
}

.cp-select-wrap {
  position: relative;
  width: 100%;
}
.cp-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 26px;
}
.cp-select-chevron {
  position: absolute;
  right: 8px; /* 18 - 10 */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px; /* 9 - 10, floored */
  background: var(--teal);
  color: #f8f7ff;
  border: 0;
  border-radius: 100px;
  padding: 6px 26px; /* 13.5 / 36 - 10, floored */
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 16px; /* 22 - 4 */
  line-height: 22.5px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.cp-submit:hover {
  background: #009c95;
  transform: translateY(-1px);
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .cp-info {
    grid-column: 1 / span 5;
  }
  .cp-form-col {
    grid-column: 6 / span 7;
  }
}

@media (max-width: 900px) {
  .contact-page {
    padding-top: 30px;
    gap: 30px;
  }
  .cp-title {
    font-size: 28px;
    line-height: 36px;
  }
  .cp-grid {
    grid-template-columns: 1fr;
  }
  .cp-info,
  .cp-form-col {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .cp-title {
    font-size: 24px;
    line-height: 31px;
  }
  .cp-field-grid {
    grid-template-columns: 1fr;
  }
  .cp-form-card {
    padding: 16px;
    gap: 18px;
  }
}

/* ============================================================
   INDUSTRY PAGE (Figma "Industry" frame)
   Same scale rules: font -4px, padding/margin/gap -10px (floored)
   ============================================================ */
.industry-page {
  display: flex;
  flex-direction: column;
  gap: 40px; /* 50 - 10 */
  padding-top: 50px; /* 60 - 10 */
}

/* ---------- intro ---------- */
.ip-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* 12 - 10, floored */
  text-align: center;
}
.ip-intro-inner .ap-badge {
  align-self: center;
}
.ip-title {
  font-size: 36px; /* 40 - 4 */
  line-height: 45px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: var(--ink);
}
.ip-lead {
  max-width: 940px;
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  margin-top: 8px;
  color: rgba(30, 30, 30, 0.8);
}

/* ---------- alternating industry rows ---------- */
.ip-rows-inner {
  display: flex;
  flex-direction: column;
  gap: 40px; /* 50 - 10 */
}
.ip-row {
  display: grid;
  grid-template-columns: minmax(0, 519fr) minmax(0, 701fr);
  gap: 50px; /* 60 - 10 */
  align-items: center;
}
.ip-row-reverse {
  grid-template-columns: minmax(0, 701fr) minmax(0, 519fr);
}
.ip-row-reverse .ip-row-media {
  order: 2;
}

.ip-row-media {
  margin: 0;
  height: 460px;
  border: 1px solid #c2c6d8;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1218;
}
.ip-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ip-row-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px; /* 20 - 10 */
}
.ip-row-index {
  display: flex;
  align-items: center;
  gap: 6px;
} /* 16 - 10 */
.ip-num {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 18px; /* 22 - 4 */
  line-height: 22.5px;
  color: var(--teal);
}
.ip-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: #c2c6d8;
}

.ip-row-body h2 {
  font-size: 28px; /* 32 - 4 */
  line-height: 35px;
  font-weight: 600;
  letter-spacing: -0.08px;
  color: #191c1e;
  max-width: 520px;
}
.ip-row-text {
  font-size: 14px; /* 18 - 4 */
  line-height: 22.75px; /* Figma 29.25, scaled to the smaller size */
  color: #5d5e61;
}

.ip-caps {
  width: 100%;
  border-top: 1px solid #c2c6d8;
  padding-top: 11px; /* 21 - 10 */
  display: flex;
  flex-direction: column;
  gap: 6px; /* 16 - 10 */
}
.ip-caps h3 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  letter-spacing: 0.045px;
  text-transform: capitalize;
  color: var(--blue);
}
.ip-caps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px; /* row/column spacing, -10 from the Figma grid */
}
.ip-caps li {
  display: flex;
  align-items: center;
  gap: 4px; /* 8 - 10, floored */
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  color: var(--ink);
}
.ip-caps li::before {
  content: "•";
  color: var(--teal);
  font-size: 14px;
  line-height: 1;
}

/* ---------- marquee banner ---------- */
.ip-banner {
  background: var(--blue);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  height: 90px; /* 100 - 10 */
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ip-marquee {
  display: flex;
  width: 100%;
  gap: 38px; /* 48 - 10 */
}
.ip-marquee-track {
  display: flex;
  align-items: center;
  gap: 38px; /* 48 - 10 */
  flex: none;
  min-width: 100%;
  justify-content: space-around;
  animation: ip-marquee 24s linear infinite;
}
.ip-marquee-track li {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  letter-spacing: 0.045px;
  text-transform: capitalize;
  color: #fff;
  white-space: nowrap;
}
@keyframes ip-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 38px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .ip-marquee-track {
    animation: none;
  }
  .ip-marquee-track + .ip-marquee-track {
    display: none;
  }
}

/* ---------- closing CTA ---------- */
.ip-cta {
  padding: 40px 0;
}
.ip-cta-inner {
  max-width: 768px;
  margin: 0 auto;
  padding-inline: 54px; /* 64 - 10 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* 20 - 10 */
  text-align: center;
}
.ip-cta-icon {
  width: 50px;
  height: 50px;
  border: 0.833px solid #c2c6d8;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}
.ip-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
} /* 8 - 10, floored */
.ip-cta-text h2 {
  font-size: 36px; /* 40 - 4 */
  line-height: 45px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #191c1e;
}
.ip-cta-text p {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #5d5e61;
}
.ip-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px; /* 12 - 10, floored */
  background: var(--teal);
  color: #fff;
  border-radius: 1000px;
  padding: 6px 22px; /* 16/32 - 10, floored */
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  letter-spacing: 0.045px;
  text-transform: capitalize;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.ip-cta-btn:hover {
  background: #009c95;
  transform: translateY(-1px);
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .ip-row-media {
    height: 380px;
  }
}

@media (max-width: 900px) {
  .industry-page {
    padding-top: 30px;
    gap: 30px;
  }
  .ip-title {
    font-size: 28px;
    line-height: 36px;
  }
  .ip-row,
  .ip-row-reverse {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ip-row-reverse .ip-row-media {
    order: 0;
  }
  .ip-row-media {
    height: 260px;
  }
  .ip-cta-text h2 {
    font-size: 26px;
    line-height: 33px;
  }
}

@media (max-width: 560px) {
  .ip-title {
    font-size: 24px;
    line-height: 31px;
  }
  .ip-cta-inner {
    padding-inline: 18px;
  }
  .ip-row-body h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

/* ============================================================
   BILLING & PAYMENT SOLUTIONS PAGE (Figma "Solution → Billing & Payment Solutions")
   Same scale rules: font -4px, padding/margin/gap -10px (floored)
   ============================================================ */
.billing-page {
  display: flex;
  flex-direction: column;
  gap: 50px; /* 60 - 10 */
  padding-top: 50px; /* 60 - 10 */
}

/* ---------- hero ---------- */
.bp-hero {
  position: relative;
}
.bp-hero-wash {
  position: absolute;
  inset: -50px 0 0;
  background: linear-gradient(
    180deg,
    rgba(231, 239, 245, 0.5) 0%,
    rgba(231, 239, 245, 0) 100%
  );
  pointer-events: none;
}
.bp-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 627fr) minmax(0, 625fr);
  gap: 17px; /* 26.667 - 10 */
  align-items: center;
}
.bp-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px; /* 12 - 10, floored */
}
.bp-hero-copy h1 {
  font-size: 36px; /* 40 - 4 */
  line-height: 45px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #191c1e;
}
.bp-hero-copy p {
  max-width: 640px;
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #424656;
}
.bp-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px; /* 8 - 10, floored */
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  padding: 6px 17px; /* 13.333 / 26.667 - 10, floored */
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  letter-spacing: 0.045px;
  text-transform: capitalize;
  filter: drop-shadow(0 1.111px 1.111px rgba(0, 0, 0, 0.05));
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.bp-hero-btn:hover {
  background: #009c95;
  transform: translateY(-1px);
}

.bp-hero-media {
  margin: 0;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f9fb;
}
.bp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- key capabilities ---------- */
.bp-caps-inner {
  display: flex;
  flex-direction: column;
  gap: 10px; /* 20 - 10 */
}
.bp-caps-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
} /* 8 - 10, floored */
.bp-caps-head h2 {
  font-size: 28px; /* 32 - 4 */
  line-height: 35px;
  font-weight: 600;
  letter-spacing: -0.08px;
  color: var(--ink);
}
.bp-caps-head p {
  font-size: 16px; /* 20 - 4 */
  line-height: 21.8px;
  color: #424656;
}
.bp-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; /* 24 - 10 */
}
.bp-cap-card {
  background: #fff;
  border: 1px solid #c2c6d8;
  border-radius: 12px;
  padding: 18px; /* 25 - 10 */
  min-height: 220px; /* 236 - 10 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.bp-cap-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(0, 184, 176, 0.12);
}
.bp-cap-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px; /* 16 - 10 */
  border-radius: 6px;
  background: #e6f8f7;
  display: grid;
  place-items: center;
  flex: none;
}
.bp-cap-card h3 {
  font-size: 18px; /* 22 - 4 */
  line-height: 22.5px;
  font-weight: 600;
  color: #191c1e;
  margin-bottom: 6px;
  margin-top: 6px; /* 8 - 10, floored */
}
.bp-cap-card p {
  font-size: 14px; /* 18 - 4 */
  line-height: 17.5px;
  max-width: 260px;
  color: rgba(30, 30, 30, 0.7);
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .bp-cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bp-hero-media {
    height: 340px;
  }
}

@media (max-width: 900px) {
  .billing-page {
    padding-top: 30px;
    gap: 30px;
  }
  .bp-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bp-hero-copy h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .bp-hero-media {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .bp-cap-grid {
    grid-template-columns: 1fr;
  }
  .bp-cap-card {
    min-height: 0;
  }
  .bp-hero-copy h1 {
    font-size: 24px;
    line-height: 31px;
  }
  .bp-caps-head h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

/* ============================================================
   UTILITY MANAGEMENT PAGE — extra sections
   (Figma "Solution → Utility Management"; hero/band/capabilities/CTA
   reuse the .bp-* and .ap-* rules above)
   Same scale rules: font -4px, padding/margin/gap -10px (floored)
   ============================================================ */
.up-how {
  background: #f7fafb;
  padding: 50px 0;
}
.up-apps {
  padding: 50px 0;
}
.up-benefits {
  background: #f6fafc;
  padding: 50px 0;
}

.up-section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.up-section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.up-section-head h2 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 600;
  color: #191c1f;
}
.up-section-head p {
  font-size: 16px;
  line-height: 20px;
  color: #424752;
}

/* ---------- how it works ---------- */
.up-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.up-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.up-step:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(12, 90, 153, 0.06);
}
.up-step-num {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--teal);
}
.up-step h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #191c1f;
}
.up-step p {
  font-size: 12px;
  line-height: 16.2px;
  color: #5c6470;
}

/* ---------- application / benefit tiles ---------- */
.up-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.up-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.up-tile {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.up-tile:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(0, 184, 176, 0.08);
  transform: translateY(-2px);
}
.up-tile img {
  margin-bottom: 4px;
}
.up-tile h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #191c1f;
}
.up-tile p {
  font-size: 12px;
  line-height: 16.2px;
  color: #5c6470;
}
.up-app-grid .up-tile {
  min-height: 210px;
}
.up-benefit-grid .up-tile {
  min-height: 170px;
}

/* ---------- powered by strip ---------- */
.up-powered {
  background: #ebf8f9;
  padding: 30px 0;
  width: 100%;
}
.up-powered-inner {
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.up-powered h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #191c1f;
  text-align: center;
}
.up-powered p {
  max-width: 800px;
  font-size: 13px;
  line-height: 18px;
  color: #474d57;
  text-align: center;
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .up-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .up-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .up-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .up-step {
    min-height: 0;
  }
  .up-app-grid .up-tile,
  .up-benefit-grid .up-tile {
    min-height: 0;
  }
  .up-powered-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .up-section-head h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 560px) {
  .up-step-grid,
  .up-app-grid,
  .up-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SECTION 1
   POWERED BY SV TECH
========================================= */

.powered-section {
  width: 100%;
  background: #e7f8f8;
  padding: 3%;
}

.powered-content {
  text-align: center;
}

.powered-content h2 {
  font-size: 24px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.powered-content p {
  font-size: 15px;
  line-height: 30px;
  color: #4c555d;
  font-weight: 400;
}

.powered-content p span {
  margin: 0 5px;
  color: #59636b;
}

/* =========================================
   COMMON SECTION
========================================= */

.section-spacing {
  padding-top: 35px;
}

.section-heading {
  margin-bottom: 17px;
}

.section-heading h2 {
  font-size: 32px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-heading p {
  font-size: 18px;
  line-height: 17px;
  margin-top: 18px;
  color: #505963;
}

/* =========================================
   SECTION 2
   HOW IT WORKS
========================================= */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 125px;
  padding: 20px;
  border: 1px solid #d5dce4;
  border-radius: 9px;
  background: #ffffff;
  margin-top: 20px;
}

.step-number {
  display: block;
  font-size: 18px;
  line-height: 14px;
  font-weight: 700;
  color: #00b5b5;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 22px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 14px;
}

.step-card p {
  font-size: 16px;
  line-height: 20px;
  color: #505963;
}

/* =========================================
   SECTION 3
   DESIGNED FOR DIVERSE OPERATIONS
========================================= */

.diverse-section {
  padding-bottom: 35px;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.operation-card {
  min-height: 145px;
  padding: 22px;
  border: 1px solid #d5dce4;
  border-radius: 12px;
  background: #ffffff;
  margin-top: 16px;
}

.operation-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4f7f7;
  border-radius: 5px;
  margin-bottom: 10px;
}

.operation-icon span {
  width: 8px;
  height: 8px;
  display: block;
  background: #00b5b5;
  border-radius: 50%;
}

.operation-card h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.operation-card p {
  font-size: 16px;
  line-height: 22px;
  color: #505963;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .container {
    max-width: 90%;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .powered-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .powered-content p {
    font-size: 9px;
  }

  .section-spacing {
    padding-top: 28px;
  }

  .section-heading h2 {
    font-size: 18px;
  }

  .section-heading p {
    font-size: 11px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step-card {
    min-height: auto;
  }

  .operations-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .operation-card {
    min-height: auto;
  }
}

/* =========================================
   SECTION 4
   BENEFITS
========================================= */

.benefits-section {
  padding-top: 35px;
  padding-bottom: 35px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-card {
  min-height: 145px;
  padding: 22px;
  border: 1px solid #d5dce4;
  border-radius: 12px;
  background: #ffffff;
  margin-top: 16px;
}

.benefit-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4f7f7;
  border-radius: 5px;
  margin-bottom: 10px;
}

.benefit-icon span {
  width: 8px;
  height: 8px;
  display: block;
  background: #00b5b5;
  border-radius: 50%;
}

.benefit-card h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 16px;
  line-height: 22px;
  color: #505963;
}

/* =========================================
   BENEFITS RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-card {
    min-height: auto;
  }
}

/* =========================================================
   TECHNOLOGY PLATFORM
========================================================= */

.tech-platform {
  padding: 48px 0 30px;
  background: #e8f8f8;
}

.tech-platform-header {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.tech-platform-header h2 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: #202326;
}

.tech-platform-header p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #41495d;
}

/* Technology flow */
.technology-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.technology-step {
  width: 130px;
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #c5d5e5;
  border-radius: 8px;
  background: #f8ffff;
  box-sizing: border-box;
}

.technology-step1 {
  width: 130px;
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #c5d5e5;
  border-radius: 8px;
  box-sizing: border-box;
}

.technology-step span {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #07599a;
}

.technology-step1 span {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #07599a;
}

.technology-steps {
  width: 130px;
  min-height: 44px;
  padding: 1%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #c5d5e5;
  border-radius: 8px;
  box-sizing: border-box;
}

.technology-steps1 {
  width: 130px;
  min-height: 44px;
  padding: 1%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #c5d5e5;
  border-radius: 8px;
  background: #f8ffff;
  box-sizing: border-box;
}

.technology-steps span {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #07599a;
}

.technology-steps1 span {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #07599a;
}

.technology-arrow {
  flex: 0 0 auto;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  line-height: 1;
  color: #00aaa9;
}

/* =========================================================
   TECHNOLOGY CAPABILITIES
========================================================= */

.tech-capabilities {
  padding: 46px 0 55px;
  background: #ffffff;
}

.tech-capabilities-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.tech-capabilities-header h2 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: #202326;
}

.tech-capabilities-header p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #41495d;
}

/* =========================================================
   CAPABILITY ROW
========================================================= */

.technology-capability {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 85px;
  margin-top: 28px;
}

.technology-capability.reverse {
  grid-template-columns: 380px minmax(0, 1fr);
}

.technology-capability.reverse .technology-capability-content {
  grid-column: 2;
  grid-row: 1;
}

.technology-capability.reverse .technology-capability-image {
  grid-column: 1;
  grid-row: 1;
}

/* =========================================================
   TEXT
========================================================= */

.technology-capability-content {
  max-width: 520px;
}

.technology-label {
  display: block;
  margin-bottom: 9px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #00aaa9;
}

.technology-capability-content h3 {
  margin: 0 0 9px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  color: #202326;
}

.technology-capability-content p {
  margin: 0 0 10px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #41495d;
}

/* =========================================================
   BULLET LIST
========================================================= */

.technology-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.technology-feature-list li {
  position: relative;
  padding-left: 19px;
  margin-bottom: 6px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #41495d;
}

.technology-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00aaa9;
}

.tech-badge {
  align-self: flex-start;
  background: #e7eff5;
  color: var(--blue) !important;
  border-radius: 2.25px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 10px; /* 14 - 4 */
  line-height: 12.5px;
  letter-spacing: 0.035px;
  padding: 4px 6px; /* 4.5/13.5 - 10, floored */
}

/* =========================================================
   IMAGE
========================================================= */

.technology-capability-image {
  width: 100%;
  height: 312px;
  overflow: hidden;
  border-radius: 18px;
}

.technology-capability-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .technology-capability,
  .technology-capability.reverse {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 35px;
  }

  .technology-capability.reverse .technology-capability-content {
    grid-column: 2;
  }

  .technology-capability.reverse .technology-capability-image {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .tech-capabilities {
    padding: 40px 20px 45px;
  }

  .tech-capabilities-header h2 {
    font-size: 23px;
  }

  .tech-capabilities-header p {
    font-size: 14px;
  }

  .technology-capability,
  .technology-capability.reverse {
    display: flex;
    flex-direction: column;
    gap: 22px;

    margin-top: 40px;
  }

  .technology-capability.reverse .technology-capability-content,
  .technology-capability.reverse .technology-capability-image {
    grid-column: auto;
    grid-row: auto;
  }

  /*
    On mobile the image always comes after the text.
    This keeps the section easy to scan.
  */
  .technology-capability.reverse .technology-capability-image {
    order: 2;
  }

  .technology-capability.reverse .technology-capability-content {
    order: 1;
  }

  .technology-capability-content {
    max-width: none;
  }

  .technology-capability-image {
    height: 280px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .technology-capability {
    margin-top: 35px;
  }

  .technology-capability-image {
    height: 235px;
    border-radius: 14px;
  }

  .technology-capability-content h3 {
    font-size: 20px;
  }

  .technology-capability-content p {
    font-size: 14px;
  }
}

/* =========================================================
   INDUSTRY APPLICATIONS
========================================================= */
.tech-industries {
  padding: 65px 0 75px;
  background: #ffffff;
}

.tech-industries-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.tech-industries-header h2 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: #202326;
}

.tech-industries-header p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #4d5566;
}

/* Grid */
.tech-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card */
.industry-cards {
  position: relative;
  padding: 18px;
  background: #fff;
  border: 1px solid #dfe9ee;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Number */
.industry-numbers {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #ecfbfb;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00b7b5;
}

/* Heading */
.industrys-cards h3 {
  font-family: "Poppins", sans-serif;
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #202326;
}

/* Description */
.industrys-cards p {
  font-family: "Lato", sans-serif;
  margin-top: 14px !important;
  font-size: 15px;
  line-height: 1.55;
  color: #4d5566;
}
