:root {
  --ink: #0b111c;
  --navy: #101827;
  --navy-2: #152033;
  --teal: #18b6a6;
  --teal-dark: #0c7f78;
  --gold: #ffa20a;
  --paper: #f6f8fb;
  --line: #d9e2ec;
  --muted: #647084;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(13, 24, 40, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 17, 28, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.not-sticky {
  position: relative;
}

.top-bar {
  color: var(--ink);
  background: var(--gold);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 0;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 178px;
  height: 58px;
  object-fit: cover;
  object-position: center top;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--white);
}

.nav-links a.active::after,
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after,
.nav-links .current-menu-ancestor > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
}

.nav-links a.button::after {
  display: none;
}

.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 260px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(4, 8, 15, 0.28);
}

.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  display: grid;
  gap: 4px;
}

.nav-links .sub-menu li,
.nav-links .sub-menu a {
  display: block;
  width: 100%;
}

.nav-links .sub-menu a::after {
  display: none;
}

.menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 10px 26px rgba(255, 162, 10, 0.24);
}

.button.primary:hover {
  background: #ffb53a;
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary:hover {
  border-color: rgba(255, 162, 10, 0.72);
  color: var(--gold);
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 162, 10, 0.18), transparent 28%),
    linear-gradient(110deg, rgba(11, 17, 28, 0.98) 0%, rgba(13, 27, 45, 0.94) 55%, rgba(11, 17, 28, 0.84) 100%),
    var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--navy), rgba(16, 24, 39, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 50px;
  align-items: center;
  padding: 86px 0 132px;
  perspective: 1100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-object {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 162, 10, 0.24), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(4, 8, 15, 0.34);
  transform: rotateX(2deg) rotateY(-4deg);
  transform-style: preserve-3d;
}

.object-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  opacity: 0.5;
}

.object-card,
.object-shield {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(11, 17, 28, 0.82);
  box-shadow: 0 22px 52px rgba(4, 8, 15, 0.32);
  backdrop-filter: blur(16px);
}

.object-dashboard {
  top: 58px;
  right: 36px;
  width: 260px;
  height: 160px;
  padding: 22px;
  animation: floatSlow 6s ease-in-out infinite;
}

.dash-pill {
  display: block;
  width: 72%;
  height: 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.dash-pill.short {
  width: 46%;
  background: var(--gold);
}

.dash-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 72px;
  margin-top: 18px;
}

.dash-bars i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(255, 255, 255, 0.22));
}

.dash-bars i:nth-child(1) { height: 42%; }
.dash-bars i:nth-child(2) { height: 68%; }
.dash-bars i:nth-child(3) { height: 54%; }
.dash-bars i:nth-child(4) { height: 86%; }

.object-document {
  left: 40px;
  bottom: 60px;
  width: 255px;
  height: 320px;
  padding: 32px 26px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(232, 237, 244, 0.92));
  transform: rotateZ(-5deg) translateZ(38px);
  animation: floatDoc 7s ease-in-out infinite;
}

.object-document span {
  display: block;
  height: 10px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.18);
}

.object-document span:nth-child(1) {
  width: 80%;
  background: rgba(16, 24, 39, 0.34);
}

.object-document span:nth-child(2) { width: 58%; }
.object-document span:nth-child(3) { width: 70%; }

.document-seal {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.object-shield {
  left: 230px;
  top: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 128px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold), #ffc15d);
  clip-path: polygon(50% 0, 92% 18%, 84% 78%, 50% 100%, 16% 78%, 8% 18%);
  font-size: 34px;
  font-weight: 900;
  animation: pulseShield 4s ease-in-out infinite;
}

.object-risk {
  right: 82px;
  bottom: 68px;
  width: 220px;
  padding: 18px;
  transform: rotateZ(4deg);
}

.object-risk strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 12px;
}

.object-risk span {
  display: block;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.object-suite strong {
  font-size: 20px;
}

.suite-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.object-risk .suite-tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin: 0;
  border: 1px solid rgba(255, 162, 10, 0.26);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 900;
}

.flow-dot {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(255, 162, 10, 0.1);
  animation: driftDot 5s ease-in-out infinite;
}

.dot-a { left: 52%; top: 24%; }
.dot-b { left: 45%; bottom: 26%; animation-delay: 1.4s; }
.dot-c { right: 16%; top: 50%; animation-delay: 2.2s; }

.ops-ecosystem {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 162, 10, 0.2), transparent 24%),
    radial-gradient(circle at 74% 74%, rgba(24, 182, 166, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
}

.ecosystem-core {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(255, 162, 10, 0.4);
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 162, 10, 0.95), rgba(255, 178, 48, 0.8)),
    var(--gold);
  box-shadow: 0 26px 62px rgba(255, 162, 10, 0.22);
  transform: translate(-50%, -50%) translateZ(60px);
}

.ecosystem-core strong {
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}

.ecosystem-core span {
  margin-top: -26px;
  color: rgba(11, 17, 28, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(64deg) rotateZ(-12deg);
}

.ring-a {
  width: 390px;
  height: 390px;
}

.ring-b {
  width: 292px;
  height: 292px;
  border-color: rgba(255, 162, 10, 0.22);
  transform: translate(-50%, -50%) rotateX(64deg) rotateZ(18deg);
}

.orbit-node {
  position: absolute;
  z-index: 5;
  min-width: 132px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(11, 17, 28, 0.86);
  box-shadow: 0 18px 46px rgba(4, 8, 15, 0.28);
  backdrop-filter: blur(16px);
  animation: floatSlow 7s ease-in-out infinite;
}

.orbit-node strong {
  display: block;
  color: var(--gold);
  font-size: 15px;
  line-height: 1.15;
}

.orbit-node span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.node-compliance { left: 38px; top: 84px; }
.node-payments { right: 36px; top: 72px; animation-delay: 0.5s; }
.node-support { left: 56px; bottom: 76px; animation-delay: 1.1s; }
.node-tech { right: 38px; bottom: 84px; animation-delay: 1.6s; }
.node-risk { left: 50%; bottom: 36px; transform: translateX(-50%); animation-delay: 2s; }

.ecosystem-panel {
  position: absolute;
  right: 48px;
  top: 190px;
  z-index: 3;
  width: 180px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(4, 8, 15, 0.22);
}

.ecosystem-panel span {
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.ecosystem-panel span:nth-child(2) {
  width: 72%;
  background: var(--gold);
}

.ecosystem-panel span:nth-child(3) {
  width: 54%;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 54px;
  margin-top: 14px;
}

.mini-bars i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(24, 182, 166, 0.4));
}

.mini-bars i:nth-child(1) { height: 45%; }
.mini-bars i:nth-child(2) { height: 76%; }
.mini-bars i:nth-child(3) { height: 58%; }
.mini-bars i:nth-child(4) { height: 88%; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotateZ(2deg); }
  50% { transform: translateY(-12px) rotateZ(1deg); }
}

@keyframes floatDoc {
  0%, 100% { transform: rotateZ(-5deg) translateY(0); }
  50% { transform: rotateZ(-4deg) translateY(-10px); }
}

@keyframes pulseShield {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

@keyframes driftDot {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(10px, -12px); opacity: 1; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #a7fff5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-muted .eyebrow,
section:not(.section-dark):not(.hero):not(.page-hero):not(.cta) .eyebrow {
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--teal);
}

.section-muted .eyebrow::before,
section:not(.section-dark):not(.hero):not(.page-hero):not(.cta) .eyebrow::before {
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.trust-badge {
  padding: 18px;
  border: 1px solid rgba(255, 162, 10, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-badge strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.2;
}

.trust-badge span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(16, 24, 39, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(16, 24, 39, 0.08), rgba(255, 255, 255, 0.6));
  box-shadow: 0 18px 45px rgba(13, 24, 40, 0.14);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 17, 28, 0.04), rgba(11, 17, 28, 0.22)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 36%, rgba(255, 162, 10, 0.1));
  pointer-events: none;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.82) contrast(0.96) brightness(0.96);
}

.tilt-card {
  transform: rotateX(1.5deg) rotateY(-2.5deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.tilt-card:hover {
  transform: rotateX(0deg) rotateY(-1deg) translateY(-2px);
  box-shadow: 0 22px 55px rgba(13, 24, 40, 0.18);
}

.hero-visual {
  height: 360px;
  min-height: 360px;
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.raised-panel {
  position: relative;
  z-index: 3;
  margin: -54px 24px 0;
}

.section-visual-band {
  position: relative;
  height: 240px;
  margin: 0 0 32px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 24, 39, 0.08);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(13, 24, 40, 0.1);
}

.section-visual-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.94) brightness(0.95);
}

.section-visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.18), rgba(11, 17, 28, 0.14), rgba(246, 248, 251, 0.18)),
    linear-gradient(180deg, rgba(11, 17, 28, 0.06), rgba(11, 17, 28, 0.18));
}

section {
  padding: 88px 0;
}

.section-muted {
  background: var(--paper);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  margin-bottom: 14px;
  padding-bottom: 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--gold);
}

.section-heading.center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-heading p,
.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 48px;
  align-items: center;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-panel {
  padding: 30px;
  overflow: hidden;
}

.home-about .visual-stack {
  align-self: center;
}

.home-about .raised-panel {
  width: min(100%, calc(100% - 48px));
  margin: -54px auto 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.metric {
  display: flex;
  min-width: 0;
  min-height: 96px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.1;
  white-space: nowrap;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: normal;
}

.value-section {
  padding-top: 78px;
}

.value-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.value-lead {
  margin-bottom: 0;
}

.value-pipeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.value-pill {
  position: relative;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 39, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 251, 0.92));
  box-shadow: 0 14px 34px rgba(13, 24, 40, 0.08);
}

.value-pill::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 162, 10, 0.12);
}

.value-pill strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.value-pill h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.value-pill p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.services {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

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

.card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 162, 10, 0.48);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--gold);
  background: #101827;
}

.icon::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-shadow: 7px 7px 0 -3px currentColor;
}

.icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.grid.services > .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid.services > .card > .button {
  align-self: flex-start;
  margin-top: auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 342px;
  color: inherit;
}

.service-card h3 {
  min-height: 46px;
}

.service-card p {
  margin-bottom: 0;
}

.service-card .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  padding-top: 18px;
}

.card p,
.service-detail p {
  color: var(--muted);
  font-size: 15px;
}

.vbo {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.vbo-lead {
  position: sticky;
  top: 110px;
}

.process {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.coverage-list span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 162, 10, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 700;
}

.dark-visual {
  margin-top: 26px;
  min-height: 300px;
  border-color: rgba(255, 162, 10, 0.2);
}

.cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 182, 166, 0.18), rgba(255, 162, 10, 0.16)),
    var(--navy);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 12px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
}

.cta h2,
.page-hero h1 {
  text-decoration: underline;
  text-decoration-color: rgba(255, 162, 10, 0.78);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.cta p {
  max-width: 770px;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  color: var(--white);
  padding: 86px 0 78px;
  background:
    linear-gradient(120deg, rgba(11, 17, 28, 0.95), rgba(15, 38, 56, 0.88)),
    var(--navy);
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.service-detail {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-detail + .service-detail {
  margin-top: 18px;
}

.service-detail header {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.service-detail .index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.detail-box {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
}

.expertise-grid .detail-box {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(13, 24, 40, 0.08);
}

.detail-box h4 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
}

.detail-box ul,
.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.plain-list li + li,
.detail-box li + li {
  margin-top: 6px;
}

.about-story {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: start;
}

.story-card {
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.story-card img {
  width: min(280px, 100%);
  height: auto;
  object-fit: contain;
  object-position: top center;
  margin-bottom: 24px;
}

.about-inline-visual {
  height: 300px;
  margin-top: 28px;
}

.region-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.region-row span {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

.contact-card {
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.contact-visual {
  overflow: hidden;
  height: 220px;
  margin: 20px 0 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 162, 10, 0.18);
  box-shadow: 0 22px 55px rgba(8, 13, 21, 0.28);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card a {
  color: var(--gold);
  font-weight: 800;
}

form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.checkbox-line {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.checkbox-line input {
  width: auto;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 162, 10, 0.2);
  border-color: var(--gold);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #080d15;
  padding: 34px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(112px, 0.75fr));
  gap: 22px;
  align-items: start;
}

.footer-brand {
  max-width: 330px;
}

.site-footer img {
  width: 148px;
  height: 48px;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 12px;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 7px;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
}

.contact-details a,
.contact-details span {
  color: inherit;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.contact-label {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 500;
}

.contact-value {
  color: var(--gold);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer .contact-value {
  color: var(--gold);
  white-space: nowrap;
}

.site-footer .contact-row {
  flex-wrap: nowrap;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.content-area {
  max-width: 880px;
}

.content-area h2,
.content-area h3 {
  color: var(--navy);
  line-height: 1.15;
}

.content-area h2 {
  margin-top: 36px;
  font-size: 30px;
}

.content-area h3 {
  margin-top: 24px;
  font-size: 22px;
}

.content-area p,
.content-area li {
  color: var(--muted);
}

.content-area a,
.text-link {
  color: var(--gold);
  font-weight: 800;
}

.content-area .grid.services,
.content-area .grid.tag-grid {
  max-width: none;
  margin: 24px 0;
}

.content-area .grid.services a,
.content-area .grid.tag-grid a {
  color: inherit;
  font-weight: inherit;
}

.featured-media {
  width: 100%;
  max-height: 460px;
  margin-bottom: 28px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.tag-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tag-card,
.link-grid a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.tag-card:hover,
.link-grid a:hover {
  border-color: rgba(255, 162, 10, 0.55);
  box-shadow: var(--shadow);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  list-style: none;
}

.blog-layout,
.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.blog-sidebar,
.article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.filter-box,
.toc,
.share-links,
.author-box,
.form-note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.featured-article {
  margin-bottom: 22px;
}

.post-card img {
  width: 100%;
  height: 210px;
  margin-bottom: 16px;
  object-fit: cover;
  border-radius: var(--radius);
}

.post-meta {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.pagination {
  margin-top: 30px;
}

.pagination .nav-links {
  position: static;
  display: flex;
  flex-direction: row;
  background: transparent;
  border: 0;
}

.page-numbers,
.post-nav a {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.page-numbers.current {
  background: var(--gold);
}

.share-links a,
.post-tax a {
  display: inline-flex;
  margin: 0 8px 8px 0;
  color: var(--gold);
  font-weight: 800;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 28px 0;
}

.cta.compact {
  padding: 34px;
  border-radius: var(--radius);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-row span {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--gold);
}

.wpcf7 form,
.wpforms-form,
.fluentform {
  display: grid;
  gap: 16px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: var(--navy);
  }

  .nav-links li {
    display: block;
  }

  .nav-links .sub-menu {
    position: static;
    display: grid;
    width: auto;
    padding: 8px 0 0 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 650px;
    background:
      radial-gradient(circle at 70% 20%, rgba(255, 162, 10, 0.16), transparent 32%),
      linear-gradient(110deg, rgba(11, 17, 28, 0.96), rgba(13, 27, 45, 0.9)),
      var(--navy);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 58px 0 110px;
  }

  .hero-visual {
    height: 360px;
    min-height: 360px;
  }

  .hero-object {
    min-height: 430px;
    transform: none;
  }

  .object-dashboard {
    right: 24px;
    width: 230px;
  }

  .object-document {
    left: 28px;
    width: 220px;
    height: 285px;
  }

  .object-shield {
    left: 205px;
  }

  .trust-row,
  .split,
  .value-board,
  .vbo,
  .about-story,
  .contact-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

  .grid.why,
  .value-pipeline,
  .mini-grid,
  .post-grid,
  .tag-grid,
  .link-grid,
  .blog-layout,
  .article-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .article-aside {
    position: static;
  }

  .vbo-lead {
    position: static;
  }

  .tilt-card,
  .tilt-card:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 150px;
    height: 50px;
  }

  h1 {
    font-size: 42px;
  }

  section {
    padding: 64px 0;
  }

  .grid.services,
  .metric-grid,
  .coverage-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    padding: 22px;
  }

  .service-detail header {
    grid-template-columns: 1fr;
  }

  .section-visual-band,
  .about-inline-visual {
    height: 240px;
  }

  .hero-visual {
    height: 300px;
    min-height: 300px;
  }

  .hero-object {
    min-height: 390px;
  }

  .object-dashboard {
    top: 26px;
    right: 18px;
    width: 190px;
    height: 130px;
    padding: 16px;
  }

  .object-document {
    left: 18px;
    bottom: 42px;
    width: 180px;
    height: 245px;
    padding: 24px 18px;
  }

  .object-shield {
    left: 46%;
    top: 146px;
    width: 86px;
    height: 98px;
    font-size: 27px;
  }

  .object-risk {
    right: 16px;
    bottom: 42px;
    width: 165px;
  }

  .dash-bars {
    height: 52px;
  }

  .section-visual-band {
    height: auto;
    padding-bottom: 0;
    background: var(--paper);
  }

  .section-visual-band img {
    height: 220px;
  }

  .raised-panel {
    margin: -34px 12px 0;
  }
}

/* Responsive hardening for all public breakpoints. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.hero-content,
.section-heading,
.card,
.panel,
.visual-panel,
.service-detail,
.value-pill,
.trust-badge,
.step,
.footer-grid > div {
  min-width: 0;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 36px, 1080px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 34px;
  }

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

}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(4, 8, 15, 0.3);
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: var(--radius);
  }

  .nav-links a.active::after,
  .nav-links a:hover::after {
    display: none;
  }

  .nav-links a.button {
    margin-top: 4px;
    justify-content: center;
    color: var(--ink);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero p {
    font-size: 18px;
  }

  .ops-ecosystem {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .hero-grid {
    gap: 28px;
    padding: 52px 0 92px;
  }

  h1 {
    font-size: clamp(38px, 10vw, 58px);
    line-height: 1.02;
  }

  .section-heading h2,
  .cta h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .button {
    min-height: 48px;
    padding: 13px 18px;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px;
  }

  .value-board {
    gap: 24px;
  }

  .value-pill {
    min-height: 0;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-content {
    text-align: left;
  }

  .hero p,
  .page-hero p,
  .section-heading p {
    font-size: 16px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.45;
  }

  .trust-row {
    gap: 10px;
  }

  .trust-badge {
    padding: 14px;
  }

  .grid.services,
  .grid.why,
  .metric-grid,
  .coverage-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .about-panel,
  .contact-card {
    padding: 20px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3 {
    min-height: 0;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-number {
    width: 48px;
    height: 48px;
  }

  .ops-ecosystem {
    min-height: 430px;
  }

  .ecosystem-core {
    width: 132px;
    height: 132px;
  }

  .ecosystem-core strong {
    font-size: 22px;
  }

  .ecosystem-core span {
    margin-top: -20px;
    font-size: 10px;
  }

  .ring-a {
    width: 300px;
    height: 300px;
  }

  .ring-b {
    width: 220px;
    height: 220px;
  }

  .orbit-node {
    min-width: 112px;
    padding: 11px 12px;
  }

  .orbit-node strong {
    font-size: 13px;
  }

  .orbit-node span {
    font-size: 11px;
  }

  .node-compliance { left: 12px; top: 48px; }
  .node-payments { right: 12px; top: 54px; }
  .node-support { left: 14px; bottom: 74px; }
  .node-tech { right: 14px; bottom: 78px; }
  .node-risk { bottom: 20px; }

  .ecosystem-panel {
    left: 50%;
    right: auto;
    top: 248px;
    width: min(178px, calc(100% - 32px));
    transform: translateX(-50%);
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    min-height: 66px;
  }

  .brand img {
    width: 136px;
    height: 44px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 42px);
  }

  .hero-grid {
    padding: 42px 0 82px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .ops-ecosystem {
    min-height: 410px;
  }

  .orbit-node {
    min-width: 104px;
    max-width: 128px;
  }

  .node-compliance { left: 8px; top: 42px; }
  .node-payments { right: 8px; top: 48px; }
  .node-support { left: 8px; bottom: 76px; }
  .node-tech { right: 8px; bottom: 80px; }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 20px, 1160px);
  }

  .brand img {
    width: 126px;
    height: 42px;
  }

  .hero p,
  .section-heading p,
  .card p {
    font-size: 15px;
  }

  .ops-ecosystem {
    min-height: 390px;
  }

  .ecosystem-core {
    width: 116px;
    height: 116px;
  }

  .ring-a {
    width: 238px;
    height: 238px;
  }

  .ring-b {
    width: 178px;
    height: 178px;
  }

  .orbit-node {
    min-width: 96px;
    padding: 10px;
  }

  .orbit-node strong {
    font-size: 12px;
  }

  .orbit-node span {
    font-size: 10px;
  }
}

@media (max-width: 980px) {
  .home-about .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about .raised-panel {
    width: min(100%, calc(100% - 32px));
    margin-top: -40px;
  }
}

@media (max-width: 640px) {
  .home-about .metric-grid {
    grid-template-columns: 1fr;
  }

  .home-about .raised-panel {
    width: min(100%, calc(100% - 24px));
    margin-top: -28px;
  }
}

/* FinCore design polish: source-level homepage/card refinements. */
.hero .eyebrow {
  display: none;
}

h1 {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  font-weight: 680;
}

.section-heading h2 {
  font-size: clamp(27px, 2.45vw, 38px);
  line-height: 1.18;
  font-weight: 680;
}

.cta h2,
.page-hero h1 {
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.12;
  font-weight: 680;
}

.section-heading p,
.hero p {
  font-size: clamp(16px, 1.1vw, 18px);
}

.card h3,
.service-card h3,
.step h3,
.value-pill h3 {
  font-size: 19px;
  font-weight: 720;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.98) 0%, rgba(238, 243, 248, 0.98) 100%);
}

.value-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 162, 10, 0.13), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(24, 182, 166, 0.12), transparent 34%),
    linear-gradient(180deg, #101827 0%, #141f31 100%);
}

.value-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.value-section > .container {
  position: relative;
  z-index: 1;
}

.value-section .section-heading h2,
.value-section .section-heading p {
  color: var(--white);
}

.value-section .section-heading .eyebrow {
  color: var(--gold);
}

.value-pipeline {
  gap: 16px;
}

.value-pill {
  min-height: 166px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.9));
  box-shadow: 0 20px 44px rgba(5, 10, 18, 0.18);
}

.value-pill::after {
  right: -34px;
  top: -34px;
  width: 108px;
  height: 108px;
  background: rgba(255, 162, 10, 0.14);
}

.step-number {
  width: 58px;
  height: 58px;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.ops-ecosystem {
  display: grid;
  place-items: center;
}

.ecosystem-core {
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 184px;
  height: 184px;
  padding: 0;
  text-align: center;
  transform: translate(-50%, -50%) translateZ(60px);
}

.ecosystem-core strong {
  display: block;
  font-size: 31px;
  font-weight: 760;
  line-height: 1;
}

.ecosystem-core span {
  display: block;
  margin: 0;
  max-width: 130px;
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.tag-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.tag-card,
.link-grid a {
  position: relative;
  display: flex;
  min-height: 148px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 162, 10, 0.16), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f7fafd 100%);
  box-shadow: 0 16px 38px rgba(13, 24, 40, 0.08);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.25;
}

.tag-card::before,
.link-grid a::before {
  content: "";
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--gold), rgba(24, 182, 166, 0.72)),
    var(--gold);
  box-shadow: 0 12px 24px rgba(255, 162, 10, 0.22);
}

.tag-card::after,
.link-grid a::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(24, 182, 166, 0.35), transparent);
  opacity: 0.7;
}

.tag-card:hover,
.link-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 162, 10, 0.72);
  box-shadow: 0 22px 48px rgba(13, 24, 40, 0.12);
}

.grid.services > .card,
.grid.why > .card,
.post-grid > .card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 162, 10, 0.08), transparent 34%),
    var(--white);
  box-shadow: 0 14px 34px rgba(13, 24, 40, 0.07);
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.industry-card {
  min-height: 300px;
}

.industry-card h3 {
  min-height: 46px;
}

.industry-card p {
  margin-bottom: 0;
}

.industry-card .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  padding-top: 18px;
}

.case-grid {
  align-items: stretch;
}

.case-card,
.post-grid > .card {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  height: 100%;
}

.case-card p,
.post-grid > .card p {
  margin-bottom: 0;
}

.case-card .text-link,
.post-grid > .card .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  padding-top: 18px;
}

.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 162, 10, 0.28);
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(32px, 6vw, 48px);
  }

  .section-heading h2 {
    font-size: clamp(26px, 4.2vw, 34px);
  }

  .tag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 32px;
  }

  .section-heading h2,
  .cta h2,
  .page-hero h1 {
    font-size: 27px;
  }

  .tag-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .tag-card,
  .link-grid a {
    min-height: 124px;
  }

  .industry-card {
    min-height: 0;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .ecosystem-core {
    width: 146px;
    height: 146px;
  }

  .ecosystem-core strong {
    font-size: 25px;
  }

  .ecosystem-core span {
    font-size: 10px;
  }
}

/* Dedicated Industries page: compact service-style cards. */
.industries-list-section .industries-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.industries-list-section .industry-card {
  min-height: 260px;
  padding: 24px;
  border-color: var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 162, 10, 0.08), transparent 34%),
    var(--white);
  box-shadow: 0 14px 34px rgba(13, 24, 40, 0.07);
}

.industries-list-section .industry-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--gold);
  background: var(--navy);
  box-shadow: none;
}

.industries-list-section .industry-card .icon::before {
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 5px;
  background: transparent;
  box-shadow: 7px 7px 0 -3px currentColor;
}

.industries-list-section .industry-card h3 {
  min-height: 46px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.industries-list-section .industry-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.industries-list-section .industry-card .text-link {
  min-height: 38px;
  padding-top: 14px;
  font-size: 15px;
}

@media (max-width: 1180px) {
  .industries-list-section .industries-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .industries-list-section .industries-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .industries-list-section .industries-page-grid {
    grid-template-columns: 1fr;
  }

  .industries-list-section .industry-card {
    min-height: 0;
  }
}

/* Override old inline Industries page content until the page is migrated to the theme template. */
body .content-area .fincore-industries-wrap {
  max-width: 1160px !important;
  padding: 70px 0 86px !important;
}

.industries-content-area,
body .content-area:has(.fincore-industries-wrap) {
  max-width: none;
}

body .content-area .fincore-industries-intro {
  max-width: 760px !important;
  margin-bottom: 34px !important;
}

body .content-area .fincore-industries-intro h1 {
  font-size: clamp(28px, 2.6vw, 40px) !important;
  line-height: 1.18 !important;
  font-weight: 680 !important;
}

body .content-area .fincore-industries-intro p {
  font-size: 16px !important;
  line-height: 1.65 !important;
}

body .content-area .fincore-industries-wrap .grid.services {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

body .content-area .fincore-industries-wrap .service-card {
  min-height: 260px !important;
  padding: 24px !important;
  border-radius: var(--radius) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 162, 10, 0.08), transparent 34%),
    var(--white) !important;
  box-shadow: 0 14px 34px rgba(13, 24, 40, 0.07) !important;
}

body .content-area .fincore-industries-wrap .service-card .icon {
  width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  margin-bottom: 18px !important;
  border-radius: var(--radius) !important;
  background: var(--navy) !important;
}

body .content-area .fincore-industries-wrap .service-card .icon::before {
  left: auto !important;
  top: auto !important;
  width: 19px !important;
  height: 19px !important;
  border: 2px solid var(--gold) !important;
  border-radius: 5px !important;
  background: transparent !important;
  box-shadow: 7px 7px 0 -3px var(--gold) !important;
}

body .content-area .fincore-industries-wrap .service-card h3 {
  min-height: 46px !important;
  margin-bottom: 10px !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
}

body .content-area .fincore-industries-wrap .service-card p {
  margin-bottom: 0 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

body .content-area .fincore-industries-wrap .service-card .text-link {
  min-height: 38px !important;
  margin-top: auto !important;
  padding-top: 14px !important;
  font-size: 15px !important;
}

@media (max-width: 1180px) {
  body .content-area .fincore-industries-wrap .grid.services {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  body .content-area .fincore-industries-wrap .grid.services {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body .content-area .fincore-industries-wrap .grid.services {
    grid-template-columns: 1fr !important;
  }

  body .content-area .fincore-industries-wrap .service-card {
    min-height: 0 !important;
  }
}

