:root {
  --ink: #101722;
  --muted: #5d6876;
  --line: #dfe6ee;
  --soft: #f4f7fa;
  --white: #ffffff;
  --navy: #06111f;
  --navy-2: #0c2234;
  --gold: #c89a62;
  --gold-2: #e0bb7a;
  --cyan: #4bd8df;
  --green: #55a88d;
  --shadow: 0 24px 70px rgba(10, 22, 35, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
  letter-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: rgba(3, 10, 19, .72);
  border-bottom: 1px solid rgba(224, 187, 122, .12);
  backdrop-filter: blur(12px);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-solid,
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 45px rgba(10, 22, 35, .08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 204px;
  height: 58px;
}

.brand img {
  width: 204px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: currentColor;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 154, 98, .45);
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 145px;
  background: linear-gradient(180deg, rgba(6, 17, 31, 0), rgba(6, 17, 31, .94));
  pointer-events: none;
}

.market-canvas {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: .22;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 88vh;
  padding: 118px max(24px, calc((100vw - 1160px) / 2)) 130px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 1.2s ease, visibility .8s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 10, 19, .54) 0%, rgba(3, 10, 19, .18) 28%, rgba(3, 10, 19, .16) 70%, rgba(3, 10, 19, .52) 100%),
    linear-gradient(90deg, rgba(3, 10, 19, .84) 0%, rgba(3, 10, 19, .58) 36%, rgba(3, 10, 19, .26) 67%, rgba(3, 10, 19, .2) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(.78) contrast(1.03) saturate(.95);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 680px;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .65s ease .2s, opacity .65s ease .2s;
}

.hero-slide.active .hero-copy {
  transform: translateY(0);
  opacity: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 20px;
  max-width: 760px;
  font-size: 64px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.hero-actions,
.cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

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

.btn.primary {
  color: #07101c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 35px rgba(200, 154, 98, .24);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
}

.btn.dark {
  color: var(--white);
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, .08);
}

.hero-panel {
  position: absolute;
  right: max(34px, calc((100vw - 1160px) / 2));
  bottom: 154px;
  z-index: 11;
  width: 300px;
  padding: 18px;
  border: 1px solid rgba(224, 187, 122, .28);
  border-radius: var(--radius);
  background: rgba(5, 14, 26, .58);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease .35s, transform .65s ease .35s;
}

.hero-slide.active .hero-panel {
  opacity: 1;
  transform: translateY(0);
}

.panel-label {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  height: 72px;
  margin-top: 18px;
}

.mini-chart i {
  display: block;
  height: 28px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  opacity: .86;
  animation: barPulse 2.8s ease-in-out infinite;
}

.mini-chart i:nth-child(2) { height: 48px; animation-delay: .15s; }
.mini-chart i:nth-child(3) { height: 34px; animation-delay: .3s; }
.mini-chart i:nth-child(4) { height: 60px; animation-delay: .45s; }
.mini-chart i:nth-child(5) { height: 40px; animation-delay: .6s; }
.mini-chart i:nth-child(6) { height: 68px; animation-delay: .75s; }
.mini-chart i:nth-child(7) { height: 52px; animation-delay: .9s; }

.flow-line {
  position: relative;
  height: 66px;
  margin-top: 20px;
}

.flow-line::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.flow-line b {
  position: absolute;
  top: 22px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 20px rgba(75, 216, 223, .4);
}

.flow-line b:nth-child(1) { left: 8px; }
.flow-line b:nth-child(2) { left: 33%; }
.flow-line b:nth-child(3) { left: 62%; }
.flow-line b:nth-child(4) { right: 8px; }

.radar-dot {
  width: 76px;
  height: 76px;
  margin: 18px auto 4px;
  border: 1px solid rgba(75, 216, 223, .62);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 4px, transparent 5px),
    repeating-radial-gradient(circle, rgba(75, 216, 223, .18) 0 1px, transparent 1px 18px);
  animation: radarSpin 3s linear infinite;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
  width: min(760px, calc(100% - 40px));
  transform: translateX(-50%);
}

.hero-dot {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  color: rgba(255, 255, 255, .76);
  background: rgba(6, 17, 31, .58);
  text-align: left;
  cursor: pointer;
}

.hero-dot span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.hero-dot i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dot.active {
  color: var(--white);
  border-color: rgba(224, 187, 122, .55);
}

.hero-dot.active i {
  animation: slideProgress 6.5s linear forwards;
}

.service-overview {
  padding: 76px 0 86px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.overview-header {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 24px;
}

.overview-header h2,
.section-heading h2,
.feature-copy h2,
.split-grid h2,
.two-column-list h2,
.cta-inner h2 {
  margin: 12px 0 0;
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
}

.overview-header h2 {
  max-width: 650px;
  font-size: 40px;
}

.overview-header p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.overview-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.intro-point svg {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  padding: 5px;
  border: 1px solid rgba(200, 154, 98, .24);
  border-radius: 7px;
  color: var(--gold);
  background: rgba(200, 154, 98, .08);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 92px 0;
}

.light-section {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading.wide-heading {
  max-width: 900px;
}

.section-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

.service-card,
.solution-card,
.value-grid article,
.tech-grid article,
.package-grid article,
.process-grid article,
.contact-direct-panel,
.contact-cards a,
.contact-cards div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card,
.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 254px;
  overflow: hidden;
  padding: 28px 26px 26px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card::before,
.solution-card::before,
.value-grid article::before,
.tech-grid article::before,
.package-grid article::before,
.process-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(200, 154, 98, .75), rgba(75, 216, 223, .58));
  opacity: 0;
  transition: opacity .24s ease;
}

.service-card:hover,
.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 154, 98, .5);
  box-shadow: var(--shadow);
}

.service-card:hover::before,
.solution-card:hover::before,
.value-grid article:hover::before,
.tech-grid article:hover::before,
.package-grid article:hover::before,
.process-grid article:hover::before {
  opacity: 1;
}

.icon,
.process-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(200, 154, 98, .16), rgba(75, 216, 223, .12));
}

.icon svg,
.process-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.solution-card h3,
.value-grid h3,
.tech-grid h3,
.process-grid h3,
.package-grid h3,
.list-panel h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.service-card p,
.solution-card p,
.value-grid p,
.tech-grid p,
.process-grid p,
.package-grid p,
.list-panel p,
.rich-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #6f4d26;
  background: rgba(200, 154, 98, .1);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-band {
  background:
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-grid.reversed {
  grid-template-columns: 1.05fr .95fr;
}

.feature-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.tech-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 42px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 48px rgba(10, 22, 35, .07);
}

.tech-flow span {
  display: grid;
  gap: 3px;
  min-height: 64px;
  place-content: center;
  padding: 12px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(200, 154, 98, .09), rgba(75, 216, 223, .08));
}

.tech-flow strong,
.tech-flow em {
  display: block;
  text-align: center;
}

.tech-flow strong {
  color: var(--ink);
  font-size: 15px;
}

.tech-flow em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.tech-flow i {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.capability-list span {
  padding: 9px 12px;
  border: 1px solid rgba(85, 168, 141, .32);
  border-radius: 6px;
  color: #235d50;
  background: rgba(85, 168, 141, .09);
  font-size: 13px;
  font-weight: 800;
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  pointer-events: none;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 24px;
}

.cta-band {
  padding: 54px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 17, 31, .94), rgba(13, 36, 53, .88)),
    url("../images/page-banner-fintech.png") center/cover;
}

.cta-inner {
  justify-content: space-between;
}

.cta-inner h2 {
  max-width: 720px;
}

.page-hero {
  position: relative;
  height: clamp(460px, 30vw, 500px);
  min-height: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding-top: 78px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 11, 22, .22), rgba(4, 11, 22, .08) 46%, rgba(4, 11, 22, .28)),
    linear-gradient(90deg, rgba(4, 11, 22, .9) 0%, rgba(4, 11, 22, .72) 34%, rgba(4, 11, 22, .34) 66%, rgba(4, 11, 22, .16) 100%);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(.76) contrast(1.02) saturate(.94);
}

.page-hero-about img,
.page-hero-contact img {
  object-position: 58% center;
}

.page-hero-solutions img,
.page-hero-technology img {
  object-position: 64% center;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 930px;
  padding: 70px 0 74px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 46px;
}

.split-grid,
.two-column-list,
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.rich-text {
  display: grid;
  gap: 18px;
}

.about-overview {
  padding-bottom: 72px;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: start;
}

.about-lead .lead {
  max-width: 460px;
  margin: 20px 0 0;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(200, 154, 98, .36);
  border-radius: 6px;
  color: #7a5631;
  background: rgba(200, 154, 98, .1);
  font-size: 13px;
  font-weight: 800;
}

.about-profile-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,250,252,.96)),
    var(--white);
  box-shadow: 0 22px 58px rgba(10, 22, 35, .08);
}

.about-profile-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.about-profile-panel p + p {
  margin-top: 16px;
}

.about-capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-capability-list strong,
.about-capability-list span {
  display: block;
}

.about-capability-list strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.about-capability-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-capability-band {
  padding: 34px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 17, 31, .96), rgba(10, 31, 45, .92)),
    url("../images/banner-technology.png") center/cover;
}

.about-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.about-band-grid div {
  min-height: 94px;
  padding: 0 28px;
  border-left: 1px solid rgba(224, 187, 122, .42);
}

.about-band-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-band-grid strong {
  display: block;
  max-width: 270px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.35;
}

.compact-heading {
  margin-bottom: 28px;
}

.positioning-stack {
  padding: 8px 0 0;
}

.positioning-stack div {
  position: relative;
  padding-left: 34px;
}

.positioning-stack div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 154, 98, .13);
}

.value-grid,
.tech-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-grid article,
.tech-grid article,
.package-grid article {
  padding: 28px;
}

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

.two-column-list {
  grid-template-columns: .9fr 1.1fr;
}

.list-panel {
  display: grid;
  gap: 18px;
}

.list-panel div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.list-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.list-panel.positioning-stack > div {
  position: relative;
  padding: 0 0 18px 34px;
}

.list-panel.positioning-stack > div:last-child {
  padding: 0 0 0 34px;
}

.list-panel.positioning-stack > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 154, 98, .13);
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.contact-grid {
  grid-template-columns: .95fr 1.05fr;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 50px;
}

.contact-cards a,
.contact-cards div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 18px;
}

.contact-cards .icon {
  grid-row: span 2;
  margin: 0;
}

.contact-cards strong {
  line-height: 1.2;
}

.contact-cards span:last-child {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-direct-panel {
  align-self: start;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.contact-direct-panel h2 {
  margin: 12px 0 14px;
  font-size: 31px;
  line-height: 1.18;
}

.contact-direct-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-note-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-note-list div {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(247, 250, 252, .82);
}

.contact-note-list strong {
  color: var(--ink);
  font-size: 15px;
}

.contact-note-list span {
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #07111d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr 1.1fr;
  gap: 34px;
  padding: 34px 0 22px;
}

.footer-grid > div:last-child {
  justify-self: end;
}

.footer-grid > div:nth-child(2) {
  justify-self: center;
  transform: translateX(54px);
}

.footer-logo {
  width: 196px;
  margin-bottom: 14px;
}

.footer-grid p {
  max-width: 420px;
  margin: 0;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 9px 0;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: var(--gold-2);
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  align-items: start;
}

.footer-contact-list > a,
.footer-contact-list > div {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
  width: fit-content;
}

.footer-contact-list > a:hover {
  color: var(--gold-2);
}

.footer-contact-icon {
  display: grid !important;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin: 0 !important;
  border: 1px solid rgba(218, 169, 97, .28);
  border-radius: 7px;
  color: var(--gold-2);
  background: rgba(218, 169, 97, .08);
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-list > a > span:not(.footer-contact-icon),
.footer-contact-list > div > span:not(.footer-contact-icon) {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 16px max(20px, calc((100vw - 1160px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  text-align: left;
}

.footer-bottom-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.footer-domain {
  color: var(--gold-2);
  font-weight: 700;
}

.footer-domain:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .68);
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.footer-top svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.footer-top:hover {
  color: var(--gold-2);
}

.footer-top:hover svg {
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes barPulse {
  0%, 100% { transform: scaleY(.72); opacity: .62; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes radarSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .service-grid,
  .solution-grid,
  .process-grid,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .brand,
  .brand img {
    width: 180px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header .site-nav.open,
  [data-nav-toggle][aria-expanded="true"] + .site-nav {
    display: grid !important;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .hero-slide {
    min-height: 720px;
  }

  .hero-slide {
    padding: 110px 20px 144px;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .hero-panel {
    right: 20px;
    left: 20px;
    bottom: 94px;
    width: auto;
    padding: 14px;
  }

  .hero-controls {
    grid-template-columns: 1fr;
    bottom: 18px;
    gap: 8px;
  }

  .hero-dot {
    min-height: 38px;
  }

  .overview-header,
  .feature-grid,
  .feature-grid.reversed,
  .about-overview-grid,
  .split-grid,
  .two-column-list,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:last-child {
    justify-self: start;
  }

  .footer-grid > div:nth-child(2) {
    justify-self: start;
    transform: none;
  }

  .service-overview {
    padding: 58px 0 68px;
  }

  .overview-header {
    gap: 26px;
  }

  .overview-points {
    gap: 8px;
  }

  .contact-cards {
    margin-top: 28px;
  }

  .tech-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .tech-flow i {
    width: 1px;
    height: 20px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--gold), var(--cyan));
  }

  .section {
    padding: 68px 0;
  }

  .overview-header h2,
  .section-heading h2,
  .feature-copy h2,
  .split-grid h2,
  .two-column-list h2,
  .cta-inner h2 {
    font-size: 32px;
  }

  .page-hero {
    height: 430px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .value-grid,
  .about-band-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .about-capability-band {
    padding: 26px 0;
  }

  .about-band-grid {
    gap: 18px;
  }

  .about-band-grid div {
    min-height: auto;
    padding: 0 0 0 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand,
  .brand img {
    width: 164px;
  }

  .hero,
  .hero-slide {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-actions,
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-panel {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .solution-grid,
  .process-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .solution-card,
  .about-profile-panel,
  .value-grid article,
  .tech-grid article,
  .package-grid article,
  .process-grid article,
  .contact-direct-panel {
    padding: 22px;
  }

  .about-capability-list {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero {
    height: 390px;
    padding-top: 72px;
  }

  .page-hero-copy {
    padding: 46px 0 44px;
  }

  .page-hero-about img,
  .page-hero-contact img,
  .page-hero-solutions img,
  .page-hero-technology img {
    object-position: 62% center;
  }

  .contact-cards a,
  .contact-cards div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-cards .icon {
    grid-row: auto;
  }
}
