:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-soft: #071014;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --text: #eef8f7;
  --muted: #a7b8b6;
  --cyan: #25f4ee;
  --green: #a6ff4d;
  --amber: #ffb347;
  --coral: #ff6b6b;
  --blue: #7dd3fc;
  --rose: #fb7185;
  --panel: rgba(8, 18, 26, 0.78);
  --violet: #c084fc;
  --black: #020409;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --radius-lg: 8px;
  --accent: var(--cyan);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 24, 0.96), rgba(3, 5, 8, 1) 42%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
button,
label,
span,
strong,
em,
li,
input,
select,
textarea {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

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

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

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

main,
section,
.container,
.site-header,
.site-nav,
.hero-content,
.hero-content > *,
.conversion-grid,
.conversion-grid > *,
.trust-foundation-grid,
.trust-foundation-grid > *,
.package-layout,
.package-layout > *,
.security-layout,
.security-layout > *,
.delivery-grid,
.delivery-grid > *,
.split,
.split > *,
.lab-grid,
.lab-grid > *,
.contact-grid,
.contact-grid > *,
.footer-grid,
.footer-grid > * {
  min-width: 0;
}

.site-header {
  position: fixed;
  z-index: 1100;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1200px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(4, 9, 14, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header[data-scrolled] {
  background: rgba(4, 8, 13, 0.9);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(37, 244, 238, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.2), rgba(166, 255, 77, 0.12)),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #dce8e6;
  font-size: 0.95rem;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: 0;
  transform: translateY(-1px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.language-switcher button,
.language-switcher a {
  min-width: 38px;
  min-height: 34px;
  padding: 7px 9px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: #ffffff;
  outline: 0;
}

.language-switcher button.active,
.language-switcher a.active {
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.28), rgba(166, 255, 77, 0.22));
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  padding: 112px 0 36px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 4, 9, 0.95) 0%, rgba(3, 12, 18, 0.78) 46%, rgba(2, 4, 9, 0.22) 100%),
    linear-gradient(180deg, rgba(2, 4, 9, 0.1) 0%, rgba(2, 4, 9, 0.94) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 78px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(88svh - 148px);
  grid-template-columns: minmax(0, 1fr) 470px;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 710px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(37, 244, 238, 0.8);
  content: "";
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 5rem;
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.04;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.22;
  text-wrap: balance;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.hero-copy p {
  max-width: 660px;
  margin-bottom: 20px;
  color: #d7e8e7;
  font-size: 1.15rem;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 0 0 22px;
}

.hero-trust-row span {
  display: grid;
  gap: 5px;
  min-height: 68px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.hero-trust-row strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.hero-trust-row em {
  color: #b9cbc9;
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover,
.button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #061014;
  box-shadow: 0 18px 44px rgba(37, 244, 238, 0.24);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.button.full {
  width: 100%;
}

.hero-intel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.command-center {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(37, 244, 238, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(37, 244, 238, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.command-center::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(37, 244, 238, 0.12) 46%, transparent 62%);
  content: "";
  pointer-events: none;
  transform: translateX(-130%);
  animation: metricScan 5.8s ease-in-out infinite;
}

.command-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.command-head span,
.command-head em {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.command-head strong {
  min-width: 0;
  color: #ffffff;
  font-size: 1rem;
}

.command-head em {
  color: var(--green);
}

.command-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.command-metrics article {
  display: grid;
  gap: 10px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.command-metrics span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.command-metrics strong {
  color: #ffffff;
  font-size: 1.7rem;
  font-variant-numeric: tabular-nums;
}

.command-metrics strong span {
  display: inline-block;
  animation: metricPulse 2.8s ease-in-out infinite;
}

.command-metrics i {
  position: relative;
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.command-metrics i::after {
  position: absolute;
  inset: 0 18% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  content: "";
  transform-origin: left;
  animation: growthBar 3s ease-in-out infinite;
}

.command-metrics article:nth-child(2) i::after {
  right: 32%;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  animation-delay: 0.25s;
}

.command-metrics article:nth-child(3) i::after {
  right: 9%;
  background: linear-gradient(90deg, var(--amber), var(--rose));
  animation-delay: 0.5s;
}

.command-pipeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr 0.7fr;
  gap: 8px;
}

.command-pipeline span {
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.command-pipeline span:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.command-pipeline span:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(166, 255, 77, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.command-note {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  background: rgba(166, 255, 77, 0.08);
}

.command-note strong {
  color: #ffffff;
}

.command-note p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.intel-orbit {
  position: relative;
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(255, 179, 71, 0.11)),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.intel-orbit::before,
.intel-orbit::after,
.intel-orbit span {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(37, 244, 238, 0.35);
  border-radius: 50%;
  content: "";
}

.intel-orbit::after {
  inset: 54px 78px;
  border-color: rgba(166, 255, 77, 0.36);
  animation: rotatePulse 7s linear infinite;
}

.intel-orbit span:nth-child(1) {
  inset: 40px 42px;
  border-color: rgba(255, 179, 71, 0.36);
  animation: rotatePulse 9s linear infinite reverse;
}

.intel-orbit span:nth-child(2) {
  inset: 72px 116px;
  border-color: rgba(255, 255, 255, 0.3);
}

.intel-orbit span:nth-child(3) {
  inset: 76px 170px;
  border-color: rgba(255, 107, 107, 0.36);
}

.partner-band {
  position: relative;
  overflow: hidden;
  padding: 30px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(37, 244, 238, 0.08), rgba(166, 255, 77, 0.05), rgba(255, 179, 71, 0.06)),
    #071014;
}

.section-kicker {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-kicker span {
  color: var(--green);
  font-weight: 700;
}

.section-kicker strong {
  color: #ffffff;
  font-size: 1rem;
}

.logo-marquee {
  position: relative;
  width: 100%;
  height: 56px;
  overflow: hidden;
  contain: layout paint;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 34s linear infinite;
}

.logo-track span {
  display: grid;
  min-width: 160px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.logo-track b {
  font-size: 1rem;
}

.conversion-section {
  position: relative;
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.09), rgba(255, 179, 71, 0.08)),
    #05070d;
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
}

.conversion-copy {
  width: 100%;
  min-width: 0;
  max-width: 560px;
}

.conversion-copy h2 {
  color: #ffffff;
}

.conversion-copy p {
  margin-bottom: 26px;
}

.conversion-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.conversion-cards article {
  min-width: 0;
  min-height: 188px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.conversion-cards span,
.delivery-steps span {
  display: inline-flex;
  width: 38px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(37, 244, 238, 0.3);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(37, 244, 238, 0.1);
  color: var(--cyan);
  font-weight: 900;
}

.conversion-cards strong,
.delivery-steps strong {
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 1.08rem;
}

.conversion-cards p,
.delivery-steps p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
}

.trust-foundation {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(37, 244, 238, 0.035)),
    #061014;
}

.trust-foundation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}

.trust-actions,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-link-card {
  display: grid;
  min-height: 236px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.03);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.trust-link-card:hover,
.trust-link-card:focus-visible {
  border-color: rgba(166, 255, 77, 0.42);
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
  transform: translateY(-3px);
}

.trust-link-card span {
  display: inline-flex;
  width: 38px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 179, 71, 0.36);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 179, 71, 0.1);
  color: var(--amber);
  font-weight: 900;
}

.trust-link-card strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.24;
}

.trust-link-card p {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.64;
}

.trust-link-card em {
  align-self: end;
  color: var(--green);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 850;
}

.section {
  padding: 96px 0;
}

.section-heading {
  width: 100%;
  min-width: 0;
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.content-panel h2,
.contact-copy h2 {
  color: #ffffff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.solution-card {
  min-width: 0;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

a.solution-card {
  color: inherit;
  text-decoration: none;
}

.solution-card:hover {
  border-color: rgba(37, 244, 238, 0.42);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.card-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.card-icon::before,
.card-icon::after {
  position: absolute;
  content: "";
}

.card-icon::before {
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.card-icon::after {
  right: 9px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: currentColor;
}

.card-icon.sales {
  color: var(--green);
}

.card-icon.health {
  color: #67e8f9;
}

.card-icon.edu {
  color: var(--amber);
}

.card-icon.commerce {
  color: #fb7185;
}

.card-icon.social {
  color: #60a5fa;
}

.card-icon.media {
  color: #e879f9;
}

.card-icon.erp {
  color: #f97316;
}

.card-icon.data {
  color: var(--cyan);
}

.solution-card h3 {
  max-width: 100%;
  color: #ffffff;
}

.solution-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.ai-section,
.global-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #061014;
}

.delivery-section {
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.06), rgba(255, 255, 255, 0)),
    #05070d;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.delivery-steps article {
  min-width: 0;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
  align-items: center;
  gap: 54px;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
}

.image-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.image-panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.global-delivery-carousel {
  position: relative;
  aspect-ratio: 3 / 2;
}

.global-delivery-carousel::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 70% 16%, rgba(37, 244, 238, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(2, 4, 9, 0.08), rgba(2, 4, 9, 0.24));
  content: "";
  pointer-events: none;
}

.global-delivery-carousel img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.01);
  animation: globalDeliveryFade 15s infinite;
  will-change: opacity;
}

.global-delivery-carousel img:first-child {
  opacity: 1;
}

.global-delivery-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.global-delivery-carousel img:nth-child(2) {
  animation-delay: 3s;
}

.global-delivery-carousel img:nth-child(3) {
  animation-delay: 6s;
}

.global-delivery-carousel img:nth-child(4) {
  animation-delay: 9s;
}

.global-delivery-carousel img:nth-child(5) {
  animation-delay: 12s;
}

.ai-brain-growth {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: min(64%, 440px);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(37, 244, 238, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 50%, rgba(37, 244, 238, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(3, 12, 18, 0.46), rgba(9, 28, 37, 0.2)),
    rgba(2, 4, 9, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1.5px) saturate(115%);
}

.brain-stage {
  position: relative;
  display: grid;
  width: 86px;
  aspect-ratio: 1;
  place-items: center;
}

.brain-wave {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(37, 244, 238, 0.35);
  border-radius: 50%;
  opacity: 0;
  animation: brainWave 3s ease-out infinite;
}

.brain-wave-two {
  animation-delay: 1s;
}

.brain-wave-three {
  animation-delay: 2s;
}

.brain-glyph {
  position: relative;
  z-index: 1;
  width: 68px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(37, 244, 238, 0.72));
  transform-origin: center;
  animation: brainGrow 3s ease-in-out infinite;
}

.brain-outline {
  fill: rgba(37, 244, 238, 0.1);
  stroke: var(--cyan);
  stroke-width: 5;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: brainTrace 4.5s ease-in-out infinite;
}

.brain-link {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: neuralFlow 1.5s linear infinite;
}

.brain-node {
  fill: var(--cyan);
  transform-origin: center;
  animation: nodePulse 2s ease-in-out infinite;
}

.brain-node:nth-of-type(3) {
  animation-delay: 0.24s;
}

.brain-node:nth-of-type(4) {
  animation-delay: 0.48s;
}

.brain-node:nth-of-type(5) {
  animation-delay: 0.72s;
}

.brain-node:nth-of-type(6) {
  animation-delay: 0.96s;
}

.brain-status {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.brain-status span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brain-status strong {
  color: #ffffff;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(166, 255, 77, 0.45);
}

.brain-status em {
  color: #c9d8d5;
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.35;
}

.brain-bars {
  display: grid;
  gap: 5px;
  margin-top: 6px;
}

.brain-bars span {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.brain-bars span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--target);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  animation: growthBar 2.8s ease-in-out infinite;
}

.brain-bars span:nth-child(2)::before {
  animation-delay: 0.28s;
}

.brain-bars span:nth-child(3)::before {
  animation-delay: 0.56s;
}

.content-panel p,
.contact-copy p {
  margin-bottom: 26px;
}

.content-panel,
.contact-copy {
  width: 100%;
  min-width: 0;
}

.ai-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-points span {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 0.94rem;
}

.lab-section {
  padding-top: 72px;
  background: #05070d;
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 36px;
}

.lab-console {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.lab-tabs {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow-x: auto;
}

.lab-tabs button {
  max-width: 100%;
  min-height: 42px;
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
}

.lab-tabs button.active {
  border-color: rgba(166, 255, 77, 0.6);
  background: rgba(166, 255, 77, 0.16);
  color: #efffd8;
}

.lab-result {
  padding: 24px;
}

.result-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
}

.lab-result h3 {
  color: #ffffff;
  font-size: 1.8rem;
}

.lab-result ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lab-result li {
  position: relative;
  padding-left: 22px;
  color: #d7e6e4;
}

.lab-result li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  content: "";
}

.case-preview {
  background:
    linear-gradient(180deg, rgba(255, 179, 71, 0.055), rgba(255, 255, 255, 0)),
    #05070d;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.15);
}

.case-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 850;
}

.case-card h3 {
  color: #ffffff;
}

.case-card p {
  font-size: 0.95rem;
  line-height: 1.66;
}

.case-card ul,
.trust-bullet-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-card li,
.trust-bullet-list li {
  position: relative;
  padding-left: 20px;
  color: #d9e9e7;
  font-size: 0.94rem;
  line-height: 1.48;
}

.case-card li::before,
.trust-bullet-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  content: "";
}

.growth-channel-section {
  background:
    linear-gradient(180deg, rgba(37, 244, 238, 0.035), rgba(166, 255, 77, 0.035)),
    #061014;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.channel-card {
  display: grid;
  min-width: 0;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.channel-card span {
  display: inline-flex;
  width: 38px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(166, 255, 77, 0.3);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(166, 255, 77, 0.08);
  color: var(--green);
  font-weight: 900;
}

.channel-card strong {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.3;
}

.channel-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.64;
}

.growth-campaign-section {
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.07), rgba(255, 179, 71, 0.055)),
    #071116;
}

.growth-campaign-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.growth-campaign-card {
  display: grid;
  min-height: 260px;
  min-width: 0;
  gap: 13px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.growth-campaign-card span {
  display: inline-flex;
  width: 38px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 244, 238, 0.32);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(37, 244, 238, 0.08);
  color: var(--cyan);
  font-weight: 900;
}

.growth-campaign-card strong {
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1.32;
}

.growth-campaign-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.growth-campaign-card a {
  align-self: end;
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.growth-campaign-card a:hover {
  color: #ffffff;
}

.campaign-page {
  background: #050b0f;
}

.campaign-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 74px;
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(166, 255, 77, 0.055) 42%, rgba(255, 179, 71, 0.07)),
    #061014;
}

.campaign-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 244, 238, 0.5), transparent);
  content: "";
}

.campaign-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.campaign-hero-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.campaign-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: 4.8rem;
  line-height: 0.98;
}

.campaign-hero-copy p {
  max-width: 700px;
  margin: 0;
  color: #d9e9e7;
  font-size: 1.05rem;
  line-height: 1.72;
}

.campaign-visual {
  position: relative;
  min-width: 0;
}

.campaign-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.campaign-offer-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(166, 255, 77, 0.26);
  border-radius: var(--radius);
  background: rgba(6, 16, 20, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.campaign-offer-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-offer-card p {
  margin: 0;
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.58;
}

.campaign-two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.campaign-solution-section {
  background:
    linear-gradient(180deg, rgba(37, 244, 238, 0.045), rgba(255, 179, 71, 0.04)),
    #071014;
}

.campaign-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.campaign-solution-grid article {
  display: grid;
  min-height: 240px;
  gap: 12px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.campaign-solution-grid span {
  display: inline-flex;
  width: 38px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 179, 71, 0.32);
  border-radius: calc(var(--radius) - 2px);
  color: var(--orange);
  font-weight: 900;
}

.campaign-solution-grid strong {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.35;
}

.campaign-solution-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.campaign-channel-section {
  background: #061014;
}

.package-section {
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.08), rgba(251, 113, 133, 0.06)),
    #071014;
}

.package-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

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

.package-grid article {
  display: grid;
  min-height: 270px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.package-grid span {
  display: inline-flex;
  width: 38px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 244, 238, 0.32);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(37, 244, 238, 0.09);
  color: var(--cyan);
  font-weight: 900;
}

.package-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.16rem;
  line-height: 1.28;
}

.package-price {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.package-grid p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.64;
}

.article-list {
  display: grid;
  gap: 20px;
}

.product-article {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.product-article img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
}

.product-article > div {
  display: grid;
  min-width: 0;
  align-content: center;
}

.product-article span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--amber);
  font-weight: 750;
}

.product-article h3 {
  max-width: 100%;
  color: #ffffff;
  font-size: 1.7rem;
}

.product-article p {
  max-width: 100%;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.news-section {
  background:
    linear-gradient(180deg, rgba(37, 244, 238, 0.05), rgba(255, 255, 255, 0)),
    #05070d;
}

.post-grid {
  display: grid;
  gap: 10px;
}

.post-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.post-row:hover {
  border-color: rgba(37, 244, 238, 0.34);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.post-row-media {
  flex: 0 0 132px;
  width: 132px;
  height: 82px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.055);
}

.post-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.post-row:hover .post-row-media img {
  transform: scale(1.04);
}

.post-row time {
  flex: 0 0 108px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
}

.post-row-content {
  display: grid;
  min-width: 0;
  flex: 1 1 auto;
  gap: 4px;
}

.post-row h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.32;
}

.post-row p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.post-row > a:not(.post-row-media) {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(37, 244, 238, 0.28);
  border-radius: var(--radius);
  background: rgba(37, 244, 238, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.post-empty {
  display: none;
}

.post-empty.visible {
  display: block;
}

.post-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
}

.post-modal.open {
  display: grid;
}

.post-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.post-modal-card {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: calc(100svh - 48px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #071014;
  box-shadow: var(--shadow);
}

.post-modal-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-modal-card span,
.post-modal-card h2,
.post-modal-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.post-modal-card span {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-weight: 800;
}

.post-modal-card h2 {
  margin-top: 10px;
  font-size: 2.1rem;
}

.post-modal-card p {
  margin-bottom: 26px;
  white-space: pre-line;
}

.post-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(2, 4, 9, 0.7);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
}

.metric-row {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 14px;
  align-items: baseline;
  max-width: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.metric-row::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(37, 244, 238, 0.14), transparent);
  content: "";
  transform: translateX(-120%);
  animation: metricScan 4.2s ease-in-out infinite;
  pointer-events: none;
}

.metric-row strong {
  position: relative;
  color: var(--green);
  font-size: 1.45rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  text-shadow: 0 0 14px rgba(166, 255, 77, 0.35);
}

.metric-value span {
  display: inline-block;
  min-width: 3.2ch;
  animation: metricPulse 2.8s ease-in-out infinite;
}

.metric-value:nth-of-type(2) span {
  animation-delay: 0.45s;
}

.metric-value-api span {
  min-width: 3ch;
  color: var(--cyan);
  animation: apiSignal 2.2s ease-in-out infinite;
}

.metric-row > span {
  color: var(--muted);
}

.global-readiness {
  display: grid;
  gap: 9px;
  max-width: 560px;
  margin: 18px 0 18px;
}

.global-readiness span {
  position: relative;
  padding: 11px 12px 11px 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #e5f3f1;
}

.global-readiness span::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--amber);
  content: "";
  transform: translateY(-50%);
  animation: readinessBlink 2.6s ease-in-out infinite;
}

.global-readiness span:nth-child(2)::before {
  animation-delay: 0.35s;
}

.global-readiness span:nth-child(3)::before {
  animation-delay: 0.7s;
}

.security-section {
  background:
    linear-gradient(180deg, rgba(166, 255, 77, 0.055), rgba(255, 255, 255, 0)),
    #061014;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

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

.security-grid article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.security-grid strong {
  display: inline-flex;
  min-width: 58px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(166, 255, 77, 0.32);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(166, 255, 77, 0.09);
  color: var(--green);
  font-weight: 900;
}

.security-grid span {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.28;
}

.security-grid p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.64;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.1), rgba(255, 179, 71, 0.08)),
    #071014;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: start;
}

.domain-link {
  display: inline-flex;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(37, 244, 238, 0.34);
  border-radius: var(--radius);
  background: rgba(37, 244, 238, 0.08);
  color: #dffdfb;
  overflow-wrap: anywhere;
}

.contact-trust {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 0 0 20px;
}

.contact-trust span {
  position: relative;
  padding: 11px 12px 11px 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #e5f3f1;
}

.contact-trust span::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.contact-response-card {
  display: grid;
  max-width: 560px;
  gap: 8px;
  margin: 0 0 18px;
  padding: 15px;
  border: 1px solid rgba(37, 244, 238, 0.22);
  border-radius: var(--radius);
  background: rgba(37, 244, 238, 0.07);
}

.contact-response-card strong {
  color: #ffffff;
  font-size: 1rem;
}

.contact-response-card p {
  margin: 0;
  color: rgba(235, 246, 246, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  min-width: 0;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 8, 13, 0.72);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dbe8e6;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: 0;
  padding: 12px 13px;
}

.contact-form select option {
  background: #071014;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 244, 238, 0.75);
  box-shadow: 0 0 0 3px rgba(37, 244, 238, 0.14);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 0.95rem;
}

.form-note.error {
  color: var(--coral);
}

.site-footer {
  padding: 32px 0;
  background: #030508;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.8fr);
  gap: 28px;
  align-items: start;
}

.site-footer strong {
  color: #ffffff;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
}

.site-footer a {
  color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes rotatePulse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes globalDeliveryFade {
  0%,
  17% {
    opacity: 1;
  }

  21%,
  100% {
    opacity: 0;
  }
}

@keyframes brainWave {
  0% {
    opacity: 0.72;
    transform: scale(0.42);
  }

  72% {
    opacity: 0.12;
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes brainGrow {
  0%,
  100% {
    transform: scale(0.96);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes brainTrace {
  0% {
    stroke-dashoffset: 360;
  }

  38%,
  82% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -360;
  }
}

@keyframes neuralFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -44;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes growthBar {
  0%,
  100% {
    transform: scaleX(0.42);
  }

  50% {
    transform: scaleX(1);
  }
}

@keyframes metricScan {
  0%,
  42% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes metricPulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes apiSignal {
  0%,
  100% {
    opacity: 0.82;
    text-shadow: 0 0 10px rgba(37, 244, 238, 0.28);
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(37, 244, 238, 0.72);
  }
}

@keyframes readinessBlink {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 179, 71, 0);
  }

  50% {
    box-shadow: 0 0 16px rgba(255, 179, 71, 0.64);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .global-delivery-carousel img {
    opacity: 0;
    animation: none !important;
  }

  .global-delivery-carousel img:first-child {
    opacity: 1;
  }

  .metric-row::after,
  .metric-value span,
  .metric-value-api span,
  .command-center::before,
  .command-metrics strong span,
  .command-metrics i::after,
  .global-readiness span::before,
  .ai-brain-growth,
  .brain-wave,
  .brain-glyph,
  .brain-outline,
  .brain-link,
  .brain-node,
  .brain-bars span::before {
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .hero-content,
  .split,
  .split.reverse,
	  .lab-grid,
	  .contact-grid,
	  .conversion-grid,
	  .form-grid-two,
	  .delivery-grid,
  .trust-foundation-grid,
  .package-layout,
  .security-layout,
  .campaign-hero-grid,
  .campaign-two-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 36px;
  }

  .hero-intel {
    max-width: 720px;
  }

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

	  .case-grid,
	  .channel-grid,
  .growth-campaign-grid,
  .campaign-solution-grid,
	  .trust-detail-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .product-article {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), 680px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 10px;
    left: 10px;
    display: grid;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(4, 8, 13, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
  }

  .language-switcher {
    width: auto;
    flex: 0 0 auto;
  }

  .language-switcher button,
  .language-switcher a {
    flex: 1 1 0;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 44px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .hero-copy,
  .hero-copy p,
  .conversion-copy,
  .content-panel,
  .contact-copy,
  .section-heading {
    width: 100%;
    max-width: 100%;
  }

  .hero-trust-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 8px;
    margin-bottom: 16px;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-trust-row::-webkit-scrollbar {
    display: none;
  }

  .hero-trust-row span {
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 11px 12px;
  }

  .hero-intel {
    display: grid;
    max-width: 100%;
    padding: 12px;
  }

  .conversion-cards,
  .delivery-steps,
	  .trust-link-grid,
	  .case-grid,
	  .channel-grid,
  .growth-campaign-grid,
  .campaign-solution-grid,
	  .package-grid,
  .security-grid,
  .trust-detail-grid,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .campaign-hero {
    padding: 112px 0 46px;
  }

  .campaign-hero-copy h1 {
    font-size: 3.1rem;
  }

  .campaign-offer-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .command-head {
    grid-template-columns: 1fr;
  }

  .command-head span,
  .command-head em {
    justify-self: start;
  }

  .command-metrics {
    grid-template-columns: 1fr;
  }

  .command-metrics article {
    min-height: auto;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 9.5vw, 3.1rem);
    line-height: 1.02;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .hero-copy p {
    font-size: 1.05rem;
  }

  .section {
    padding: 72px 0;
  }

  .conversion-section {
    padding: 60px 0;
  }

  .section-kicker {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

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

  .solution-card {
    min-height: auto;
  }

  .trust-link-card,
  .case-card,
  .package-grid article,
  .security-grid article,
  .trust-detail-grid article {
    min-height: auto;
  }

  .product-article {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .product-article img {
    display: block;
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

  .product-article > div {
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .product-article span {
    display: block;
    width: 100%;
    line-height: 1.35;
  }

  .product-article h3 {
    font-size: clamp(1.22rem, 5.6vw, 1.45rem);
    line-height: 1.2;
  }

  .product-article p {
    font-size: clamp(0.95rem, 4.4vw, 1.02rem);
    line-height: 1.68;
  }

  .ai-brain-growth {
    right: 10px;
    bottom: 10px;
    left: auto;
    width: min(78%, 330px);
    gap: 10px;
    padding: 10px;
    background:
      radial-gradient(circle at 10% 50%, rgba(37, 244, 238, 0.15), transparent 46%),
      linear-gradient(135deg, rgba(3, 12, 18, 0.34), rgba(9, 28, 37, 0.16)),
      rgba(2, 4, 9, 0.14);
    backdrop-filter: blur(1px) saturate(110%);
  }

  .brain-stage {
    width: 62px;
  }

  .brain-glyph {
    width: 50px;
  }

  .brain-status span {
    font-size: 0.62rem;
  }

  .brain-status strong {
    font-size: 1.18rem;
  }

  .brain-status em,
  .brain-bars {
    display: none;
  }

  .metric-row {
    max-width: 100%;
    padding: 16px;
  }

  .lab-tabs {
    flex-wrap: wrap;
    overflow: visible;
  }

  .lab-tabs button {
    flex: 1 1 calc(50% - 8px);
    white-space: normal;
  }

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

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-header {
    width: calc(100% - 16px);
    padding: 8px;
  }

  .site-nav {
    right: 8px;
    left: 8px;
    width: auto;
    max-width: calc(100vw - 16px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .campaign-hero-copy h1 {
    font-size: 2.35rem;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.65rem, 7.6vw, 1.9rem);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-intel {
    padding: 12px;
  }

  .intel-orbit {
    min-height: 136px;
  }

  .logo-track span {
    min-width: 138px;
  }

  .contact-form {
    padding: 14px;
  }

  .product-article > div {
    padding: 16px;
  }

  .ai-points span,
  .lab-tabs button {
    width: 100%;
  }

  .post-modal {
    padding: 12px;
  }

  .post-modal-card span,
  .post-modal-card h2,
  .post-modal-card p {
    margin-right: 16px;
    margin-left: 16px;
  }

  .post-modal-card h2 {
    font-size: clamp(1.45rem, 8vw, 1.8rem);
  }

  .post-row {
    display: grid;
    gap: 8px;
    padding: 14px;
  }

  .post-row-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .post-row time,
  .post-row > a:not(.post-row-media) {
    justify-self: start;
  }

  .post-row > a:not(.post-row-media) {
    white-space: normal;
  }
}

.service-page,
.article-page,
.trust-page {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 179, 71, 0.11), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(37, 244, 238, 0.11), transparent 28%),
    #061014;
}

.service-hero,
.trust-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 72px;
}

.service-hero::after,
.trust-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(37, 244, 238, 0.28), transparent);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.trust-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.service-hero-copy {
  min-width: 0;
  color: #ffffff;
}

.service-hero-copy .eyebrow {
  color: #ffffff;
}

.service-hero-copy h1 {
  max-width: 760px;
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(2.05rem, 3.4vw, 3.15rem);
  line-height: 1.08;
}

.trust-hero-copy h1 {
  max-width: 760px;
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(2.05rem, 3.4vw, 3.15rem);
  line-height: 1.08;
}

.service-hero-copy p {
  max-width: 660px;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.68;
}

.trust-hero-copy p {
  max-width: 660px;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.68;
}

.trust-hero-copy .eyebrow {
  color: #ffffff;
}

.trust-proof-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.trust-proof-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  aspect-ratio: 49 / 31;
  object-fit: cover;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-proof-grid article {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
  background: rgba(5, 12, 18, 0.96);
}

.trust-proof-grid strong {
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.1;
}

.trust-proof-grid span {
  color: rgba(235, 246, 246, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
}

.trust-detail-section.alt {
  background: rgba(255, 255, 255, 0.035);
}

.trust-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-detail-grid article {
  min-height: 278px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-detail-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.14rem;
  line-height: 1.28;
}

.trust-detail-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.66;
}

.service-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 49 / 31;
  object-fit: cover;
}

.article-hero {
  padding: 140px 0 68px;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 44px;
  align-items: center;
}

.article-hero-copy {
  min-width: 0;
}

.article-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.article-hero-copy time {
  display: block;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
}

.article-hero-copy h1 {
  max-width: 980px;
  margin: 14px 0 18px;
  color: #ffffff;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1;
}

.article-hero-copy p {
  max-width: 760px;
  color: rgba(235, 246, 246, 0.84);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.72;
}

.article-hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.article-hero-media img {
  display: block;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.article-body-section {
  background: rgba(255, 255, 255, 0.035);
}

.article-body {
  max-width: 860px;
}

.article-body p {
  margin: 0 0 24px;
  color: rgba(235, 246, 246, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.17rem);
  line-height: 1.86;
}

.article-cta {
  padding: 56px 0 76px;
}

.article-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
}

.article-cta h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.article-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(235, 246, 246, 0.78);
  line-height: 1.65;
}

.service-offer {
  padding: 22px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.service-offer p {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.service-section.alt {
  background: rgba(255, 255, 255, 0.035);
}

.service-two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.service-list-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
}

.service-check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(235, 246, 246, 0.84);
  line-height: 1.62;
}

.service-check-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, #25f4ee, #a6ff4d);
  box-shadow: 0 0 18px rgba(37, 244, 238, 0.35);
}

.service-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-module-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.service-module-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-module-grid strong {
  display: block;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.42;
}

.service-process ol {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 22px;
  color: rgba(235, 246, 246, 0.84);
  line-height: 1.58;
}

.service-faq {
  background: rgba(0, 0, 0, 0.14);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(235, 246, 246, 0.78);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .service-hero-grid,
  .service-two-column,
  .article-hero-grid,
  .trust-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-module-grid,
  .trust-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .service-hero,
  .article-hero,
  .trust-hero {
    padding-top: 108px;
  }

  .service-hero-grid,
  .trust-hero-grid {
    gap: 28px;
  }

  .article-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-module-grid,
  .trust-detail-grid,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-list-panel {
    padding: 18px;
  }
}
