:root {
  --ink: #07090d;
  --ink-soft: #0d1118;
  --surface: rgba(18, 24, 34, 0.72);
  --surface-strong: rgba(23, 31, 44, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(0, 229, 255, 0.32);
  --white: #ffffff;
  --text: #f4f7fb;
  --muted: #9aa7b8;
  --muted-light: #c6d0dc;
  --blue: #2979ff;
  --cyan: #00e5ff;
  --gold: #d4af37;
  --success: #55e6a5;
  --danger: #ff8c8c;
  --gradient: linear-gradient(120deg, var(--blue), var(--cyan) 62%, #9df6ff);
  --gradient-gold: linear-gradient(120deg, #fff1a8, var(--gold));
  --shadow-sm: 0 16px 48px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 32px 96px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-height: 84px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 2%, rgba(41, 121, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 86% 14%, rgba(0, 229, 255, 0.08), transparent 27rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  opacity: 1;
  transition: opacity 0.45s ease;
}

body.is-ready {
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

::selection {
  color: #041014;
  background: var(--cyan);
}

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

img {
  height: auto;
}

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

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

button,
summary,
select {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: var(--white);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

p {
  color: var(--muted-light);
}

ul,
ol {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid rgba(0, 229, 255, 0.72);
  outline-offset: 4px;
}

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

.section {
  position: relative;
  padding-block: clamp(80px, 10vw, 148px);
}

.section-tight {
  padding-block: clamp(56px, 7vw, 94px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(38px, 6vw, 70px);
}

.section-heading.centered,
.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.section-heading.centered > p:last-child,
.section-heading-centered > p:last-child {
  margin-inline: auto;
}

.split-heading {
  display: grid;
  align-items: end;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 64px;
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #aaf8ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker-dot,
.status-dot,
.status-indicator,
.status-pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 229, 255, 0.1), 0 0 18px var(--cyan);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.gradient-text,
.text-gradient {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.gold-text {
  color: transparent;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !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;
  padding: 12px 18px;
  color: #031016;
  border-radius: var(--radius-pill);
  background: var(--cyan);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.glass-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(12, 17, 25, 0.68);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  content: "";
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.1), transparent 22%, transparent 78%, rgba(0, 229, 255, 0.05));
  opacity: 0.72;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(7, 9, 13, 0.78);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner,
.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--white);
  place-items: center;
}

.brand-mark::after {
  position: absolute;
  z-index: -1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  content: "";
  background: rgba(0, 229, 255, 0.25);
  filter: blur(14px);
}

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

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

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

.site-nav > a:not(.button) {
  position: relative;
  padding: 11px 15px;
  color: var(--muted-light);
  border-radius: var(--radius-pill);
  font-size: 0.89rem;
  font-weight: 620;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 15px;
  bottom: 7px;
  left: 15px;
  height: 1px;
  content: "";
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease);
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button).is-active,
.site-nav > a:not(.button).active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button).is-active::after,
.site-nav > a:not(.button).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 44px !important;
  margin-left: 8px;
  padding: 0 18px !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  border-radius: 9px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

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

.button,
.floating-button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 730;
  line-height: 1;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s ease, background 0.28s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: #031015;
  background: var(--gradient);
  box-shadow: 0 12px 34px rgba(0, 191, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button-primary::before {
  position: absolute;
  top: -100%;
  left: -60%;
  width: 40%;
  height: 300%;
  content: "";
  background: rgba(255, 255, 255, 0.35);
  filter: blur(8px);
  transform: rotate(22deg);
  transition: left 0.6s var(--ease);
}

.button-primary:hover::before {
  left: 125%;
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(0, 191, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.button-secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  border-color: rgba(0, 229, 255, 0.28);
  background: rgba(0, 229, 255, 0.065);
}

.button-group,
.hero-actions,
.lab-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #abf7ff;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  align-items: center;
  padding-top: calc(var(--header-height) + clamp(72px, 8vw, 112px));
  padding-bottom: clamp(70px, 8vw, 112px);
  overflow: clip;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 72% 42%, rgba(41, 121, 255, 0.13), transparent 28%),
    linear-gradient(to bottom, rgba(7, 9, 13, 0.04), var(--ink));
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(46px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.display-title {
  max-width: 780px;
  margin-bottom: 25px;
  font-size: clamp(3.25rem, 6.7vw, 6.3rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted-light);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.68;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.hero-proof li:first-child {
  padding-left: 0;
}

.hero-proof li:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.image-card,
.hero-image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-card-primary,
.hero-image-frame {
  min-height: 570px;
}

.image-card img,
.hero-image-frame img,
.hero-visual > img,
.contact-hero-media > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s ease;
}

.image-card::after,
.hero-image-frame::after,
.contact-hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(4, 8, 14, 0.82) 100%),
    linear-gradient(115deg, rgba(41, 121, 255, 0.15), transparent 42%, rgba(0, 229, 255, 0.06));
  mix-blend-mode: normal;
}

.image-card:hover img,
.hero-image-frame:hover img {
  transform: scale(1.035);
}

.image-overlay-card,
.visual-caption,
.hero-media-caption {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 16px;
}

.image-overlay-card span:not(.status-indicator),
.visual-caption span:not(.status-pulse) {
  display: grid;
}

.image-overlay-card small,
.visual-caption small,
.hero-media-caption small {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.image-overlay-card strong,
.visual-caption strong,
.hero-media-caption strong {
  margin-top: 3px;
  color: var(--white);
  font-size: 0.9rem;
}

.floating-chip,
.floating-data-card,
.metric-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  animation: float 5.8s ease-in-out infinite;
}

.floating-chip svg {
  width: 19px;
  color: var(--cyan);
}

.floating-chip-one,
.floating-lab-card-one {
  top: 10%;
  left: -8%;
}

.floating-lab-card-two {
  top: auto;
  right: -6%;
  bottom: 25%;
  left: auto;
  animation-delay: -2.2s;
}

.hero-glow,
.hero-orb,
.cta-orb,
.visual-glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(41, 121, 255, 0.2);
  filter: blur(100px);
  opacity: 0.52;
  animation: auraDrift 10s ease-in-out infinite alternate;
}

.hero-glow-one,
.hero-orb-one {
  top: 5%;
  right: -12%;
}

.hero-glow-two,
.hero-orb-two {
  bottom: 0;
  left: -18%;
  width: 420px;
  height: 420px;
  background: rgba(0, 229, 255, 0.12);
  animation-delay: -4s;
}

.hero-grid-overlay {
  position: absolute;
  z-index: -1;
  inset: 6%;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black, transparent 68%);
  transform: perspective(500px) rotateX(66deg) translateY(26%);
}

.home-hero {
  min-height: 100svh;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
}

.home-hero .display-title {
  font-size: clamp(3.6rem, 7.4vw, 7.2rem);
}

.home-hero .image-card-primary img {
  object-position: center 24%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  color: #d9fbff;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(0, 229, 255, 0.055);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.neural-network {
  position: absolute;
  z-index: 3;
  inset: -5%;
  width: 110%;
  height: 110%;
  pointer-events: none;
  opacity: 0.6;
}

.neural-network line {
  stroke: rgba(0, 229, 255, 0.35);
  stroke-width: 0.5;
  stroke-dasharray: 4 8;
  animation: dash 8s linear infinite;
}

.neural-network circle {
  fill: var(--cyan);
  filter: drop-shadow(0 0 5px var(--cyan));
  animation: nodePulse 3s ease-in-out infinite;
}

.hologram-panel {
  position: absolute;
  z-index: 4;
  top: 11%;
  right: -10%;
  width: 170px;
  padding: 15px;
  border-radius: 16px;
  transform: rotate(3deg);
  animation: float 6s ease-in-out infinite -1.5s;
}

.hologram-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted-light);
  font-size: 0.65rem;
}

.hologram-chart {
  display: flex;
  height: 56px;
  align-items: end;
  gap: 5px;
}

.hologram-chart i {
  display: block;
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 1px 1px;
  background: var(--gradient);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.18);
}

.stats-section {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  padding-bottom: 72px;
}

.stats-grid {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  min-width: 0;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.stat-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.055);
  place-items: center;
}

.stat-icon svg {
  width: 21px;
}

.stat-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-card > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.logo-cloud {
  padding-block: 34px;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-cloud-inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 40px;
}

.logo-cloud p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-list {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.logo-placeholder {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.logo-placeholder:hover {
  color: var(--white);
}

.about-grid,
.split-layout,
.benefits-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(44px, 8vw, 100px);
}

.about-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.mission-stack {
  display: grid;
  gap: 16px;
}

.mission-card {
  padding: 28px;
  border-radius: var(--radius);
}

.mission-card small {
  display: block;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-card h3 {
  margin-bottom: 13px;
}

.mission-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

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

.value-card {
  padding: 24px;
  border-radius: var(--radius);
}

.value-card svg {
  width: 26px;
  margin-bottom: 22px;
  color: var(--gold);
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.service-preview-grid,
.audience-grid,
.benefits-grid,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-preview-card,
.audience-card,
.benefit-card,
.topic-card {
  min-width: 0;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-preview-card:hover,
.audience-card:hover,
.benefit-card:hover,
.topic-card:hover {
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34), 0 0 42px rgba(0, 229, 255, 0.04);
  transform: translateY(-7px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.service-card-icon,
.icon-wrap,
.icon-shell {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.055);
  place-items: center;
}

.service-card-icon svg,
.icon-wrap svg,
.icon-shell svg {
  width: 23px;
  height: 23px;
}

.service-card-number,
.topic-number {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-preview-card p,
.audience-card p,
.benefit-card p,
.topic-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: 340px 340px;
  gap: 18px;
}

.editorial-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.editorial-card:first-child {
  grid-row: span 2;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.editorial-card:first-child img {
  object-position: 54% center;
}

.editorial-card:hover img {
  transform: scale(1.045);
}

.editorial-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(4, 7, 12, 0.93), transparent 62%);
}

.editorial-caption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
}

.editorial-caption small {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-caption h3 {
  max-width: 430px;
  margin: 9px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.lab-preview {
  overflow: hidden;
}

.lab-feature-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 100px);
}

.lab-feature-media {
  position: relative;
  min-height: 620px;
}

.lab-feature-media .image-card {
  position: absolute;
  inset: 0 10% 0 0;
}

.lab-feature-media .image-card img {
  object-position: center;
}

.lab-mini-card {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 9%;
  width: 220px;
  padding: 20px;
  border-radius: 18px;
}

.lab-mini-card strong {
  display: block;
  margin-bottom: 7px;
}

.lab-mini-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.check-list {
  display: grid;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  color: #051217;
  border-radius: 50%;
  content: "\2713";
  background: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  place-items: center;
}

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

.process-card,
.journey-step {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
  counter-increment: process;
}

.process-number,
.step-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  color: #d7fbff;
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.055);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-card p,
.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonials-shell {
  position: relative;
  padding: clamp(28px, 5vw, 60px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.65s var(--ease);
}

.testimonial-card {
  width: 100%;
  min-width: 100%;
  padding-right: clamp(0px, 6vw, 90px);
}

.testimonial-quote {
  max-width: 920px;
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(1.5rem, 3.6vw, 3rem);
  font-weight: 540;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  color: #051015;
  border-radius: 50%;
  background: var(--gradient);
  font-weight: 850;
  place-items: center;
}

.testimonial-meta span {
  display: grid;
}

.testimonial-meta small {
  color: var(--muted);
}

.testimonial-controls {
  position: absolute;
  right: 38px;
  bottom: 38px;
  display: flex;
  gap: 8px;
}

.testimonial-control {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  place-items: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.testimonial-control:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.08);
}

.testimonial-control svg {
  width: 18px;
}

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

.capability-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
}

.capability-item svg {
  width: 28px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.capability-item span {
  display: grid;
}

.capability-item small {
  color: var(--muted);
  font-size: 0.74rem;
}

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

.service-category {
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-category[open] {
  border-color: rgba(0, 229, 255, 0.24);
  background:
    radial-gradient(circle at 12% 0, rgba(0, 229, 255, 0.08), transparent 35%),
    rgba(13, 19, 28, 0.88);
}

.service-category summary {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  padding: 26px;
  list-style: none;
  grid-template-columns: 54px 1fr 30px;
  gap: 17px;
}

.service-category summary::-webkit-details-marker {
  display: none;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 15px;
  background: rgba(0, 229, 255, 0.055);
  place-items: center;
}

.service-icon svg {
  width: 28px;
}

.service-summary-copy {
  display: grid;
}

.service-summary-copy small {
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.service-summary-copy strong {
  color: var(--white);
  font-size: 1.08rem;
}

.service-summary-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.details-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.details-toggle::before,
.details-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--white);
  transform: translate(-50%, -50%);
}

.details-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease;
}

.service-category[open] .details-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service-category-content {
  position: relative;
  z-index: 1;
  padding: 0 26px 28px 97px;
}

.service-category-content > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-list {
  display: grid;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.service-list li {
  position: relative;
  padding-left: 17px;
  color: var(--muted-light);
  font-size: 0.82rem;
}

.service-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.media-split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 100px);
}

.media-split-visual {
  position: relative;
}

.media-split-visual .image-card {
  min-height: 520px;
}

.metric-float {
  right: -5%;
  bottom: 10%;
}

.metric-float strong,
.metric-float span {
  display: block;
}

.metric-float strong {
  color: var(--cyan);
  font-size: 1.3rem;
}

.metric-float span {
  color: var(--muted);
  font-size: 0.68rem;
}

.lab-hero-grid,
.contact-hero-grid {
  position: relative;
}

.lab-hero .display-title,
.contact-hero .display-title,
.services-hero .display-title {
  font-size: clamp(3.35rem, 6.6vw, 6.3rem);
}

.lab-hero-visual .image-card,
.lab-hero-visual .hero-image-frame {
  min-height: 600px;
}

.intro-copy {
  max-width: 740px;
}

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

.audience-card {
  min-height: 215px;
}

.audience-card .icon-wrap,
.benefit-card .icon-wrap {
  margin-bottom: 38px;
}

.topics-showcase {
  display: grid;
  margin-bottom: 22px;
  padding: 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
}

.topics-showcase-copy {
  align-self: center;
  padding: 32px;
}

.topics-showcase-image {
  min-height: 390px;
  overflow: hidden;
  border-radius: 22px;
}

.topics-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.topic-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}

.topic-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-light);
  font-size: 0.86rem;
}

.topic-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.benefits-sticky {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.benefits-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(42px, 8vw, 100px);
}

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

.faq-item {
  overflow: hidden;
  border-radius: 18px;
}

.faq-item summary {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--white);
  list-style: none;
  font-weight: 650;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%);
}

.faq-answer {
  position: relative;
  z-index: 1;
  padding: 0 60px 22px 22px;
}

.faq-answer p,
.faq-answer {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.cta-panel {
  position: relative;
  display: flex;
  min-height: 380px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(36px, 7vw, 86px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  position: absolute;
  right: -8%;
  bottom: -70%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 38px rgba(0, 229, 255, 0.025), 0 0 0 90px rgba(41, 121, 255, 0.02);
}

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cta-copy h2 {
  margin-bottom: 18px;
}

.cta-copy p {
  max-width: 600px;
  margin-bottom: 30px;
}

.contact-hero-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.contact-hero-media img {
  object-position: center 25%;
}

.media-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 7, 12, 0.9), transparent 55%);
}

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

.contact-card {
  min-width: 0;
  padding: 26px;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(0, 229, 255, 0.22);
  transform: translateY(-5px);
}

.contact-card .icon-shell {
  margin-bottom: 40px;
}

.card-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  display: block;
  overflow: hidden;
  color: var(--white);
  font-size: 0.9rem;
  text-overflow: ellipsis;
}

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

.form-panel,
.availability-card,
.brief-card,
.map-card,
.trust-response-strip {
  border-radius: var(--radius-lg);
}

.form-panel {
  padding: clamp(28px, 5vw, 52px);
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.form-heading p {
  margin-bottom: 0;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--muted-light);
  font-size: 0.78rem;
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.newsletter-form input:focus {
  border-color: rgba(0, 229, 255, 0.52);
  background: rgba(0, 229, 255, 0.035);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.07);
}

.form-field select option {
  color: var(--text);
  background: var(--ink-soft);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

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

.availability-card,
.brief-card {
  padding: 30px;
}

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

.availability-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted-light);
  font-size: 0.86rem;
}

.map-card {
  display: grid;
  min-height: 500px;
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
}

.map-content {
  align-self: center;
}

.map-visual {
  position: relative;
  display: grid;
  min-height: 390px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 65% 35%, rgba(0, 229, 255, 0.15), transparent 4%, transparent 30%),
    linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    rgba(0, 229, 255, 0.025);
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.map-visual svg {
  max-width: 70%;
  max-height: 310px;
  color: rgba(0, 229, 255, 0.7);
  filter: drop-shadow(0 0 26px rgba(0, 229, 255, 0.22));
}

.trust-response-strip {
  display: grid;
  padding: 32px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

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

.trust-strip-items > * {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.newsletter-section {
  padding-block: 36px 0;
}

.newsletter-inner,
.newsletter-shell,
.newsletter-card {
  display: grid;
  align-items: center;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
}

.newsletter-inner h2,
.newsletter-shell h2,
.newsletter-card h2,
.newsletter-inner h3,
.newsletter-shell h3,
.newsletter-card h3 {
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.newsletter-inner p,
.newsletter-shell p,
.newsletter-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.newsletter-form,
.newsletter-control {
  display: flex;
  min-width: min(100%, 430px);
  gap: 9px;
}

.newsletter-form:has(.newsletter-control) {
  display: grid;
  gap: 8px;
}

.newsletter-control svg {
  width: 20px;
  flex: 0 0 auto;
  align-self: center;
  color: var(--cyan);
}

.newsletter-shell:has(> .newsletter-inner) {
  display: block;
  padding: 0;
  background: none;
}

.section-button-row {
  margin-top: 34px;
  text-align: center;
}

.newsletter-form input {
  min-height: 50px;
  padding: 0 16px;
}

.newsletter-form .button {
  min-height: 50px;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(70px, 9vw, 110px) 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(to bottom, rgba(9, 13, 19, 0.4), rgba(5, 7, 10, 0.92));
}

.footer-grid {
  display: grid;
  padding-bottom: 64px;
  grid-template-columns: 1.55fr 0.7fr 0.8fr 1.1fr;
  gap: 50px;
}

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

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 22px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.footer-column a,
.footer-column li,
.footer-column p {
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact li {
  display: grid;
  gap: 2px;
}

.footer-contact small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--muted-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  place-items: center;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease), background 0.25s ease;
}

.social-links a:hover {
  color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.06);
  transform: translateY(-3px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.floating-whatsapp,
.whatsapp-fab,
.scroll-to-top,
.scroll-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--ease), opacity 0.25s ease, visibility 0.25s ease;
}

.floating-whatsapp,
.whatsapp-fab {
  bottom: 22px;
  color: #03130b;
  background: #48e282;
}

.floating-whatsapp:hover,
.whatsapp-fab:hover,
.scroll-to-top:hover,
.scroll-top:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp svg,
.whatsapp-fab svg,
.scroll-to-top svg,
.scroll-top svg {
  width: 24px;
}

.scroll-to-top,
.scroll-top {
  bottom: 88px;
  color: var(--white);
  background: rgba(15, 21, 30, 0.88);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(14px);
}

.scroll-to-top.is-visible,
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

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

@keyframes auraDrift {
  from { transform: translate3d(-3%, -2%, 0) scale(0.94); }
  to { transform: translate3d(5%, 4%, 0) scale(1.08); }
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes dash {
  to { stroke-dashoffset: -120; }
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: 48px;
  }

  .display-title,
  .home-hero .display-title,
  .lab-hero .display-title,
  .contact-hero .display-title,
  .services-hero .display-title {
    font-size: clamp(3.2rem, 7vw, 5.4rem);
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }

  .hologram-panel {
    right: -2%;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(390px, 88vw);
    padding: calc(var(--header-height) + 38px) 24px 28px;
    align-items: stretch;
    border-left: 1px solid var(--line);
    background: rgba(7, 10, 15, 0.97);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.45);
    flex-direction: column;
    gap: 7px;
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    backdrop-filter: blur(22px);
  }

  .site-nav::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle at 80% 10%, rgba(0, 229, 255, 0.12), transparent 35%);
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav > a:not(.button) {
    padding: 16px;
    font-size: 1rem;
  }

  .nav-cta {
    min-height: 52px !important;
    margin: 14px 0 0;
  }

  .hero-grid,
  .home-hero .hero-grid,
  .lab-feature-grid,
  .media-split,
  .about-grid,
  .split-layout,
  .benefits-layout,
  .contact-workspace-grid,
  .map-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 80px);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .image-card-primary,
  .hero-image-frame,
  .contact-hero-media {
    min-height: 620px;
  }

  .stats-section {
    margin-top: 0;
  }

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

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .logo-cloud-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .about-copy,
  .benefits-sticky {
    position: static;
  }

  .service-preview-grid,
  .audience-grid,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 320px;
  }

  .editorial-card:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .lab-feature-media {
    min-height: 660px;
  }

  .topics-showcase {
    grid-template-columns: 1fr;
  }

  .topics-showcase-image {
    order: -1;
  }

  .map-content {
    max-width: 600px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .section {
    padding-block: 76px;
  }

  .display-title,
  .home-hero .display-title,
  .lab-hero .display-title,
  .contact-hero .display-title,
  .services-hero .display-title {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .hero-proof li,
  .hero-proof li:first-child {
    padding: 0 14px;
  }

  .hero-proof li:nth-child(odd) {
    padding-left: 0;
  }

  .hero-proof li:nth-child(even) {
    border-right: 0;
  }

  .hero-visual {
    padding-top: 10px;
  }

  .image-card-primary,
  .hero-image-frame,
  .contact-hero-media,
  .lab-hero-visual .image-card,
  .lab-hero-visual .hero-image-frame {
    min-height: 500px;
  }

  .floating-chip-one,
  .floating-lab-card-one {
    top: 3%;
    left: -2%;
  }

  .floating-lab-card-two,
  .hologram-panel {
    display: none;
  }

  .stats-grid,
  .service-preview-grid,
  .audience-grid,
  .topic-grid,
  .benefits-grid,
  .service-grid,
  .capability-strip,
  .process-grid,
  .journey-grid,
  .quick-contact-grid,
  .trust-strip-items {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-card:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .logo-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .logo-placeholder:last-child {
    grid-column: span 2;
  }

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

  .editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 390px);
  }

  .editorial-card:first-child {
    grid-column: auto;
  }

  .lab-feature-media {
    min-height: 540px;
  }

  .lab-feature-media .image-card {
    inset: 0;
  }

  .lab-mini-card {
    right: 14px;
    bottom: 14px;
  }

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

  .testimonial-controls {
    position: static;
    margin-top: 30px;
  }

  .testimonial-card {
    padding-right: 0;
  }

  .service-category summary {
    padding: 22px;
    grid-template-columns: 46px 1fr 28px;
    gap: 13px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-summary-copy span {
    display: none;
  }

  .service-category-content {
    padding: 0 22px 24px;
  }

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

  .topics-showcase {
    padding: 12px;
  }

  .topics-showcase-copy {
    padding: 20px 12px;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .form-submit-row,
  .cta-panel,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .map-card {
    padding: 24px;
  }

  .map-visual {
    min-height: 320px;
  }

  .trust-response-strip {
    grid-template-columns: 1fr;
  }

  .newsletter-inner,
  .newsletter-shell,
  .newsletter-card {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .newsletter-control {
    display: grid;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .floating-whatsapp,
  .whatsapp-fab,
  .scroll-to-top,
  .scroll-top {
    right: 14px;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

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

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

  .hero-proof li,
  .hero-proof li:first-child,
  .hero-proof li:nth-child(odd) {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof li:last-child {
    border-bottom: 0;
  }

  .image-card-primary,
  .hero-image-frame,
  .contact-hero-media,
  .lab-hero-visual .image-card,
  .lab-hero-visual .hero-image-frame {
    min-height: 440px;
  }

  .image-overlay-card,
  .visual-caption,
  .hero-media-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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