:root {
  --blue: #4f46e5;
  --blue-dark: #3730a3;
  --purple: #7c3aed;
  --ink: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --white: #fff;
  --dark: #070b16;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 30px rgba(15, 23, 42, 0.07);
  --container: 1220px;
  --warm: #fbfaf7;
  --electric: #2563eb;
  --serif: "Instrument Serif", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.075), transparent 68%);
  content: "";
  left: calc(var(--pointer-x, 50vw) - 260px);
  top: calc(var(--pointer-y, 50vh) - 260px);
  pointer-events: none;
  transition: opacity .3s ease;
}

h1, h2, .contact-copy h2, .careers-card h2 {
  font-family: var(--serif);
  font-weight: 400 !important;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(4rem, 6.5vw, 7rem);
  line-height: .88;
  letter-spacing: -.058em;
}

.hero h1 em {
  display: inline;
  color: var(--blue);
  font-weight: 400;
}

.section-intro h2 {
  font-size: clamp(3.25rem, 5vw, 5.5rem);
  line-height: .94;
  letter-spacing: -.045em;
}

.hero-image-frame {
  border-radius: 42% 24px 24px 24px;
  transform: rotate(1.5deg);
}

.hero-image-frame img {
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.hero-visual:hover .hero-image-frame img { transform: scale(1.09); }

.button { position: relative; overflow: hidden; }
.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.35), transparent 75%);
  content: "";
  transform: translateX(-120%);
  transition: transform .65s ease;
}
.button:hover::before { transform: translateX(120%); }

.metric-card {
  background: transparent;
  transition: background .35s ease, transform .35s ease;
}
.metric-card:hover { background: white; transform: translateY(-8px); }

.service-card {
  isolation: isolate;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.service-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(79,70,229,.13), transparent 38%);
  content: "";
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { transform: perspective(900px) rotateX(var(--tilt-y,0deg)) rotateY(var(--tilt-x,0deg)) translateY(-7px); }
.service-card:hover::after { opacity: 1; }

.industry-row {
  transition: padding-left .35s ease, color .25s ease, background .25s ease;
}
.industry-row:hover { padding-left: 18px; background: #f8f7ff; color: var(--blue); }

.product-showcase { box-shadow: 0 50px 120px rgba(0,0,0,.26); }
.device-stage { perspective: 1200px; }
.laptop { animation: device-breathe 7s ease-in-out infinite; }

@keyframes device-breathe {
  0%,100% { transform: rotateY(-6deg) rotateX(1deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(-1deg) translateY(-12px); }
}

.process-step:nth-child(even) { margin-top: 74px; }
.process-step::after {
  position: absolute;
  top: 28px;
  right: -24px;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg,var(--blue),transparent);
  content: "";
}

.reveal {
  opacity: 0;
  clip-path: inset(0 0 18% 0);
  transform: translateY(38px) scale(.985);
  transition: opacity .85s ease, transform .95s cubic-bezier(.16,1,.3,1), clip-path .95s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; clip-path: inset(0); transform: none; }

@media (max-width: 760px) {
  .hero h1 { font-size: clamp(3.6rem, 16vw, 5.3rem); }
  .section-intro h2 { font-size: clamp(2.8rem, 12vw, 4.3rem); }
  .process-step:nth-child(even) { margin-top: 0; }
  .process-step::after { display: none; }
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transition: transform 0.2s;
}
.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 130px 0;
}
.section-tint {
  background: var(--soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 0;
  width: 100%;
  transition: top 0.3s ease;
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 36px), 1320px);
  min-height: 68px;
  margin: 0 auto;
  padding: 9px 10px 9px 22px;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    border-radius 0.3s;
}

.site-header.scrolled {
  top: 8px;
}
.site-header.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.11);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-family: Manrope, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand > span:last-child > span {
  color: var(--blue);
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  width: 24px;
  height: 24px;
  gap: 3px;
  transform: rotate(-8deg);
}

.brand-mark span {
  display: block;
  border-radius: 3px;
  background: var(--blue);
}
.brand-mark span:nth-child(2) {
  background: #818cf8;
}
.brand-mark span:nth-child(3) {
  grid-column: 2;
  background: var(--purple);
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 24px);
}

.desktop-nav a {
  position: relative;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: 0.2s;
}

.desktop-nav a:hover {
  color: var(--ink);
}
.desktop-nav a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s,
    box-shadow 0.25s,
    color 0.25s;
}

.button svg {
  transition: transform 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.24);
}
.button-primary:hover {
  box-shadow: 0 18px 36px rgba(79, 70, 229, 0.3);
}

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.button-dark:hover {
  background: #1e293b;
}

.button-ghost {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}
.button-ghost:hover {
  background: var(--soft);
}

.nav-cta {
  min-height: 48px;
  font-size: 0.82rem;
}
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--soft);
  cursor: pointer;
}
.menu-toggle svg {
  width: 22px;
  height: 22px;
}
.menu-close {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}

.mobile-nav {
  display: none;
  width: min(calc(100% - 36px), 1320px);
  margin: 8px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 165px 0 100px;
  overflow: hidden;
  background: radial-gradient(
      circle at 82% 25%,
      rgba(124, 58, 237, 0.07),
      transparent 25%
    ),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(248, 250, 252, 0.8));
  content: "";
  pointer-events: none;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.ambient-one {
  top: 80px;
  left: -220px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 67%);
}
.ambient-two {
  right: -160px;
  bottom: 10px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.09),
    transparent 68%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.88fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 11px 7px 7px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 99px;
  background: rgba(238, 242, 255, 0.8);
  letter-spacing: 0.08em;
  text-transform: none;
}

.eyebrow-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.16);
}
.eyebrow-icon svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(3.25rem, 5.2vw, 5.6rem);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--blue) 10%, var(--purple) 85%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 12px;
}

.hero-actions .button {
  min-height: 54px;
  padding: 0 23px;
}
.play-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--blue);
}
.play-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}

.hero-proof {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 14px;
}
.avatar-stack {
  display: flex;
  padding-left: 9px;
}
.avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -9px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: #dbeafe;
  color: #1e3a8a;
  font-size: 0.61rem;
  font-weight: 700;
}
.avatar-stack span:nth-child(2) {
  background: #ede9fe;
  color: #5b21b6;
}
.avatar-stack span:nth-child(3) {
  background: #dcfce7;
  color: #166534;
}
.avatar-stack span:nth-child(4) {
  background: var(--ink);
  color: white;
}
.stars {
  color: #f59e0b;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.stars strong {
  margin-left: 5px;
  color: var(--ink);
  letter-spacing: 0;
}
.hero-proof p {
  margin-top: 2px;
  font-size: 0.7rem;
}

.trust-row {
  display: flex;
  margin-top: 38px;
  padding-top: 24px;
  align-items: center;
  gap: clamp(17px, 2.1vw, 28px);
  border-top: 1px solid var(--line);
  color: #94a3b8;
  font-family: Manrope, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-visual {
  position: relative;
  min-height: 665px;
}

.hero-image-frame {
  position: absolute;
  top: 15px;
  right: 0;
  width: 89%;
  height: 610px;
  overflow: hidden;
  border-radius: 160px 28px 28px 28px;
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.2);
}

.hero-image-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}
.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(15, 23, 42, 0.5));
}
.visual-label {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
}
.visual-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.16);
}

.floating-card,
.ai-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(18px);
}

.floating-card {
  border-radius: 16px;
}
.progress-card {
  top: 98px;
  left: -6px;
  width: 210px;
  padding: 17px;
  animation: hover-float 6s ease-in-out infinite;
}
.float-head,
.progress-meta,
.progress-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.float-head {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
}
.status-dot {
  color: #16a34a;
}
.status-dot::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: #22c55e;
  content: "";
}
.progress-value {
  margin-top: 13px;
  align-items: baseline;
}
.progress-value strong {
  font-family: Manrope;
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}
.progress-value span {
  color: #16a34a;
  font-size: 0.62rem;
  font-weight: 600;
}
.progress-track {
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #e2e8f0;
}
.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}
.progress-meta {
  margin-top: 8px;
  color: #94a3b8;
  font-size: 0.55rem;
}

.impact-card {
  right: -28px;
  bottom: 63px;
  width: 205px;
  padding: 17px 17px 12px;
  animation: hover-float 7s ease-in-out -2s infinite;
}
.mini-label {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
}
.impact-card > strong {
  display: block;
  margin-top: 3px;
  font-family: Manrope;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}
.trend {
  display: flex;
  margin-top: 2px;
  align-items: center;
  gap: 4px;
  color: #16a34a;
  font-size: 0.58rem;
  font-weight: 600;
}
.trend svg {
  width: 10px;
  height: 10px;
}
.sparkline {
  width: 100%;
  height: 42px;
  margin-top: 6px;
}
.sparkline path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}
.sparkline .area {
  fill: rgba(79, 70, 229, 0.09);
  stroke: none;
}

.ai-chip {
  bottom: 21px;
  left: 35px;
  display: flex;
  padding: 10px 14px 10px 10px;
  align-items: center;
  gap: 9px;
  border-radius: 14px;
  animation: hover-float 8s ease-in-out -4s infinite;
}
.ai-chip > svg {
  width: 31px;
  height: 31px;
  padding: 7px;
  border-radius: 9px;
  background: #eef2ff;
  color: var(--blue);
}
.ai-chip span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 1.45;
}
.ai-chip strong {
  color: var(--ink);
  font-size: 0.65rem;
}

@keyframes hover-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.marquee-section {
  padding: 30px 0 40px;
  overflow: hidden;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  background: white;
}
.marquee-section > p {
  margin-bottom: 24px;
  color: #94a3b8;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 13%,
    black 87%,
    transparent
  );
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 70px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  color: #94a3b8;
  font-family: Manrope, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-intro {
  margin-bottom: 65px;
}
.split-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.split-intro > div {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.split-intro > p {
  max-width: 440px;
  padding-bottom: 5px;
  line-height: 1.8;
}
.centered {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.centered h2 {
  margin-top: 18px;
}
.centered > p {
  max-width: 650px;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric-card {
  position: relative;
  min-height: 220px;
  padding: 35px 26px 30px;
  border-right: 1px solid var(--line);
}
.metric-card:last-child {
  border-right: 0;
}
.metric-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.metric-card:hover::after {
  transform: scaleX(1);
}
.metric-card strong {
  display: block;
  font-family: Manrope;
  font-size: clamp(2.5rem, 3.7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
}
.metric-card h3 {
  margin-top: 26px;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}
.metric-card p {
  margin-top: 8px;
  font-size: 0.7rem;
  line-height: 1.65;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 25px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e6ebf2;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.035);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s,
    border-color 0.35s;
}
.service-card:hover {
  z-index: 2;
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.09);
  transform: translateY(-6px);
}
.service-card.featured {
  grid-column: span 2;
  min-height: 340px;
}
.service-card.wide {
  grid-column: span 2;
}
.service-card.featured::before {
  position: absolute;
  top: -80px;
  right: -65px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(129, 140, 248, 0.28),
    rgba(124, 58, 237, 0.06) 52%,
    transparent 70%
  );
  content: "";
}
.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #e0e7ff;
  border-radius: 14px;
  background: #f6f7ff;
  color: var(--blue);
  transition: 0.3s;
}
.service-card:hover .service-icon {
  background: var(--blue);
  color: white;
  transform: rotate(-4deg);
}
.service-icon svg {
  width: 23px;
  height: 23px;
}
.card-number {
  position: absolute;
  top: 28px;
  right: 26px;
  color: #cbd5e1;
  font-size: 0.63rem;
  font-weight: 600;
}
.service-card h3 {
  margin-top: 32px;
  font-size: 1.14rem;
  letter-spacing: -0.035em;
}
.service-card p {
  margin-top: 10px;
  font-size: 0.78rem;
  line-height: 1.75;
}
.service-card.featured p {
  max-width: 420px;
}
.service-card > a {
  display: inline-flex;
  margin-top: 22px;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
}
.service-card > a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.service-card > a:hover svg {
  transform: translateX(4px);
}

.industries-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
}
.industry-feature {
  position: sticky;
  top: 110px;
  height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.industry-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 11, 22, 0.82));
  content: "";
}
.industry-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-feature-content {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 35px;
  left: 35px;
  color: white;
}
.industry-feature-content > span {
  color: #c7d2fe;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.industry-feature-content h3 {
  margin-top: 8px;
  font-size: 2rem;
}
.industry-feature-content p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.industry-list {
  border-top: 1px solid var(--line);
}
.industry-row {
  display: grid;
  min-height: 93px;
  padding: 16px 8px;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.3s,
    color 0.3s,
    background 0.3s;
}
.industry-row:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: #f8fafc;
  color: var(--blue);
}
.industry-number {
  color: #94a3b8;
  font-size: 0.6rem;
  font-weight: 600;
}
.industry-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.industry-row strong {
  font-family: Manrope;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.industry-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}
.industry-row > svg {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  transition: transform 0.25s;
}
.industry-row:hover > svg {
  color: var(--blue);
  transform: rotate(45deg);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: white;
}
.dark-ambient {
  position: absolute;
  top: -250px;
  left: 45%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.2), transparent 68%);
  pointer-events: none;
}
.section-intro.light p,
.section-intro.light > p,
.centered.light > p {
  color: #94a3b8;
}
.section-intro.light .kicker,
.centered.light .kicker {
  color: #a5b4fc;
}

.product-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 5px;
  overflow-x: auto;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}
.product-tabs button {
  min-height: 40px;
  padding: 0 17px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.25s;
}
.product-tabs button:hover {
  color: white;
}
.product-tabs button.active {
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.product-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 590px;
  padding: 50px;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.025)
  );
}
.product-showcase::before {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.22),
    transparent 68%
  );
  content: "";
}
.product-copy {
  position: relative;
  z-index: 2;
}
.product-label {
  color: #a5b4fc;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-copy h3 {
  max-width: 430px;
  margin-top: 17px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
}
.product-copy > p {
  margin-top: 20px;
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.8;
}
.product-copy ul {
  display: grid;
  margin: 26px 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}
.product-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cbd5e1;
  font-size: 0.75rem;
}
.product-copy li svg {
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(129, 140, 248, 0.18);
  color: #a5b4fc;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
}
.text-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.light-link {
  color: white;
}

.device-stage {
  position: relative;
  z-index: 2;
  height: 460px;
  perspective: 1400px;
}
.laptop {
  position: absolute;
  top: 42px;
  right: -20px;
  width: 630px;
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}
.laptop-screen {
  padding: 8px;
  border: 1px solid #475569;
  border-radius: 16px 16px 8px 8px;
  background: #111827;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}
.dashboard-ui {
  display: grid;
  height: 350px;
  grid-template-columns: 48px 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--ink);
}
.dashboard-ui aside {
  display: flex;
  padding: 14px 10px;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  background: #0f172a;
}
.mini-brand {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #818cf8, #7c3aed);
}
.dashboard-ui aside i {
  width: 14px;
  height: 3px;
  border-radius: 99px;
  background: #334155;
}
.dashboard-ui aside i.on {
  width: 21px;
  height: 21px;
  border-radius: 6px;
  background: #4f46e5;
}
.dash-content {
  padding: 22px;
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
}
.dash-top span {
  width: 60px;
  height: 20px;
  border-radius: 7px;
  background: white;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.dash-kpis {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-kpis article {
  padding: 13px;
  border: 1px solid #e7eaf0;
  border-radius: 10px;
  background: white;
}
.dash-kpis small {
  display: block;
  color: #64748b;
  font-size: 0.46rem;
}
.dash-kpis strong {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
}
.dash-kpis em {
  display: block;
  margin-top: 3px;
  color: #16a34a;
  font-size: 0.42rem;
  font-style: normal;
}
.dash-panels {
  display: grid;
  height: 192px;
  margin-top: 12px;
  grid-template-columns: 1.8fr 1fr;
  gap: 10px;
}
.chart-panel,
.activity-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7eaf0;
  border-radius: 11px;
  background: white;
}
.chart-grid {
  position: absolute;
  inset: 15px;
  background: repeating-linear-gradient(0deg, transparent 0 34px, #f1f5f9 35px);
}
.chart-panel svg {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: calc(100% - 28px);
  height: 140px;
  overflow: visible;
}
.chart-line {
  fill: none;
  stroke: #4f46e5;
  stroke-width: 2.2;
}
.chart-area {
  fill: url(#chartFill);
  stroke: none;
}
.activity-panel {
  display: flex;
  padding: 15px;
  flex-direction: column;
  gap: 14px;
}
.activity-panel b {
  font-size: 0.54rem;
}
.activity-panel span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.activity-panel i {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #eef2ff;
}
.activity-panel small {
  color: #64748b;
  font-size: 0.42rem;
}
.laptop-base {
  width: 108%;
  height: 16px;
  margin-left: -4%;
  border-radius: 2px 2px 18px 18px;
  background: linear-gradient(180deg, #a8b0bd, #5c6472);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.phone-mockup {
  position: absolute;
  z-index: 3;
  right: -34px;
  bottom: 0;
  width: 138px;
  height: 275px;
  padding: 25px 13px 14px;
  border: 5px solid #1e293b;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  color: var(--ink);
  transform: rotate(4deg);
}
.phone-top {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 47px;
  height: 10px;
  border-radius: 99px;
  background: #0f172a;
  transform: translateX(-50%);
}
.phone-mockup > small {
  color: #94a3b8;
  font-size: 0.42rem;
}
.phone-mockup > strong {
  display: block;
  margin-top: 3px;
  font-family: Manrope;
  font-size: 1.25rem;
}
.phone-chart {
  display: flex;
  height: 75px;
  margin-top: 14px;
  align-items: end;
  gap: 5px;
}
.phone-chart i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #818cf8, #4f46e5);
}
.phone-chart i:nth-child(1) {
  height: 25%;
}
.phone-chart i:nth-child(2) {
  height: 43%;
}
.phone-chart i:nth-child(3) {
  height: 37%;
}
.phone-chart i:nth-child(4) {
  height: 62%;
}
.phone-chart i:nth-child(5) {
  height: 56%;
}
.phone-chart i:nth-child(6) {
  height: 78%;
}
.phone-chart i:nth-child(7) {
  height: 91%;
}
.phone-mockup > span {
  display: flex;
  margin-top: 11px;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.42rem;
}
.phone-mockup em {
  color: #16a34a;
  font-style: normal;
}
.phone-list {
  display: grid;
  margin-top: 13px;
  gap: 7px;
}
.phone-list i {
  height: 17px;
  border-radius: 5px;
  background: #f1f5f9;
}
.product-float {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: -10px;
  display: flex;
  padding: 11px 14px 11px 11px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}
.product-float > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: rgba(129, 140, 248, 0.18);
  color: #a5b4fc;
}
.product-float div {
  display: flex;
  flex-direction: column;
}
.product-float small {
  color: #94a3b8;
  font-size: 0.48rem;
}
.product-float strong {
  margin-top: 1px;
  font-size: 0.58rem;
}

.case-feature {
  display: grid;
  min-height: 570px;
  grid-template-columns: 1.13fr 0.87fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}
.case-image {
  position: relative;
  min-height: 550px;
  overflow: hidden;
}
.case-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(15, 23, 42, 0.45));
  content: "";
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.case-feature:hover .case-image img {
  transform: scale(1.025);
}
.case-tag {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.45);
  color: white;
  backdrop-filter: blur(10px);
  font-size: 0.62rem;
  font-weight: 600;
}
.case-content {
  display: flex;
  padding: 48px;
  justify-content: center;
  flex-direction: column;
}
.case-client {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.case-content h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}
.case-content > p {
  margin-top: 19px;
  font-size: 0.85rem;
  line-height: 1.8;
}
.case-results {
  display: grid;
  margin: 32px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.case-results div {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.case-results strong {
  display: block;
  font-family: Manrope;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}
.case-results span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
}
.case-content .button {
  align-self: flex-start;
}
.case-grid {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.case-mini {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.case-mini:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.case-mini-art {
  position: relative;
  display: flex;
  height: 290px;
  padding: 25px;
  overflow: hidden;
  flex-direction: column;
  background: #e9efff;
}
.case-mini-art > span {
  position: relative;
  z-index: 2;
  font-family: Manrope;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.healthcare-art {
  background: linear-gradient(135deg, #e7f6f4, #d6eefc);
}
.health-ring {
  position: absolute;
  top: 40px;
  right: 35px;
  width: 210px;
  height: 210px;
  border: 36px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.12);
}
.health-ring::after {
  position: absolute;
  inset: 35px;
  border: 2px solid rgba(13, 148, 136, 0.35);
  border-radius: 50%;
  content: "";
}
.health-card,
.route-card {
  position: absolute;
  z-index: 2;
  bottom: 27px;
  left: 28px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  color: #475569;
  font-size: 0.6rem;
}
.health-card strong {
  display: block;
  margin-top: 4px;
  color: #0f766e;
  font-family: Manrope;
  font-size: 1.25rem;
}
.logistics-art {
  background: linear-gradient(145deg, #101a37, #24346b);
  color: white;
}
.logistics-art::before,
.logistics-art::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(129, 140, 248, 0.24);
  border-radius: 50%;
  content: "";
}
.logistics-art::before {
  top: -80px;
  right: -30px;
}
.logistics-art::after {
  bottom: -120px;
  left: 80px;
}
.map-line {
  position: absolute;
  top: 80px;
  right: 70px;
  width: 240px;
  height: 100px;
  border-top: 2px dashed rgba(165, 180, 252, 0.65);
  border-radius: 50%;
  transform: rotate(-15deg);
}
.map-line::before,
.map-line::after {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid #a5b4fc;
  border-radius: 50%;
  background: #182450;
  content: "";
}
.map-line::before {
  top: -8px;
  left: -4px;
}
.map-line::after {
  top: -8px;
  right: -4px;
}
.route-card {
  color: #64748b;
}
.route-card strong {
  margin-right: 5px;
  color: var(--blue);
  font-size: 1rem;
}
.case-mini-copy {
  padding: 27px 28px 30px;
}
.case-mini-copy > span {
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.case-mini-copy h3 {
  margin-top: 10px;
  font-size: 1.35rem;
  line-height: 1.35;
}
.case-mini-copy a {
  display: inline-flex;
  margin-top: 20px;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 600;
}
.case-mini-copy a svg {
  width: 14px;
  height: 14px;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}
.engagement-grid {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.engagement-card {
  position: relative;
  display: flex;
  min-height: 285px;
  padding: 30px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.035);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.engagement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.engagement-card.featured {
  border-color: rgba(79, 70, 229, 0.2);
  background: radial-gradient(
      circle at 100% 0,
      rgba(124, 58, 237, 0.11),
      transparent 34%
    ),
    white;
}
.engagement-card > span {
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.engagement-card h3 {
  margin-top: 17px;
  font-size: 1.35rem;
}
.engagement-card p {
  margin-top: 11px;
  font-size: 0.72rem;
  line-height: 1.75;
}
.engagement-card strong {
  margin-top: auto;
  padding-top: 22px;
  color: #334155;
  font-size: 0.68rem;
}
.engagement-card a {
  display: inline-flex;
  margin-top: 12px;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 600;
}
.engagement-card a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.engagement-card a:hover svg {
  transform: translateX(4px);
}
.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.comparison-head {
  position: relative;
  min-height: 86px;
  background: #0f172a;
  color: white;
}
.comparison-head > span:not(.vs) {
  display: flex;
  padding: 0 50px;
  align-items: center;
  font-family: Manrope;
  font-size: 1.1rem;
  font-weight: 700;
}
.comparison-head > span:first-child {
  color: #94a3b8;
}
.coderlyft-title {
  background: linear-gradient(
    110deg,
    rgba(79, 70, 229, 0.18),
    rgba(124, 58, 237, 0.14)
  );
}
.brand-mark.small {
  display: grid;
  width: 19px;
  height: 19px;
  margin-right: 9px;
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  gap: 2px;
}
.brand-mark.small i {
  display: block;
  border-radius: 2px;
  background: #818cf8;
}
.brand-mark.small i:nth-child(2) {
  background: #4f46e5;
}
.brand-mark.small i:nth-child(3) {
  grid-column: 2;
  background: #a78bfa;
}
.vs {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 4px solid #0f172a;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 0.55rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
}
.comparison-row {
  position: relative;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}
.comparison-row:last-child {
  border-bottom: 0;
}
.comparison-row::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
}
.comparison-row > strong {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: white;
  color: #64748b;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
}
.comparison-row > span {
  display: flex;
  padding: 25px 50px;
  align-items: center;
  gap: 13px;
  color: #64748b;
  font-size: 0.75rem;
}
.comparison-row > .ours {
  padding-left: 58px;
  background: linear-gradient(90deg, rgba(238, 242, 255, 0.6), transparent);
  color: #334155;
  font-weight: 500;
}
.comparison-row i {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
}
.comparison-row .typical i {
  background: #f1f5f9;
  color: #94a3b8;
}
.comparison-row .ours i {
  background: #eef2ff;
  color: var(--blue);
}
.comparison-row .ours svg {
  width: 13px;
  height: 13px;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.process-track::before {
  position: absolute;
  top: 62px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}
.process-step {
  position: relative;
  min-height: 230px;
  padding: 25px 40px 25px 0;
}
.step-number {
  color: #94a3b8;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.step-marker {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  margin-top: 25px;
  padding: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 1px var(--line);
}
.step-marker i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
.process-step h3 {
  margin-top: 25px;
  font-size: 1.08rem;
}
.process-step p {
  max-width: 270px;
  margin-top: 9px;
  font-size: 0.72rem;
  line-height: 1.7;
}

.stack-cloud {
  display: flex;
  max-width: 1030px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}
.stack-cloud span {
  display: inline-flex;
  min-height: 52px;
  padding: 6px 16px 6px 7px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 500;
  transition: 0.25s;
}
.stack-cloud span:hover {
  border-color: rgba(129, 140, 248, 0.4);
  background: rgba(79, 70, 229, 0.11);
  color: white;
  transform: translateY(-3px);
}
.stack-cloud i {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 5px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #a5b4fc;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rating-lockup > strong {
  font-family: Manrope;
  font-size: 3.5rem;
  letter-spacing: -0.07em;
}
.rating-lockup > span {
  display: flex;
  flex-direction: column;
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.rating-lockup small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  position: relative;
  display: flex;
  min-height: 410px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.035);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.quote-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #eef2ff;
  color: var(--blue);
}
.quote-mark svg {
  width: 20px;
  height: 20px;
}
.testimonial-stars {
  position: absolute;
  top: 39px;
  right: 30px;
  color: #f59e0b;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}
.testimonial-card blockquote {
  margin: 28px 0 35px;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.85;
}
.testimonial-card footer {
  display: flex;
  margin-top: auto;
  padding-top: 22px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.person-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e7ff, #ede9fe);
  color: #4338ca;
  font-size: 0.7rem;
  font-weight: 700;
  overflow: hidden;
}
.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card:nth-child(1) .person-avatar img {
  object-position: 14% 37%;
}
.testimonial-card:nth-child(2) .person-avatar img {
  object-position: 50% 33%;
}
.testimonial-card:nth-child(3) .person-avatar img {
  object-position: 86% 43%;
}
.testimonial-card footer > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.testimonial-card footer strong {
  font-size: 0.72rem;
}
.testimonial-card footer small {
  color: var(--muted);
  font-size: 0.57rem;
}
.testimonial-card footer b {
  max-width: 88px;
  margin-left: auto;
  color: var(--blue);
  font-family: Manrope;
  font-size: 0.52rem;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: right;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.insight-art {
  position: relative;
  display: block;
  height: 245px;
  padding: 22px;
  overflow: hidden;
}
.insight-art > span {
  position: relative;
  z-index: 2;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.insight-art > div {
  position: absolute;
  transition: transform 0.5s;
}
.insight-card:hover .insight-art > div {
  transform: scale(1.06) rotate(2deg);
}
.insight-ai {
  background: linear-gradient(145deg, #dfe5ff, #b9c3ff);
}
.insight-ai > div {
  right: 35px;
  bottom: 25px;
  width: 175px;
  height: 175px;
  border: 1px solid rgba(79, 70, 229, 0.25);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 26px rgba(255, 255, 255, 0.32),
    inset 0 0 0 50px rgba(79, 70, 229, 0.08);
}
.insight-ai > div::before,
.insight-ai > div::after {
  position: absolute;
  border-radius: 50%;
  background: #4f46e5;
  content: "";
  box-shadow: 0 0 25px rgba(79, 70, 229, 0.5);
}
.insight-ai > div::before {
  top: 20px;
  left: 40px;
  width: 12px;
  height: 12px;
}
.insight-ai > div::after {
  right: 16px;
  bottom: 47px;
  width: 9px;
  height: 9px;
}
.insight-software {
  background: linear-gradient(145deg, #e6f7f2, #bce6d9);
}
.insight-software > div {
  right: 25px;
  bottom: 25px;
  width: 240px;
  height: 150px;
  border-radius: 15px;
  background: #0f172a;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  transform: rotate(-4deg);
}
.insight-software > div::before {
  position: absolute;
  inset: 20px;
  background: repeating-linear-gradient(
    180deg,
    #5eead4 0 2px,
    transparent 2px 14px
  );
  opacity: 0.5;
  content: "";
  clip-path: polygon(
    0 0,
    75% 0,
    75% 10%,
    94% 10%,
    94% 20%,
    60% 20%,
    60% 30%,
    86% 30%,
    86% 40%,
    38% 40%,
    38% 50%,
    70% 50%,
    70% 60%,
    88% 60%,
    88% 70%,
    52% 70%,
    52% 80%,
    79% 80%,
    79% 90%,
    0 90%
  );
}
.insight-cloud {
  background: linear-gradient(145deg, #e4e9f5, #cbd5e1);
}
.insight-cloud > div {
  right: 35px;
  bottom: 35px;
  width: 200px;
  height: 90px;
  border-radius: 60px;
  background: white;
  box-shadow: 0 25px 45px rgba(51, 65, 85, 0.2);
}
.insight-cloud > div::before,
.insight-cloud > div::after {
  position: absolute;
  border-radius: 50%;
  background: white;
  content: "";
}
.insight-cloud > div::before {
  top: -48px;
  left: 40px;
  width: 100px;
  height: 100px;
}
.insight-cloud > div::after {
  top: -27px;
  right: 18px;
  width: 70px;
  height: 70px;
}
.insight-copy {
  padding: 26px 27px 30px;
}
.insight-copy > span {
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.insight-copy h3 {
  margin-top: 10px;
  font-size: 1.28rem;
  line-height: 1.38;
}
.insight-copy h3 a {
  transition: color 0.2s;
}
.insight-copy h3 a:hover {
  color: var(--blue);
}
.insight-copy p {
  margin-top: 12px;
  font-size: 0.73rem;
  line-height: 1.7;
}
.insight-copy .text-link {
  margin-top: 20px;
}

.careers-strip {
  padding: 0 0 24px;
  background: var(--soft);
}
.careers-card {
  display: grid;
  min-height: 230px;
  padding: 55px 60px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, #11182c, #202b52);
  color: white;
}
.careers-card .kicker {
  grid-column: 1;
  color: #a5b4fc;
}
.careers-card h2 {
  max-width: 800px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}
.careers-card .button {
  grid-column: 2;
  grid-row: 1/3;
}
.light-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  backdrop-filter: blur(8px);
}
.light-ghost:hover {
  background: white;
  color: var(--ink);
}

.contact-section {
  padding-top: 100px;
  background: var(--soft);
}
.contact-shell {
  display: grid;
  padding: 68px;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 70px;
  border: 1px solid #dfe5ee;
  border-radius: 32px;
  background: white;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}
.contact-copy {
  padding-top: 10px;
}
.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 4vw, 4rem);
}
.contact-copy > p {
  margin-top: 21px;
  font-size: 0.9rem;
  line-height: 1.8;
}
.contact-points {
  display: grid;
  margin-top: 28px;
  gap: 12px;
}
.contact-points > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 0.72rem;
}
.contact-points i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--blue);
}
.contact-points svg {
  width: 12px;
  height: 12px;
}
.contact-direct {
  display: flex;
  margin-top: 42px;
  padding-top: 25px;
  gap: 30px;
  border-top: 1px solid var(--line);
}
.contact-direct > a,
.contact-direct > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 0.7rem;
  font-weight: 600;
}
.contact-direct > a > svg,
.contact-direct > span > svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}
.contact-direct span span,
.contact-direct a span {
  display: flex;
  flex-direction: column;
}
.contact-direct small {
  color: #94a3b8;
  font-size: 0.55rem;
  font-weight: 500;
}
.strategy-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfcfe;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 15px;
}
.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-grid label > span {
  color: #334155;
  font-size: 0.66rem;
  font-weight: 600;
}
.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  outline: 0;
  background: white;
  color: var(--ink);
  font-size: 0.74rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field-grid textarea {
  min-height: 105px;
  padding-top: 12px;
  resize: vertical;
}
.field-grid input::placeholder,
.field-grid textarea::placeholder {
  color: #a8b2c1;
}
.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.field-grid label > small {
  color: #dc2626;
  font-size: 0.58rem;
}
.field-full {
  grid-column: 1/-1;
}
.form-submit {
  width: 100%;
  margin-top: 18px;
}
.form-submit:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
}
.submit-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: submit-spin 0.7s linear infinite;
}
@keyframes submit-spin {
  to {
    transform: rotate(360deg);
  }
}
.form-note {
  margin-top: 11px;
  text-align: center;
  font-size: 0.54rem;
  line-height: 1.5;
}
.form-alert {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.7rem;
  line-height: 1.5;
}
.form-alert.success {
  background: #ecfdf5;
  color: #047857;
}
.form-alert.error {
  background: #fef2f2;
  color: #b91c1c;
}

.site-footer {
  padding: 85px 0 25px;
  background: #070b16;
  color: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 0.72fr) 1.25fr;
  gap: 35px;
}
.brand-light {
  color: white;
}
.brand-light > span:last-child > span {
  color: #a5b4fc;
}
.footer-brand > p {
  max-width: 230px;
  margin-top: 19px;
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.7;
}
.socials {
  display: flex;
  margin-top: 23px;
  gap: 8px;
}
.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #1e293b;
  border-radius: 8px;
  color: #94a3b8;
  font-size: 0.65rem;
  font-weight: 700;
  transition: 0.2s;
}
.socials a:hover {
  border-color: #6366f1;
  background: #312e81;
  color: white;
  transform: translateY(-2px);
}
.footer-column,
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-column h3,
.footer-newsletter h3 {
  margin: 0 0 17px;
  font-size: 0.71rem;
  letter-spacing: -0.01em;
}
.footer-column a {
  margin: 5px 0;
  color: #64748b;
  font-size: 0.66rem;
  transition: color 0.2s;
}
.footer-column a:hover {
  color: white;
}
.footer-column a span {
  margin-left: 4px;
  padding: 2px 5px;
  border-radius: 99px;
  background: #312e81;
  color: #c7d2fe;
  font-size: 0.45rem;
}
.footer-newsletter p {
  font-size: 0.63rem;
  line-height: 1.7;
}
.footer-newsletter form {
  display: flex;
  width: 100%;
  margin-top: 17px;
  border: 1px solid #1e293b;
  border-radius: 10px;
  background: #0f172a;
}
.footer-newsletter input {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 0.66rem;
}
.footer-newsletter button {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  cursor: pointer;
}
.footer-newsletter button svg {
  width: 15px;
  height: 15px;
}
.newsletter-message {
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 9px;
  background: rgba(74, 222, 128, 0.08);
  color: #86efac;
  font-size: 0.62rem;
}
.newsletter-error {
  margin-top: 7px;
  color: #fca5a5;
  font-size: 0.56rem;
}
.footer-bottom {
  display: grid;
  margin-top: 65px;
  padding-top: 24px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid #172033;
  color: #475569;
  font-size: 0.58rem;
}
.footer-bottom div {
  display: flex;
  gap: 18px;
}
.footer-bottom a:hover {
  color: #94a3b8;
}
.footer-status {
  justify-self: end;
}
.footer-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.09);
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .desktop-nav a:nth-child(5),
  .desktop-nav a:nth-child(6),
  .desktop-nav a:nth-child(7),
  .desktop-nav a:nth-child(8) {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.6rem);
  }
  .hero-image-frame {
    width: 93%;
  }
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .metric-card:nth-child(3) {
    border-right: 0;
  }
  .metric-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
  .services-bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card.featured {
    grid-column: span 1;
  }
  .product-showcase {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 25px;
    padding: 40px;
  }
  .laptop {
    width: 560px;
    right: -70px;
  }
  .contact-shell {
    padding: 48px;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
  .footer-column:nth-child(5) {
    display: none;
  }
  .footer-newsletter {
    grid-column: 1/-1;
    max-width: 420px;
    margin-top: 20px;
  }
}

@media (max-width: 940px) {
  .section {
    padding: 100px 0;
  }
  .desktop-nav,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .mobile-nav.is-open {
    display: grid;
    gap: 4px;
  }
  .mobile-nav a {
    padding: 11px 10px;
    border-radius: 9px;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 500;
  }
  .mobile-nav a:hover {
    background: var(--soft);
    color: var(--ink);
  }
  .mobile-nav .button {
    margin-top: 8px;
    color: white;
  }
  .hero {
    min-height: auto;
    padding-top: 145px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 750px;
  }
  .hero-lede {
    max-width: 650px;
  }
  .hero-visual {
    min-height: 650px;
    margin-top: 20px;
  }
  .hero-image-frame {
    width: 88%;
    height: 590px;
  }
  .progress-card {
    left: 4%;
  }
  .impact-card {
    right: 2%;
  }
  .split-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .split-intro > p {
    max-width: 680px;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-card:nth-child(2n) {
    border-right: 0;
  }
  .metric-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }
  .metric-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card.wide {
    grid-column: span 2;
  }
  .industries-layout {
    grid-template-columns: 1fr;
  }
  .industry-feature {
    position: relative;
    top: 0;
    height: 500px;
  }
  .product-showcase {
    min-height: 900px;
    grid-template-columns: 1fr;
  }
  .product-copy {
    max-width: 620px;
  }
  .device-stage {
    margin-top: 10px;
  }
  .laptop {
    right: 3%;
    width: 85%;
  }
  .phone-mockup {
    right: 2%;
  }
  .case-feature {
    grid-template-columns: 1fr;
  }
  .case-image {
    min-height: 440px;
  }
  .case-content {
    padding: 40px;
  }
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  .engagement-card {
    min-height: 240px;
  }
  .comparison-head > span:not(.vs),
  .comparison-row > span {
    padding-right: 30px;
    padding-left: 30px;
  }
  .comparison-row > .ours {
    padding-left: 40px;
  }
  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-track::before {
    display: none;
  }
  .process-step {
    border-top: 1px solid var(--line);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-height: auto;
  }
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    max-width: 680px;
  }
  .footer-top {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .section {
    padding: 78px 0;
  }
  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .site-header {
    top: 8px;
  }
  .nav-shell {
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 7px 8px 7px 15px;
    border-radius: 15px;
  }
  .mobile-nav {
    width: calc(100% - 20px);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .brand {
    font-size: 1.12rem;
  }
  .hero {
    padding: 125px 0 70px;
  }
  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }
  .hero-lede {
    font-size: 0.96rem;
    line-height: 1.7;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-proof {
    margin-top: 27px;
  }
  .trust-row {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
  .hero-visual {
    min-height: 500px;
    margin-top: 10px;
  }
  .hero-image-frame {
    left: 0;
    width: 100%;
    height: 460px;
    border-radius: 90px 22px 22px 22px;
  }
  .progress-card {
    top: 55px;
    left: -5px;
    width: 180px;
    transform: scale(0.88);
    transform-origin: left top;
    animation: none;
  }
  .impact-card {
    right: -8px;
    bottom: 30px;
    width: 177px;
    transform: scale(0.9);
    transform-origin: right bottom;
    animation: none;
  }
  .ai-chip {
    display: none;
  }
  .marquee-track {
    gap: 45px;
  }
  .section-intro {
    margin-bottom: 42px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .metric-card,
  .metric-card:nth-child(3) {
    min-height: 180px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .metric-card:first-child {
    border-top: 0;
  }
  .service-card,
  .service-card.featured,
  .service-card.wide {
    grid-column: span 1;
    min-height: 280px;
  }
  .services-bento {
    grid-template-columns: 1fr;
  }
  .industry-feature {
    height: 430px;
  }
  .industry-feature-content {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }
  .industry-row {
    min-height: 86px;
    grid-template-columns: 36px 1fr auto;
  }
  .product-tabs {
    justify-content: flex-start;
    margin-right: 0;
    margin-left: 0;
  }
  .product-showcase {
    min-height: 760px;
    padding: 27px 22px;
    gap: 20px;
    border-radius: 22px;
  }
  .product-copy h3 {
    font-size: 2.2rem;
  }
  .device-stage {
    height: 330px;
  }
  .laptop {
    top: 25px;
    right: -100px;
    width: 520px;
    transform: scale(0.72) rotateY(-6deg);
    transform-origin: left top;
  }
  .phone-mockup {
    right: -3px;
    bottom: -5px;
    transform: scale(0.78) rotate(4deg);
    transform-origin: right bottom;
  }
  .product-float {
    bottom: 4px;
    left: 0;
  }
  .case-image {
    min-height: 350px;
  }
  .case-content {
    padding: 30px 24px;
  }
  .case-content h3 {
    font-size: 2rem;
  }
  .case-results {
    grid-template-columns: 1fr;
  }
  .case-results div {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .case-results span {
    margin-top: 0;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-mini-art {
    height: 250px;
  }
  .comparison-head {
    grid-template-columns: 1fr;
  }
  .comparison-head > span:not(.vs) {
    min-height: 63px;
    padding: 0 22px;
  }
  .comparison-head .vs {
    top: 50%;
  }
  .comparison-row {
    grid-template-columns: 1fr;
  }
  .comparison-row::after {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }
  .comparison-row > strong {
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }
  .comparison-row > span {
    min-height: 82px;
    padding: 23px 22px 23px 80px;
  }
  .comparison-row > .ours {
    padding-left: 80px;
  }
  .process-track {
    grid-template-columns: 1fr;
  }
  .process-step {
    min-height: 195px;
    padding-right: 0;
  }
  .stack-cloud {
    justify-content: flex-start;
  }
  .stack-cloud span {
    min-height: 48px;
  }
  .rating-lockup {
    margin-top: 8px;
  }
  .testimonial-card {
    padding: 25px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .careers-card {
    display: flex;
    padding: 40px 25px;
    align-items: flex-start;
    flex-direction: column;
  }
  .careers-card .button {
    width: 100%;
  }
  .contact-section {
    padding-top: 75px;
  }
  .contact-shell {
    padding: 30px 20px;
    border-radius: 23px;
  }
  .contact-copy h2 {
    font-size: 2.4rem;
  }
  .contact-direct {
    align-items: flex-start;
    flex-direction: column;
  }
  .strategy-form {
    padding: 22px 16px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: auto;
  }
  .site-footer {
    padding-top: 65px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 20px;
  }
  .footer-brand,
  .footer-newsletter {
    grid-column: 1/-1;
  }
  .footer-column:nth-child(5) {
    display: flex;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 13px;
    text-align: left;
  }
  .footer-bottom div {
    grid-row: 2;
  }
  .footer-status {
    justify-self: start;
  }
}

/* Reference-matched dark header and lead-generation hero */
.site-header {
  top: 0;
  background: #061b2c;
}

.site-header.scrolled {
  top: 0;
}

.nav-shell,
.site-header.scrolled .nav-shell {
  width: 100%;
  max-width: none;
  min-height: 76px;
  margin: 0;
  padding: 0 18px 0 21px;
  gap: 28px;
  border: 0;
  border-radius: 0;
  background: rgba(6, 27, 44, 0.98);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  min-width: 195px;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.055em;
}

.brand > span:last-child > span {
  color: #fff;
}

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

.brand-mark span,
.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  background: #fff;
}

.desktop-nav {
  justify-content: flex-start;
  gap: 35px;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 400;
}

.desktop-nav a svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.7;
}

.desktop-nav a::after {
  background: #1F7AEF;
}

.desktop-nav a:hover {
  color: #ffbd39;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.language-switcher {
  display: flex;
  height: 40px;
  padding: 0 10px 0 0;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #1d314a;
  font-size: 1.3rem;
  line-height: 1;
}

.language-switcher > .flag {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background-color: #163b70;
  background-position: center;
  background-size: cover;
}

.flag-uk {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'%3E%3Cpath fill='%23163b70' d='M0 0h36v24H0z'/%3E%3Cpath stroke='%23fff' stroke-width='5' d='m0 0 36 24M36 0 0 24'/%3E%3Cpath stroke='%23d3293d' stroke-width='2.4' d='m0 0 36 24M36 0 0 24'/%3E%3Cpath stroke='%23fff' stroke-width='8' d='M18 0v24M0 12h36'/%3E%3Cpath stroke='%23d3293d' stroke-width='4' d='M18 0v24M0 12h36'/%3E%3C/svg%3E");
}

.flag-us {
  background-image:
    linear-gradient(90deg, #23477c 0 45%, transparent 45%),
    repeating-linear-gradient(#d72d3e 0 8%, #fff 8% 16%);
  background-size: 100% 54%, 100% 100%;
  background-position: left top, center;
  background-repeat: no-repeat;
}

.flag-au {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'%3E%3Cpath fill='%23183f7b' d='M0 0h36v24H0z'/%3E%3Cpath stroke='%23fff' stroke-width='2.4' d='m0 0 16 11M16 0 0 11'/%3E%3Cpath stroke='%23d3293d' stroke-width='1' d='m0 0 16 11M16 0 0 11'/%3E%3Cpath stroke='%23fff' stroke-width='4' d='M8 0v11M0 5.5h16'/%3E%3Cpath stroke='%23d3293d' stroke-width='2' d='M8 0v11M0 5.5h16'/%3E%3Cg fill='%23fff'%3E%3Ccircle cx='26' cy='6' r='1.2'/%3E%3Ccircle cx='29' cy='15' r='1.2'/%3E%3Ccircle cx='21' cy='18' r='1'/%3E%3Ccircle cx='18' cy='13' r='.9'/%3E%3C/g%3E%3C/svg%3E");
}

.flag-in {
  background-image:
    radial-gradient(circle at center, #1b4c91 0 8%, transparent 9%),
    linear-gradient(#f19030 0 33.33%, #fff 33.33% 66.66%, #16824b 66.66%);
}

.call-disc {
  display: grid;
  width: 40px;
  height: 40px;
  margin-right: 1px;
  place-items: center;
  border-radius: 50%;
  background: #1F7AEF;
  color: #071b2b;
}

.call-disc svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.9;
}

.header-pill {
  display: inline-flex;
  min-width: 138px;
  min-height: 43px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

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

.header-pill-outline {
  border: 2px solid #f6f8fb;
  color: #fff;
}

.header-pill-outline:hover {
  background: #fff;
  color: #071b2b;
}

.header-pill-light {
  min-width: 155px;
  background: #f4f5f7;
  color: #071b2b;
}

.header-pill-light:hover {
  background: #1F7AEF;
}

.hero {
  min-height: 767px;
  padding: 108px 70px 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 72%, rgba(39, 33, 148, 0.72), transparent 38%),
    radial-gradient(circle at 18% 63%, rgba(84, 52, 109, 0.48), transparent 36%),
    linear-gradient(114deg, #071c2b 0%, #0a1b35 45%, #061d30 100%);
  color: #fff;
}

.hero::after {
  display: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.hero-glow-left {
  bottom: -180px;
  left: -120px;
  width: 560px;
  height: 410px;
  background: rgba(81, 49, 96, 0.46);
}

.hero-glow-center {
  bottom: -200px;
  left: 42%;
  width: 500px;
  height: 500px;
  background: rgba(30, 29, 142, 0.62);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1085px);
  margin: 0 auto;
  text-align: center;
}

.hero-topline {
  display: grid;
  width: min(100%, 585px);
  margin: 0 auto 45px;
  grid-template-columns: 125px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 27px;
}

.worldwide-pill {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 5px 14px 6px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #9fb2c5;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.worldwide-pill strong {
  color: #fff;
  font-weight: 500;
}

.hero-divider {
  display: block;
  width: 125px;
  height: 1px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-kicker {
  justify-self: start;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .hero-copy {
  max-width: none;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: Manrope, Inter, sans-serif !important;
  font-size: clamp(4rem, 5.75vw, 5.1rem);
  font-weight: 800 !important;
  line-height: 0.99;
  letter-spacing: -0.048em;
  text-transform: uppercase;
}

.hero h1 .hero-solid,
.hero h1 .hero-outline {
  display: block;
}

.hero h1 .hero-solid {
  color: #fff;
}

.hero h1 .hero-outline {
  margin-top: 3px;
  color: transparent;
  background: none;
  font-size: 0.97em;
  font-weight: 500;
  letter-spacing: -0.02em;
  transform: scaleX(1.12);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.96);
  text-stroke: 2px rgba(255, 255, 255, 0.96);
}

.hero .hero-lede {
  max-width: 990px;
  margin: 24px auto 0;
  color: #f1f4fb;
  font-size: 1rem;
  line-height: 1.58;
}

.review-row {
  display: flex;
  margin-top: 48px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.review-badge {
  display: flex;
  width: 181px;
  height: 55px;
  padding: 8px 11px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f8f8fa;
  color: #17346c;
  text-align: left;
}

.review-badge > span:last-child {
  display: flex;
  flex-direction: column;
}

.review-badge small {
  color: #1d4483;
  font-size: 0.44rem;
  font-weight: 700;
  line-height: 1.25;
}

.review-badge strong {
  color: #f4ab22;
  font-size: 0.75rem;
  line-height: 1.25;
  white-space: nowrap;
}

.review-emblem {
  margin-right: 11px;
  color: #164681;
  font-size: 1.55rem;
}

.goodfirms-badge {
  width: 181px;
}

.goodfirms-badge small:first-child {
  color: #1c315f;
  font-size: 0.62rem;
}

.goodfirms-badge small:last-child {
  margin-top: 1px;
  font-size: 0.38rem;
}

.scroll-cue {
  position: relative;
  display: block;
  width: 43px;
  height: 72px;
  border: 3px solid #fff;
  border-radius: 999px;
}

.scroll-cue::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: inherit;
  content: "";
}

.scroll-cue i {
  position: absolute;
  z-index: 1;
  top: 9px;
  left: 50%;
  width: 6px;
  height: 12px;
  border-radius: 99px;
  background: #fff;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0.2; transform: translate(-50%, 34px); }
}

.hero-cta-bar {
  position: relative;
  display: grid;
  width: min(100%, 548px);
  min-height: 60px;
  margin: 38px auto 0;
  overflow: visible;
  grid-template-columns: 1fr 1.14fr;
  border-radius: 9px;
  background: #f7f7f8;
}

.hero-cta-bar a {
  display: flex;
  padding: 11px 28px;
  align-items: center;
  justify-content: center;
  color: #05182a;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-cta-bar a:last-child {
  border-radius: 9px;
  background: #1F7AEF;
}

.hero-cta-bar a:hover {
  filter: brightness(1.04);
}

.cta-or {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 49.9%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #061c2d;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.social-rail {
  position: absolute;
  z-index: 4;
  top: 100px;
  right: 42px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.social-rail > span {
  width: 1px;
  height: 70px;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.3);
}

.social-rail a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #f7f7f8;
  color: #071b36;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-rail a:hover,
.social-rail a.active {
  background: #1F7AEF;
  transform: translateY(-2px);
}

.social-rail svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.social-rail a:first-of-type svg {
  fill: currentColor;
  stroke: none;
}

.social-rail b {
  font-size: 1rem;
  font-weight: 500;
}

.floating-book-call {
  position: absolute;
  z-index: 5;
  right: 8px;
  bottom: 10px;
  display: inline-flex;
  min-height: 36px;
  padding: 0 16px;
  align-items: center;
  border-radius: 999px;
  background: #1F7AEF;
  color: #071b2b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.floating-book-call:hover {
  background: #fff;
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 18px;
  }
  .brand {
    min-width: 165px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .header-pill {
    min-width: 122px;
    padding: 0 16px;
  }
  .header-pill-light {
    min-width: 135px;
  }
  .language-switcher > .flag:nth-last-child(2) {
    display: none;
  }
  .hero {
    padding-right: 88px;
    padding-left: 42px;
  }
}

@media (max-width: 940px) {
  .header-actions {
    display: none;
  }
  .site-header .menu-toggle {
    display: flex;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }
  .site-header .mobile-nav {
    margin-top: 0;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 0 0 16px 16px;
    background: rgba(6, 27, 44, 0.98);
  }
  .site-header .mobile-nav a {
    color: #fff;
  }
  .hero {
    min-height: auto;
    padding: 128px 70px 76px 28px;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 8.5vw, 4.5rem);
  }
  .hero .hero-lede {
    font-size: 0.94rem;
  }
  .social-rail {
    right: 18px;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .site-header.scrolled .nav-shell {
    width: 100%;
    min-height: 68px;
    padding: 0 15px;
    border-radius: 0;
  }
  .brand {
    min-width: 0;
    font-size: 1.18rem;
  }
  .hero {
    padding: 103px 18px 62px;
  }
  .hero-topline {
    display: flex;
    margin-bottom: 22px;
    align-items: center;
    flex-direction: column;
    gap: 17px;
  }
  .hero-divider {
    display: none;
  }
  .hero-kicker {
    justify-self: center;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    white-space: normal;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 1.02;
  }
  .hero h1 .hero-outline {
    margin-top: 7px;
    font-size: 0.8em;
    transform: none;
    -webkit-text-stroke-width: 1px;
  }
  .hero .hero-lede {
    margin-top: 22px;
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .review-row {
    margin-top: 35px;
    gap: 10px;
  }
  .review-badge {
    width: 140px;
    height: 50px;
    padding: 7px;
  }
  .review-emblem {
    margin-right: 6px;
    font-size: 1.1rem;
  }
  .review-badge small {
    font-size: 0.35rem;
  }
  .review-badge strong {
    font-size: 0.59rem;
  }
  .goodfirms-badge {
    width: 140px;
  }
  .goodfirms-badge small:first-child {
    font-size: 0.5rem;
  }
  .scroll-cue {
    display: none;
  }
  .hero-cta-bar {
    margin-top: 40px;
    grid-template-columns: 1fr;
    background: transparent;
    gap: 10px;
  }
  .hero-cta-bar a {
    min-height: 56px;
    border-radius: 9px;
    background: #f7f7f8;
  }
  .cta-or {
    display: none;
  }
  .social-rail,
  .floating-book-call {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Local Houschka Pro typography and transparent homepage header */
@font-face {
  font-family: "Houschka Pro";
  src: url("../fonts/houschka-pro/HouschkaPro-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Houschka Pro";
  src: url("../fonts/houschka-pro/HouschkaPro-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Houschka Pro";
  src: url("../fonts/houschka-pro/HouschkaPro-DemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Houschka Pro";
  src: url("../fonts/houschka-pro/HouschkaPro-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Houschka Pro";
  src: url("../fonts/houschka-pro/HouschkaPro-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
}

@font-face {
  font-family: "Houschka Pro";
  src: url("../fonts/houschka-pro/HouschkaPro-MediumItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --serif: "Houschka Pro", Arial, sans-serif;
  --site-font: "Houschka Pro", Arial, sans-serif;
}

html,
body,
button,
input,
textarea,
select,
body * {
  font-family: var(--site-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.hero h1,
.contact-copy h2,
.careers-card h2 {
  font-family: var(--site-font);
}

.site-header {
  background: transparent;
}

.site-header .nav-shell,
.site-header:not(.scrolled) .nav-shell {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.scrolled,
body.menu-open .site-header {
  background: rgba(6, 27, 44, 0.98);
}

.site-header.scrolled .nav-shell,
body.menu-open .site-header .nav-shell {
  background: rgba(6, 27, 44, 0.98);
  box-shadow: 0 10px 30px rgba(2, 12, 22, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 940px) {
  .site-header,
  .site-header .nav-shell,
  .site-header:not(.scrolled) .nav-shell {
    background: transparent;
  }

  .site-header.scrolled,
  .site-header.scrolled .nav-shell,
  body.menu-open .site-header,
  body.menu-open .site-header .nav-shell {
    background: rgba(6, 27, 44, 0.98);
  }

  .site-header .menu-toggle {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(6, 27, 44, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  body.menu-open .site-header .mobile-nav {
    background: rgba(6, 27, 44, 0.98);
  }
}

/* Mega menu navigation */
.desktop-nav .nav-item{position:static;display:flex;align-items:center;height:100%}
.desktop-nav .nav-link{border:0;background:none;color:inherit;font:inherit;font-weight:700;letter-spacing:.02em;display:flex;align-items:center;gap:5px;padding:28px 0;cursor:pointer}
.desktop-nav .nav-link svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;transition:transform .2s ease}
.has-mega-menu:hover .nav-link svg,.has-mega-menu:focus-within .nav-link svg{transform:rotate(180deg)}
.mega-menu{position:absolute;left:50%;top:calc(100% - 2px);width:min(1320px,calc(100vw - 32px));transform:translate(-50%,12px);display:grid;grid-template-columns:minmax(0,1fr) 310px;background:#fff;color:#07144b;border:1px solid #dce6f3;box-shadow:0 24px 70px rgba(2,18,48,.22);opacity:0;visibility:hidden;pointer-events:none;transition:.2s ease;z-index:50}
.has-mega-menu:hover .mega-menu,.has-mega-menu:focus-within .mega-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0)}
.mega-menu-content{padding:32px 34px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 42px}
.mega-menu-content.mega-menu-columns{grid-template-columns:repeat(3,minmax(0,1fr))}
.mega-menu-group h3{font-size:15px;color:#59616e;margin:0 0 20px;text-transform:none}
.desktop-nav .mega-menu-group a{display:block;color:#07144b;font-size:17px;font-weight:700;line-height:1.12;padding:0;margin:0 0 13px;text-transform:none}
.desktop-nav .mega-menu-group a:after{display:none}
.desktop-nav .mega-menu-group a:hover{color:#1F7AEF;transform:translateX(3px)}
.mega-menu-visual{position:relative;overflow:hidden;min-height:370px;background:#0b56e8;color:#fff!important}
.mega-menu-visual:after{display:none!important}.mega-menu-visual img{width:100%;height:100%;object-fit:cover;opacity:.38;transition:transform .4s ease}.mega-menu-visual:hover img{transform:scale(1.04)}
.mega-menu-visual>span{position:absolute;inset:0;padding:30px;display:flex;flex-direction:column;justify-content:flex-end;background:linear-gradient(180deg,rgba(11,86,232,.2),rgba(6,45,135,.95))}
.mega-menu-visual small{font-weight:800;font-size:12px}.mega-menu-visual strong{font-size:25px;line-height:1.1;margin:10px 0 24px}.mega-menu-visual b{display:flex;align-items:center;gap:8px;font-size:13px}.mega-menu-visual svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2}
.mobile-menu-group{border-bottom:1px solid rgba(255,255,255,.14)}.mobile-menu-group summary{list-style:none;display:flex;justify-content:space-between;align-items:center;padding:14px 0;font-weight:800}.mobile-menu-group summary::-webkit-details-marker{display:none}.mobile-menu-group summary svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2}.mobile-menu-group[open] summary svg{transform:rotate(180deg)}
.mobile-submenu{padding:0 0 14px 14px}.mobile-submenu h3{font-size:12px;opacity:.65;margin:12px 0 8px}.site-header .mobile-submenu a{font-size:14px!important;padding:8px 0!important;font-weight:600!important}
.simple-header{height:88px;padding:0 max(24px,5vw);display:flex;align-items:center;justify-content:space-between;background:#061b2c;color:#fff}.simple-header>a:last-child{font-weight:800;color:#fff}.page-main{background:#f5f8fc;min-height:calc(100vh - 88px)}.page-hero{padding:110px max(24px,8vw);background:linear-gradient(135deg,#061b2c,#0a3560);color:#fff}.page-hero h1{font-size:clamp(44px,7vw,92px);margin:12px 0 24px}.page-hero p{max-width:720px;font-size:21px;line-height:1.6;margin-bottom:34px}.page-content{padding:90px max(24px,8vw);max-width:1400px;margin:auto}.page-content>p{max-width:850px;font-size:19px;line-height:1.7}.page-feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:50px}.page-feature-grid article{background:#fff;padding:34px;border:1px solid #dbe6f3}.page-feature-grid b{color:#1F7AEF}.page-feature-grid h3{font-size:25px}
@media(max-width:940px){.page-feature-grid{grid-template-columns:1fr}.mega-menu{display:none}}

/* Refined header contrast and creative mega menu */
.site-header .desktop-nav > a,
.site-header .desktop-nav .nav-link {
  color: #fff !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}
.site-header .desktop-nav > a:hover,
.site-header .desktop-nav .nav-link:hover,
.site-header .has-mega-menu:focus-within .nav-link {
  color: #8fc1ff !important;
}

.mega-menu {
  grid-template-columns: minmax(0, 1fr) 310px;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
}
.mega-menu-content {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(31, 122, 239, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
}
.mega-menu-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  align-content: start;
}
.mega-menu-content.mega-menu-columns {
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.75fr);
}
.mega-menu-content.mega-menu-columns .mega-menu-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mega-menu-spotlight {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(31, 122, 239, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, #061b2c 0%, #0b3155 62%, #124b86 100%);
  color: #fff;
  overflow: hidden;
  align-self: stretch;
}
.mega-menu-spotlight:before,
.mega-menu-spotlight:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mega-menu-spotlight:before {
  width: 220px;
  height: 220px;
  right: -95px;
  top: -110px;
  border: 36px solid rgba(31, 122, 239, 0.28);
}
.mega-menu-spotlight:after {
  width: 110px;
  height: 110px;
  right: 40px;
  bottom: -62px;
  background: rgba(31, 122, 239, 0.2);
  filter: blur(2px);
}
.mega-menu-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(31, 122, 239, 0.18);
  border: 1px solid rgba(143, 193, 255, 0.32);
  color: #a9d0ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.mega-menu-spotlight h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 25px;
  line-height: 1.1;
  margin: 20px 0 12px;
  max-width: 390px;
}
.mega-menu-spotlight p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 440px;
}
.mega-menu-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.mega-menu-points span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 88px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  line-height: 1.3;
}
.mega-menu-points b {
  color: #69a9ff;
  font-size: 11px;
  letter-spacing: .08em;
}
.desktop-nav .mega-menu-spotlight > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.desktop-nav .mega-menu-spotlight > a:after { display: none; }
.mega-menu-spotlight > a svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }

@media (max-width: 1180px) {
  .mega-menu-content,
  .mega-menu-content.mega-menu-columns { grid-template-columns: minmax(0, 1fr) 330px; }
  .mega-menu-content.mega-menu-columns .mega-menu-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega-menu-points { grid-template-columns: 1fr; }
  .mega-menu-points span { min-height: 0; flex-direction: row; align-items: center; }
}
\n\n/* Final mega-menu refinements */\n.mega-menu-content-services {\n  grid-template-columns: minmax(0, 1fr) !important;\n}\n.mega-menu-content-services .mega-menu-links-grid {\n  grid-template-columns: repeat(3, minmax(0, 1fr));\n  gap: 24px 34px;\n  width: 100%;\n}\n.mega-menu-visual > span,\n.mega-menu-visual small,\n.mega-menu-visual strong,\n.mega-menu-visual b {\n  white-space: normal !important;\n  min-width: 0;\n  max-width: 100%;\n}\n.mega-menu-visual > span {\n  padding: 28px 24px;\n  overflow: hidden;\n}\n.mega-menu-visual strong {\n  display: block;\n  width: 100%;\n  font-size: clamp(19px, 1.65vw, 25px);\n  line-height: 1.16;\n  overflow-wrap: anywhere;\n  word-break: normal;\n  hyphens: auto;\n}\n.mega-menu-visual small,\n.mega-menu-visual b {\n  display: flex;\n  flex-wrap: wrap;\n  overflow-wrap: anywhere;\n}\n@media (max-width: 1180px) {\n  .mega-menu-content-services .mega-menu-links-grid {\n    grid-template-columns: repeat(3, minmax(0, 1fr));\n  }\n  .mega-menu-visual > span { padding: 24px 20px; }\n  .mega-menu-visual strong { font-size: 20px; }\n}\n

/* Mega menus: keep the WHY CODERLYFT panel and remove only the image panel */
.mega-menu,
.mega-menu.mega-menu-services {
  grid-template-columns: minmax(0, 1fr) !important;
}
.mega-menu-content,
.mega-menu-content.mega-menu-columns,
.mega-menu-content.mega-menu-content-services {
  width: 100%;
  grid-template-columns: minmax(300px, .85fr) minmax(520px, 1.55fr) !important;
  gap: 30px;
  padding: 28px 30px;
}
.mega-menu-content.mega-menu-columns,
.mega-menu-content.mega-menu-content-services {
  grid-template-columns: minmax(0, 1.45fr) minmax(420px, .95fr) !important;
}
.mega-menu-content-services .mega-menu-links-grid,
.mega-menu-content.mega-menu-columns .mega-menu-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mega-menu-spotlight {
  min-height: 350px;
  padding: 32px 34px;
}
.mega-menu-spotlight h3 {
  max-width: 620px;
  font-size: clamp(24px, 2vw, 32px);
}
.mega-menu-spotlight p {
  max-width: 680px;
  font-size: 16px;
}
.mega-menu-points span {
  min-height: 96px;
}
@media (max-width: 1180px) {
  .mega-menu-content,
  .mega-menu-content.mega-menu-columns,
  .mega-menu-content.mega-menu-content-services {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr) !important;
    gap: 22px;
  }
  .mega-menu-content-services .mega-menu-links-grid,
  .mega-menu-content.mega-menu-columns .mega-menu-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Full-width WHY CODERLYFT panel: remove the retired image column completely */
@media (min-width: 941px) {
  .desktop-nav .mega-menu,
  .desktop-nav .mega-menu.mega-menu-services {
    display: block !important;
    grid-template-columns: none !important;
  }

  .desktop-nav .mega-menu-content,
  .desktop-nav .mega-menu-content.mega-menu-columns,
  .desktop-nav .mega-menu-content.mega-menu-content-services {
    box-sizing: border-box;
    width: 100% !important;
    min-width: 100% !important;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.58fr) !important;
    align-items: stretch;
  }

  .desktop-nav .mega-menu-content.mega-menu-columns,
  .desktop-nav .mega-menu-content.mega-menu-content-services {
    grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.95fr) !important;
  }

  .desktop-nav .mega-menu-spotlight {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
}


/* Mobile header and navigation visibility refinement */
.mobile-book-call {
  display: none;
}

@media (max-width: 940px) {
  .site-header .nav-shell,
  .site-header:not(.scrolled) .nav-shell,
  .site-header.scrolled .nav-shell,
  body.menu-open .site-header .nav-shell {
    min-height: 82px;
    padding: 0 18px;
    gap: 12px;
    background: rgba(6, 27, 44, .98);
  }

  .site-header .brand {
    color: #fff !important;
    margin-right: auto;
  }
  .site-header .brand > span:last-child,
  .site-header .brand > span:last-child > span {
    color: #fff !important;
  }
  .site-header .brand-mark span,
  .site-header .brand-mark span:nth-child(2),
  .site-header .brand-mark span:nth-child(3) {
    background: #fff !important;
  }

  .mobile-book-call {
    display: inline-flex;
    min-height: 48px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: #061b2c !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header .menu-toggle {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-left: 0;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: #fff;
    color: #061b2c;
    box-shadow: none;
  }
  .site-header .menu-toggle svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }
  body.menu-open .site-header .menu-toggle {
    background: transparent;
    color: #fff;
  }

  .site-header .mobile-nav,
  body.menu-open .site-header .mobile-nav {
    width: calc(100% - 28px);
    max-height: calc(100vh - 102px);
    margin: 0 auto;
    padding: 18px 24px 24px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 0 0 24px 24px;
    background: #061b2c !important;
    box-shadow: 0 24px 50px rgba(0,0,0,.3);
  }

  .site-header .mobile-menu-group,
  .site-header .mobile-menu-group summary,
  .site-header .mobile-submenu,
  .site-header .mobile-submenu h3,
  .site-header .mobile-nav > a,
  .site-header .mobile-submenu a {
    color: #fff !important;
  }
  .site-header .mobile-menu-group summary {
    min-height: 58px;
    padding: 16px 2px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    font-size: 16px;
    letter-spacing: .04em;
  }
  .site-header .mobile-menu-group summary svg {
    stroke: #fff !important;
  }
  .site-header .mobile-submenu {
    padding: 6px 0 16px 12px;
  }
  .site-header .mobile-submenu h3 {
    opacity: .62;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .site-header .mobile-submenu a,
  .site-header .mobile-nav > a:not(.button) {
    display: block;
    padding: 11px 0 !important;
    background: transparent !important;
    font-size: 15px !important;
  }
  .site-header .mobile-nav .button {
    min-height: 54px;
    margin-top: 18px;
    border-radius: 999px;
    background: #1F7AEF;
    color: #fff !important;
  }
}

@media (max-width: 560px) {
  .site-header .nav-shell,
  .site-header:not(.scrolled) .nav-shell,
  .site-header.scrolled .nav-shell,
  body.menu-open .site-header .nav-shell {
    min-height: 76px;
    padding: 0 12px 0 16px;
    gap: 9px;
  }
  .site-header .brand {
    font-size: 1.08rem;
    gap: 8px;
  }
  .site-header .brand-mark {
    width: 22px;
    height: 22px;
    grid-template-columns: repeat(2, 7px);
    grid-template-rows: repeat(2, 7px);
  }
  .mobile-book-call {
    min-height: 44px;
    padding: 0 17px;
    font-size: 10px;
    letter-spacing: .11em;
  }
  .site-header .menu-toggle {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 390px) {
  .site-header .brand > span:last-child { font-size: .95rem; }
  .mobile-book-call { padding: 0 12px; font-size: 9px; }
  .site-header .menu-toggle { flex-basis: 44px; width: 44px; height: 44px; }
}

/* Country contact hover cards */
.language-switcher {
  position: relative;
  overflow: visible;
}

.country-contact {
  position: relative;
  display: grid;
  place-items: center;
}

.country-contact > .flag {
  appearance: none;
  padding: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.country-contact > .flag:hover,
.country-contact > .flag:focus-visible,
.country-contact.is-open > .flag {
  z-index: 2;
  transform: translateY(-2px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(31, 122, 239, 0.2), 0 8px 20px rgba(1, 13, 31, 0.35);
  outline: none;
}

.country-contact-card {
  position: absolute;
  z-index: 80;
  top: calc(100% + 18px);
  left: 50%;
  width: min(330px, calc(100vw - 28px));
  padding: 20px;
  border: 1px solid rgba(126, 181, 255, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(31, 122, 239, 0.28), transparent 42%),
    linear-gradient(145deg, #0b2843, #061a2d 70%);
  box-shadow: 0 24px 70px rgba(0, 10, 25, 0.46);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px) scale(0.96);
  transform-origin: 50% 0;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}

.country-contact-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(126, 181, 255, 0.26);
  border-left: 1px solid rgba(126, 181, 255, 0.26);
  background: #0b2843;
  transform: translateX(-50%) rotate(45deg);
}

.country-contact:hover .country-contact-card,
.country-contact:focus-within .country-contact-card,
.country-contact.is-open .country-contact-card {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.country-contact-topline {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.country-contact-mini-flag {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,.24);
}

.country-contact-topline span:last-child {
  display: grid;
  gap: 1px;
}

.country-contact-topline small {
  color: #80b7ff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.country-contact-topline strong {
  font-size: 1rem;
  letter-spacing: .01em;
}

.country-contact-phone {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: .02em;
}

.country-contact-card > p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  line-height: 1.55;
}

.country-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.country-action {
  display: grid;
  min-height: 66px;
  padding: 10px 7px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.country-action:hover,
.country-action:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.13);
  color: #fff;
  outline: none;
}

.country-action-call {
  background: linear-gradient(145deg, #1F7AEF, #1264cf);
  border-color: transparent;
}

.country-action-whatsapp {
  background: linear-gradient(145deg, rgba(37,211,102,.24), rgba(37,211,102,.08));
}

.country-action svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.whatsapp-mark {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #062314;
  font-size: .66rem;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .country-contact-card {
    left: auto;
    right: -76px;
    transform: translate(0, 12px) scale(.96);
  }
  .country-contact-card::before {
    left: auto;
    right: 84px;
    transform: rotate(45deg);
  }
  .country-contact:hover .country-contact-card,
  .country-contact:focus-within .country-contact-card,
  .country-contact.is-open .country-contact-card {
    transform: translate(0, 0) scale(1);
  }
}

.country-contact > .flag {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background-color: #163b70;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Mobile global contact experience */
.mobile-global-contact,
.mobile-contact-backdrop,
.mobile-contact-sheet {
  display: none;
}

@media (max-width: 940px) {
  .mobile-global-contact {
    display: grid;
    width: 100%;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(126, 181, 255, .2);
    border-radius: 18px;
    background:
      radial-gradient(circle at 100% 0, rgba(31,122,239,.28), transparent 42%),
      linear-gradient(145deg, rgba(19,58,94,.94), rgba(7,31,53,.98));
    color: #fff;
    text-align: left;
    box-shadow: 0 16px 36px rgba(0,10,25,.24);
  }

  .mobile-global-contact-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(145deg, #2f8cff, #1264cf);
    box-shadow: 0 9px 24px rgba(31,122,239,.34);
  }

  .mobile-global-contact-icon svg {
    width: 22px;
    height: 22px;
  }

  .mobile-global-contact > span:nth-child(2) {
    display: grid;
    gap: 2px;
  }

  .mobile-global-contact small {
    color: #80b7ff;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .15em;
  }

  .mobile-global-contact strong {
    font-size: .95rem;
    line-height: 1.15;
  }

  .mobile-global-flags {
    display: flex;
    padding-left: 7px;
  }

  .mobile-global-flags i {
    width: 27px;
    height: 27px;
    margin-left: -7px;
    border: 2px solid #0a263f;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
  }

  .mobile-contact-backdrop {
    position: fixed;
    z-index: 199;
    inset: 0;
    display: block;
    background: rgba(0, 12, 27, .7);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .mobile-contact-sheet {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    max-height: min(88vh, 820px);
    padding: 10px 16px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border: 1px solid rgba(126,181,255,.22);
    border-bottom: 0;
    border-radius: 30px 30px 0 0;
    background:
      radial-gradient(circle at 100% 0, rgba(31,122,239,.24), transparent 34%),
      linear-gradient(160deg, #0b2b49, #061a2d 62%);
    color: #fff;
    box-shadow: 0 -24px 70px rgba(0,10,25,.55);
    transform: translateY(105%);
    visibility: hidden;
    transition: transform .36s cubic-bezier(.2,.8,.2,1), visibility .36s ease;
  }

  body.mobile-contact-open {
    overflow: hidden;
  }

  body.mobile-contact-open .mobile-contact-backdrop {
    opacity: 1;
    visibility: visible;
  }

  body.mobile-contact-open .mobile-contact-sheet {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-contact-handle {
    width: 46px;
    height: 5px;
    margin: 1px auto 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.28);
  }

  .mobile-contact-sheet-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
  }

  .mobile-contact-sheet-head small {
    color: #80b7ff;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .16em;
  }

  .mobile-contact-sheet-head h2 {
    margin: 5px 0 4px;
    color: #fff;
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .mobile-contact-sheet-head p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: .82rem;
    line-height: 1.45;
  }

  .mobile-contact-close {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    color: #fff;
  }

  .mobile-contact-close svg {
    width: 20px;
    height: 20px;
  }

  .mobile-country-grid {
    display: grid;
    gap: 11px;
  }

  .mobile-country-card {
    padding: 15px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    box-shadow: inset 0 1px rgba(255,255,255,.05);
  }

  .mobile-country-card-head {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .mobile-country-flag {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    box-shadow: 0 8px 18px rgba(0,0,0,.22);
  }

  .mobile-country-card-head > span:last-child {
    display: grid;
  }

  .mobile-country-card-head small {
    color: #80b7ff;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-country-card-head strong {
    font-size: 1rem;
  }

  .mobile-country-phone {
    display: block;
    margin: 13px 0 12px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .02em;
  }

  .mobile-country-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-country-action {
    display: grid;
    min-height: 58px;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: .67rem;
    font-weight: 800;
  }

  .mobile-country-action svg {
    width: 19px;
    height: 19px;
  }

  .mobile-country-action.is-call {
    border-color: transparent;
    background: linear-gradient(145deg, #2f8cff, #1264cf);
  }

  .mobile-country-action.is-whatsapp {
    background: linear-gradient(145deg, rgba(37,211,102,.22), rgba(37,211,102,.07));
  }
}

@media (max-width: 390px) {
  .mobile-global-contact {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .mobile-global-contact-icon {
    width: 42px;
    height: 42px;
  }
  .mobile-global-flags {
    display: none;
  }
  .mobile-country-actions {
    gap: 6px;
  }
}

/* Modern gradient footer - header styles intentionally untouched */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px 0 24px;
  background:
    radial-gradient(circle at 8% 18%, rgba(31, 122, 239, 0.35), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(108, 60, 240, 0.34), transparent 30%),
    linear-gradient(135deg, #061827 0%, #0a2442 46%, #171956 100%);
  color: #fff;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(115deg, rgba(255,255,255,0.035), transparent 30%, rgba(31,122,239,0.06) 62%, transparent);
  pointer-events: none;
}
.footer-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent);
  pointer-events: none;
}
.footer-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.footer-orb-one {
  width: 340px;
  height: 340px;
  top: -180px;
  right: 18%;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 90px rgba(31,122,239,0.25), inset 0 0 90px rgba(31,122,239,0.12);
}
.footer-orb-two {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: -150px;
  background: rgba(108,60,240,0.16);
  box-shadow: 0 0 100px rgba(108,60,240,0.3);
}
.footer-container { position: relative; }
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
  padding: 32px 36px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  box-shadow: 0 22px 70px rgba(2,10,28,0.25);
  backdrop-filter: blur(18px);
}
.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8fc4ff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.footer-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1f7aef;
  box-shadow: 0 0 0 5px rgba(31,122,239,0.15);
}
.footer-cta h2 {
  max-width: 760px;
  margin: 10px 0 8px;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.footer-cta p {
  max-width: 720px;
  color: rgba(231,240,255,0.72);
  font-size: 0.72rem;
  line-height: 1.7;
}
.footer-cta-button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, #1f7aef, #6c3cf0);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 35px rgba(31,122,239,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-cta-button:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(31,122,239,0.38); }
.footer-cta-button svg { width: 16px; height: 16px; }
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2.35fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}
.footer-brand-card,
.footer-newsletter-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(4,18,38,0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
}
.footer-brand-card .brand { font-size: 1rem; }
.footer-brand-card > p {
  margin-top: 20px;
  color: rgba(225,235,250,0.66);
  font-size: 0.68rem;
  line-height: 1.75;
}
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.045);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.footer-socials a:hover {
  transform: translateY(-4px) rotate(5deg);
  border-color: transparent;
  background: linear-gradient(135deg, #1f7aef, #6c3cf0);
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: rgba(225,235,250,0.62);
  font-size: 0.58rem;
}
.footer-location span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,0.12);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
  padding: 22px 10px;
}
.site-footer .footer-column { min-width: 0; }
.site-footer .footer-column h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.69rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.site-footer .footer-column h3 span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg,#1f7aef,#8f72ff);
}
.site-footer .footer-column a {
  position: relative;
  width: fit-content;
  margin: 6px 0;
  color: rgba(222,233,248,0.66);
  font-size: 0.65rem;
  transition: color 0.22s ease, transform 0.22s ease;
}
.site-footer .footer-column a::before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  color: #68aaff;
  transition: opacity 0.22s ease;
}
.site-footer .footer-column a:hover { color: #fff; transform: translateX(12px); }
.site-footer .footer-column a:hover::before { opacity: 1; }
.site-footer .footer-column a em {
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(31,122,239,0.2);
  color: #9ac7ff;
  font-size: 0.45rem;
  font-style: normal;
}
.footer-newsletter-card h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.15;
}
.footer-newsletter-card > p {
  color: rgba(225,235,250,0.66);
  font-size: 0.64rem;
  line-height: 1.7;
}
.footer-newsletter-card form {
  display: flex;
  margin-top: 20px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(2,13,30,0.58);
}
.footer-newsletter-card input {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.62rem;
}
.footer-newsletter-card input::placeholder { color: rgba(255,255,255,0.42); }
.footer-newsletter-card button {
  display: grid;
  flex: 0 0 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg,#1f7aef,#6c3cf0);
  color: #fff;
  cursor: pointer;
}
.footer-newsletter-card button svg { width: 15px; height: 15px; }
.footer-newsletter-card > small {
  display: block;
  margin-top: 10px;
  color: rgba(225,235,250,0.42);
  font-size: 0.5rem;
}
.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(2,13,30,0.42);
  color: rgba(225,235,250,0.52);
  font-size: 0.56rem;
  backdrop-filter: blur(14px);
}
.site-footer .footer-bottom div { display: flex; gap: 18px; }
.site-footer .footer-bottom a { color: rgba(225,235,250,0.58); }
.site-footer .footer-bottom a:hover { color: #fff; }
.site-footer .footer-status { justify-self: end; }

@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 2fr; }
  .footer-newsletter-card { grid-column: 1 / -1; }
  .footer-links { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .site-footer { padding-top: 22px; }
  .footer-cta { grid-template-columns: 1fr; padding: 25px 22px; border-radius: 21px; }
  .footer-cta-button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, minmax(0,1fr)); padding: 8px 4px; }
  .site-footer .footer-bottom { grid-template-columns: 1fr; text-align: left; }
  .site-footer .footer-bottom div { grid-row: auto; flex-wrap: wrap; }
  .site-footer .footer-status { justify-self: start; }
}
@media (max-width: 430px) {
  .footer-cta h2 { font-size: 1.85rem; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 15px; }
  .footer-brand-card,
  .footer-newsletter-card { padding: 22px 18px; }
}

/* Sticky Let's Talk video widget */
.lets-talk-widget {
  position: fixed;
  right: clamp(14px, 2vw, 30px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 1200;
  width: min(310px, calc(100vw - 28px));
  color: #fff;
  font-family: "Houschka Pro", Arial, sans-serif;
  pointer-events: none;
}
.lets-talk-widget button,
.lets-talk-widget a {
  font: inherit;
}
.lets-talk-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 15.25;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  background: #061b2c;
  box-shadow:
    0 26px 70px rgba(1,13,28,0.38),
    0 8px 24px rgba(1,13,28,0.24);
  isolation: isolate;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transform-origin: right bottom;
  opacity: 1;
  visibility: visible;
  transition:
    transform .3s cubic-bezier(.2,.8,.2,1),
    opacity .22s ease,
    visibility .3s;
}
.lets-talk-video,
.lets-talk-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.lets-talk-video {
  z-index: -2;
  object-fit: cover;
  background:
    radial-gradient(circle at 70% 20%, rgba(30,171,239,.45), transparent 34%),
    linear-gradient(145deg, #071c30, #0b3c5a);
}
.lets-talk-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(1,13,28,0.28) 0%, rgba(1,13,28,0.02) 34%, rgba(1,13,28,0.82) 73%, rgba(1,13,28,0.96) 100%),
    radial-gradient(circle at 50% 56%, transparent 0 35%, rgba(1,13,28,0.2) 80%);
}
.lets-talk-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}
.lets-talk-audio-control,
.lets-talk-minimize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(3,15,31,0.58);
  color: #fff;
  box-shadow: 0 5px 16px rgba(0,0,0,0.14);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.lets-talk-audio-control:hover,
.lets-talk-minimize:hover {
  background: rgba(3,15,31,0.82);
  transform: translateY(-1px);
}
.lets-talk-audio-control:focus-visible,
.lets-talk-minimize:focus-visible,
.lets-talk-launcher:focus-visible,
.lets-talk-actions a:focus-visible {
  outline: 3px solid rgba(94,211,255,.92);
  outline-offset: 3px;
}
.lets-talk-audio-control {
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 400;
}
.lets-talk-audio-control svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}
.lets-talk-audio-control .lets-talk-muted-icon {
  display: none;
}
.lets-talk-audio-control.is-muted .lets-talk-volume-icon {
  display: none;
}
.lets-talk-audio-control.is-muted .lets-talk-muted-icon {
  display: block;
}
.lets-talk-minimize {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
}
.lets-talk-minimize svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}
.lets-talk-content {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  text-align: center;
}
.lets-talk-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(3,15,31,.4);
  color: rgba(255,255,255,.86);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.lets-talk-status i,
.lets-talk-launcher-label i,
.lets-talk-avatar i {
  display: block;
  border-radius: 50%;
  background: #42dc9b;
  box-shadow: 0 0 0 4px rgba(66,220,155,.14);
}
.lets-talk-status i {
  width: 6px;
  height: 6px;
}
.lets-talk-content h2 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.02;
  letter-spacing: -.03em;
}
.lets-talk-content > p {
  margin: 8px 0 15px;
  color: rgba(255,255,255,.76);
  font-size: .75rem;
}
.lets-talk-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.lets-talk-actions a {
  display: flex;
  min-width: 0;
  min-height: 68px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 4px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.15);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(13px);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.lets-talk-actions a:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.24);
  transform: translateY(-2px);
}
.lets-talk-actions a > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
}
.lets-talk-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.lets-talk-action-label {
  overflow: hidden;
  max-width: 100%;
  font-size: .65rem;
  font-weight: 400;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lets-talk-launcher {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 106px;
  flex-direction: column;
  align-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.9);
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    opacity .2s ease,
    visibility .28s;
}
.lets-talk-avatar {
  position: relative;
  display: block;
  width: 62px;
  height: 62px;
  padding: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 11px 28px rgba(1,13,28,.28);
}
.lets-talk-avatar video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  background: #061b2c;
}
.lets-talk-avatar i {
  position: absolute;
  right: 3px;
  bottom: 6px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
}
.lets-talk-launcher-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: -1px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: #073f49;
  box-shadow: 0 11px 26px rgba(1,13,28,.3);
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}
.lets-talk-launcher-label i {
  width: 6px;
  height: 6px;
}
.lets-talk-widget[data-widget-state="minimized"] .lets-talk-card {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(22px) scale(.76);
}
.lets-talk-widget[data-widget-state="minimized"] .lets-talk-launcher {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
@media (max-height: 680px) and (min-width: 621px) {
  .lets-talk-widget {
    width: min(270px, calc(100vw - 28px));
  }
}
@media (max-width: 620px) {
  .lets-talk-widget {
    right: 12px;
    bottom: 12px;
    width: min(292px, calc(100vw - 24px));
  }
  .lets-talk-widget[data-widget-ready="false"] .lets-talk-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(22px) scale(.76);
  }
  .lets-talk-widget[data-widget-ready="false"] .lets-talk-launcher {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .lets-talk-card {
    border-radius: 19px;
  }
  .lets-talk-content h2 {
    font-size: 1.38rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lets-talk-card,
  .lets-talk-launcher,
  .lets-talk-actions a,
  .lets-talk-audio-control,
  .lets-talk-minimize {
    transition: none;
  }
}

/* CoderLyft contact page */
.contact-page {
  background: #f7faff;
}

.contact-page main,
.contact-page main *:not(.contact-page-hero h1):not(.contact-page-hero h1 *) {
  font-family: "Houschka Pro", Arial, sans-serif !important;
}

.contact-page-header {
  position: absolute;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.contact-header-shell {
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  min-height: 82px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.contact-page-header .brand {
  min-width: auto;
}

.contact-page-header nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 34px;
}

.contact-page-header nav a {
  position: relative;
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.contact-page-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: #4ea1ff;
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .2s ease;
}

.contact-page-header nav a:hover {
  color: #fff;
}

.contact-page-header nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-header-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.contact-header-cta svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.contact-header-cta:hover {
  background: #fff;
  color: #061b2c;
  transform: translateY(-2px);
}

.contact-header-cta:hover svg {
  transform: translateX(3px);
}

.contact-page-hero {
  position: relative;
  min-height: 680px;
  padding: 178px 0 154px;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 18%, rgba(32, 117, 226, .22), transparent 26%),
    radial-gradient(circle at 29% 88%, rgba(83, 47, 161, .36), transparent 36%),
    linear-gradient(118deg, #061b2c 0%, #0a1b35 53%, #06243a 100%);
  color: #fff;
}

.contact-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 70%, transparent);
}

.contact-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.contact-hero-orb-one {
  bottom: -210px;
  left: -130px;
  width: 560px;
  height: 500px;
  background: rgba(103, 58, 128, .42);
}

.contact-hero-orb-two {
  top: 65px;
  right: -170px;
  width: 500px;
  height: 500px;
  background: rgba(17, 102, 191, .28);
}

.contact-page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-page-eyebrow {
  display: inline-flex;
  padding: 7px 14px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #bcd2e8;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-page-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3de08a;
  box-shadow: 0 0 0 5px rgba(61, 224, 138, .11);
}

.contact-page-hero h1 {
  max-width: 1040px;
  margin: 30px auto 0;
  color: #fff;
  font-family: Manrope, Inter, sans-serif !important;
  font-size: 69px;
  font-weight: 800 !important;
  line-height: 84px;
  letter-spacing: -.062em;
}

.contact-page-hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff 5%, #8fc5ff 52%, #c9a8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-page-hero p {
  max-width: 850px;
  margin: 30px auto 0;
  color: rgba(231, 240, 250, .78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-hero-proof {
  display: flex;
  margin-top: 36px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}

.contact-hero-proof span {
  display: inline-flex;
  padding: 8px 12px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .84);
  font-size: .71rem;
  font-weight: 500;
}

.contact-hero-proof svg {
  width: 14px;
  height: 14px;
  color: #64e4a3;
}

.contact-workspace {
  position: relative;
  z-index: 4;
  margin-top: -86px;
  padding: 0 0 120px;
}

.contact-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .72fr);
  align-items: start;
  gap: 20px;
}

.contact-form-panel,
.contact-journey-card,
.contact-direct-card {
  border: 1px solid #d5e2f1;
  box-shadow: none;
}

.contact-form-panel {
  padding: clamp(30px, 4.2vw, 58px);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(18, 74, 132, .08);
}

.contact-panel-heading {
  padding-bottom: 31px;
  border-bottom: 1px solid #e5ecf4;
}

.contact-panel-heading > span {
  color: #0b66c3;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.contact-panel-heading h2 {
  margin-top: 11px;
  color: #081a2c;
  font-family: "Houschka Pro", Arial, sans-serif !important;
  font-size: clamp(2.2rem, 3.2vw, 3.45rem);
  font-weight: 700 !important;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.contact-panel-heading p {
  max-width: 680px;
  margin-top: 15px;
  color: #607087;
  line-height: 1.7;
}

.contact-page-form {
  margin-top: 34px;
}

.contact-choice-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choice-group + .contact-choice-group {
  margin-top: 30px;
}

.contact-choice-group legend {
  width: 100%;
  margin-bottom: 14px;
  color: #172a3f;
  font-size: .75rem;
  font-weight: 750;
}

.contact-choice-group legend b,
.contact-input-grid label > span b {
  color: #1f7aef;
}

.contact-choice-grid {
  display: grid;
  gap: 10px;
}

.contact-service-choices {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.contact-choice-grid label {
  min-width: 0;
  cursor: pointer;
}

.contact-choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-choice-grid label > span {
  display: flex;
  min-height: 46px;
  padding: 9px 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #cfdaE8;
  border-radius: 10px;
  background: #fff;
  color: #536278;
  font-size: .67rem;
  font-weight: 550;
  line-height: 1.25;
  text-align: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.contact-choice-grid label > span i {
  display: block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border: 1.5px solid #6d87a5;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
  transition: background .2s ease, border-color .2s ease;
}

.contact-choice-grid input:focus-visible + span {
  outline: 3px solid rgba(31, 122, 239, .18);
  outline-offset: 2px;
}

.contact-choice-grid input:checked + span {
  border-color: #0968c7;
  background: #e9f3ff;
  color: #064d96;
  box-shadow: none;
}

.contact-choice-grid input:checked + span i {
  border-color: #1f7aef;
  background: #1f7aef;
}

.contact-field-error,
.contact-input-grid label > small {
  display: block;
  margin-top: 7px;
  color: #c62828;
  font-size: .62rem;
}

.contact-input-grid {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.contact-input-grid label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.contact-input-grid label > span {
  color: #263a50;
  font-size: .69rem;
  font-weight: 700;
}

.contact-input-grid input,
.contact-input-grid textarea {
  width: 100%;
  min-height: 53px;
  padding: 0 15px;
  border: 1px solid #d3deeb;
  border-radius: 10px;
  outline: 0;
  background: #fbfdff;
  color: #0f2237;
  font-size: .76rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-input-grid textarea {
  min-height: 142px;
  padding-top: 14px;
  resize: vertical;
}

.contact-input-grid input::placeholder,
.contact-input-grid textarea::placeholder {
  color: #9aa9ba;
}

.contact-input-grid input:focus,
.contact-input-grid textarea:focus {
  border-color: #1f7aef;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 122, 239, .09);
}

.contact-input-full {
  grid-column: 1 / -1;
}

.contact-file-field {
  margin-top: 25px;
}

.contact-file-heading {
  display: block;
  margin-bottom: 9px;
  color: #263a50;
  font-size: .69rem;
  font-weight: 700;
}

.contact-file-drop {
  display: flex;
  min-height: 116px;
  padding: 22px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1.5px dashed #b9caDC;
  border-radius: 12px;
  background: #f1f7ff;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-file-drop:hover,
.contact-file-drop.is-dragging {
  border-color: #1f7aef;
  background: #edf6ff;
  box-shadow: 0 0 0 4px rgba(31, 122, 239, .08);
}

.contact-file-drop.has-file {
  border-style: solid;
  border-color: #5b9ce8;
  background: #f2f8ff;
}

.contact-file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-file-icon {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: #e2f0ff;
  color: #1769c8;
}

.contact-file-icon svg {
  width: 22px;
  height: 22px;
}

.contact-file-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.contact-file-copy strong {
  color: #223a53;
  font-size: .73rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-file-copy small {
  color: #8090a4;
  font-size: .61rem;
}

.contact-consent-area {
  margin-top: 25px;
  padding: 19px 20px;
  border: 1px solid #dce6f1;
  border-radius: 12px;
  background: #f3f8fe;
}

.contact-consent-area > p {
  color: #6e7f92;
  font-size: .64rem;
  line-height: 1.65;
}

.contact-consent-area > p a {
  color: #1769c8;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-consents {
  display: grid;
  margin-top: 15px;
  gap: 11px;
}

.contact-consents label {
  cursor: pointer;
}

.contact-consents input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-consents label > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344a61;
  font-size: .67rem;
  line-height: 1.5;
}

.contact-consents label > span i {
  display: grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  place-items: center;
  border: 1px solid #aebed0;
  border-radius: 5px;
  background: #fff;
  color: transparent;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.contact-consents label > span i svg {
  width: 12px;
  height: 12px;
}

.contact-consents input:focus-visible + span i {
  outline: 3px solid rgba(31, 122, 239, .18);
  outline-offset: 2px;
}

.contact-consents input:checked + span i {
  border-color: #1f7aef;
  background: #1f7aef;
  color: #fff;
}

.contact-form-footer {
  display: flex;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-form-footer p {
  max-width: 420px;
  color: #7a899b;
  font-size: .62rem;
  line-height: 1.6;
}

.contact-submit-button {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
  min-width: 220px;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 10px;
  background: #0b67c6;
  box-shadow: 0 14px 28px rgba(11, 103, 198, .2);
  color: #fff;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-submit-button svg {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}

.contact-submit-button:hover {
  background: #0859ad;
  box-shadow: 0 18px 34px rgba(11, 103, 198, .26);
  transform: translateY(-2px);
}

.contact-submit-button:hover svg {
  transform: translateX(4px);
}

.contact-submit-button:disabled {
  cursor: wait;
  opacity: .75;
  transform: none;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-journey-card,
.contact-direct-card {
  padding: 31px;
  border-radius: 22px;
}

.contact-journey-card {
  border-color: #c9def6;
  background: #dfeeff;
}

.contact-sidebar-kicker {
  color: #1f7aef;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.contact-journey-card > h2,
.contact-direct-card > h2 {
  margin-top: 8px;
  color: #0b1f33;
  font-family: "Houschka Pro", Arial, sans-serif !important;
  font-size: 1.7rem;
  font-weight: 700 !important;
  line-height: 1.1;
  letter-spacing: -.04em;
}

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

.contact-journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
}

.contact-journey-step:not(:last-child) {
  padding-bottom: 27px;
}

.contact-journey-step:not(:last-child)::after {
  position: absolute;
  top: 31px;
  bottom: 5px;
  left: 16px;
  width: 1px;
  background: linear-gradient(#73a9df, #bcd6ee);
  content: "";
}

.contact-journey-step > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #a9caeb;
  border-radius: 9px;
  background: rgba(255, 255, 255, .72);
  color: #075baa;
  font-size: .6rem;
  font-weight: 800;
}

.contact-journey-step h3 {
  margin: 2px 0 5px;
  color: #203449;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: -.015em;
}

.contact-journey-step p {
  color: #56708a;
  font-size: .65rem;
  line-height: 1.55;
}

.contact-direct-card {
  border-color: #0864bd;
  background: #0a67c7;
  color: #fff;
}

.contact-direct-card .contact-sidebar-kicker {
  color: #cce5ff;
}

.contact-direct-card > h2 {
  color: #fff;
}

.contact-direct-links {
  margin-top: 24px;
}

.contact-direct-links > a {
  display: grid;
  min-height: 66px;
  padding: 12px 0;
  grid-template-columns: 38px 1fr 18px;
  align-items: center;
  gap: 11px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
}

.contact-direct-links > a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-direct-links > a > i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-style: normal;
}

.contact-direct-links > a > i svg {
  width: 17px;
  height: 17px;
}

.contact-direct-links .contact-whatsapp-icon {
  color: #baf5d5;
  font-size: .8rem;
  font-weight: 800;
}

.contact-direct-links > a > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: rgba(255, 255, 255, .88);
  font-size: .68rem;
}

.contact-direct-links > a small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .68);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .11em;
}

.contact-direct-links > a > svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, .45);
  transition: color .2s ease, transform .2s ease;
}

.contact-direct-links > a:hover > svg {
  color: #fff;
  transform: translateX(4px);
}

/* Contact company and recognition showcase */
.contact-company-showcase {
  overflow: hidden;
  padding: 88px 0 100px;
  background:
    radial-gradient(circle at 8% 0%, rgba(30, 124, 224, .09), transparent 27%),
    #fff;
}

.contact-company-overview {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 20px;
}

.contact-who-card,
.contact-client-signal,
.contact-choose-signal,
.contact-recognition-card {
  border-radius: 26px;
}

.contact-who-card {
  min-height: 388px;
  padding: 38px 38px 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(58, 175, 255, .24), transparent 34%),
    linear-gradient(145deg, #075aa9 0%, #086dc5 54%, #0877d5 100%);
  color: #fff;
  box-shadow: 0 24px 55px rgba(6, 86, 165, .18);
}

.contact-who-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.contact-who-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: clamp(2.15rem, 3.1vw, 3.25rem);
  font-weight: 700 !important;
  letter-spacing: -.035em;
  line-height: 1;
}

.contact-who-heading a {
  display: inline-flex;
  min-height: 49px;
  padding: 0 18px;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #fff;
  color: #075aa9;
  font-size: .77rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-who-heading a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(1, 49, 99, .2);
}

.contact-who-heading svg {
  width: 15px;
  height: 15px;
}

.contact-who-rule {
  height: 1px;
  margin: 27px 0 23px;
  background: rgba(255, 255, 255, .3);
}

.contact-who-card > p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.64;
}

.contact-who-card > p + p {
  margin-top: 14px;
}

.contact-company-signals {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.contact-client-signal,
.contact-choose-signal {
  overflow: hidden;
  border: 1px solid #d4e7fb;
  background: #e9f3ff;
}

.contact-client-signal {
  position: relative;
  display: grid;
  min-height: 184px;
  padding: 28px 31px;
  grid-template-columns: minmax(190px, .8fr) 1.2fr;
  align-items: center;
  gap: 24px;
}

.contact-client-signal::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(71, 141, 212, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 141, 212, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 30%, #000);
  pointer-events: none;
}

.contact-client-signal strong {
  display: block;
  color: #0757a4;
  font-size: clamp(3.15rem, 5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .85;
}

.contact-client-signal span {
  display: block;
  margin-top: 13px;
  color: #0757a4;
  font-size: 1.02rem;
  font-weight: 700;
}

.contact-client-signal p {
  margin: 4px 0 0;
  color: #47739f;
  font-size: .69rem;
}

.contact-client-orbits {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
}

.contact-client-orbits > span {
  display: grid;
  width: clamp(48px, 5vw, 67px);
  aspect-ratio: 1;
  margin: 0 0 0 clamp(-10px, -1vw, -5px);
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a64b7, #153a69);
  box-shadow: 0 8px 19px rgba(17, 68, 117, .14);
}

.contact-client-orbits > span:nth-child(2n) {
  background: linear-gradient(145deg, #70c2ff, #0872ca);
}

.contact-client-orbits > span:nth-child(3n) {
  background: linear-gradient(145deg, #28b9a9, #066976);
}

.contact-client-orbits i {
  position: relative;
  display: block;
  width: 28%;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
}

.contact-client-orbits i::after {
  position: absolute;
  width: 190%;
  height: 95%;
  border-radius: 999px 999px 45% 45%;
  background: rgba(255, 255, 255, .9);
  content: "";
  left: 50%;
  top: 116%;
  transform: translateX(-50%);
}

.contact-choose-signal {
  min-height: 184px;
  padding: 24px 29px 27px;
  background: #d9ebff;
}

.contact-signal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-signal-heading h3 {
  margin: 0;
  color: #074f98;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700 !important;
}

.contact-signal-heading > span {
  color: #4d97df;
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: -.18em;
  line-height: 1;
}

.contact-signal-grid {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.contact-signal-grid p {
  display: flex;
  min-height: 48px;
  margin: 0;
  padding: 8px 13px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(149, 190, 233, .52);
  border-radius: 9px;
  background: rgba(255, 255, 255, .82);
  color: #1c3d60;
  font-size: .7rem;
}

.contact-signal-grid strong {
  color: #064e96;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.contact-recognition-heading {
  display: flex;
  margin-top: 66px;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.contact-recognition-heading span {
  display: block;
  margin-bottom: 8px;
  color: #0870c8;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.contact-recognition-heading h2 {
  margin: 0;
  color: #071a2c;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: clamp(2.45rem, 4.4vw, 4.45rem);
  font-weight: 700 !important;
  letter-spacing: -.052em;
  line-height: .98;
}

.contact-recognition-heading > p {
  max-width: 390px;
  margin: 0 0 7px;
  color: #647b91;
  font-size: .8rem;
  line-height: 1.55;
}

.contact-recognition-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-recognition-card {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  padding: 28px 24px 25px;
  border: 1px solid #dce8f4;
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 162, 247, .12), transparent 44%),
    #f8fbff;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-recognition-card:hover {
  border-color: #a7d1f7;
  box-shadow: 0 20px 44px rgba(18, 91, 155, .11);
  transform: translateY(-5px);
}

.contact-recognition-seal {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid #8fc5f4;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #ddecfc);
  color: #0768bc;
  box-shadow:
    inset 0 0 0 8px #f7fbff,
    inset 0 0 0 10px #a5d2f8,
    0 14px 28px rgba(36, 108, 173, .12);
}

.contact-recognition-seal::before,
.contact-recognition-seal::after {
  position: absolute;
  z-index: -1;
  width: 17px;
  height: 74px;
  border-radius: 50%;
  border-left: 3px solid #62a9e6;
  content: "";
  top: 19px;
}

.contact-recognition-seal::before {
  left: -8px;
  transform: rotate(-14deg);
}

.contact-recognition-seal::after {
  right: -8px;
  border-right: 3px solid #62a9e6;
  border-left: 0;
  transform: rotate(14deg);
}

.contact-recognition-seal svg {
  width: 47px;
  height: 47px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.contact-recognition-seal-spark svg {
  fill: rgba(7, 104, 188, .12);
}

.contact-recognition-card h3 {
  margin: 0;
  color: #102a42;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700 !important;
}

.contact-recognition-card p {
  margin: 5px 0 0;
  color: #71859a;
  font-size: .69rem;
}

@media (max-width: 1060px) {
  .contact-workspace-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-company-overview {
    grid-template-columns: 1fr;
  }

  .contact-who-card {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .contact-header-shell {
    width: calc(100% - 28px);
    min-height: 72px;
  }

  .contact-page-header nav {
    display: none;
  }

  .contact-header-cta {
    min-height: 39px;
    padding: 0 14px;
    font-size: .62rem;
  }

  .contact-page-hero {
    min-height: 610px;
    padding: 132px 0 126px;
  }

  .contact-page-hero h1 {
    font-size: clamp(3rem, 13vw, 4.75rem);
    line-height: 1.05;
  }

  .contact-page-hero p {
    font-size: .94rem;
  }

  .contact-hero-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-hero-proof span {
    justify-content: center;
  }

  .contact-workspace {
    margin-top: -66px;
    padding-bottom: 82px;
  }

  .contact-form-panel {
    padding: 31px 21px;
    border-radius: 23px;
  }

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

  .contact-input-grid {
    grid-template-columns: 1fr;
  }

  .contact-input-full {
    grid-column: auto;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit-button {
    width: 100%;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-company-showcase {
    padding: 64px 0 74px;
  }

  .contact-who-card {
    padding: 29px 24px 27px;
    border-radius: 21px;
  }

  .contact-who-heading {
    align-items: flex-start;
  }

  .contact-who-heading a {
    min-height: 43px;
    padding: 0 14px;
  }

  .contact-company-signals {
    grid-template-rows: auto;
  }

  .contact-client-signal {
    grid-template-columns: 1fr;
  }

  .contact-client-orbits {
    justify-content: flex-start;
  }

  .contact-client-orbits > span {
    width: clamp(42px, 12vw, 60px);
  }

  .contact-recognition-heading {
    margin-top: 48px;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .contact-recognition-heading > p {
    margin: 0;
  }
}

@media (max-width: 430px) {
  .contact-page-header .brand {
    font-size: 1.04rem;
  }

  .contact-page-header .brand-mark {
    width: 22px;
    height: 22px;
  }

  .contact-header-cta {
    padding: 0 12px;
    letter-spacing: .08em;
  }

  .contact-page-hero h1 {
    font-size: 2.82rem;
    line-height: 1.06;
  }

  .contact-page-hero h1 span {
    display: inline;
  }

  .contact-page-eyebrow {
    font-size: .6rem;
  }

  .contact-panel-heading h2 {
    font-size: 2.05rem;
  }

  .contact-service-choices,
  .contact-industry-choices {
    grid-template-columns: 1fr;
  }

  .contact-choice-grid label > span {
    justify-content: flex-start;
    padding-right: 15px;
    padding-left: 15px;
    text-align: left;
  }

  .contact-journey-card,
  .contact-direct-card {
    padding: 25px 22px;
  }

  .contact-who-heading {
    flex-direction: column;
  }

  .contact-who-heading a {
    width: 100%;
    justify-content: center;
  }

  .contact-client-signal,
  .contact-choose-signal {
    padding: 24px 20px;
    border-radius: 21px;
  }

  .contact-client-orbits > span:nth-child(n+6) {
    display: none;
  }

  .contact-signal-grid {
    grid-template-columns: 1fr;
  }

  .contact-recognition-grid {
    grid-template-columns: 1fr;
  }

  .contact-recognition-card {
    min-height: 238px;
  }
}

/* Insights page */
.insights-page,
.insights-page main,
.insights-page main * {
  font-family: "Houschka Pro", Arial, sans-serif;
}

.insights-page {
  background: #fff;
}

.insights-hero {
  position: relative;
  min-height: 390px;
  padding: 154px 0 92px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 128, 255, .24), transparent 32%),
    radial-gradient(circle at 15% 110%, rgba(0, 175, 255, .18), transparent 38%),
    linear-gradient(115deg, #04192c 0%, #071c3c 48%, #091b49 100%);
}

.insights-hero::after {
  position: absolute;
  right: -10%;
  bottom: -110px;
  width: 520px;
  height: 320px;
  border: 1px solid rgba(115, 180, 255, .18);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.insights-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 80%, transparent);
}

.insights-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.insights-hero-orb-one {
  width: 240px;
  height: 240px;
  right: 12%;
  top: 78px;
  background: radial-gradient(circle, rgba(66, 145, 255, .24), transparent 70%);
}

.insights-hero-orb-two {
  width: 180px;
  height: 180px;
  left: 4%;
  bottom: -72px;
  background: radial-gradient(circle, rgba(45, 212, 191, .13), transparent 70%);
}

.insights-hero-inner {
  position: relative;
  z-index: 2;
}

.insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #9bc7ff;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.insights-eyebrow i {
  width: 27px;
  height: 1px;
  background: #63a9ff;
}

.insights-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 600 !important;
  line-height: .9;
  letter-spacing: -.045em;
}

.insights-hero > .container > p,
.insights-hero-inner > p {
  position: relative;
  z-index: 2;
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(230, 241, 255, .78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.insights-hero-watermark {
  position: absolute;
  z-index: 0;
  top: 25px;
  left: 255px;
  max-width: 920px;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(3.5rem, 6.7vw, 7.2rem);
  font-weight: 700;
  line-height: .85;
  letter-spacing: -.055em;
  white-space: nowrap;
  pointer-events: none;
}

.insights-filter-zone {
  position: relative;
  z-index: 7;
  min-height: 116px;
  padding: 0 0 28px;
  background:
    linear-gradient(145deg, rgba(218, 237, 255, .92), rgba(237, 247, 255, .96)),
    #eaf5ff;
}

.insights-filter-zone::before,
.insights-filter-zone::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.insights-filter-zone::before {
  inset: 0;
  opacity: .55;
  background:
    linear-gradient(155deg, transparent 48%, rgba(123, 190, 242, .14) 48%, transparent 66%),
    linear-gradient(22deg, transparent 52%, rgba(255, 255, 255, .72) 52%, transparent 73%);
}

.insights-filter {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr auto;
  align-items: stretch;
  min-height: 80px;
  margin-top: -24px;
  overflow: hidden;
  border: 1px solid rgba(179, 203, 229, .65);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(25, 74, 123, .12);
}

.insights-filter label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 22px;
}

.insights-filter label:not(:first-child)::before {
  position: absolute;
  width: 1px;
  height: 35px;
  left: 0;
  top: 50%;
  background: #e1e9f2;
  content: "";
  transform: translateY(-50%);
}

.insights-filter label > svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #60758c;
}

.insights-filter input,
.insights-filter select {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  color: #17324c;
  background: transparent;
  font-size: .92rem;
  font-weight: 500;
}

.insights-filter input::placeholder {
  color: #8a99a9;
}

.insights-filter select {
  cursor: pointer;
}

.insights-filter > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 168px;
  margin: 8px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #0a4fb8, #073995);
  box-shadow: 0 8px 22px rgba(8, 67, 160, .2);
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.insights-filter > button:hover {
  box-shadow: 0 11px 28px rgba(8, 67, 160, .28);
  transform: translateY(-1px);
}

.insights-filter > button svg {
  width: 18px;
  height: 18px;
}

.insights-lead-section {
  padding: 78px 0 88px;
}

.insights-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 45px;
  align-items: start;
}

.insights-featured-card {
  position: relative;
  min-width: 0;
  padding-bottom: 58px;
}

.insights-featured-visual {
  position: relative;
  display: block;
  height: 470px;
  overflow: hidden;
  border-radius: 17px;
  background: #071c37;
}

.insights-featured-visual::after,
.insights-latest-image::after,
.insights-post-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(1, 31, 64, .07), rgba(7, 55, 125, .28));
  content: "";
  transition: opacity .3s ease;
}

.insights-featured-visual img,
.insights-latest-image img,
.insights-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.insights-featured-card:hover img,
.insights-latest-card:hover img,
.insights-post-card:hover img {
  transform: scale(1.055);
}

.insights-visual-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 34, 72, .54);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, .06),
    0 20px 60px rgba(0, 0, 0, .25);
  backdrop-filter: blur(8px);
  font-size: 2.25rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.insights-featured-copy {
  position: relative;
  z-index: 3;
  width: calc(100% - 52px);
  margin: -88px auto 0;
  padding: 27px 30px 26px;
  border: 1px solid #e8eef5;
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 42px rgba(18, 45, 76, .12);
}

.insights-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #728397;
  font-size: .7rem;
  font-weight: 600;
}

.insights-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 5px;
  color: #0966b5;
  background: #eaf5ff;
  font-size: .66rem;
  font-weight: 700;
}

.insights-meta small {
  font-size: .68rem;
  font-weight: 600;
}

.insights-featured-copy h2 {
  margin: 13px 0 9px;
  color: #10263c;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.3vw, 2.55rem);
  font-weight: 600 !important;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.insights-featured-copy p {
  margin: 0;
  color: #64778a;
  font-size: .9rem;
  line-height: 1.55;
}

.insights-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #0758a5;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.insights-read-link svg {
  transition: transform .2s ease;
}

.insights-read-link:hover svg {
  transform: translateX(4px);
}

.insights-section-heading > span,
.insights-sidebar-heading > span {
  display: block;
  margin-bottom: 5px;
  color: #0d6abb;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.insights-section-heading h2,
.insights-sidebar-heading h2 {
  margin: 0;
  color: #10263c;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: clamp(2.25rem, 3.7vw, 3.45rem);
  font-weight: 600 !important;
  line-height: 1;
  letter-spacing: -.035em;
}

.insights-latest-list {
  margin-top: 20px;
}

.insights-latest-card {
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e4ebf2;
}

.insights-latest-card:first-child {
  padding-top: 0;
}

.insights-latest-image {
  position: relative;
  display: block;
  height: 124px;
  overflow: hidden;
  border-radius: 10px;
  background: #dbe9f6;
}

.insights-latest-card h3 {
  margin: 8px 0 6px;
  color: #142b42;
  font-size: 1.21rem;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.018em;
}

.insights-latest-card h3 a,
.insights-post-card h3 a {
  transition: color .2s ease;
}

.insights-latest-card h3 a:hover,
.insights-post-card h3 a:hover {
  color: #0965b4;
}

.insights-latest-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #6d7d8d;
  font-size: .78rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.insights-latest-card > div > small {
  display: block;
  margin-top: 6px;
  color: #8290a0;
  font-size: .66rem;
  font-weight: 600;
}

.insights-newsletter {
  position: relative;
  overflow: hidden;
  color: #12304b;
  background:
    linear-gradient(110deg, rgba(230, 243, 255, .98), rgba(214, 233, 255, .98)),
    #e5f2ff;
}

.insights-newsletter::before {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    radial-gradient(circle at 8% 130%, #fff 0 20%, transparent 20.5%),
    radial-gradient(circle at 92% -40%, rgba(103, 169, 238, .24) 0 26%, transparent 26.5%);
  content: "";
}

.insights-newsletter-orb {
  position: absolute;
  right: 10%;
  bottom: -93px;
  width: 240px;
  height: 190px;
  border: 24px solid rgba(255, 255, 255, .58);
  border-radius: 48% 52% 47% 53%;
  transform: rotate(-18deg);
}

.insights-newsletter-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 50px;
  align-items: center;
  min-height: 180px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.insights-newsletter-inner > div > span {
  color: #0965b4;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.insights-newsletter h2 {
  margin: 5px 0 4px;
  color: #102c46;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600 !important;
  line-height: 1.1;
}

.insights-newsletter h2 em {
  color: #0768bd;
  font-style: normal;
}

.insights-newsletter p {
  margin: 0;
  color: #667b8f;
  font-size: .82rem;
}

.insights-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 155px;
  gap: 12px;
}

.insights-newsletter form label {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(167, 195, 225, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
}

.insights-newsletter form label svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #6a8eb2;
}

.insights-newsletter input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #17324c;
  background: transparent;
  font-size: .86rem;
}

.insights-newsletter form button,
.insights-newsletter-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0a51bc, #073a96);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
}

.insights-library {
  padding: 80px 0 104px;
}

.insights-library-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 355px;
  gap: 48px;
  align-items: start;
}

.insights-library-heading {
  position: relative;
  margin-bottom: 15px;
  padding-right: 150px;
}

.insights-library-heading p {
  position: absolute;
  right: 0;
  bottom: 2px;
  margin: 0;
  color: #7e8ea0;
  font-size: .76rem;
  font-weight: 600;
}

.insights-post-list {
  min-height: 320px;
}

.insights-post-card {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 22px;
  padding: 21px 0;
  border-bottom: 1px solid #e3eaf1;
  transition: opacity .2s ease;
}

.insights-post-card[hidden] {
  display: none !important;
}

.insights-post-image {
  position: relative;
  display: block;
  height: 145px;
  overflow: hidden;
  border-radius: 11px;
  background: #dbe8f5;
}

.insights-post-card h3 {
  margin: 10px 0 7px;
  color: #142a41;
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.insights-post-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #6c7d8e;
  font-size: .84rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.insights-post-card .insights-read-link {
  margin-top: 10px;
  font-size: .67rem;
}

.insights-empty {
  margin-top: 28px;
  padding: 52px 28px;
  border: 1px dashed #bcd2e7;
  border-radius: 16px;
  text-align: center;
  background: #f4f9fe;
}

.insights-empty > span {
  color: #0d69b8;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.insights-empty h3 {
  margin: 8px 0 17px;
  color: #18324c;
  font-size: 1.35rem;
}

.insights-empty button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #0758a7;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
}

.insights-pagination {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 31px;
}

.insights-pagination a,
.insights-pagination span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dbe4ed;
  border-radius: 7px;
  color: #50657a;
  background: #fff;
  font-size: .77rem;
  font-weight: 700;
}

.insights-pagination span {
  border-color: transparent;
}

.insights-pagination a.active,
.insights-pagination a:hover {
  border-color: #1767c2;
  color: #0757aa;
  background: #eff7ff;
}

.insights-pagination a.next svg {
  width: 17px;
  height: 17px;
}

.insights-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
}

.insights-sidebar-card {
  padding: 27px 25px 8px;
  border: 1px solid #dce7f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 63, 100, .06);
}

.insights-sidebar-heading h2 {
  font-size: 2rem;
}

.insights-featured-list {
  margin-top: 15px;
}

.insights-featured-list > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid #e6edf3;
}

.insights-featured-list > a > svg {
  width: 17px;
  height: 17px;
  color: #9aabba;
  transition: color .2s ease, transform .2s ease;
}

.insights-featured-list > a:hover > svg {
  color: #0964b3;
  transform: translate(2px, -2px);
}

.insights-featured-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #0b65b6;
  background: #eaf5ff;
  font-size: .68rem;
  font-weight: 700;
}

.insights-featured-list small {
  display: block;
  margin-bottom: 3px;
  color: #14834f;
  font-size: .59rem;
  font-weight: 700;
  text-transform: uppercase;
}

.insights-featured-list strong {
  display: block;
  color: #2a4056;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.25;
}

.insights-sidebar-cta {
  position: relative;
  overflow: hidden;
  padding: 29px 27px;
  border-radius: 15px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(75, 164, 255, .25), transparent 34%),
    linear-gradient(140deg, #08294d, #07376b);
}

.insights-sidebar-cta::after {
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 170px;
  height: 170px;
  border: 25px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  content: "";
}

.insights-sidebar-cta > span {
  color: #8fc7ff;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.insights-sidebar-cta h2 {
  position: relative;
  z-index: 2;
  margin: 8px 0 20px;
  color: #fff;
  font-family: "Houschka Pro", Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 600 !important;
  line-height: 1.08;
}

.insights-sidebar-cta a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  padding: 0 16px;
  border-radius: 7px;
  color: #0a3766;
  background: #fff;
  font-size: .7rem;
  font-weight: 700;
}

.insights-page .desktop-nav > a[aria-current="page"] {
  color: #8dc6ff;
}

@media (max-width: 1080px) {
  .insights-filter {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .insights-filter > button {
    grid-column: 1 / -1;
    min-height: 53px;
    margin-top: 0;
  }

  .insights-lead-grid {
    grid-template-columns: 1fr;
  }

  .insights-featured-card {
    max-width: 790px;
  }

  .insights-latest-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .insights-latest-card {
    display: block;
    padding: 0;
    border: 0;
  }

  .insights-latest-image {
    height: 170px;
    margin-bottom: 15px;
  }

  .insights-library-grid {
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .insights-hero {
    min-height: 360px;
    padding: 140px 0 82px;
  }

  .insights-hero-watermark {
    display: none;
  }

  .insights-filter {
    grid-template-columns: 1fr 1fr;
  }

  .insights-search-field {
    grid-column: 1 / -1;
    min-height: 65px;
    border-bottom: 1px solid #e5ecf3;
  }

  .insights-filter label:nth-child(2)::before {
    display: none;
  }

  .insights-select-field {
    min-height: 62px;
  }

  .insights-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .insights-library-grid {
    grid-template-columns: 1fr;
  }

  .insights-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .insights-hero {
    min-height: 350px;
    padding: 133px 0 76px;
  }

  .insights-hero h1 {
    font-size: clamp(3.75rem, 18vw, 5.3rem);
  }

  .insights-hero-inner > p {
    font-size: .92rem;
    line-height: 1.6;
  }

  .insights-filter-zone {
    padding-bottom: 22px;
  }

  .insights-filter {
    grid-template-columns: 1fr;
    margin-top: -22px;
  }

  .insights-search-field,
  .insights-select-field {
    grid-column: auto;
    min-height: 59px;
    border-bottom: 1px solid #e5ecf3;
  }

  .insights-filter label:not(:first-child)::before {
    display: none;
  }

  .insights-filter > button {
    grid-column: auto;
    min-height: 52px;
    margin: 8px;
  }

  .insights-lead-section {
    padding: 58px 0 68px;
  }

  .insights-featured-card {
    padding-bottom: 0;
  }

  .insights-featured-visual {
    height: 350px;
  }

  .insights-featured-copy {
    width: calc(100% - 24px);
    margin-top: -68px;
    padding: 23px 21px;
  }

  .insights-featured-copy h2 {
    font-size: 1.75rem;
  }

  .insights-latest {
    margin-top: 55px;
  }

  .insights-latest-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .insights-latest-card {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid #e4ebf2;
  }

  .insights-latest-image {
    height: 112px;
    margin: 0;
  }

  .insights-latest-card h3 {
    font-size: 1.03rem;
  }

  .insights-latest-card p {
    display: none;
  }

  .insights-newsletter h2 {
    font-size: 1.72rem;
  }

  .insights-newsletter form {
    grid-template-columns: 1fr;
  }

  .insights-library {
    padding: 64px 0 78px;
  }

  .insights-library-heading {
    padding-right: 0;
  }

  .insights-library-heading p {
    position: static;
    margin-top: 9px;
  }

  .insights-post-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .insights-post-image {
    height: 220px;
  }

  .insights-post-card h3 {
    font-size: 1.28rem;
  }

  .insights-sidebar {
    grid-template-columns: 1fr;
  }

  .insights-pagination {
    gap: 6px;
  }

  .insights-pagination a,
  .insights-pagination span {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 390px) {
  .insights-featured-visual {
    height: 305px;
  }

  .insights-visual-mark {
    width: 92px;
    height: 92px;
    font-size: 1.8rem;
  }

  .insights-latest-card {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .insights-pagination a:nth-of-type(4) {
    display: none;
  }
}

/* Single insight article */
.insight-article-page,
.insight-article-page main,
.insight-article-page main * {
  font-family: "Houschka Pro", Arial, sans-serif;
}

.insight-article-page {
  background: #fff;
  color: #102033;
}

.insight-article-page h1,
.insight-article-page h2,
.insight-article-page h3 {
  font-family: "Houschka Pro", Arial, sans-serif;
}

.insight-article-page .desktop-nav > a[aria-current="page"] {
  color: #71afff;
}

.article-hero {
  position: relative;
  min-height: 690px;
  padding: 148px 0 40px;
  overflow: hidden;
  color: #fff;
  background: #041726;
}

.article-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 15, 26, .98) 0%, rgba(3, 18, 31, .88) 46%, rgba(3, 16, 28, .35) 78%, rgba(3, 15, 26, .58) 100%),
    linear-gradient(0deg, rgba(2, 13, 23, .92), transparent 38%);
  content: "";
  pointer-events: none;
}

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

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(.76) contrast(1.08);
  transform: scale(1.02);
}

.article-hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.article-hero-glow {
  position: absolute;
  z-index: 2;
  right: -140px;
  bottom: -190px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 126, 255, .37), transparent 69%);
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 502px;
  flex-direction: column;
}

.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(227, 239, 252, .62);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.article-breadcrumbs a {
  color: #a7ceff;
  transition: color .2s ease;
}

.article-breadcrumbs a:hover {
  color: #fff;
}

.article-hero-copy {
  max-width: 825px;
  margin-top: auto;
  padding: 54px 0 46px;
}

.article-label-row {
  display: flex;
  margin-bottom: 21px;
  align-items: center;
  gap: 13px;
  color: rgba(232, 241, 251, .7);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.article-label-row > span {
  padding: 7px 11px;
  border: 1px solid rgba(129, 181, 255, .36);
  border-radius: 99px;
  background: rgba(34, 113, 231, .18);
  color: #b9d8ff;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-label-row small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: inherit;
}

.article-label-row svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.article-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.3rem, 5.05vw, 5.25rem);
  font-weight: 500 !important;
  line-height: .98;
  letter-spacing: -.046em;
  text-wrap: balance;
}

.article-hero-copy > p {
  max-width: 685px;
  margin: 24px 0 0;
  color: rgba(230, 240, 250, .79);
  font-size: 1.12rem;
  line-height: 1.68;
}

.article-author-strip {
  display: grid;
  min-height: 84px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  grid-template-columns: 48px auto minmax(40px, 1fr) minmax(280px, 470px);
  align-items: center;
  gap: 15px;
}

.article-author-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: linear-gradient(135deg, #4b8ff8, #1754ad);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 10px 30px rgba(18, 94, 210, .25);
}

.article-author-strip div:nth-child(2) {
  display: flex;
  min-width: 235px;
  flex-direction: column;
}

.article-author-strip small {
  color: rgba(223, 235, 249, .56);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-author-strip strong {
  color: #fff;
  font-size: .86rem;
  font-weight: 500;
}

.article-author-rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .2), transparent);
}

.article-author-strip > span:last-child {
  color: rgba(222, 235, 248, .62);
  font-size: .78rem;
  line-height: 1.55;
}

.article-highlights {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 20%, rgba(61, 124, 238, .1), transparent 26%),
    #f2f5fb;
}

.article-highlights::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(0px, calc((100vw - var(--container)) / 2));
  width: 3px;
  background: linear-gradient(#347ff0, #6caeff);
  content: "";
}

.article-highlights-grid {
  display: grid;
  min-height: 252px;
  padding-top: 48px;
  padding-bottom: 48px;
  grid-template-columns: 180px minmax(0, 1fr) 148px;
  align-items: start;
  gap: 42px;
}

.article-highlights-title > span,
.article-section-kicker,
.article-author-panel-inner > div:nth-child(2) > span,
.article-related-heading span {
  display: block;
  margin-bottom: 9px;
  color: #2b70d5;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.article-highlights-title h2 {
  margin: 0;
  color: #0c2038;
  font-size: 1.65rem;
  font-weight: 500 !important;
}

.article-highlights ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.article-highlights li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 12px;
}

.article-highlights li > span {
  padding-top: 2px;
  color: #4085ea;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.article-highlights li p {
  margin: 0;
  color: #26374a;
  font-size: .86rem;
  line-height: 1.65;
}

.article-share > span {
  display: block;
  margin-bottom: 11px;
  color: #66768a;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-share > div {
  display: flex;
  gap: 7px;
}

.article-share a,
.article-share button {
  display: grid;
  width: 35px;
  height: 35px;
  padding: 0;
  place-items: center;
  border: 1px solid #d7e0ed;
  border-radius: 50%;
  background: #fff;
  color: #1e5fae;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 700;
  transition: .2s ease;
}

.article-share a:hover,
.article-share button:hover {
  border-color: #347ff0;
  background: #347ff0;
  color: #fff;
  transform: translateY(-2px);
}

.article-share svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.article-share > small {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #2b70d5;
  font-size: .65rem;
}

.article-jump-section {
  padding: 55px 0 45px;
  border-bottom: 1px solid #e5eaf1;
  background: #fff;
}

.article-jump-grid {
  display: grid;
  margin-top: 15px;
  border-top: 1px solid #dfe6ef;
  border-left: 1px solid #dfe6ef;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-jump-grid a {
  display: grid;
  min-height: 70px;
  padding: 0 20px;
  border-right: 1px solid #dfe6ef;
  border-bottom: 1px solid #dfe6ef;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  color: #286dcc;
  font-size: 1.06rem;
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}

.article-jump-grid a:hover,
.article-jump-grid a.active {
  background: #f2f7ff;
  color: #0c4ca5;
}

.article-jump-grid a span {
  color: #8ba4c4;
  font-size: .61rem;
  font-weight: 700;
}

.article-jump-grid svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform .2s ease;
}

.article-jump-grid a:hover svg {
  transform: translateX(3px);
}

.article-progress {
  position: fixed;
  z-index: 95;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.article-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #327cf0, #62b3ff);
}

.article-body-layout {
  display: grid;
  padding-top: 86px;
  padding-bottom: 110px;
  grid-template-columns: 190px minmax(0, 820px);
  justify-content: center;
  gap: 80px;
}

.article-side-rail {
  position: sticky;
  top: 112px;
  height: fit-content;
  padding-top: 7px;
}

.article-side-rail > span {
  display: block;
  margin-bottom: 18px;
  color: #8492a4;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.article-side-rail nav {
  display: grid;
  padding-left: 14px;
  border-left: 1px solid #dde5ee;
  gap: 4px;
}

.article-side-rail nav a {
  position: relative;
  padding: 6px 0;
  color: #68778a;
  font-size: .76rem;
  transition: color .2s ease;
}

.article-side-rail nav a::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 2px;
  height: 0;
  background: #377fe7;
  content: "";
  transform: translateY(-50%);
  transition: height .2s ease;
}

.article-side-rail nav a:hover,
.article-side-rail nav a.active {
  color: #1a63c6;
}

.article-side-rail nav a.active::before {
  height: 22px;
}

.article-side-cta {
  display: flex;
  margin-top: 27px;
  padding: 14px 0;
  border-top: 1px solid #e1e7ee;
  border-bottom: 1px solid #e1e7ee;
  align-items: center;
  gap: 8px;
  color: #1b64c7;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.4;
}

.article-side-cta svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
}

.article-prose > section {
  padding: 0 0 90px;
  scroll-margin-top: 110px;
}

.article-prose > section:last-of-type {
  padding-bottom: 54px;
}

.article-prose h2 {
  max-width: 720px;
  margin: 0 0 24px;
  color: #0b1e33;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  font-weight: 500 !important;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.article-prose > section > p {
  margin: 0 0 19px;
  color: #354457;
  font-size: 1rem;
  line-height: 1.83;
}

.article-principle-grid {
  display: grid;
  margin: 41px 0 5px;
  border-top: 1px solid #dfe6ef;
  border-left: 1px solid #dfe6ef;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-principle-grid > div {
  min-height: 210px;
  padding: 26px 23px;
  border-right: 1px solid #dfe6ef;
  border-bottom: 1px solid #dfe6ef;
  background: linear-gradient(145deg, #fff, #f8fbff);
}

.article-principle-grid strong {
  display: block;
  margin-bottom: 30px;
  color: #79a5df;
  font-size: .63rem;
  letter-spacing: .1em;
}

.article-principle-grid span {
  display: block;
  margin-bottom: 8px;
  color: #125bb8;
  font-size: 1.05rem;
  font-weight: 600;
}

.article-principle-grid p {
  margin: 0;
  color: #5b6c80;
  font-size: .8rem;
  line-height: 1.6;
}

.article-prose blockquote {
  position: relative;
  margin: 42px 0;
  padding: 37px 42px 37px 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(77, 146, 247, .26), transparent 40%),
    linear-gradient(130deg, #071b31, #0c2a4f);
  color: #fff;
}

.article-prose blockquote::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(111, 176, 255, .22);
  border-radius: 50%;
  content: "";
}

.article-prose blockquote > svg {
  position: absolute;
  top: 40px;
  left: 42px;
  width: 38px;
  height: 38px;
  fill: #5598f3;
  stroke: none;
}

.article-prose blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 1.82rem);
  font-weight: 400;
  line-height: 1.42;
}

.article-callout {
  margin-top: 36px;
  padding: 29px 32px;
  border-left: 3px solid #3f86ea;
  background: #eff5fd;
}

.article-callout > span {
  color: #2d72d2;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.article-callout h3 {
  margin: 9px 0 0;
  color: #12365f;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.45;
}

.article-roadmap {
  position: relative;
  display: grid;
  margin: 40px 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.article-roadmap::before {
  position: absolute;
  top: 27px;
  bottom: 27px;
  left: 26px;
  width: 1px;
  background: #d9e4f1;
  content: "";
}

.article-roadmap li {
  position: relative;
  display: grid;
  min-height: 118px;
  padding: 18px 0;
  grid-template-columns: 54px 1fr;
  gap: 25px;
}

.article-roadmap li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #cbdcf1;
  border-radius: 50%;
  background: #fff;
  color: #2f77dc;
  font-size: .67rem;
  font-weight: 700;
}

.article-roadmap h3 {
  margin: 1px 0 7px;
  color: #102943;
  font-size: 1.18rem;
  font-weight: 600;
}

.article-roadmap p {
  margin: 0;
  color: #58687b;
  font-size: .87rem;
  line-height: 1.68;
}

.article-ownership-card {
  display: grid;
  margin: 38px 0;
  border: 1px solid #d9e4f0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-ownership-card > div {
  min-height: 225px;
  padding: 29px 25px;
  border-right: 1px solid #d9e4f0;
  background: #f8fbff;
}

.article-ownership-card > div:last-child {
  border-right: 0;
}

.article-ownership-card span {
  color: #2f76d7;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.article-ownership-card h3 {
  margin: 35px 0 10px;
  color: #102943;
  font-size: 1.08rem;
  font-weight: 600;
}

.article-ownership-card p {
  margin: 0;
  color: #5c6c7f;
  font-size: .81rem;
  line-height: 1.63;
}

.article-end-cta {
  position: relative;
  padding: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(82, 148, 248, .24), transparent 36%),
    #071c33;
  color: #fff;
}

.article-end-cta::after {
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(120, 180, 255, .2);
  border-radius: 50%;
  content: "";
}

.article-end-cta > span {
  color: #8bbfff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-end-cta h2 {
  max-width: 590px;
  margin: 14px 0 29px;
  color: #fff;
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
}

.article-end-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #1357ad;
  font-size: .8rem;
  font-weight: 600;
}

.article-end-cta a svg,
.article-author-panel a svg,
.article-related-heading a svg,
.article-related-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform .2s ease;
}

.article-end-cta a:hover svg,
.article-author-panel a:hover svg,
.article-related-heading a:hover svg,
.article-related-link:hover svg {
  transform: translateX(3px);
}

.article-author-panel {
  padding: 65px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(50, 126, 238, .18), transparent 28%),
    #030c16;
  color: #fff;
}

.article-author-panel-inner {
  display: grid;
  grid-template-columns: 94px minmax(0, 820px);
  align-items: center;
  gap: 30px;
}

.article-author-monogram {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 1px solid rgba(130, 183, 255, .3);
  border-radius: 50%;
  background: linear-gradient(145deg, #236dd5, #0b315f);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.article-author-panel h2 {
  margin: 0 0 13px;
  color: #71afff;
  font-size: 1.65rem;
  font-weight: 500 !important;
}

.article-author-panel p {
  margin: 0;
  color: rgba(225, 235, 247, .69);
  font-size: .85rem;
  line-height: 1.72;
}

.article-author-panel a {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(126, 179, 248, .45);
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-related {
  padding: 75px 0 100px;
  background: #f3f6fa;
}

.article-related-heading {
  display: flex;
  margin-bottom: 30px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.article-related-heading h2 {
  margin: 0;
  color: #0c2037;
  font-size: 2.25rem;
  font-weight: 500 !important;
}

.article-related-heading > a {
  display: inline-flex;
  padding-bottom: 5px;
  border-bottom: 1px solid #94b8e5;
  align-items: center;
  gap: 8px;
  color: #1d64c4;
  font-size: .76rem;
  font-weight: 600;
}

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

.article-related-grid article {
  min-width: 0;
}

.article-related-image {
  position: relative;
  display: block;
  height: 190px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #dce6f2;
}

.article-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.article-related-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 21, 37, .65), transparent 60%);
  content: "";
}

.article-related-image span {
  position: absolute;
  z-index: 1;
  right: 13px;
  bottom: 12px;
  left: 13px;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.article-related-grid article:hover img {
  transform: scale(1.05);
}

.article-related-grid article > small {
  display: block;
  margin-bottom: 8px;
  color: #68788b;
  font-size: .64rem;
}

.article-related-grid h3 {
  min-height: 58px;
  margin: 0 0 15px;
  color: #112a45;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.38;
}

.article-related-grid h3 a {
  color: inherit;
}

.article-related-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1f67c8;
  font-size: .71rem;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .article-hero {
    min-height: 640px;
  }

  .article-author-strip {
    grid-template-columns: 48px auto 1fr;
  }

  .article-author-strip > span:last-child {
    display: none;
  }

  .article-highlights-grid {
    grid-template-columns: 150px minmax(0, 1fr) 120px;
    gap: 28px;
  }

  .article-body-layout {
    grid-template-columns: 160px minmax(0, 760px);
    gap: 50px;
  }

  .article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .article-related-image {
    height: 260px;
  }
}

@media (max-width: 840px) {
  .article-hero {
    min-height: 680px;
    padding-top: 132px;
  }

  .article-hero::after {
    background:
      linear-gradient(90deg, rgba(2, 15, 26, .97), rgba(3, 18, 31, .75)),
      linear-gradient(0deg, rgba(2, 13, 23, .96), transparent 54%);
  }

  .article-hero-media img {
    object-position: 63% center;
  }

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

  .article-share {
    grid-column: 2;
  }

  .article-body-layout {
    display: block;
    padding-top: 72px;
  }

  .article-side-rail {
    display: none;
  }

  .article-prose {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .article-hero {
    min-height: 690px;
    padding: 112px 0 28px;
  }

  .article-hero::after {
    background:
      linear-gradient(0deg, rgba(2, 14, 25, .98) 0%, rgba(3, 17, 29, .8) 72%, rgba(3, 17, 29, .7) 100%);
  }

  .article-hero-grid {
    background-size: 46px 46px;
  }

  .article-breadcrumbs {
    font-size: .59rem;
    letter-spacing: .11em;
  }

  .article-hero-copy {
    padding: 42px 0 31px;
  }

  .article-label-row {
    flex-wrap: wrap;
    gap: 7px 10px;
  }

  .article-hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.8rem);
    line-height: 1;
  }

  .article-hero-copy > p {
    margin-top: 18px;
    font-size: .96rem;
    line-height: 1.58;
  }

  .article-author-strip {
    min-height: 74px;
    padding-top: 17px;
    grid-template-columns: 42px 1fr;
    gap: 11px;
  }

  .article-author-avatar {
    width: 42px;
    height: 42px;
  }

  .article-author-strip strong {
    font-size: .76rem;
    line-height: 1.35;
  }

  .article-author-rule {
    display: none;
  }

  .article-highlights-grid {
    padding-top: 38px;
    padding-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .article-highlights::before {
    left: 0;
  }

  .article-highlights-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .article-highlights-title > span {
    margin-bottom: 5px;
  }

  .article-highlights-title h2 {
    font-size: 1.45rem;
  }

  .article-highlights li p {
    font-size: .82rem;
  }

  .article-share {
    grid-column: auto;
  }

  .article-jump-section {
    padding: 44px 0 38px;
  }

  .article-jump-grid {
    grid-template-columns: 1fr;
  }

  .article-jump-grid a {
    min-height: 60px;
    font-size: .94rem;
  }

  .article-body-layout {
    padding-top: 58px;
    padding-bottom: 78px;
  }

  .article-prose > section {
    padding-bottom: 69px;
  }

  .article-prose h2 {
    font-size: 2.12rem;
  }

  .article-prose > section > p {
    font-size: .94rem;
    line-height: 1.75;
  }

  .article-principle-grid,
  .article-ownership-card {
    grid-template-columns: 1fr;
  }

  .article-principle-grid > div {
    min-height: 164px;
  }

  .article-principle-grid strong {
    margin-bottom: 18px;
  }

  .article-prose blockquote {
    padding: 80px 26px 29px;
  }

  .article-prose blockquote > svg {
    top: 26px;
    left: 26px;
  }

  .article-prose blockquote p {
    font-size: 1.28rem;
  }

  .article-callout {
    padding: 24px;
  }

  .article-roadmap li {
    grid-template-columns: 48px 1fr;
    gap: 17px;
  }

  .article-roadmap li > span {
    width: 48px;
    height: 48px;
  }

  .article-roadmap::before {
    left: 23px;
  }

  .article-ownership-card > div {
    min-height: 175px;
    border-right: 0;
    border-bottom: 1px solid #d9e4f0;
  }

  .article-ownership-card > div:last-child {
    border-bottom: 0;
  }

  .article-ownership-card h3 {
    margin-top: 22px;
  }

  .article-end-cta {
    padding: 34px 27px;
  }

  .article-author-panel {
    padding: 54px 0;
  }

  .article-author-panel-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .article-author-monogram {
    width: 75px;
    height: 75px;
  }

  .article-author-panel h2 {
    font-size: 1.42rem;
  }

  .article-related {
    padding: 58px 0 76px;
  }

  .article-related-heading {
    align-items: start;
    flex-direction: column;
  }

  .article-related-heading h2 {
    font-size: 1.9rem;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-related-image {
    height: 230px;
  }

  .article-related-grid h3 {
    min-height: 0;
  }
}
/* ==========================================================================
   Service pages — cartoon corporate creative
   ========================================================================== */
.svc-page {
  --svc-accent: #FFCC00;
  --svc-block: #E63946;
  background: #f7f4ef;
}

.svc-page .site-header {
  background: rgba(6, 27, 44, 0.92);
}

.svc-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255, 204, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(31, 122, 239, 0.18), transparent 50%),
    linear-gradient(145deg, #061b2c 0%, #0a2f4a 48%, #123a5c 100%);
  color: #fff;
}

.svc-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.svc-hero-orb-a {
  width: 320px;
  height: 320px;
  top: -80px;
  right: 12%;
  background: rgba(255, 204, 0, 0.18);
  animation: svcOrb 9s ease-in-out infinite;
}
.svc-hero-orb-b {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 8%;
  background: rgba(124, 58, 237, 0.2);
  animation: svcOrb 11s ease-in-out infinite reverse;
}
.svc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 40%, transparent);
  pointer-events: none;
}
@keyframes svcOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.08); }
}

.svc-hero-grid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.svc-breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.svc-breadcrumb a:hover { color: var(--svc-accent); }
.svc-breadcrumb strong { color: #fff; font-weight: 600; }

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.svc-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--svc-accent);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.25);
  animation: svcPulse 1.8s ease-in-out infinite;
}
.svc-eyebrow.light { border-color: rgba(15,23,42,0.12); color: #0f172a; background: #fff; }
@keyframes svcPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.svc-hero-copy h1 {
  max-width: 14ch;
  margin: 0 0 20px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}
.svc-hero-copy > p {
  max-width: 52ch;
  margin: 0 0 28px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}
.svc-ghost-link {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
}
.svc-ghost-link:hover { color: var(--svc-accent); border-color: var(--svc-accent); }
.svc-ghost-link.light { color: #0f172a; border-color: rgba(15,23,42,0.25); }

.svc-outcome-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-outcome-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.svc-outcome-pills strong {
  color: var(--svc-accent);
  font-weight: 800;
}

.svc-hero-stage {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.svc-color-block {
  position: absolute;
  width: min(78%, 280px);
  height: min(72%, 300px);
  border-radius: 28px;
  background: var(--svc-block);
  transform: rotate(-6deg);
  animation: svcBlockTilt 6s ease-in-out infinite;
  box-shadow: 18px 22px 0 rgba(255, 204, 0, 0.85);
}
@keyframes svcBlockTilt {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}
.svc-bubble {
  position: absolute;
  border: 3px solid var(--svc-accent);
  border-radius: 18px;
  pointer-events: none;
}
.svc-bubble-one {
  width: 72px;
  height: 56px;
  top: 18%;
  left: 8%;
  animation: svcFloat 4s ease-in-out infinite;
}
.svc-bubble-two {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 22%;
  right: 12%;
  animation: svcFloat 5s ease-in-out infinite 0.6s;
}
@keyframes svcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.svc-hero-mascot {
  position: relative;
  z-index: 2;
  width: min(100%, 300px);
  margin: 0;
}
.svc-hero-mascot svg { width: 100%; height: auto; display: block; }

.cartoon-mascot .cm-float { transform-origin: center bottom; animation: svcMascotBob 3.6s ease-in-out infinite; }
.cartoon-mascot .cm-trophy,
.cartoon-mascot .cm-thumb,
.cartoon-mascot .cm-bulb-glow,
.cartoon-mascot .cm-code { animation: svcAccentWiggle 2.8s ease-in-out infinite; transform-origin: center; }
@keyframes svcMascotBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes svcAccentWiggle {
  0%, 100% { transform: rotate(0deg); }
  40% { transform: rotate(-3deg); }
  70% { transform: rotate(3deg); }
}

.svc-plane {
  position: absolute;
  left: 6%;
  bottom: 12%;
  width: 64px;
  z-index: 3;
  animation: svcPlane 7s linear infinite;
}
.svc-plane svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 6px 0 rgba(0,0,0,0.12)); }
@keyframes svcPlane {
  0% { transform: translate(0, 0) rotate(-8deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(220px, -90px) rotate(12deg); opacity: 0; }
}

.svc-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.svc-intro-layout h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}
.svc-intro-layout > p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #475569;
}

.svc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.svc-benefit-card {
  position: relative;
  padding: 28px 24px 30px;
  background: #fff;
  border: 2px solid #0f172a;
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--svc-accent);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
}
.svc-benefit-card:hover {
  transform: translate(-4px, -6px);
  box-shadow: 12px 14px 0 var(--svc-accent);
}
.svc-benefit-num {
  display: block;
  margin-bottom: 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  color: #94a3b8;
}
.svc-benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 3px solid #0f172a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
}
.svc-benefit-icon i {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--svc-accent);
  animation: svcPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
}
.svc-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #0f172a;
}
.svc-benefit-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.svc-deliver-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.svc-deliver-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}
.svc-deliver-copy p {
  margin: 0 0 28px;
  color: #64748b;
  font-size: 1.08rem;
}
.svc-deliver-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.svc-deliver-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 2px solid #0f172a;
  border-radius: 16px;
  font-weight: 600;
  color: #0f172a;
  transition: transform 0.25s ease;
}
.svc-deliver-list li:hover { transform: translateX(6px); }
.svc-check {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--svc-accent);
  border: 2px solid #0f172a;
  display: grid;
  place-items: center;
}
.svc-check svg {
  width: 14px;
  height: 14px;
  stroke: #0f172a;
  stroke-width: 2.5;
  fill: none;
}

.svc-process .section-intro h2 { color: #fff; }
.svc-process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.svc-process-step {
  padding: 28px 22px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.svc-process-step:hover {
  border-color: var(--svc-accent);
  transform: translateY(-6px);
}
.svc-process-step span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--svc-accent);
  color: #0f172a;
  font-weight: 800;
  font-size: 12px;
}
.svc-process-step h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.35rem;
}
.svc-process-step p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.svc-related-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 2px solid #0f172a;
  border-radius: 22px;
  box-shadow: 6px 6px 0 #0f172a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-related-card:hover {
  transform: translate(-3px, -5px);
  box-shadow: 10px 12px 0 var(--svc-accent);
}
.svc-related-mascot {
  height: 120px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--svc-block) 18%, white), #fff);
  border-radius: 16px;
  border: 2px dashed rgba(15,23,42,0.15);
  overflow: hidden;
}
.svc-mini-mascot { width: 110px; margin: 0; }
.svc-mini-mascot svg { width: 100%; height: auto; }
.svc-related-copy {
  display: grid;
  gap: 4px;
}
.svc-related-copy small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.svc-related-copy strong {
  font-size: 1.05rem;
  color: #0f172a;
}
.svc-related-copy em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-style: normal;
  font-weight: 700;
  color: #1F7AEF;
  font-size: 0.92rem;
}
.svc-related-copy em svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.svc-cta-band {
  position: relative;
  padding: 64px 0 88px;
  background:
    linear-gradient(120deg, #FFCC00 0%, #ffe566 45%, #fff3b0 100%);
  overflow: hidden;
}
.svc-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  background: #fff;
  border: 3px solid #0f172a;
  border-radius: 32px;
  box-shadow: 12px 12px 0 #0f172a;
}
.svc-cta-mascot { width: 140px; }
.svc-cta-figure { margin: 0; width: 100%; }
.svc-cta-figure svg { width: 100%; height: auto; }
.svc-cta-inner h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: #0f172a;
}
.svc-cta-inner p {
  margin: 0;
  max-width: 48ch;
  color: #475569;
}
.svc-cta-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

/* Homepage cartoon capabilities strip */
.home-cartoon-strip {
  position: relative;
  padding: 72px 0 40px;
  background:
    linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
  overflow: hidden;
}
.home-cartoon-strip::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, #0f172a 0 24px, #FFCC00 24px 48px, #E63946 48px 72px, #1D4ED8 72px 96px);
}
.home-cartoon-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}
.home-cartoon-head h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
}
.home-cartoon-head p {
  margin: 0;
  color: #64748b;
  font-size: 1.08rem;
}
.home-cartoon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.home-cartoon-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 2px solid #0f172a;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-cartoon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 0 var(--card-accent, #FFCC00);
}
.home-cartoon-card-art {
  position: relative;
  height: 170px;
  border-radius: 18px;
  background: var(--card-block, #E63946);
  display: grid;
  place-items: center;
}
.home-cartoon-card-art .cartoon-mascot {
  width: 150px;
  margin: 0;
}
.home-cartoon-card-art .cartoon-mascot svg { width: 100%; height: auto; }
.home-cartoon-card span.tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #0f172a;
  color: #FFCC00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-cartoon-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #0f172a;
}
.home-cartoon-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}
.home-cartoon-card .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #1F7AEF;
}
.home-cartoon-card .go svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.home-service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.home-service-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #0f172a;
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.home-service-links a:hover {
  background: #FFCC00;
  transform: translateX(4px);
}
.home-service-links a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .svc-hero-grid-layout,
  .svc-intro-layout,
  .svc-deliver-layout,
  .home-cartoon-head {
    grid-template-columns: 1fr;
  }
  .svc-benefit-grid,
  .svc-process-track,
  .svc-related-grid,
  .home-cartoon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-cta-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .home-service-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .svc-hero { padding: 120px 0 56px; }
  .svc-benefit-grid,
  .svc-process-track,
  .svc-related-grid,
  .home-cartoon-grid,
  .home-service-links {
    grid-template-columns: 1fr;
  }
  .svc-hero-stage { min-height: 300px; }
  .svc-outcome-pills span { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-hero-orb,
  .svc-color-block,
  .svc-bubble,
  .svc-plane,
  .cartoon-mascot .cm-float,
  .cartoon-mascot .cm-trophy,
  .cartoon-mascot .cm-thumb,
  .cartoon-mascot .cm-bulb-glow,
  .cartoon-mascot .cm-code,
  .svc-eyebrow i,
  .svc-benefit-icon i {
    animation: none !important;
  }
}
